mono_crash.12c995373b.0.json 191 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692
  1. {
  2. "protocol_version" : "0.0.6",
  3. "configuration" : {
  4. "version" : "(6.13.0) (explicit/8afac1ced72)",
  5. "tlc" : "__thread",
  6. "sigsgev" : "normal",
  7. "notifications" : "kqueue",
  8. "architecture" : "arm64",
  9. "disabled_features" : "com,shared_perfcounters",
  10. "smallconfig" : "disabled",
  11. "bigarrays" : "disabled",
  12. "softdebug" : "enabled",
  13. "interpreter" : "enabled",
  14. "llvm_support" : "disabled",
  15. "suspend" : "preemptive"
  16. },
  17. "memory" : {
  18. "Resident Size" : "1687863296",
  19. "Virtual Size" : "424679096320",
  20. "minor_gc_time" : "0",
  21. "major_gc_time" : "21951",
  22. "minor_gc_count" : "0",
  23. "major_gc_count" : "2",
  24. "major_gc_time_concurrent" : "0"
  25. },
  26. "threads" : [
  27. {
  28. "is_managed" : true,
  29. "offset_free_hash" : "0x256c69d3b0",
  30. "offset_rich_hash" : "0x256c69ddda",
  31. "crashed" : false,
  32. "native_thread_id" : "0x36a15f000",
  33. "thread_info_addr" : "0x1528e0600",
  34. "thread_name" : "Burst-CompilerThread-4",
  35. "ctx" : {
  36. "IP" : "0x18621e6ec",
  37. "SP" : "0x36a15c9a0",
  38. "BP" : "0x36a15ca30"
  39. },
  40. "managed_frames" : [
  41. {
  42. "is_managed" : "false",
  43. "native_address" : "unregistered"
  44. }
  45. ,
  46. {
  47. "is_managed" : "true",
  48. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  49. "token" : "0x00000",
  50. "native_offset" : "0x0",
  51. "filename" : "mscorlib.dll",
  52. "sizeofimage" : "0x470000",
  53. "timestamp" : "0xe8f31350",
  54. "il_offset" : "0xffffffff"
  55. }
  56. ,
  57. {
  58. "is_managed" : "true",
  59. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  60. "token" : "0x60001a3",
  61. "native_offset" : "0x0",
  62. "filename" : "Burst.Compiler.IL.dll",
  63. "sizeofimage" : "0x1aa000",
  64. "timestamp" : "0x8ae67a69",
  65. "il_offset" : "0x00009"
  66. }
  67. ,
  68. {
  69. "is_managed" : "true",
  70. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  71. "token" : "0x6000be5",
  72. "native_offset" : "0x0",
  73. "filename" : "Burst.Compiler.IL.dll",
  74. "sizeofimage" : "0x1aa000",
  75. "timestamp" : "0x8ae67a69",
  76. "il_offset" : "0x001d3"
  77. }
  78. ,
  79. {
  80. "is_managed" : "true",
  81. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  82. "token" : "0x6000be5",
  83. "native_offset" : "0x0",
  84. "filename" : "Burst.Compiler.IL.dll",
  85. "sizeofimage" : "0x1aa000",
  86. "timestamp" : "0x8ae67a69",
  87. "il_offset" : "0x001de"
  88. }
  89. ,
  90. {
  91. "is_managed" : "true",
  92. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  93. "token" : "0x6000be5",
  94. "native_offset" : "0x0",
  95. "filename" : "Burst.Compiler.IL.dll",
  96. "sizeofimage" : "0x1aa000",
  97. "timestamp" : "0x8ae67a69",
  98. "il_offset" : "0x001de"
  99. }
  100. ,
  101. {
  102. "is_managed" : "true",
  103. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  104. "token" : "0x6000be4",
  105. "native_offset" : "0x0",
  106. "filename" : "Burst.Compiler.IL.dll",
  107. "sizeofimage" : "0x1aa000",
  108. "timestamp" : "0x8ae67a69",
  109. "il_offset" : "0x00071"
  110. }
  111. ,
  112. {
  113. "is_managed" : "true",
  114. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  115. "token" : "0x60014ad",
  116. "native_offset" : "0x0",
  117. "filename" : "Burst.Compiler.IL.dll",
  118. "sizeofimage" : "0x1aa000",
  119. "timestamp" : "0x8ae67a69",
  120. "il_offset" : "0x0005e"
  121. }
  122. ,
  123. {
  124. "is_managed" : "true",
  125. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  126. "token" : "0x60016b5",
  127. "native_offset" : "0x0",
  128. "filename" : "Burst.Compiler.IL.dll",
  129. "sizeofimage" : "0x1aa000",
  130. "timestamp" : "0x8ae67a69",
  131. "il_offset" : "0x00058"
  132. }
  133. ,
  134. {
  135. "is_managed" : "true",
  136. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  137. "token" : "0x600469b",
  138. "native_offset" : "0x0",
  139. "filename" : "mscorlib.dll",
  140. "sizeofimage" : "0x470000",
  141. "timestamp" : "0xe8f31350",
  142. "il_offset" : "0x0002c"
  143. }
  144. ,
  145. {
  146. "is_managed" : "true",
  147. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  148. "token" : "0x60014b6",
  149. "native_offset" : "0x0",
  150. "filename" : "Burst.Compiler.IL.dll",
  151. "sizeofimage" : "0x1aa000",
  152. "timestamp" : "0x8ae67a69",
  153. "il_offset" : "0x0001c"
  154. }
  155. ,
  156. {
  157. "is_managed" : "true",
  158. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  159. "token" : "0x6002300",
  160. "native_offset" : "0x0",
  161. "filename" : "mscorlib.dll",
  162. "sizeofimage" : "0x470000",
  163. "timestamp" : "0xe8f31350",
  164. "il_offset" : "0x0000f"
  165. }
  166. ,
  167. {
  168. "is_managed" : "true",
  169. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  170. "token" : "0x60023fa",
  171. "native_offset" : "0x0",
  172. "filename" : "mscorlib.dll",
  173. "sizeofimage" : "0x470000",
  174. "timestamp" : "0xe8f31350",
  175. "il_offset" : "0x00000"
  176. }
  177. ,
  178. {
  179. "is_managed" : "true",
  180. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  181. "token" : "0x60023fd",
  182. "native_offset" : "0x0",
  183. "filename" : "mscorlib.dll",
  184. "sizeofimage" : "0x470000",
  185. "timestamp" : "0xe8f31350",
  186. "il_offset" : "0x00000"
  187. }
  188. ,
  189. {
  190. "is_managed" : "true",
  191. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  192. "token" : "0x6001f25",
  193. "native_offset" : "0x0",
  194. "filename" : "mscorlib.dll",
  195. "sizeofimage" : "0x470000",
  196. "timestamp" : "0xe8f31350",
  197. "il_offset" : "0x00071"
  198. }
  199. ,
  200. {
  201. "is_managed" : "true",
  202. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  203. "token" : "0x6001f23",
  204. "native_offset" : "0x0",
  205. "filename" : "mscorlib.dll",
  206. "sizeofimage" : "0x470000",
  207. "timestamp" : "0xe8f31350",
  208. "il_offset" : "0x00000"
  209. }
  210. ,
  211. {
  212. "is_managed" : "true",
  213. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  214. "token" : "0x6002466",
  215. "native_offset" : "0x0",
  216. "filename" : "mscorlib.dll",
  217. "sizeofimage" : "0x470000",
  218. "timestamp" : "0xe8f31350",
  219. "il_offset" : "0x00034"
  220. }
  221. ,
  222. {
  223. "is_managed" : "true",
  224. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  225. "token" : "0x60023fc",
  226. "native_offset" : "0x0",
  227. "filename" : "mscorlib.dll",
  228. "sizeofimage" : "0x470000",
  229. "timestamp" : "0xe8f31350",
  230. "il_offset" : "0x0004a"
  231. }
  232. ,
  233. {
  234. "is_managed" : "true",
  235. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  236. "token" : "0x6002547",
  237. "native_offset" : "0x0",
  238. "filename" : "mscorlib.dll",
  239. "sizeofimage" : "0x470000",
  240. "timestamp" : "0xe8f31350",
  241. "il_offset" : "0x00014"
  242. }
  243. ,
  244. {
  245. "is_managed" : "true",
  246. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  247. "token" : "0x60014ca",
  248. "native_offset" : "0x0",
  249. "filename" : "Burst.Compiler.IL.dll",
  250. "sizeofimage" : "0x1aa000",
  251. "timestamp" : "0x8ae67a69",
  252. "il_offset" : "0x00000"
  253. }
  254. ,
  255. {
  256. "is_managed" : "true",
  257. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  258. "token" : "0x6000bdf",
  259. "native_offset" : "0x0",
  260. "filename" : "Burst.Compiler.IL.dll",
  261. "sizeofimage" : "0x1aa000",
  262. "timestamp" : "0x8ae67a69",
  263. "il_offset" : "0x000f5"
  264. }
  265. ,
  266. {
  267. "is_managed" : "true",
  268. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  269. "token" : "0x6001f7d",
  270. "native_offset" : "0x0",
  271. "filename" : "mscorlib.dll",
  272. "sizeofimage" : "0x470000",
  273. "timestamp" : "0xe8f31350",
  274. "il_offset" : "0x00014"
  275. }
  276. ,
  277. {
  278. "is_managed" : "true",
  279. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  280. "token" : "0x6001f25",
  281. "native_offset" : "0x0",
  282. "filename" : "mscorlib.dll",
  283. "sizeofimage" : "0x470000",
  284. "timestamp" : "0xe8f31350",
  285. "il_offset" : "0x00071"
  286. }
  287. ,
  288. {
  289. "is_managed" : "true",
  290. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  291. "token" : "0x6001f23",
  292. "native_offset" : "0x0",
  293. "filename" : "mscorlib.dll",
  294. "sizeofimage" : "0x470000",
  295. "timestamp" : "0xe8f31350",
  296. "il_offset" : "0x00000"
  297. }
  298. ,
  299. {
  300. "is_managed" : "true",
  301. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  302. "token" : "0x6001f22",
  303. "native_offset" : "0x0",
  304. "filename" : "mscorlib.dll",
  305. "sizeofimage" : "0x470000",
  306. "timestamp" : "0xe8f31350",
  307. "il_offset" : "0x0002b"
  308. }
  309. ,
  310. {
  311. "is_managed" : "true",
  312. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  313. "token" : "0x6001f7f",
  314. "native_offset" : "0x0",
  315. "filename" : "mscorlib.dll",
  316. "sizeofimage" : "0x470000",
  317. "timestamp" : "0xe8f31350",
  318. "il_offset" : "0x00008"
  319. }
  320. ,
  321. {
  322. "is_managed" : "true",
  323. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  324. "token" : "0x00000",
  325. "native_offset" : "0x0",
  326. "filename" : "mscorlib.dll",
  327. "sizeofimage" : "0x470000",
  328. "timestamp" : "0xe8f31350",
  329. "il_offset" : "0x00065"
  330. }
  331. ],
  332. "unmanaged_frames" : [
  333. {
  334. "is_managed" : "false",
  335. "native_address" : "0x17f4452c4",
  336. "native_offset" : "0x00000"
  337. }
  338. ,
  339. {
  340. "is_managed" : "false",
  341. "native_address" : "0x17f57c63c",
  342. "native_offset" : "0x00000"
  343. }
  344. ,
  345. {
  346. "is_managed" : "false",
  347. "native_address" : "0x17f57c998",
  348. "native_offset" : "0x00000"
  349. }
  350. ,
  351. {
  352. "is_managed" : "false",
  353. "native_address" : "0x17f57c760",
  354. "native_offset" : "0x00000"
  355. }
  356. ,
  357. {
  358. "is_managed" : "false",
  359. "native_address" : "0x17f4864f4",
  360. "native_offset" : "0x00000"
  361. }
  362. ,
  363. {
  364. "is_managed" : "false",
  365. "native_address" : "0x186292e04",
  366. "native_offset" : "0x00000"
  367. }
  368. ,
  369. {
  370. "is_managed" : "false",
  371. "native_address" : "0x18625c894",
  372. "native_offset" : "0x00000"
  373. }
  374. ,
  375. {
  376. "is_managed" : "false",
  377. "native_address" : "0x17f5b7f9c",
  378. "native_offset" : "0x00000"
  379. }
  380. ,
  381. {
  382. "is_managed" : "false",
  383. "native_address" : "0x17f5b6d4c",
  384. "native_offset" : "0x00000"
  385. }
  386. ,
  387. {
  388. "is_managed" : "true",
  389. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  390. "token" : "0x00000",
  391. "native_offset" : "0x0",
  392. "filename" : "mscorlib.dll",
  393. "sizeofimage" : "0x470000",
  394. "timestamp" : "0xe8f31350",
  395. "il_offset" : "0x00000"
  396. }
  397. ,
  398. {
  399. "is_managed" : "true",
  400. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  401. "token" : "0x60001a3",
  402. "native_offset" : "0x0",
  403. "filename" : "Burst.Compiler.IL.dll",
  404. "sizeofimage" : "0x1aa000",
  405. "timestamp" : "0x8ae67a69",
  406. "il_offset" : "0x00000"
  407. }
  408. ,
  409. {
  410. "is_managed" : "true",
  411. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  412. "token" : "0x6000be5",
  413. "native_offset" : "0x0",
  414. "filename" : "Burst.Compiler.IL.dll",
  415. "sizeofimage" : "0x1aa000",
  416. "timestamp" : "0x8ae67a69",
  417. "il_offset" : "0x00000"
  418. }
  419. ,
  420. {
  421. "is_managed" : "true",
  422. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  423. "token" : "0x6000be5",
  424. "native_offset" : "0x0",
  425. "filename" : "Burst.Compiler.IL.dll",
  426. "sizeofimage" : "0x1aa000",
  427. "timestamp" : "0x8ae67a69",
  428. "il_offset" : "0x00000"
  429. }
  430. ,
  431. {
  432. "is_managed" : "true",
  433. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  434. "token" : "0x6000be5",
  435. "native_offset" : "0x0",
  436. "filename" : "Burst.Compiler.IL.dll",
  437. "sizeofimage" : "0x1aa000",
  438. "timestamp" : "0x8ae67a69",
  439. "il_offset" : "0x00000"
  440. }
  441. ,
  442. {
  443. "is_managed" : "true",
  444. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  445. "token" : "0x6000be4",
  446. "native_offset" : "0x0",
  447. "filename" : "Burst.Compiler.IL.dll",
  448. "sizeofimage" : "0x1aa000",
  449. "timestamp" : "0x8ae67a69",
  450. "il_offset" : "0x00000"
  451. }
  452. ,
  453. {
  454. "is_managed" : "true",
  455. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  456. "token" : "0x60014ad",
  457. "native_offset" : "0x0",
  458. "filename" : "Burst.Compiler.IL.dll",
  459. "sizeofimage" : "0x1aa000",
  460. "timestamp" : "0x8ae67a69",
  461. "il_offset" : "0x00000"
  462. }
  463. ,
  464. {
  465. "is_managed" : "true",
  466. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  467. "token" : "0x60016b5",
  468. "native_offset" : "0x0",
  469. "filename" : "Burst.Compiler.IL.dll",
  470. "sizeofimage" : "0x1aa000",
  471. "timestamp" : "0x8ae67a69",
  472. "il_offset" : "0x00000"
  473. }
  474. ,
  475. {
  476. "is_managed" : "true",
  477. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  478. "token" : "0x600469b",
  479. "native_offset" : "0x0",
  480. "filename" : "mscorlib.dll",
  481. "sizeofimage" : "0x470000",
  482. "timestamp" : "0xe8f31350",
  483. "il_offset" : "0x00000"
  484. }
  485. ,
  486. {
  487. "is_managed" : "true",
  488. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  489. "token" : "0x60014b6",
  490. "native_offset" : "0x0",
  491. "filename" : "Burst.Compiler.IL.dll",
  492. "sizeofimage" : "0x1aa000",
  493. "timestamp" : "0x8ae67a69",
  494. "il_offset" : "0x00000"
  495. }
  496. ,
  497. {
  498. "is_managed" : "true",
  499. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  500. "token" : "0x6002300",
  501. "native_offset" : "0x0",
  502. "filename" : "mscorlib.dll",
  503. "sizeofimage" : "0x470000",
  504. "timestamp" : "0xe8f31350",
  505. "il_offset" : "0x00000"
  506. }
  507. ,
  508. {
  509. "is_managed" : "true",
  510. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  511. "token" : "0x60023fa",
  512. "native_offset" : "0x0",
  513. "filename" : "mscorlib.dll",
  514. "sizeofimage" : "0x470000",
  515. "timestamp" : "0xe8f31350",
  516. "il_offset" : "0x00000"
  517. }
  518. ,
  519. {
  520. "is_managed" : "true",
  521. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  522. "token" : "0x60023fd",
  523. "native_offset" : "0x0",
  524. "filename" : "mscorlib.dll",
  525. "sizeofimage" : "0x470000",
  526. "timestamp" : "0xe8f31350",
  527. "il_offset" : "0x00000"
  528. }
  529. ,
  530. {
  531. "is_managed" : "true",
  532. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  533. "token" : "0x6001f25",
  534. "native_offset" : "0x0",
  535. "filename" : "mscorlib.dll",
  536. "sizeofimage" : "0x470000",
  537. "timestamp" : "0xe8f31350",
  538. "il_offset" : "0x00000"
  539. }
  540. ,
  541. {
  542. "is_managed" : "true",
  543. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  544. "token" : "0x6001f23",
  545. "native_offset" : "0x0",
  546. "filename" : "mscorlib.dll",
  547. "sizeofimage" : "0x470000",
  548. "timestamp" : "0xe8f31350",
  549. "il_offset" : "0x00000"
  550. }
  551. ,
  552. {
  553. "is_managed" : "true",
  554. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  555. "token" : "0x6002466",
  556. "native_offset" : "0x0",
  557. "filename" : "mscorlib.dll",
  558. "sizeofimage" : "0x470000",
  559. "timestamp" : "0xe8f31350",
  560. "il_offset" : "0x00000"
  561. }
  562. ,
  563. {
  564. "is_managed" : "true",
  565. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  566. "token" : "0x60023fc",
  567. "native_offset" : "0x0",
  568. "filename" : "mscorlib.dll",
  569. "sizeofimage" : "0x470000",
  570. "timestamp" : "0xe8f31350",
  571. "il_offset" : "0x00000"
  572. }
  573. ,
  574. {
  575. "is_managed" : "true",
  576. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  577. "token" : "0x6002547",
  578. "native_offset" : "0x0",
  579. "filename" : "mscorlib.dll",
  580. "sizeofimage" : "0x470000",
  581. "timestamp" : "0xe8f31350",
  582. "il_offset" : "0x00000"
  583. }
  584. ,
  585. {
  586. "is_managed" : "true",
  587. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  588. "token" : "0x60014ca",
  589. "native_offset" : "0x0",
  590. "filename" : "Burst.Compiler.IL.dll",
  591. "sizeofimage" : "0x1aa000",
  592. "timestamp" : "0x8ae67a69",
  593. "il_offset" : "0x00000"
  594. }
  595. ,
  596. {
  597. "is_managed" : "true",
  598. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  599. "token" : "0x6000bdf",
  600. "native_offset" : "0x0",
  601. "filename" : "Burst.Compiler.IL.dll",
  602. "sizeofimage" : "0x1aa000",
  603. "timestamp" : "0x8ae67a69",
  604. "il_offset" : "0x00000"
  605. }
  606. ,
  607. {
  608. "is_managed" : "true",
  609. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  610. "token" : "0x6001f7d",
  611. "native_offset" : "0x0",
  612. "filename" : "mscorlib.dll",
  613. "sizeofimage" : "0x470000",
  614. "timestamp" : "0xe8f31350",
  615. "il_offset" : "0x00000"
  616. }
  617. ,
  618. {
  619. "is_managed" : "true",
  620. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  621. "token" : "0x6001f25",
  622. "native_offset" : "0x0",
  623. "filename" : "mscorlib.dll",
  624. "sizeofimage" : "0x470000",
  625. "timestamp" : "0xe8f31350",
  626. "il_offset" : "0x00000"
  627. }
  628. ,
  629. {
  630. "is_managed" : "true",
  631. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  632. "token" : "0x6001f23",
  633. "native_offset" : "0x0",
  634. "filename" : "mscorlib.dll",
  635. "sizeofimage" : "0x470000",
  636. "timestamp" : "0xe8f31350",
  637. "il_offset" : "0x00000"
  638. }
  639. ,
  640. {
  641. "is_managed" : "true",
  642. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  643. "token" : "0x6001f22",
  644. "native_offset" : "0x0",
  645. "filename" : "mscorlib.dll",
  646. "sizeofimage" : "0x470000",
  647. "timestamp" : "0xe8f31350",
  648. "il_offset" : "0x00000"
  649. }
  650. ,
  651. {
  652. "is_managed" : "true",
  653. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  654. "token" : "0x6001f7f",
  655. "native_offset" : "0x0",
  656. "filename" : "mscorlib.dll",
  657. "sizeofimage" : "0x470000",
  658. "timestamp" : "0xe8f31350",
  659. "il_offset" : "0x00000"
  660. }
  661. ,
  662. {
  663. "is_managed" : "true",
  664. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  665. "token" : "0x00000",
  666. "native_offset" : "0x0",
  667. "filename" : "mscorlib.dll",
  668. "sizeofimage" : "0x470000",
  669. "timestamp" : "0xe8f31350",
  670. "il_offset" : "0x00000"
  671. }
  672. ,
  673. {
  674. "is_managed" : "false",
  675. "native_address" : "0x17f3d4eac",
  676. "native_offset" : "0x00000"
  677. }
  678. ,
  679. {
  680. "is_managed" : "false",
  681. "native_address" : "0x17f55b370",
  682. "native_offset" : "0x00000"
  683. }
  684. ,
  685. {
  686. "is_managed" : "false",
  687. "native_address" : "0x17f55cf80",
  688. "native_offset" : "0x00000"
  689. }
  690. ,
  691. {
  692. "is_managed" : "false",
  693. "native_address" : "0x17f57d49c",
  694. "native_offset" : "0x00000"
  695. }
  696. ,
  697. {
  698. "is_managed" : "false",
  699. "native_address" : "0x17f57d254",
  700. "native_offset" : "0x00000"
  701. }
  702. ,
  703. {
  704. "is_managed" : "false",
  705. "native_address" : "0x17f5fcd28",
  706. "native_offset" : "0x00000"
  707. }
  708. ,
  709. {
  710. "is_managed" : "false",
  711. "native_address" : "0x17f5fccb0",
  712. "native_offset" : "0x00000"
  713. }
  714. ,
  715. {
  716. "is_managed" : "false",
  717. "native_address" : "0x18625c2e4",
  718. "native_offset" : "0x00000"
  719. }
  720. ,
  721. {
  722. "is_managed" : "false",
  723. "native_address" : "0x1862570fc",
  724. "native_offset" : "0x00000"
  725. }
  726. ]
  727. },
  728. {
  729. "is_managed" : true,
  730. "offset_free_hash" : "0x26ee46c292",
  731. "offset_rich_hash" : "0x26ee46cba3",
  732. "crashed" : false,
  733. "native_thread_id" : "0x36a577000",
  734. "thread_info_addr" : "0x35c198600",
  735. "thread_name" : "Burst-CompilerThread-6",
  736. "ctx" : {
  737. "IP" : "0x18621e6ec",
  738. "SP" : "0x36a574930",
  739. "BP" : "0x36a5749c0"
  740. },
  741. "managed_frames" : [
  742. {
  743. "is_managed" : "false",
  744. "native_address" : "unregistered"
  745. }
  746. ,
  747. {
  748. "is_managed" : "true",
  749. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  750. "token" : "0x00000",
  751. "native_offset" : "0x0",
  752. "filename" : "mscorlib.dll",
  753. "sizeofimage" : "0x470000",
  754. "timestamp" : "0xe8f31350",
  755. "il_offset" : "0xffffffff"
  756. }
  757. ,
  758. {
  759. "is_managed" : "true",
  760. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  761. "token" : "0x60001a2",
  762. "native_offset" : "0x0",
  763. "filename" : "Burst.Compiler.IL.dll",
  764. "sizeofimage" : "0x1aa000",
  765. "timestamp" : "0x8ae67a69",
  766. "il_offset" : "0x00009"
  767. }
  768. ,
  769. {
  770. "is_managed" : "true",
  771. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  772. "token" : "0x6000eae",
  773. "native_offset" : "0x0",
  774. "filename" : "Burst.Compiler.IL.dll",
  775. "sizeofimage" : "0x1aa000",
  776. "timestamp" : "0x8ae67a69",
  777. "il_offset" : "0x00095"
  778. }
  779. ,
  780. {
  781. "is_managed" : "true",
  782. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  783. "token" : "0x6000be5",
  784. "native_offset" : "0x0",
  785. "filename" : "Burst.Compiler.IL.dll",
  786. "sizeofimage" : "0x1aa000",
  787. "timestamp" : "0x8ae67a69",
  788. "il_offset" : "0x00025"
  789. }
  790. ,
  791. {
  792. "is_managed" : "true",
  793. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  794. "token" : "0x6000be5",
  795. "native_offset" : "0x0",
  796. "filename" : "Burst.Compiler.IL.dll",
  797. "sizeofimage" : "0x1aa000",
  798. "timestamp" : "0x8ae67a69",
  799. "il_offset" : "0x001de"
  800. }
  801. ,
  802. {
  803. "is_managed" : "true",
  804. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  805. "token" : "0x6000be5",
  806. "native_offset" : "0x0",
  807. "filename" : "Burst.Compiler.IL.dll",
  808. "sizeofimage" : "0x1aa000",
  809. "timestamp" : "0x8ae67a69",
  810. "il_offset" : "0x001de"
  811. }
  812. ,
  813. {
  814. "is_managed" : "true",
  815. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  816. "token" : "0x6000be4",
  817. "native_offset" : "0x0",
  818. "filename" : "Burst.Compiler.IL.dll",
  819. "sizeofimage" : "0x1aa000",
  820. "timestamp" : "0x8ae67a69",
  821. "il_offset" : "0x00071"
  822. }
  823. ,
  824. {
  825. "is_managed" : "true",
  826. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  827. "token" : "0x60014ad",
  828. "native_offset" : "0x0",
  829. "filename" : "Burst.Compiler.IL.dll",
  830. "sizeofimage" : "0x1aa000",
  831. "timestamp" : "0x8ae67a69",
  832. "il_offset" : "0x0005e"
  833. }
  834. ,
  835. {
  836. "is_managed" : "true",
  837. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  838. "token" : "0x60016b5",
  839. "native_offset" : "0x0",
  840. "filename" : "Burst.Compiler.IL.dll",
  841. "sizeofimage" : "0x1aa000",
  842. "timestamp" : "0x8ae67a69",
  843. "il_offset" : "0x00058"
  844. }
  845. ,
  846. {
  847. "is_managed" : "true",
  848. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  849. "token" : "0x600469b",
  850. "native_offset" : "0x0",
  851. "filename" : "mscorlib.dll",
  852. "sizeofimage" : "0x470000",
  853. "timestamp" : "0xe8f31350",
  854. "il_offset" : "0x0002c"
  855. }
  856. ,
  857. {
  858. "is_managed" : "true",
  859. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  860. "token" : "0x60014b6",
  861. "native_offset" : "0x0",
  862. "filename" : "Burst.Compiler.IL.dll",
  863. "sizeofimage" : "0x1aa000",
  864. "timestamp" : "0x8ae67a69",
  865. "il_offset" : "0x0001c"
  866. }
  867. ,
  868. {
  869. "is_managed" : "true",
  870. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  871. "token" : "0x6002300",
  872. "native_offset" : "0x0",
  873. "filename" : "mscorlib.dll",
  874. "sizeofimage" : "0x470000",
  875. "timestamp" : "0xe8f31350",
  876. "il_offset" : "0x0000f"
  877. }
  878. ,
  879. {
  880. "is_managed" : "true",
  881. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  882. "token" : "0x60023fa",
  883. "native_offset" : "0x0",
  884. "filename" : "mscorlib.dll",
  885. "sizeofimage" : "0x470000",
  886. "timestamp" : "0xe8f31350",
  887. "il_offset" : "0x00000"
  888. }
  889. ,
  890. {
  891. "is_managed" : "true",
  892. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  893. "token" : "0x60023fd",
  894. "native_offset" : "0x0",
  895. "filename" : "mscorlib.dll",
  896. "sizeofimage" : "0x470000",
  897. "timestamp" : "0xe8f31350",
  898. "il_offset" : "0x00000"
  899. }
  900. ,
  901. {
  902. "is_managed" : "true",
  903. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  904. "token" : "0x6001f25",
  905. "native_offset" : "0x0",
  906. "filename" : "mscorlib.dll",
  907. "sizeofimage" : "0x470000",
  908. "timestamp" : "0xe8f31350",
  909. "il_offset" : "0x00071"
  910. }
  911. ,
  912. {
  913. "is_managed" : "true",
  914. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  915. "token" : "0x6001f23",
  916. "native_offset" : "0x0",
  917. "filename" : "mscorlib.dll",
  918. "sizeofimage" : "0x470000",
  919. "timestamp" : "0xe8f31350",
  920. "il_offset" : "0x00000"
  921. }
  922. ,
  923. {
  924. "is_managed" : "true",
  925. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  926. "token" : "0x6002466",
  927. "native_offset" : "0x0",
  928. "filename" : "mscorlib.dll",
  929. "sizeofimage" : "0x470000",
  930. "timestamp" : "0xe8f31350",
  931. "il_offset" : "0x00034"
  932. }
  933. ,
  934. {
  935. "is_managed" : "true",
  936. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  937. "token" : "0x60023fc",
  938. "native_offset" : "0x0",
  939. "filename" : "mscorlib.dll",
  940. "sizeofimage" : "0x470000",
  941. "timestamp" : "0xe8f31350",
  942. "il_offset" : "0x0004a"
  943. }
  944. ,
  945. {
  946. "is_managed" : "true",
  947. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  948. "token" : "0x6002547",
  949. "native_offset" : "0x0",
  950. "filename" : "mscorlib.dll",
  951. "sizeofimage" : "0x470000",
  952. "timestamp" : "0xe8f31350",
  953. "il_offset" : "0x00014"
  954. }
  955. ,
  956. {
  957. "is_managed" : "true",
  958. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  959. "token" : "0x60014ca",
  960. "native_offset" : "0x0",
  961. "filename" : "Burst.Compiler.IL.dll",
  962. "sizeofimage" : "0x1aa000",
  963. "timestamp" : "0x8ae67a69",
  964. "il_offset" : "0x00000"
  965. }
  966. ,
  967. {
  968. "is_managed" : "true",
  969. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  970. "token" : "0x6000bdf",
  971. "native_offset" : "0x0",
  972. "filename" : "Burst.Compiler.IL.dll",
  973. "sizeofimage" : "0x1aa000",
  974. "timestamp" : "0x8ae67a69",
  975. "il_offset" : "0x000f5"
  976. }
  977. ,
  978. {
  979. "is_managed" : "true",
  980. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  981. "token" : "0x6001f7d",
  982. "native_offset" : "0x0",
  983. "filename" : "mscorlib.dll",
  984. "sizeofimage" : "0x470000",
  985. "timestamp" : "0xe8f31350",
  986. "il_offset" : "0x00014"
  987. }
  988. ,
  989. {
  990. "is_managed" : "true",
  991. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  992. "token" : "0x6001f25",
  993. "native_offset" : "0x0",
  994. "filename" : "mscorlib.dll",
  995. "sizeofimage" : "0x470000",
  996. "timestamp" : "0xe8f31350",
  997. "il_offset" : "0x00071"
  998. }
  999. ,
  1000. {
  1001. "is_managed" : "true",
  1002. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1003. "token" : "0x6001f23",
  1004. "native_offset" : "0x0",
  1005. "filename" : "mscorlib.dll",
  1006. "sizeofimage" : "0x470000",
  1007. "timestamp" : "0xe8f31350",
  1008. "il_offset" : "0x00000"
  1009. }
  1010. ,
  1011. {
  1012. "is_managed" : "true",
  1013. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1014. "token" : "0x6001f22",
  1015. "native_offset" : "0x0",
  1016. "filename" : "mscorlib.dll",
  1017. "sizeofimage" : "0x470000",
  1018. "timestamp" : "0xe8f31350",
  1019. "il_offset" : "0x0002b"
  1020. }
  1021. ,
  1022. {
  1023. "is_managed" : "true",
  1024. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1025. "token" : "0x6001f7f",
  1026. "native_offset" : "0x0",
  1027. "filename" : "mscorlib.dll",
  1028. "sizeofimage" : "0x470000",
  1029. "timestamp" : "0xe8f31350",
  1030. "il_offset" : "0x00008"
  1031. }
  1032. ,
  1033. {
  1034. "is_managed" : "true",
  1035. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1036. "token" : "0x00000",
  1037. "native_offset" : "0x0",
  1038. "filename" : "mscorlib.dll",
  1039. "sizeofimage" : "0x470000",
  1040. "timestamp" : "0xe8f31350",
  1041. "il_offset" : "0x00065"
  1042. }
  1043. ],
  1044. "unmanaged_frames" : [
  1045. {
  1046. "is_managed" : "false",
  1047. "native_address" : "0x17f4452c4",
  1048. "native_offset" : "0x00000"
  1049. }
  1050. ,
  1051. {
  1052. "is_managed" : "false",
  1053. "native_address" : "0x17f57c63c",
  1054. "native_offset" : "0x00000"
  1055. }
  1056. ,
  1057. {
  1058. "is_managed" : "false",
  1059. "native_address" : "0x17f57c998",
  1060. "native_offset" : "0x00000"
  1061. }
  1062. ,
  1063. {
  1064. "is_managed" : "false",
  1065. "native_address" : "0x17f57c760",
  1066. "native_offset" : "0x00000"
  1067. }
  1068. ,
  1069. {
  1070. "is_managed" : "false",
  1071. "native_address" : "0x17f4864f4",
  1072. "native_offset" : "0x00000"
  1073. }
  1074. ,
  1075. {
  1076. "is_managed" : "false",
  1077. "native_address" : "0x186292e04",
  1078. "native_offset" : "0x00000"
  1079. }
  1080. ,
  1081. {
  1082. "is_managed" : "false",
  1083. "native_address" : "0x18625c894",
  1084. "native_offset" : "0x00000"
  1085. }
  1086. ,
  1087. {
  1088. "is_managed" : "false",
  1089. "native_address" : "0x17f5b7f9c",
  1090. "native_offset" : "0x00000"
  1091. }
  1092. ,
  1093. {
  1094. "is_managed" : "false",
  1095. "native_address" : "0x17f5b6d4c",
  1096. "native_offset" : "0x00000"
  1097. }
  1098. ,
  1099. {
  1100. "is_managed" : "true",
  1101. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1102. "token" : "0x00000",
  1103. "native_offset" : "0x0",
  1104. "filename" : "mscorlib.dll",
  1105. "sizeofimage" : "0x470000",
  1106. "timestamp" : "0xe8f31350",
  1107. "il_offset" : "0x00000"
  1108. }
  1109. ,
  1110. {
  1111. "is_managed" : "true",
  1112. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1113. "token" : "0x60001a2",
  1114. "native_offset" : "0x0",
  1115. "filename" : "Burst.Compiler.IL.dll",
  1116. "sizeofimage" : "0x1aa000",
  1117. "timestamp" : "0x8ae67a69",
  1118. "il_offset" : "0x00000"
  1119. }
  1120. ,
  1121. {
  1122. "is_managed" : "true",
  1123. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1124. "token" : "0x6000eae",
  1125. "native_offset" : "0x0",
  1126. "filename" : "Burst.Compiler.IL.dll",
  1127. "sizeofimage" : "0x1aa000",
  1128. "timestamp" : "0x8ae67a69",
  1129. "il_offset" : "0x00000"
  1130. }
  1131. ,
  1132. {
  1133. "is_managed" : "true",
  1134. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1135. "token" : "0x6000be5",
  1136. "native_offset" : "0x0",
  1137. "filename" : "Burst.Compiler.IL.dll",
  1138. "sizeofimage" : "0x1aa000",
  1139. "timestamp" : "0x8ae67a69",
  1140. "il_offset" : "0x00000"
  1141. }
  1142. ,
  1143. {
  1144. "is_managed" : "true",
  1145. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1146. "token" : "0x6000be5",
  1147. "native_offset" : "0x0",
  1148. "filename" : "Burst.Compiler.IL.dll",
  1149. "sizeofimage" : "0x1aa000",
  1150. "timestamp" : "0x8ae67a69",
  1151. "il_offset" : "0x00000"
  1152. }
  1153. ,
  1154. {
  1155. "is_managed" : "true",
  1156. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1157. "token" : "0x6000be5",
  1158. "native_offset" : "0x0",
  1159. "filename" : "Burst.Compiler.IL.dll",
  1160. "sizeofimage" : "0x1aa000",
  1161. "timestamp" : "0x8ae67a69",
  1162. "il_offset" : "0x00000"
  1163. }
  1164. ,
  1165. {
  1166. "is_managed" : "true",
  1167. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1168. "token" : "0x6000be4",
  1169. "native_offset" : "0x0",
  1170. "filename" : "Burst.Compiler.IL.dll",
  1171. "sizeofimage" : "0x1aa000",
  1172. "timestamp" : "0x8ae67a69",
  1173. "il_offset" : "0x00000"
  1174. }
  1175. ,
  1176. {
  1177. "is_managed" : "true",
  1178. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1179. "token" : "0x60014ad",
  1180. "native_offset" : "0x0",
  1181. "filename" : "Burst.Compiler.IL.dll",
  1182. "sizeofimage" : "0x1aa000",
  1183. "timestamp" : "0x8ae67a69",
  1184. "il_offset" : "0x00000"
  1185. }
  1186. ,
  1187. {
  1188. "is_managed" : "true",
  1189. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1190. "token" : "0x60016b5",
  1191. "native_offset" : "0x0",
  1192. "filename" : "Burst.Compiler.IL.dll",
  1193. "sizeofimage" : "0x1aa000",
  1194. "timestamp" : "0x8ae67a69",
  1195. "il_offset" : "0x00000"
  1196. }
  1197. ,
  1198. {
  1199. "is_managed" : "true",
  1200. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1201. "token" : "0x600469b",
  1202. "native_offset" : "0x0",
  1203. "filename" : "mscorlib.dll",
  1204. "sizeofimage" : "0x470000",
  1205. "timestamp" : "0xe8f31350",
  1206. "il_offset" : "0x00000"
  1207. }
  1208. ,
  1209. {
  1210. "is_managed" : "true",
  1211. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1212. "token" : "0x60014b6",
  1213. "native_offset" : "0x0",
  1214. "filename" : "Burst.Compiler.IL.dll",
  1215. "sizeofimage" : "0x1aa000",
  1216. "timestamp" : "0x8ae67a69",
  1217. "il_offset" : "0x00000"
  1218. }
  1219. ,
  1220. {
  1221. "is_managed" : "true",
  1222. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1223. "token" : "0x6002300",
  1224. "native_offset" : "0x0",
  1225. "filename" : "mscorlib.dll",
  1226. "sizeofimage" : "0x470000",
  1227. "timestamp" : "0xe8f31350",
  1228. "il_offset" : "0x00000"
  1229. }
  1230. ,
  1231. {
  1232. "is_managed" : "true",
  1233. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1234. "token" : "0x60023fa",
  1235. "native_offset" : "0x0",
  1236. "filename" : "mscorlib.dll",
  1237. "sizeofimage" : "0x470000",
  1238. "timestamp" : "0xe8f31350",
  1239. "il_offset" : "0x00000"
  1240. }
  1241. ,
  1242. {
  1243. "is_managed" : "true",
  1244. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1245. "token" : "0x60023fd",
  1246. "native_offset" : "0x0",
  1247. "filename" : "mscorlib.dll",
  1248. "sizeofimage" : "0x470000",
  1249. "timestamp" : "0xe8f31350",
  1250. "il_offset" : "0x00000"
  1251. }
  1252. ,
  1253. {
  1254. "is_managed" : "true",
  1255. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1256. "token" : "0x6001f25",
  1257. "native_offset" : "0x0",
  1258. "filename" : "mscorlib.dll",
  1259. "sizeofimage" : "0x470000",
  1260. "timestamp" : "0xe8f31350",
  1261. "il_offset" : "0x00000"
  1262. }
  1263. ,
  1264. {
  1265. "is_managed" : "true",
  1266. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1267. "token" : "0x6001f23",
  1268. "native_offset" : "0x0",
  1269. "filename" : "mscorlib.dll",
  1270. "sizeofimage" : "0x470000",
  1271. "timestamp" : "0xe8f31350",
  1272. "il_offset" : "0x00000"
  1273. }
  1274. ,
  1275. {
  1276. "is_managed" : "true",
  1277. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1278. "token" : "0x6002466",
  1279. "native_offset" : "0x0",
  1280. "filename" : "mscorlib.dll",
  1281. "sizeofimage" : "0x470000",
  1282. "timestamp" : "0xe8f31350",
  1283. "il_offset" : "0x00000"
  1284. }
  1285. ,
  1286. {
  1287. "is_managed" : "true",
  1288. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1289. "token" : "0x60023fc",
  1290. "native_offset" : "0x0",
  1291. "filename" : "mscorlib.dll",
  1292. "sizeofimage" : "0x470000",
  1293. "timestamp" : "0xe8f31350",
  1294. "il_offset" : "0x00000"
  1295. }
  1296. ,
  1297. {
  1298. "is_managed" : "true",
  1299. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1300. "token" : "0x6002547",
  1301. "native_offset" : "0x0",
  1302. "filename" : "mscorlib.dll",
  1303. "sizeofimage" : "0x470000",
  1304. "timestamp" : "0xe8f31350",
  1305. "il_offset" : "0x00000"
  1306. }
  1307. ,
  1308. {
  1309. "is_managed" : "true",
  1310. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1311. "token" : "0x60014ca",
  1312. "native_offset" : "0x0",
  1313. "filename" : "Burst.Compiler.IL.dll",
  1314. "sizeofimage" : "0x1aa000",
  1315. "timestamp" : "0x8ae67a69",
  1316. "il_offset" : "0x00000"
  1317. }
  1318. ,
  1319. {
  1320. "is_managed" : "true",
  1321. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1322. "token" : "0x6000bdf",
  1323. "native_offset" : "0x0",
  1324. "filename" : "Burst.Compiler.IL.dll",
  1325. "sizeofimage" : "0x1aa000",
  1326. "timestamp" : "0x8ae67a69",
  1327. "il_offset" : "0x00000"
  1328. }
  1329. ,
  1330. {
  1331. "is_managed" : "true",
  1332. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1333. "token" : "0x6001f7d",
  1334. "native_offset" : "0x0",
  1335. "filename" : "mscorlib.dll",
  1336. "sizeofimage" : "0x470000",
  1337. "timestamp" : "0xe8f31350",
  1338. "il_offset" : "0x00000"
  1339. }
  1340. ,
  1341. {
  1342. "is_managed" : "true",
  1343. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1344. "token" : "0x6001f25",
  1345. "native_offset" : "0x0",
  1346. "filename" : "mscorlib.dll",
  1347. "sizeofimage" : "0x470000",
  1348. "timestamp" : "0xe8f31350",
  1349. "il_offset" : "0x00000"
  1350. }
  1351. ,
  1352. {
  1353. "is_managed" : "true",
  1354. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1355. "token" : "0x6001f23",
  1356. "native_offset" : "0x0",
  1357. "filename" : "mscorlib.dll",
  1358. "sizeofimage" : "0x470000",
  1359. "timestamp" : "0xe8f31350",
  1360. "il_offset" : "0x00000"
  1361. }
  1362. ,
  1363. {
  1364. "is_managed" : "true",
  1365. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1366. "token" : "0x6001f22",
  1367. "native_offset" : "0x0",
  1368. "filename" : "mscorlib.dll",
  1369. "sizeofimage" : "0x470000",
  1370. "timestamp" : "0xe8f31350",
  1371. "il_offset" : "0x00000"
  1372. }
  1373. ,
  1374. {
  1375. "is_managed" : "true",
  1376. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1377. "token" : "0x6001f7f",
  1378. "native_offset" : "0x0",
  1379. "filename" : "mscorlib.dll",
  1380. "sizeofimage" : "0x470000",
  1381. "timestamp" : "0xe8f31350",
  1382. "il_offset" : "0x00000"
  1383. }
  1384. ,
  1385. {
  1386. "is_managed" : "true",
  1387. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1388. "token" : "0x00000",
  1389. "native_offset" : "0x0",
  1390. "filename" : "mscorlib.dll",
  1391. "sizeofimage" : "0x470000",
  1392. "timestamp" : "0xe8f31350",
  1393. "il_offset" : "0x00000"
  1394. }
  1395. ,
  1396. {
  1397. "is_managed" : "false",
  1398. "native_address" : "0x17f3d4eac",
  1399. "native_offset" : "0x00000"
  1400. }
  1401. ,
  1402. {
  1403. "is_managed" : "false",
  1404. "native_address" : "0x17f55b370",
  1405. "native_offset" : "0x00000"
  1406. }
  1407. ,
  1408. {
  1409. "is_managed" : "false",
  1410. "native_address" : "0x17f55cf80",
  1411. "native_offset" : "0x00000"
  1412. }
  1413. ,
  1414. {
  1415. "is_managed" : "false",
  1416. "native_address" : "0x17f57d49c",
  1417. "native_offset" : "0x00000"
  1418. }
  1419. ,
  1420. {
  1421. "is_managed" : "false",
  1422. "native_address" : "0x17f57d254",
  1423. "native_offset" : "0x00000"
  1424. }
  1425. ,
  1426. {
  1427. "is_managed" : "false",
  1428. "native_address" : "0x17f5fcd28",
  1429. "native_offset" : "0x00000"
  1430. }
  1431. ,
  1432. {
  1433. "is_managed" : "false",
  1434. "native_address" : "0x17f5fccb0",
  1435. "native_offset" : "0x00000"
  1436. }
  1437. ,
  1438. {
  1439. "is_managed" : "false",
  1440. "native_address" : "0x18625c2e4",
  1441. "native_offset" : "0x00000"
  1442. }
  1443. ,
  1444. {
  1445. "is_managed" : "false",
  1446. "native_address" : "0x1862570fc",
  1447. "native_offset" : "0x00000"
  1448. }
  1449. ]
  1450. },
  1451. {
  1452. "is_managed" : false,
  1453. "offset_free_hash" : "0x0",
  1454. "offset_rich_hash" : "0x0",
  1455. "crashed" : false,
  1456. "native_thread_id" : "0x347ac3000",
  1457. "thread_info_addr" : "0x151d0de00",
  1458. "thread_name" : "Thread Pool Worker",
  1459. "ctx" : {
  1460. "IP" : "0x18621aee8",
  1461. "SP" : "0x347ac2db0",
  1462. "BP" : "0x347ac2e50"
  1463. },
  1464. "unmanaged_frames" : [
  1465. {
  1466. "is_managed" : "false",
  1467. "native_address" : "0x17f4452c4",
  1468. "native_offset" : "0x00000"
  1469. }
  1470. ,
  1471. {
  1472. "is_managed" : "false",
  1473. "native_address" : "0x17f57c63c",
  1474. "native_offset" : "0x00000"
  1475. }
  1476. ,
  1477. {
  1478. "is_managed" : "false",
  1479. "native_address" : "0x17f57c998",
  1480. "native_offset" : "0x00000"
  1481. }
  1482. ,
  1483. {
  1484. "is_managed" : "false",
  1485. "native_address" : "0x17f57c760",
  1486. "native_offset" : "0x00000"
  1487. }
  1488. ,
  1489. {
  1490. "is_managed" : "false",
  1491. "native_address" : "0x17f4864f4",
  1492. "native_offset" : "0x00000"
  1493. }
  1494. ,
  1495. {
  1496. "is_managed" : "false",
  1497. "native_address" : "0x186292e04",
  1498. "native_offset" : "0x00000"
  1499. }
  1500. ,
  1501. {
  1502. "is_managed" : "false",
  1503. "native_address" : "0x17f4d52e8",
  1504. "native_offset" : "0x00000"
  1505. }
  1506. ,
  1507. {
  1508. "is_managed" : "false",
  1509. "native_address" : "0x17f57d3a8",
  1510. "native_offset" : "0x00000"
  1511. }
  1512. ,
  1513. {
  1514. "is_managed" : "false",
  1515. "native_address" : "0x17f57d254",
  1516. "native_offset" : "0x00000"
  1517. }
  1518. ,
  1519. {
  1520. "is_managed" : "false",
  1521. "native_address" : "0x17f5fcd28",
  1522. "native_offset" : "0x00000"
  1523. }
  1524. ,
  1525. {
  1526. "is_managed" : "false",
  1527. "native_address" : "0x17f5fccb0",
  1528. "native_offset" : "0x00000"
  1529. }
  1530. ,
  1531. {
  1532. "is_managed" : "false",
  1533. "native_address" : "0x18625c2e4",
  1534. "native_offset" : "0x00000"
  1535. }
  1536. ,
  1537. {
  1538. "is_managed" : "false",
  1539. "native_address" : "0x1862570fc",
  1540. "native_offset" : "0x00000"
  1541. }
  1542. ]
  1543. },
  1544. {
  1545. "is_managed" : true,
  1546. "offset_free_hash" : "0x2268b0010c",
  1547. "offset_rich_hash" : "0x2268b0077a",
  1548. "crashed" : false,
  1549. "native_thread_id" : "0x36a98f000",
  1550. "thread_info_addr" : "0x352c5d600",
  1551. "thread_name" : "Burst-CompilerThread-8",
  1552. "ctx" : {
  1553. "IP" : "0x18621e6ec",
  1554. "SP" : "0x36a98ce40",
  1555. "BP" : "0x36a98ced0"
  1556. },
  1557. "managed_frames" : [
  1558. {
  1559. "is_managed" : "false",
  1560. "native_address" : "unregistered"
  1561. }
  1562. ,
  1563. {
  1564. "is_managed" : "true",
  1565. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1566. "token" : "0x00000",
  1567. "native_offset" : "0x0",
  1568. "filename" : "mscorlib.dll",
  1569. "sizeofimage" : "0x470000",
  1570. "timestamp" : "0xe8f31350",
  1571. "il_offset" : "0xffffffff"
  1572. }
  1573. ,
  1574. {
  1575. "is_managed" : "true",
  1576. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1577. "token" : "0x60001a3",
  1578. "native_offset" : "0x0",
  1579. "filename" : "Burst.Compiler.IL.dll",
  1580. "sizeofimage" : "0x1aa000",
  1581. "timestamp" : "0x8ae67a69",
  1582. "il_offset" : "0x00009"
  1583. }
  1584. ,
  1585. {
  1586. "is_managed" : "true",
  1587. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1588. "token" : "0x6000be5",
  1589. "native_offset" : "0x0",
  1590. "filename" : "Burst.Compiler.IL.dll",
  1591. "sizeofimage" : "0x1aa000",
  1592. "timestamp" : "0x8ae67a69",
  1593. "il_offset" : "0x001d3"
  1594. }
  1595. ,
  1596. {
  1597. "is_managed" : "true",
  1598. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1599. "token" : "0x6000be4",
  1600. "native_offset" : "0x0",
  1601. "filename" : "Burst.Compiler.IL.dll",
  1602. "sizeofimage" : "0x1aa000",
  1603. "timestamp" : "0x8ae67a69",
  1604. "il_offset" : "0x00071"
  1605. }
  1606. ,
  1607. {
  1608. "is_managed" : "true",
  1609. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1610. "token" : "0x60014ad",
  1611. "native_offset" : "0x0",
  1612. "filename" : "Burst.Compiler.IL.dll",
  1613. "sizeofimage" : "0x1aa000",
  1614. "timestamp" : "0x8ae67a69",
  1615. "il_offset" : "0x0005e"
  1616. }
  1617. ,
  1618. {
  1619. "is_managed" : "true",
  1620. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1621. "token" : "0x60016b5",
  1622. "native_offset" : "0x0",
  1623. "filename" : "Burst.Compiler.IL.dll",
  1624. "sizeofimage" : "0x1aa000",
  1625. "timestamp" : "0x8ae67a69",
  1626. "il_offset" : "0x00058"
  1627. }
  1628. ,
  1629. {
  1630. "is_managed" : "true",
  1631. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1632. "token" : "0x600469b",
  1633. "native_offset" : "0x0",
  1634. "filename" : "mscorlib.dll",
  1635. "sizeofimage" : "0x470000",
  1636. "timestamp" : "0xe8f31350",
  1637. "il_offset" : "0x0002c"
  1638. }
  1639. ,
  1640. {
  1641. "is_managed" : "true",
  1642. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1643. "token" : "0x60014b6",
  1644. "native_offset" : "0x0",
  1645. "filename" : "Burst.Compiler.IL.dll",
  1646. "sizeofimage" : "0x1aa000",
  1647. "timestamp" : "0x8ae67a69",
  1648. "il_offset" : "0x0001c"
  1649. }
  1650. ,
  1651. {
  1652. "is_managed" : "true",
  1653. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1654. "token" : "0x6002300",
  1655. "native_offset" : "0x0",
  1656. "filename" : "mscorlib.dll",
  1657. "sizeofimage" : "0x470000",
  1658. "timestamp" : "0xe8f31350",
  1659. "il_offset" : "0x0000f"
  1660. }
  1661. ,
  1662. {
  1663. "is_managed" : "true",
  1664. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1665. "token" : "0x60023fa",
  1666. "native_offset" : "0x0",
  1667. "filename" : "mscorlib.dll",
  1668. "sizeofimage" : "0x470000",
  1669. "timestamp" : "0xe8f31350",
  1670. "il_offset" : "0x00000"
  1671. }
  1672. ,
  1673. {
  1674. "is_managed" : "true",
  1675. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1676. "token" : "0x60023fd",
  1677. "native_offset" : "0x0",
  1678. "filename" : "mscorlib.dll",
  1679. "sizeofimage" : "0x470000",
  1680. "timestamp" : "0xe8f31350",
  1681. "il_offset" : "0x00000"
  1682. }
  1683. ,
  1684. {
  1685. "is_managed" : "true",
  1686. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1687. "token" : "0x6001f25",
  1688. "native_offset" : "0x0",
  1689. "filename" : "mscorlib.dll",
  1690. "sizeofimage" : "0x470000",
  1691. "timestamp" : "0xe8f31350",
  1692. "il_offset" : "0x00071"
  1693. }
  1694. ,
  1695. {
  1696. "is_managed" : "true",
  1697. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1698. "token" : "0x6001f23",
  1699. "native_offset" : "0x0",
  1700. "filename" : "mscorlib.dll",
  1701. "sizeofimage" : "0x470000",
  1702. "timestamp" : "0xe8f31350",
  1703. "il_offset" : "0x00000"
  1704. }
  1705. ,
  1706. {
  1707. "is_managed" : "true",
  1708. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1709. "token" : "0x6002466",
  1710. "native_offset" : "0x0",
  1711. "filename" : "mscorlib.dll",
  1712. "sizeofimage" : "0x470000",
  1713. "timestamp" : "0xe8f31350",
  1714. "il_offset" : "0x00034"
  1715. }
  1716. ,
  1717. {
  1718. "is_managed" : "true",
  1719. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1720. "token" : "0x60023fc",
  1721. "native_offset" : "0x0",
  1722. "filename" : "mscorlib.dll",
  1723. "sizeofimage" : "0x470000",
  1724. "timestamp" : "0xe8f31350",
  1725. "il_offset" : "0x0004a"
  1726. }
  1727. ,
  1728. {
  1729. "is_managed" : "true",
  1730. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1731. "token" : "0x6002547",
  1732. "native_offset" : "0x0",
  1733. "filename" : "mscorlib.dll",
  1734. "sizeofimage" : "0x470000",
  1735. "timestamp" : "0xe8f31350",
  1736. "il_offset" : "0x00014"
  1737. }
  1738. ,
  1739. {
  1740. "is_managed" : "true",
  1741. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1742. "token" : "0x60014ca",
  1743. "native_offset" : "0x0",
  1744. "filename" : "Burst.Compiler.IL.dll",
  1745. "sizeofimage" : "0x1aa000",
  1746. "timestamp" : "0x8ae67a69",
  1747. "il_offset" : "0x00000"
  1748. }
  1749. ,
  1750. {
  1751. "is_managed" : "true",
  1752. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1753. "token" : "0x6000bdf",
  1754. "native_offset" : "0x0",
  1755. "filename" : "Burst.Compiler.IL.dll",
  1756. "sizeofimage" : "0x1aa000",
  1757. "timestamp" : "0x8ae67a69",
  1758. "il_offset" : "0x000f5"
  1759. }
  1760. ,
  1761. {
  1762. "is_managed" : "true",
  1763. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1764. "token" : "0x6001f7d",
  1765. "native_offset" : "0x0",
  1766. "filename" : "mscorlib.dll",
  1767. "sizeofimage" : "0x470000",
  1768. "timestamp" : "0xe8f31350",
  1769. "il_offset" : "0x00014"
  1770. }
  1771. ,
  1772. {
  1773. "is_managed" : "true",
  1774. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1775. "token" : "0x6001f25",
  1776. "native_offset" : "0x0",
  1777. "filename" : "mscorlib.dll",
  1778. "sizeofimage" : "0x470000",
  1779. "timestamp" : "0xe8f31350",
  1780. "il_offset" : "0x00071"
  1781. }
  1782. ,
  1783. {
  1784. "is_managed" : "true",
  1785. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1786. "token" : "0x6001f23",
  1787. "native_offset" : "0x0",
  1788. "filename" : "mscorlib.dll",
  1789. "sizeofimage" : "0x470000",
  1790. "timestamp" : "0xe8f31350",
  1791. "il_offset" : "0x00000"
  1792. }
  1793. ,
  1794. {
  1795. "is_managed" : "true",
  1796. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1797. "token" : "0x6001f22",
  1798. "native_offset" : "0x0",
  1799. "filename" : "mscorlib.dll",
  1800. "sizeofimage" : "0x470000",
  1801. "timestamp" : "0xe8f31350",
  1802. "il_offset" : "0x0002b"
  1803. }
  1804. ,
  1805. {
  1806. "is_managed" : "true",
  1807. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1808. "token" : "0x6001f7f",
  1809. "native_offset" : "0x0",
  1810. "filename" : "mscorlib.dll",
  1811. "sizeofimage" : "0x470000",
  1812. "timestamp" : "0xe8f31350",
  1813. "il_offset" : "0x00008"
  1814. }
  1815. ,
  1816. {
  1817. "is_managed" : "true",
  1818. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1819. "token" : "0x00000",
  1820. "native_offset" : "0x0",
  1821. "filename" : "mscorlib.dll",
  1822. "sizeofimage" : "0x470000",
  1823. "timestamp" : "0xe8f31350",
  1824. "il_offset" : "0x00065"
  1825. }
  1826. ],
  1827. "unmanaged_frames" : [
  1828. {
  1829. "is_managed" : "false",
  1830. "native_address" : "0x17f4452c4",
  1831. "native_offset" : "0x00000"
  1832. }
  1833. ,
  1834. {
  1835. "is_managed" : "false",
  1836. "native_address" : "0x17f57c63c",
  1837. "native_offset" : "0x00000"
  1838. }
  1839. ,
  1840. {
  1841. "is_managed" : "false",
  1842. "native_address" : "0x17f57c998",
  1843. "native_offset" : "0x00000"
  1844. }
  1845. ,
  1846. {
  1847. "is_managed" : "false",
  1848. "native_address" : "0x17f57c760",
  1849. "native_offset" : "0x00000"
  1850. }
  1851. ,
  1852. {
  1853. "is_managed" : "false",
  1854. "native_address" : "0x17f4864f4",
  1855. "native_offset" : "0x00000"
  1856. }
  1857. ,
  1858. {
  1859. "is_managed" : "false",
  1860. "native_address" : "0x186292e04",
  1861. "native_offset" : "0x00000"
  1862. }
  1863. ,
  1864. {
  1865. "is_managed" : "false",
  1866. "native_address" : "0x18625c894",
  1867. "native_offset" : "0x00000"
  1868. }
  1869. ,
  1870. {
  1871. "is_managed" : "false",
  1872. "native_address" : "0x17f5b7f9c",
  1873. "native_offset" : "0x00000"
  1874. }
  1875. ,
  1876. {
  1877. "is_managed" : "false",
  1878. "native_address" : "0x17f5b6d4c",
  1879. "native_offset" : "0x00000"
  1880. }
  1881. ,
  1882. {
  1883. "is_managed" : "true",
  1884. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1885. "token" : "0x00000",
  1886. "native_offset" : "0x0",
  1887. "filename" : "mscorlib.dll",
  1888. "sizeofimage" : "0x470000",
  1889. "timestamp" : "0xe8f31350",
  1890. "il_offset" : "0x00000"
  1891. }
  1892. ,
  1893. {
  1894. "is_managed" : "true",
  1895. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1896. "token" : "0x60001a3",
  1897. "native_offset" : "0x0",
  1898. "filename" : "Burst.Compiler.IL.dll",
  1899. "sizeofimage" : "0x1aa000",
  1900. "timestamp" : "0x8ae67a69",
  1901. "il_offset" : "0x00000"
  1902. }
  1903. ,
  1904. {
  1905. "is_managed" : "true",
  1906. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1907. "token" : "0x6000be5",
  1908. "native_offset" : "0x0",
  1909. "filename" : "Burst.Compiler.IL.dll",
  1910. "sizeofimage" : "0x1aa000",
  1911. "timestamp" : "0x8ae67a69",
  1912. "il_offset" : "0x00000"
  1913. }
  1914. ,
  1915. {
  1916. "is_managed" : "true",
  1917. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1918. "token" : "0x6000be4",
  1919. "native_offset" : "0x0",
  1920. "filename" : "Burst.Compiler.IL.dll",
  1921. "sizeofimage" : "0x1aa000",
  1922. "timestamp" : "0x8ae67a69",
  1923. "il_offset" : "0x00000"
  1924. }
  1925. ,
  1926. {
  1927. "is_managed" : "true",
  1928. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1929. "token" : "0x60014ad",
  1930. "native_offset" : "0x0",
  1931. "filename" : "Burst.Compiler.IL.dll",
  1932. "sizeofimage" : "0x1aa000",
  1933. "timestamp" : "0x8ae67a69",
  1934. "il_offset" : "0x00000"
  1935. }
  1936. ,
  1937. {
  1938. "is_managed" : "true",
  1939. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1940. "token" : "0x60016b5",
  1941. "native_offset" : "0x0",
  1942. "filename" : "Burst.Compiler.IL.dll",
  1943. "sizeofimage" : "0x1aa000",
  1944. "timestamp" : "0x8ae67a69",
  1945. "il_offset" : "0x00000"
  1946. }
  1947. ,
  1948. {
  1949. "is_managed" : "true",
  1950. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1951. "token" : "0x600469b",
  1952. "native_offset" : "0x0",
  1953. "filename" : "mscorlib.dll",
  1954. "sizeofimage" : "0x470000",
  1955. "timestamp" : "0xe8f31350",
  1956. "il_offset" : "0x00000"
  1957. }
  1958. ,
  1959. {
  1960. "is_managed" : "true",
  1961. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  1962. "token" : "0x60014b6",
  1963. "native_offset" : "0x0",
  1964. "filename" : "Burst.Compiler.IL.dll",
  1965. "sizeofimage" : "0x1aa000",
  1966. "timestamp" : "0x8ae67a69",
  1967. "il_offset" : "0x00000"
  1968. }
  1969. ,
  1970. {
  1971. "is_managed" : "true",
  1972. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1973. "token" : "0x6002300",
  1974. "native_offset" : "0x0",
  1975. "filename" : "mscorlib.dll",
  1976. "sizeofimage" : "0x470000",
  1977. "timestamp" : "0xe8f31350",
  1978. "il_offset" : "0x00000"
  1979. }
  1980. ,
  1981. {
  1982. "is_managed" : "true",
  1983. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1984. "token" : "0x60023fa",
  1985. "native_offset" : "0x0",
  1986. "filename" : "mscorlib.dll",
  1987. "sizeofimage" : "0x470000",
  1988. "timestamp" : "0xe8f31350",
  1989. "il_offset" : "0x00000"
  1990. }
  1991. ,
  1992. {
  1993. "is_managed" : "true",
  1994. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  1995. "token" : "0x60023fd",
  1996. "native_offset" : "0x0",
  1997. "filename" : "mscorlib.dll",
  1998. "sizeofimage" : "0x470000",
  1999. "timestamp" : "0xe8f31350",
  2000. "il_offset" : "0x00000"
  2001. }
  2002. ,
  2003. {
  2004. "is_managed" : "true",
  2005. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2006. "token" : "0x6001f25",
  2007. "native_offset" : "0x0",
  2008. "filename" : "mscorlib.dll",
  2009. "sizeofimage" : "0x470000",
  2010. "timestamp" : "0xe8f31350",
  2011. "il_offset" : "0x00000"
  2012. }
  2013. ,
  2014. {
  2015. "is_managed" : "true",
  2016. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2017. "token" : "0x6001f23",
  2018. "native_offset" : "0x0",
  2019. "filename" : "mscorlib.dll",
  2020. "sizeofimage" : "0x470000",
  2021. "timestamp" : "0xe8f31350",
  2022. "il_offset" : "0x00000"
  2023. }
  2024. ,
  2025. {
  2026. "is_managed" : "true",
  2027. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2028. "token" : "0x6002466",
  2029. "native_offset" : "0x0",
  2030. "filename" : "mscorlib.dll",
  2031. "sizeofimage" : "0x470000",
  2032. "timestamp" : "0xe8f31350",
  2033. "il_offset" : "0x00000"
  2034. }
  2035. ,
  2036. {
  2037. "is_managed" : "true",
  2038. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2039. "token" : "0x60023fc",
  2040. "native_offset" : "0x0",
  2041. "filename" : "mscorlib.dll",
  2042. "sizeofimage" : "0x470000",
  2043. "timestamp" : "0xe8f31350",
  2044. "il_offset" : "0x00000"
  2045. }
  2046. ,
  2047. {
  2048. "is_managed" : "true",
  2049. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2050. "token" : "0x6002547",
  2051. "native_offset" : "0x0",
  2052. "filename" : "mscorlib.dll",
  2053. "sizeofimage" : "0x470000",
  2054. "timestamp" : "0xe8f31350",
  2055. "il_offset" : "0x00000"
  2056. }
  2057. ,
  2058. {
  2059. "is_managed" : "true",
  2060. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  2061. "token" : "0x60014ca",
  2062. "native_offset" : "0x0",
  2063. "filename" : "Burst.Compiler.IL.dll",
  2064. "sizeofimage" : "0x1aa000",
  2065. "timestamp" : "0x8ae67a69",
  2066. "il_offset" : "0x00000"
  2067. }
  2068. ,
  2069. {
  2070. "is_managed" : "true",
  2071. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  2072. "token" : "0x6000bdf",
  2073. "native_offset" : "0x0",
  2074. "filename" : "Burst.Compiler.IL.dll",
  2075. "sizeofimage" : "0x1aa000",
  2076. "timestamp" : "0x8ae67a69",
  2077. "il_offset" : "0x00000"
  2078. }
  2079. ,
  2080. {
  2081. "is_managed" : "true",
  2082. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2083. "token" : "0x6001f7d",
  2084. "native_offset" : "0x0",
  2085. "filename" : "mscorlib.dll",
  2086. "sizeofimage" : "0x470000",
  2087. "timestamp" : "0xe8f31350",
  2088. "il_offset" : "0x00000"
  2089. }
  2090. ,
  2091. {
  2092. "is_managed" : "true",
  2093. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2094. "token" : "0x6001f25",
  2095. "native_offset" : "0x0",
  2096. "filename" : "mscorlib.dll",
  2097. "sizeofimage" : "0x470000",
  2098. "timestamp" : "0xe8f31350",
  2099. "il_offset" : "0x00000"
  2100. }
  2101. ,
  2102. {
  2103. "is_managed" : "true",
  2104. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2105. "token" : "0x6001f23",
  2106. "native_offset" : "0x0",
  2107. "filename" : "mscorlib.dll",
  2108. "sizeofimage" : "0x470000",
  2109. "timestamp" : "0xe8f31350",
  2110. "il_offset" : "0x00000"
  2111. }
  2112. ,
  2113. {
  2114. "is_managed" : "true",
  2115. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2116. "token" : "0x6001f22",
  2117. "native_offset" : "0x0",
  2118. "filename" : "mscorlib.dll",
  2119. "sizeofimage" : "0x470000",
  2120. "timestamp" : "0xe8f31350",
  2121. "il_offset" : "0x00000"
  2122. }
  2123. ,
  2124. {
  2125. "is_managed" : "true",
  2126. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2127. "token" : "0x6001f7f",
  2128. "native_offset" : "0x0",
  2129. "filename" : "mscorlib.dll",
  2130. "sizeofimage" : "0x470000",
  2131. "timestamp" : "0xe8f31350",
  2132. "il_offset" : "0x00000"
  2133. }
  2134. ,
  2135. {
  2136. "is_managed" : "true",
  2137. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2138. "token" : "0x00000",
  2139. "native_offset" : "0x0",
  2140. "filename" : "mscorlib.dll",
  2141. "sizeofimage" : "0x470000",
  2142. "timestamp" : "0xe8f31350",
  2143. "il_offset" : "0x00000"
  2144. }
  2145. ,
  2146. {
  2147. "is_managed" : "false",
  2148. "native_address" : "0x17f3d4eac",
  2149. "native_offset" : "0x00000"
  2150. }
  2151. ,
  2152. {
  2153. "is_managed" : "false",
  2154. "native_address" : "0x17f55b370",
  2155. "native_offset" : "0x00000"
  2156. }
  2157. ,
  2158. {
  2159. "is_managed" : "false",
  2160. "native_address" : "0x17f55cf80",
  2161. "native_offset" : "0x00000"
  2162. }
  2163. ,
  2164. {
  2165. "is_managed" : "false",
  2166. "native_address" : "0x17f57d49c",
  2167. "native_offset" : "0x00000"
  2168. }
  2169. ,
  2170. {
  2171. "is_managed" : "false",
  2172. "native_address" : "0x17f57d254",
  2173. "native_offset" : "0x00000"
  2174. }
  2175. ,
  2176. {
  2177. "is_managed" : "false",
  2178. "native_address" : "0x17f5fcd28",
  2179. "native_offset" : "0x00000"
  2180. }
  2181. ,
  2182. {
  2183. "is_managed" : "false",
  2184. "native_address" : "0x17f5fccb0",
  2185. "native_offset" : "0x00000"
  2186. }
  2187. ,
  2188. {
  2189. "is_managed" : "false",
  2190. "native_address" : "0x18625c2e4",
  2191. "native_offset" : "0x00000"
  2192. }
  2193. ,
  2194. {
  2195. "is_managed" : "false",
  2196. "native_address" : "0x1862570fc",
  2197. "native_offset" : "0x00000"
  2198. }
  2199. ]
  2200. },
  2201. {
  2202. "is_managed" : true,
  2203. "offset_free_hash" : "0x15de3beb4e",
  2204. "offset_rich_hash" : "0x15de3beed3",
  2205. "crashed" : false,
  2206. "native_thread_id" : "0x36ada7000",
  2207. "thread_info_addr" : "0x35ba36c00",
  2208. "thread_name" : "Burst-ProgressReporter",
  2209. "ctx" : {
  2210. "IP" : "0x18621e6ec",
  2211. "SP" : "0x36ada5eb0",
  2212. "BP" : "0x36ada5f40"
  2213. },
  2214. "managed_frames" : [
  2215. {
  2216. "is_managed" : "false",
  2217. "native_address" : "unregistered"
  2218. }
  2219. ,
  2220. {
  2221. "is_managed" : "true",
  2222. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2223. "token" : "0x00000",
  2224. "native_offset" : "0x0",
  2225. "filename" : "mscorlib.dll",
  2226. "sizeofimage" : "0x470000",
  2227. "timestamp" : "0xe8f31350",
  2228. "il_offset" : "0xffffffff"
  2229. }
  2230. ,
  2231. {
  2232. "is_managed" : "true",
  2233. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2234. "token" : "0x6001f5d",
  2235. "native_offset" : "0x0",
  2236. "filename" : "mscorlib.dll",
  2237. "sizeofimage" : "0x470000",
  2238. "timestamp" : "0xe8f31350",
  2239. "il_offset" : "0x0002f"
  2240. }
  2241. ,
  2242. {
  2243. "is_managed" : "true",
  2244. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2245. "token" : "0x6001f50",
  2246. "native_offset" : "0x0",
  2247. "filename" : "mscorlib.dll",
  2248. "sizeofimage" : "0x470000",
  2249. "timestamp" : "0xe8f31350",
  2250. "il_offset" : "0x0000e"
  2251. }
  2252. ,
  2253. {
  2254. "is_managed" : "true",
  2255. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2256. "token" : "0x6001f52",
  2257. "native_offset" : "0x0",
  2258. "filename" : "mscorlib.dll",
  2259. "sizeofimage" : "0x470000",
  2260. "timestamp" : "0xe8f31350",
  2261. "il_offset" : "0x00000"
  2262. }
  2263. ,
  2264. {
  2265. "is_managed" : "true",
  2266. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2267. "token" : "0x6001ea2",
  2268. "native_offset" : "0x0",
  2269. "filename" : "mscorlib.dll",
  2270. "sizeofimage" : "0x470000",
  2271. "timestamp" : "0xe8f31350",
  2272. "il_offset" : "0x0001d"
  2273. }
  2274. ,
  2275. {
  2276. "is_managed" : "true",
  2277. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2278. "token" : "0x6001ea1",
  2279. "native_offset" : "0x0",
  2280. "filename" : "mscorlib.dll",
  2281. "sizeofimage" : "0x470000",
  2282. "timestamp" : "0xe8f31350",
  2283. "il_offset" : "0x000d9"
  2284. }
  2285. ,
  2286. {
  2287. "is_managed" : "true",
  2288. "guid" : "643F6290-C90C-4761-A1C3-44139E338EE0",
  2289. "token" : "0x60026b3",
  2290. "native_offset" : "0x0",
  2291. "filename" : "System.dll",
  2292. "sizeofimage" : "0x29a000",
  2293. "timestamp" : "0xcf1f6901",
  2294. "il_offset" : "0x00067"
  2295. }
  2296. ,
  2297. {
  2298. "is_managed" : "true",
  2299. "guid" : "643F6290-C90C-4761-A1C3-44139E338EE0",
  2300. "token" : "0x60026b2",
  2301. "native_offset" : "0x0",
  2302. "filename" : "System.dll",
  2303. "sizeofimage" : "0x29a000",
  2304. "timestamp" : "0xcf1f6901",
  2305. "il_offset" : "0x00006"
  2306. }
  2307. ,
  2308. {
  2309. "is_managed" : "true",
  2310. "guid" : "643F6290-C90C-4761-A1C3-44139E338EE0",
  2311. "token" : "0x60026ae",
  2312. "native_offset" : "0x0",
  2313. "filename" : "System.dll",
  2314. "sizeofimage" : "0x29a000",
  2315. "timestamp" : "0xcf1f6901",
  2316. "il_offset" : "0x00000"
  2317. }
  2318. ,
  2319. {
  2320. "is_managed" : "true",
  2321. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  2322. "token" : "0x600117f",
  2323. "native_offset" : "0x0",
  2324. "filename" : "Burst.Compiler.IL.dll",
  2325. "sizeofimage" : "0x1aa000",
  2326. "timestamp" : "0x8ae67a69",
  2327. "il_offset" : "0x000c9"
  2328. }
  2329. ,
  2330. {
  2331. "is_managed" : "true",
  2332. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2333. "token" : "0x6001f7d",
  2334. "native_offset" : "0x0",
  2335. "filename" : "mscorlib.dll",
  2336. "sizeofimage" : "0x470000",
  2337. "timestamp" : "0xe8f31350",
  2338. "il_offset" : "0x00014"
  2339. }
  2340. ,
  2341. {
  2342. "is_managed" : "true",
  2343. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2344. "token" : "0x6001f25",
  2345. "native_offset" : "0x0",
  2346. "filename" : "mscorlib.dll",
  2347. "sizeofimage" : "0x470000",
  2348. "timestamp" : "0xe8f31350",
  2349. "il_offset" : "0x00071"
  2350. }
  2351. ,
  2352. {
  2353. "is_managed" : "true",
  2354. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2355. "token" : "0x6001f23",
  2356. "native_offset" : "0x0",
  2357. "filename" : "mscorlib.dll",
  2358. "sizeofimage" : "0x470000",
  2359. "timestamp" : "0xe8f31350",
  2360. "il_offset" : "0x00000"
  2361. }
  2362. ,
  2363. {
  2364. "is_managed" : "true",
  2365. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2366. "token" : "0x6001f22",
  2367. "native_offset" : "0x0",
  2368. "filename" : "mscorlib.dll",
  2369. "sizeofimage" : "0x470000",
  2370. "timestamp" : "0xe8f31350",
  2371. "il_offset" : "0x0002b"
  2372. }
  2373. ,
  2374. {
  2375. "is_managed" : "true",
  2376. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2377. "token" : "0x6001f7f",
  2378. "native_offset" : "0x0",
  2379. "filename" : "mscorlib.dll",
  2380. "sizeofimage" : "0x470000",
  2381. "timestamp" : "0xe8f31350",
  2382. "il_offset" : "0x00008"
  2383. }
  2384. ,
  2385. {
  2386. "is_managed" : "true",
  2387. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2388. "token" : "0x00000",
  2389. "native_offset" : "0x0",
  2390. "filename" : "mscorlib.dll",
  2391. "sizeofimage" : "0x470000",
  2392. "timestamp" : "0xe8f31350",
  2393. "il_offset" : "0x00065"
  2394. }
  2395. ],
  2396. "unmanaged_frames" : [
  2397. {
  2398. "is_managed" : "false",
  2399. "native_address" : "0x17f4452c4",
  2400. "native_offset" : "0x00000"
  2401. }
  2402. ,
  2403. {
  2404. "is_managed" : "false",
  2405. "native_address" : "0x17f57c63c",
  2406. "native_offset" : "0x00000"
  2407. }
  2408. ,
  2409. {
  2410. "is_managed" : "false",
  2411. "native_address" : "0x17f57c998",
  2412. "native_offset" : "0x00000"
  2413. }
  2414. ,
  2415. {
  2416. "is_managed" : "false",
  2417. "native_address" : "0x17f57c760",
  2418. "native_offset" : "0x00000"
  2419. }
  2420. ,
  2421. {
  2422. "is_managed" : "false",
  2423. "native_address" : "0x17f4864f4",
  2424. "native_offset" : "0x00000"
  2425. }
  2426. ,
  2427. {
  2428. "is_managed" : "false",
  2429. "native_address" : "0x186292e04",
  2430. "native_offset" : "0x00000"
  2431. }
  2432. ,
  2433. {
  2434. "is_managed" : "false",
  2435. "native_address" : "0x18625c894",
  2436. "native_offset" : "0x00000"
  2437. }
  2438. ,
  2439. {
  2440. "is_managed" : "false",
  2441. "native_address" : "0x17f5cbeb8",
  2442. "native_offset" : "0x00000"
  2443. }
  2444. ,
  2445. {
  2446. "is_managed" : "false",
  2447. "native_address" : "0x17f58836c",
  2448. "native_offset" : "0x00000"
  2449. }
  2450. ,
  2451. {
  2452. "is_managed" : "false",
  2453. "native_address" : "0x17f5881a0",
  2454. "native_offset" : "0x00000"
  2455. }
  2456. ,
  2457. {
  2458. "is_managed" : "false",
  2459. "native_address" : "0x17f5b75e0",
  2460. "native_offset" : "0x00000"
  2461. }
  2462. ,
  2463. {
  2464. "is_managed" : "false",
  2465. "native_address" : "0x17f520854",
  2466. "native_offset" : "0x00000"
  2467. }
  2468. ,
  2469. {
  2470. "is_managed" : "true",
  2471. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2472. "token" : "0x00000",
  2473. "native_offset" : "0x0",
  2474. "filename" : "mscorlib.dll",
  2475. "sizeofimage" : "0x470000",
  2476. "timestamp" : "0xe8f31350",
  2477. "il_offset" : "0x00000"
  2478. }
  2479. ,
  2480. {
  2481. "is_managed" : "true",
  2482. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2483. "token" : "0x6001f5d",
  2484. "native_offset" : "0x0",
  2485. "filename" : "mscorlib.dll",
  2486. "sizeofimage" : "0x470000",
  2487. "timestamp" : "0xe8f31350",
  2488. "il_offset" : "0x00000"
  2489. }
  2490. ,
  2491. {
  2492. "is_managed" : "true",
  2493. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2494. "token" : "0x6001f50",
  2495. "native_offset" : "0x0",
  2496. "filename" : "mscorlib.dll",
  2497. "sizeofimage" : "0x470000",
  2498. "timestamp" : "0xe8f31350",
  2499. "il_offset" : "0x00000"
  2500. }
  2501. ,
  2502. {
  2503. "is_managed" : "true",
  2504. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2505. "token" : "0x6001f52",
  2506. "native_offset" : "0x0",
  2507. "filename" : "mscorlib.dll",
  2508. "sizeofimage" : "0x470000",
  2509. "timestamp" : "0xe8f31350",
  2510. "il_offset" : "0x00000"
  2511. }
  2512. ,
  2513. {
  2514. "is_managed" : "true",
  2515. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2516. "token" : "0x6001ea2",
  2517. "native_offset" : "0x0",
  2518. "filename" : "mscorlib.dll",
  2519. "sizeofimage" : "0x470000",
  2520. "timestamp" : "0xe8f31350",
  2521. "il_offset" : "0x00000"
  2522. }
  2523. ,
  2524. {
  2525. "is_managed" : "true",
  2526. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2527. "token" : "0x6001ea1",
  2528. "native_offset" : "0x0",
  2529. "filename" : "mscorlib.dll",
  2530. "sizeofimage" : "0x470000",
  2531. "timestamp" : "0xe8f31350",
  2532. "il_offset" : "0x00000"
  2533. }
  2534. ,
  2535. {
  2536. "is_managed" : "true",
  2537. "guid" : "643F6290-C90C-4761-A1C3-44139E338EE0",
  2538. "token" : "0x60026b3",
  2539. "native_offset" : "0x0",
  2540. "filename" : "System.dll",
  2541. "sizeofimage" : "0x29a000",
  2542. "timestamp" : "0xcf1f6901",
  2543. "il_offset" : "0x00000"
  2544. }
  2545. ,
  2546. {
  2547. "is_managed" : "true",
  2548. "guid" : "643F6290-C90C-4761-A1C3-44139E338EE0",
  2549. "token" : "0x60026b2",
  2550. "native_offset" : "0x0",
  2551. "filename" : "System.dll",
  2552. "sizeofimage" : "0x29a000",
  2553. "timestamp" : "0xcf1f6901",
  2554. "il_offset" : "0x00000"
  2555. }
  2556. ,
  2557. {
  2558. "is_managed" : "true",
  2559. "guid" : "643F6290-C90C-4761-A1C3-44139E338EE0",
  2560. "token" : "0x60026ae",
  2561. "native_offset" : "0x0",
  2562. "filename" : "System.dll",
  2563. "sizeofimage" : "0x29a000",
  2564. "timestamp" : "0xcf1f6901",
  2565. "il_offset" : "0x00000"
  2566. }
  2567. ,
  2568. {
  2569. "is_managed" : "true",
  2570. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  2571. "token" : "0x600117f",
  2572. "native_offset" : "0x0",
  2573. "filename" : "Burst.Compiler.IL.dll",
  2574. "sizeofimage" : "0x1aa000",
  2575. "timestamp" : "0x8ae67a69",
  2576. "il_offset" : "0x00000"
  2577. }
  2578. ,
  2579. {
  2580. "is_managed" : "true",
  2581. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2582. "token" : "0x6001f7d",
  2583. "native_offset" : "0x0",
  2584. "filename" : "mscorlib.dll",
  2585. "sizeofimage" : "0x470000",
  2586. "timestamp" : "0xe8f31350",
  2587. "il_offset" : "0x00000"
  2588. }
  2589. ,
  2590. {
  2591. "is_managed" : "true",
  2592. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2593. "token" : "0x6001f25",
  2594. "native_offset" : "0x0",
  2595. "filename" : "mscorlib.dll",
  2596. "sizeofimage" : "0x470000",
  2597. "timestamp" : "0xe8f31350",
  2598. "il_offset" : "0x00000"
  2599. }
  2600. ,
  2601. {
  2602. "is_managed" : "true",
  2603. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2604. "token" : "0x6001f23",
  2605. "native_offset" : "0x0",
  2606. "filename" : "mscorlib.dll",
  2607. "sizeofimage" : "0x470000",
  2608. "timestamp" : "0xe8f31350",
  2609. "il_offset" : "0x00000"
  2610. }
  2611. ,
  2612. {
  2613. "is_managed" : "true",
  2614. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2615. "token" : "0x6001f22",
  2616. "native_offset" : "0x0",
  2617. "filename" : "mscorlib.dll",
  2618. "sizeofimage" : "0x470000",
  2619. "timestamp" : "0xe8f31350",
  2620. "il_offset" : "0x00000"
  2621. }
  2622. ,
  2623. {
  2624. "is_managed" : "true",
  2625. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2626. "token" : "0x6001f7f",
  2627. "native_offset" : "0x0",
  2628. "filename" : "mscorlib.dll",
  2629. "sizeofimage" : "0x470000",
  2630. "timestamp" : "0xe8f31350",
  2631. "il_offset" : "0x00000"
  2632. }
  2633. ,
  2634. {
  2635. "is_managed" : "true",
  2636. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  2637. "token" : "0x00000",
  2638. "native_offset" : "0x0",
  2639. "filename" : "mscorlib.dll",
  2640. "sizeofimage" : "0x470000",
  2641. "timestamp" : "0xe8f31350",
  2642. "il_offset" : "0x00000"
  2643. }
  2644. ,
  2645. {
  2646. "is_managed" : "false",
  2647. "native_address" : "0x17f3d4eac",
  2648. "native_offset" : "0x00000"
  2649. }
  2650. ,
  2651. {
  2652. "is_managed" : "false",
  2653. "native_address" : "0x17f55b370",
  2654. "native_offset" : "0x00000"
  2655. }
  2656. ,
  2657. {
  2658. "is_managed" : "false",
  2659. "native_address" : "0x17f55cf80",
  2660. "native_offset" : "0x00000"
  2661. }
  2662. ,
  2663. {
  2664. "is_managed" : "false",
  2665. "native_address" : "0x17f57d49c",
  2666. "native_offset" : "0x00000"
  2667. }
  2668. ,
  2669. {
  2670. "is_managed" : "false",
  2671. "native_address" : "0x17f57d254",
  2672. "native_offset" : "0x00000"
  2673. }
  2674. ,
  2675. {
  2676. "is_managed" : "false",
  2677. "native_address" : "0x17f5fcd28",
  2678. "native_offset" : "0x00000"
  2679. }
  2680. ,
  2681. {
  2682. "is_managed" : "false",
  2683. "native_address" : "0x17f5fccb0",
  2684. "native_offset" : "0x00000"
  2685. }
  2686. ,
  2687. {
  2688. "is_managed" : "false",
  2689. "native_address" : "0x18625c2e4",
  2690. "native_offset" : "0x00000"
  2691. }
  2692. ,
  2693. {
  2694. "is_managed" : "false",
  2695. "native_address" : "0x1862570fc",
  2696. "native_offset" : "0x00000"
  2697. }
  2698. ]
  2699. },
  2700. {
  2701. "is_managed" : false,
  2702. "offset_free_hash" : "0x0",
  2703. "offset_rich_hash" : "0x0",
  2704. "crashed" : false,
  2705. "native_thread_id" : "0x344d8f000",
  2706. "thread_info_addr" : "0x33a110000",
  2707. "thread_name" : "tid_1207",
  2708. "ctx" : {
  2709. "IP" : "0x18621e6ec",
  2710. "SP" : "0x344d8ec20",
  2711. "BP" : "0x344d8ecb0"
  2712. },
  2713. "unmanaged_frames" : [
  2714. {
  2715. "is_managed" : "false",
  2716. "native_address" : "0x17f4452c4",
  2717. "native_offset" : "0x00000"
  2718. }
  2719. ,
  2720. {
  2721. "is_managed" : "false",
  2722. "native_address" : "0x17f57c63c",
  2723. "native_offset" : "0x00000"
  2724. }
  2725. ,
  2726. {
  2727. "is_managed" : "false",
  2728. "native_address" : "0x17f57c998",
  2729. "native_offset" : "0x00000"
  2730. }
  2731. ,
  2732. {
  2733. "is_managed" : "false",
  2734. "native_address" : "0x17f57c760",
  2735. "native_offset" : "0x00000"
  2736. }
  2737. ,
  2738. {
  2739. "is_managed" : "false",
  2740. "native_address" : "0x17f4864f4",
  2741. "native_offset" : "0x00000"
  2742. }
  2743. ,
  2744. {
  2745. "is_managed" : "false",
  2746. "native_address" : "0x186292e04",
  2747. "native_offset" : "0x00000"
  2748. }
  2749. ,
  2750. {
  2751. "is_managed" : "false",
  2752. "native_address" : "0x18625c8c0",
  2753. "native_offset" : "0x00000"
  2754. }
  2755. ,
  2756. {
  2757. "is_managed" : "false",
  2758. "native_address" : "0x17f5cbe90",
  2759. "native_offset" : "0x00000"
  2760. }
  2761. ,
  2762. {
  2763. "is_managed" : "false",
  2764. "native_address" : "0x17f5d5b6c",
  2765. "native_offset" : "0x00000"
  2766. }
  2767. ,
  2768. {
  2769. "is_managed" : "false",
  2770. "native_address" : "0x17f4d4af0",
  2771. "native_offset" : "0x00000"
  2772. }
  2773. ,
  2774. {
  2775. "is_managed" : "false",
  2776. "native_address" : "0x17f57d3a8",
  2777. "native_offset" : "0x00000"
  2778. }
  2779. ,
  2780. {
  2781. "is_managed" : "false",
  2782. "native_address" : "0x17f57d254",
  2783. "native_offset" : "0x00000"
  2784. }
  2785. ,
  2786. {
  2787. "is_managed" : "false",
  2788. "native_address" : "0x17f5fcd28",
  2789. "native_offset" : "0x00000"
  2790. }
  2791. ,
  2792. {
  2793. "is_managed" : "false",
  2794. "native_address" : "0x17f5fccb0",
  2795. "native_offset" : "0x00000"
  2796. }
  2797. ,
  2798. {
  2799. "is_managed" : "false",
  2800. "native_address" : "0x18625c2e4",
  2801. "native_offset" : "0x00000"
  2802. }
  2803. ,
  2804. {
  2805. "is_managed" : "false",
  2806. "native_address" : "0x1862570fc",
  2807. "native_offset" : "0x00000"
  2808. }
  2809. ]
  2810. },
  2811. {
  2812. "is_managed" : false,
  2813. "offset_free_hash" : "0x0",
  2814. "offset_rich_hash" : "0x0",
  2815. "crashed" : false,
  2816. "native_thread_id" : "0x3451a7000",
  2817. "thread_info_addr" : "0x33a6bfa00",
  2818. "thread_name" : "Thread Pool Worker",
  2819. "ctx" : {
  2820. "IP" : "0x18621aee8",
  2821. "SP" : "0x3451a6db0",
  2822. "BP" : "0x3451a6e50"
  2823. },
  2824. "unmanaged_frames" : [
  2825. {
  2826. "is_managed" : "false",
  2827. "native_address" : "0x17f4452c4",
  2828. "native_offset" : "0x00000"
  2829. }
  2830. ,
  2831. {
  2832. "is_managed" : "false",
  2833. "native_address" : "0x17f57c63c",
  2834. "native_offset" : "0x00000"
  2835. }
  2836. ,
  2837. {
  2838. "is_managed" : "false",
  2839. "native_address" : "0x17f57c998",
  2840. "native_offset" : "0x00000"
  2841. }
  2842. ,
  2843. {
  2844. "is_managed" : "false",
  2845. "native_address" : "0x17f57c760",
  2846. "native_offset" : "0x00000"
  2847. }
  2848. ,
  2849. {
  2850. "is_managed" : "false",
  2851. "native_address" : "0x17f4864f4",
  2852. "native_offset" : "0x00000"
  2853. }
  2854. ,
  2855. {
  2856. "is_managed" : "false",
  2857. "native_address" : "0x186292e04",
  2858. "native_offset" : "0x00000"
  2859. }
  2860. ,
  2861. {
  2862. "is_managed" : "false",
  2863. "native_address" : "0x17f4d52e8",
  2864. "native_offset" : "0x00000"
  2865. }
  2866. ,
  2867. {
  2868. "is_managed" : "false",
  2869. "native_address" : "0x17f57d3a8",
  2870. "native_offset" : "0x00000"
  2871. }
  2872. ,
  2873. {
  2874. "is_managed" : "false",
  2875. "native_address" : "0x17f57d254",
  2876. "native_offset" : "0x00000"
  2877. }
  2878. ,
  2879. {
  2880. "is_managed" : "false",
  2881. "native_address" : "0x17f5fcd28",
  2882. "native_offset" : "0x00000"
  2883. }
  2884. ,
  2885. {
  2886. "is_managed" : "false",
  2887. "native_address" : "0x17f5fccb0",
  2888. "native_offset" : "0x00000"
  2889. }
  2890. ,
  2891. {
  2892. "is_managed" : "false",
  2893. "native_address" : "0x18625c2e4",
  2894. "native_offset" : "0x00000"
  2895. }
  2896. ,
  2897. {
  2898. "is_managed" : "false",
  2899. "native_address" : "0x1862570fc",
  2900. "native_offset" : "0x00000"
  2901. }
  2902. ]
  2903. },
  2904. {
  2905. "is_managed" : false,
  2906. "offset_free_hash" : "0x0",
  2907. "offset_rich_hash" : "0x0",
  2908. "crashed" : false,
  2909. "native_thread_id" : "0x17fe7b000",
  2910. "thread_info_addr" : "0x15192fc00",
  2911. "thread_name" : "Debugger agent",
  2912. "ctx" : {
  2913. "IP" : "0x186223804",
  2914. "SP" : "0x17fe7aaa0",
  2915. "BP" : "0x17fe7aae0"
  2916. },
  2917. "unmanaged_frames" : [
  2918. {
  2919. "is_managed" : "false",
  2920. "native_address" : "0x17f4452c4",
  2921. "native_offset" : "0x00000"
  2922. }
  2923. ,
  2924. {
  2925. "is_managed" : "false",
  2926. "native_address" : "0x17f57c63c",
  2927. "native_offset" : "0x00000"
  2928. }
  2929. ,
  2930. {
  2931. "is_managed" : "false",
  2932. "native_address" : "0x17f57c998",
  2933. "native_offset" : "0x00000"
  2934. }
  2935. ,
  2936. {
  2937. "is_managed" : "false",
  2938. "native_address" : "0x17f57c760",
  2939. "native_offset" : "0x00000"
  2940. }
  2941. ,
  2942. {
  2943. "is_managed" : "false",
  2944. "native_address" : "0x17f4864f4",
  2945. "native_offset" : "0x00000"
  2946. }
  2947. ,
  2948. {
  2949. "is_managed" : "false",
  2950. "native_address" : "0x186292e04",
  2951. "native_offset" : "0x00000"
  2952. }
  2953. ,
  2954. {
  2955. "is_managed" : "false",
  2956. "native_address" : "0x17f4b56c0",
  2957. "native_offset" : "0x00000"
  2958. }
  2959. ,
  2960. {
  2961. "is_managed" : "false",
  2962. "native_address" : "0x17f4ac2bc",
  2963. "native_offset" : "0x00000"
  2964. }
  2965. ,
  2966. {
  2967. "is_managed" : "false",
  2968. "native_address" : "0x17f57d3a8",
  2969. "native_offset" : "0x00000"
  2970. }
  2971. ,
  2972. {
  2973. "is_managed" : "false",
  2974. "native_address" : "0x17f57d254",
  2975. "native_offset" : "0x00000"
  2976. }
  2977. ,
  2978. {
  2979. "is_managed" : "false",
  2980. "native_address" : "0x17f5fcd28",
  2981. "native_offset" : "0x00000"
  2982. }
  2983. ,
  2984. {
  2985. "is_managed" : "false",
  2986. "native_address" : "0x17f5fccb0",
  2987. "native_offset" : "0x00000"
  2988. }
  2989. ,
  2990. {
  2991. "is_managed" : "false",
  2992. "native_address" : "0x18625c2e4",
  2993. "native_offset" : "0x00000"
  2994. }
  2995. ,
  2996. {
  2997. "is_managed" : "false",
  2998. "native_address" : "0x1862570fc",
  2999. "native_offset" : "0x00000"
  3000. }
  3001. ]
  3002. },
  3003. {
  3004. "is_managed" : false,
  3005. "offset_free_hash" : "0x0",
  3006. "offset_rich_hash" : "0x0",
  3007. "crashed" : false,
  3008. "native_thread_id" : "0x16e2d7000",
  3009. "thread_info_addr" : "0x151aade00",
  3010. "thread_name" : "tid_13207",
  3011. "ctx" : {
  3012. "IP" : "0x18621aed0",
  3013. "SP" : "0x16e2d6ce0",
  3014. "BP" : "0x16e2d6cf0"
  3015. },
  3016. "unmanaged_frames" : [
  3017. {
  3018. "is_managed" : "false",
  3019. "native_address" : "0x17f4452c4",
  3020. "native_offset" : "0x00000"
  3021. }
  3022. ,
  3023. {
  3024. "is_managed" : "false",
  3025. "native_address" : "0x17f57c63c",
  3026. "native_offset" : "0x00000"
  3027. }
  3028. ,
  3029. {
  3030. "is_managed" : "false",
  3031. "native_address" : "0x17f57c998",
  3032. "native_offset" : "0x00000"
  3033. }
  3034. ,
  3035. {
  3036. "is_managed" : "false",
  3037. "native_address" : "0x17f57c760",
  3038. "native_offset" : "0x00000"
  3039. }
  3040. ,
  3041. {
  3042. "is_managed" : "false",
  3043. "native_address" : "0x17f4864f4",
  3044. "native_offset" : "0x00000"
  3045. }
  3046. ,
  3047. {
  3048. "is_managed" : "false",
  3049. "native_address" : "0x186292e04",
  3050. "native_offset" : "0x00000"
  3051. }
  3052. ,
  3053. {
  3054. "is_managed" : "false",
  3055. "native_address" : "0x1860a9b50",
  3056. "native_offset" : "0x00000"
  3057. }
  3058. ,
  3059. {
  3060. "is_managed" : "false",
  3061. "native_address" : "0x1860aa204",
  3062. "native_offset" : "0x00000"
  3063. }
  3064. ,
  3065. {
  3066. "is_managed" : "false",
  3067. "native_address" : "0x10565ec98",
  3068. "native_offset" : "0x00000"
  3069. }
  3070. ,
  3071. {
  3072. "is_managed" : "false",
  3073. "native_address" : "0x10326fcb4",
  3074. "native_offset" : "0x00000"
  3075. }
  3076. ,
  3077. {
  3078. "is_managed" : "false",
  3079. "native_address" : "0x103270d00",
  3080. "native_offset" : "0x00000"
  3081. }
  3082. ,
  3083. {
  3084. "is_managed" : "false",
  3085. "native_address" : "0x1034e4cc0",
  3086. "native_offset" : "0x00000"
  3087. }
  3088. ,
  3089. {
  3090. "is_managed" : "false",
  3091. "native_address" : "0x18625c2e4",
  3092. "native_offset" : "0x00000"
  3093. }
  3094. ,
  3095. {
  3096. "is_managed" : "false",
  3097. "native_address" : "0x1862570fc",
  3098. "native_offset" : "0x00000"
  3099. }
  3100. ]
  3101. },
  3102. {
  3103. "is_managed" : false,
  3104. "offset_free_hash" : "0x0",
  3105. "offset_rich_hash" : "0x0",
  3106. "crashed" : false,
  3107. "native_thread_id" : "0x345473000",
  3108. "thread_info_addr" : "0x13105b600",
  3109. "thread_name" : "Thread Pool Worker",
  3110. "ctx" : {
  3111. "IP" : "0x18621aee8",
  3112. "SP" : "0x345472db0",
  3113. "BP" : "0x345472e50"
  3114. },
  3115. "unmanaged_frames" : [
  3116. {
  3117. "is_managed" : "false",
  3118. "native_address" : "0x17f4452c4",
  3119. "native_offset" : "0x00000"
  3120. }
  3121. ,
  3122. {
  3123. "is_managed" : "false",
  3124. "native_address" : "0x17f57c63c",
  3125. "native_offset" : "0x00000"
  3126. }
  3127. ,
  3128. {
  3129. "is_managed" : "false",
  3130. "native_address" : "0x17f57c998",
  3131. "native_offset" : "0x00000"
  3132. }
  3133. ,
  3134. {
  3135. "is_managed" : "false",
  3136. "native_address" : "0x17f57c760",
  3137. "native_offset" : "0x00000"
  3138. }
  3139. ,
  3140. {
  3141. "is_managed" : "false",
  3142. "native_address" : "0x17f4864f4",
  3143. "native_offset" : "0x00000"
  3144. }
  3145. ,
  3146. {
  3147. "is_managed" : "false",
  3148. "native_address" : "0x186292e04",
  3149. "native_offset" : "0x00000"
  3150. }
  3151. ,
  3152. {
  3153. "is_managed" : "false",
  3154. "native_address" : "0x17f4d52e8",
  3155. "native_offset" : "0x00000"
  3156. }
  3157. ,
  3158. {
  3159. "is_managed" : "false",
  3160. "native_address" : "0x17f57d3a8",
  3161. "native_offset" : "0x00000"
  3162. }
  3163. ,
  3164. {
  3165. "is_managed" : "false",
  3166. "native_address" : "0x17f57d254",
  3167. "native_offset" : "0x00000"
  3168. }
  3169. ,
  3170. {
  3171. "is_managed" : "false",
  3172. "native_address" : "0x17f5fcd28",
  3173. "native_offset" : "0x00000"
  3174. }
  3175. ,
  3176. {
  3177. "is_managed" : "false",
  3178. "native_address" : "0x17f5fccb0",
  3179. "native_offset" : "0x00000"
  3180. }
  3181. ,
  3182. {
  3183. "is_managed" : "false",
  3184. "native_address" : "0x18625c2e4",
  3185. "native_offset" : "0x00000"
  3186. }
  3187. ,
  3188. {
  3189. "is_managed" : "false",
  3190. "native_address" : "0x1862570fc",
  3191. "native_offset" : "0x00000"
  3192. }
  3193. ]
  3194. },
  3195. {
  3196. "is_managed" : false,
  3197. "offset_free_hash" : "0x0",
  3198. "offset_rich_hash" : "0x0",
  3199. "crashed" : false,
  3200. "native_thread_id" : "0x34588b000",
  3201. "thread_info_addr" : "0x154d9c200",
  3202. "thread_name" : "Thread Pool Worker",
  3203. "ctx" : {
  3204. "IP" : "0x18621aee8",
  3205. "SP" : "0x34588adb0",
  3206. "BP" : "0x34588ae50"
  3207. },
  3208. "unmanaged_frames" : [
  3209. {
  3210. "is_managed" : "false",
  3211. "native_address" : "0x17f4452c4",
  3212. "native_offset" : "0x00000"
  3213. }
  3214. ,
  3215. {
  3216. "is_managed" : "false",
  3217. "native_address" : "0x17f57c63c",
  3218. "native_offset" : "0x00000"
  3219. }
  3220. ,
  3221. {
  3222. "is_managed" : "false",
  3223. "native_address" : "0x17f57c998",
  3224. "native_offset" : "0x00000"
  3225. }
  3226. ,
  3227. {
  3228. "is_managed" : "false",
  3229. "native_address" : "0x17f57c760",
  3230. "native_offset" : "0x00000"
  3231. }
  3232. ,
  3233. {
  3234. "is_managed" : "false",
  3235. "native_address" : "0x17f4864f4",
  3236. "native_offset" : "0x00000"
  3237. }
  3238. ,
  3239. {
  3240. "is_managed" : "false",
  3241. "native_address" : "0x186292e04",
  3242. "native_offset" : "0x00000"
  3243. }
  3244. ,
  3245. {
  3246. "is_managed" : "false",
  3247. "native_address" : "0x17f4d52e8",
  3248. "native_offset" : "0x00000"
  3249. }
  3250. ,
  3251. {
  3252. "is_managed" : "false",
  3253. "native_address" : "0x17f57d3a8",
  3254. "native_offset" : "0x00000"
  3255. }
  3256. ,
  3257. {
  3258. "is_managed" : "false",
  3259. "native_address" : "0x17f57d254",
  3260. "native_offset" : "0x00000"
  3261. }
  3262. ,
  3263. {
  3264. "is_managed" : "false",
  3265. "native_address" : "0x17f5fcd28",
  3266. "native_offset" : "0x00000"
  3267. }
  3268. ,
  3269. {
  3270. "is_managed" : "false",
  3271. "native_address" : "0x17f5fccb0",
  3272. "native_offset" : "0x00000"
  3273. }
  3274. ,
  3275. {
  3276. "is_managed" : "false",
  3277. "native_address" : "0x18625c2e4",
  3278. "native_offset" : "0x00000"
  3279. }
  3280. ,
  3281. {
  3282. "is_managed" : "false",
  3283. "native_address" : "0x1862570fc",
  3284. "native_offset" : "0x00000"
  3285. }
  3286. ]
  3287. },
  3288. {
  3289. "is_managed" : true,
  3290. "offset_free_hash" : "0x1acd3615e4",
  3291. "offset_rich_hash" : "0x1acd361ef1",
  3292. "crashed" : false,
  3293. "native_thread_id" : "0x1ef8c7f80",
  3294. "thread_info_addr" : "0x15491d400",
  3295. "thread_name" : "tid_103",
  3296. "ctx" : {
  3297. "IP" : "0x1860881c8",
  3298. "SP" : "0x16d49d6f0",
  3299. "BP" : "0x16d49d720"
  3300. },
  3301. "managed_frames" : [
  3302. {
  3303. "is_managed" : "false",
  3304. "native_address" : "unregistered"
  3305. }
  3306. ,
  3307. {
  3308. "is_managed" : "true",
  3309. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  3310. "token" : "0x00000",
  3311. "native_offset" : "0x0",
  3312. "filename" : "mscorlib.dll",
  3313. "sizeofimage" : "0x470000",
  3314. "timestamp" : "0xe8f31350",
  3315. "il_offset" : "0xffffffff"
  3316. }
  3317. ,
  3318. {
  3319. "is_managed" : "true",
  3320. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  3321. "token" : "0x6001a8a",
  3322. "native_offset" : "0x0",
  3323. "filename" : "mscorlib.dll",
  3324. "sizeofimage" : "0x470000",
  3325. "timestamp" : "0xe8f31350",
  3326. "il_offset" : "0x00027"
  3327. }
  3328. ,
  3329. {
  3330. "is_managed" : "true",
  3331. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  3332. "token" : "0x6001717",
  3333. "native_offset" : "0x0",
  3334. "filename" : "mscorlib.dll",
  3335. "sizeofimage" : "0x470000",
  3336. "timestamp" : "0xe8f31350",
  3337. "il_offset" : "0x00038"
  3338. }
  3339. ,
  3340. {
  3341. "is_managed" : "true",
  3342. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  3343. "token" : "0x600155d",
  3344. "native_offset" : "0x0",
  3345. "filename" : "mscorlib.dll",
  3346. "sizeofimage" : "0x470000",
  3347. "timestamp" : "0xe8f31350",
  3348. "il_offset" : "0x00088"
  3349. }
  3350. ,
  3351. {
  3352. "is_managed" : "true",
  3353. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  3354. "token" : "0x600155c",
  3355. "native_offset" : "0x0",
  3356. "filename" : "mscorlib.dll",
  3357. "sizeofimage" : "0x470000",
  3358. "timestamp" : "0xe8f31350",
  3359. "il_offset" : "0x00000"
  3360. }
  3361. ,
  3362. {
  3363. "is_managed" : "true",
  3364. "guid" : "0D05A27D-D73E-4075-B083-902A98B6FFA5",
  3365. "token" : "0x6001769",
  3366. "native_offset" : "0x0",
  3367. "filename" : "Unity.Entities.dll",
  3368. "sizeofimage" : "0x178000",
  3369. "timestamp" : "0xc7319ecc",
  3370. "il_offset" : "0x00062"
  3371. }
  3372. ,
  3373. {
  3374. "is_managed" : "true",
  3375. "guid" : "0D05A27D-D73E-4075-B083-902A98B6FFA5",
  3376. "token" : "0x6001769",
  3377. "native_offset" : "0x0",
  3378. "filename" : "Unity.Entities.dll",
  3379. "sizeofimage" : "0x178000",
  3380. "timestamp" : "0xc7319ecc",
  3381. "il_offset" : "0x0009c"
  3382. }
  3383. ,
  3384. {
  3385. "is_managed" : "true",
  3386. "guid" : "0D05A27D-D73E-4075-B083-902A98B6FFA5",
  3387. "token" : "0x6001769",
  3388. "native_offset" : "0x0",
  3389. "filename" : "Unity.Entities.dll",
  3390. "sizeofimage" : "0x178000",
  3391. "timestamp" : "0xc7319ecc",
  3392. "il_offset" : "0x0009c"
  3393. }
  3394. ,
  3395. {
  3396. "is_managed" : "true",
  3397. "guid" : "0D05A27D-D73E-4075-B083-902A98B6FFA5",
  3398. "token" : "0x600176e",
  3399. "native_offset" : "0x0",
  3400. "filename" : "Unity.Entities.dll",
  3401. "sizeofimage" : "0x178000",
  3402. "timestamp" : "0xc7319ecc",
  3403. "il_offset" : "0x000c5"
  3404. }
  3405. ,
  3406. {
  3407. "is_managed" : "true",
  3408. "guid" : "0D05A27D-D73E-4075-B083-902A98B6FFA5",
  3409. "token" : "0x600176d",
  3410. "native_offset" : "0x0",
  3411. "filename" : "Unity.Entities.dll",
  3412. "sizeofimage" : "0x178000",
  3413. "timestamp" : "0xc7319ecc",
  3414. "il_offset" : "0x00001"
  3415. }
  3416. ,
  3417. {
  3418. "is_managed" : "true",
  3419. "guid" : "0D05A27D-D73E-4075-B083-902A98B6FFA5",
  3420. "token" : "0x6001760",
  3421. "native_offset" : "0x0",
  3422. "filename" : "Unity.Entities.dll",
  3423. "sizeofimage" : "0x178000",
  3424. "timestamp" : "0xc7319ecc",
  3425. "il_offset" : "0x00086"
  3426. }
  3427. ,
  3428. {
  3429. "is_managed" : "true",
  3430. "guid" : "0D05A27D-D73E-4075-B083-902A98B6FFA5",
  3431. "token" : "0x600175e",
  3432. "native_offset" : "0x0",
  3433. "filename" : "Unity.Entities.dll",
  3434. "sizeofimage" : "0x178000",
  3435. "timestamp" : "0xc7319ecc",
  3436. "il_offset" : "0x0024b"
  3437. }
  3438. ,
  3439. {
  3440. "is_managed" : "true",
  3441. "guid" : "0D05A27D-D73E-4075-B083-902A98B6FFA5",
  3442. "token" : "0x6001730",
  3443. "native_offset" : "0x0",
  3444. "filename" : "Unity.Entities.dll",
  3445. "sizeofimage" : "0x178000",
  3446. "timestamp" : "0xc7319ecc",
  3447. "il_offset" : "0x001cc"
  3448. }
  3449. ,
  3450. {
  3451. "is_managed" : "true",
  3452. "guid" : "138FB0A4-C1EA-4F73-8E0E-880C91BBE873",
  3453. "token" : "0x60001cd",
  3454. "native_offset" : "0x0",
  3455. "filename" : "Unity.Entities.Hybrid.dll",
  3456. "sizeofimage" : "0x40000",
  3457. "timestamp" : "0xa689f189",
  3458. "il_offset" : "0x00001"
  3459. }
  3460. ,
  3461. {
  3462. "is_managed" : "true",
  3463. "guid" : "138FB0A4-C1EA-4F73-8E0E-880C91BBE873",
  3464. "token" : "0x60001cc",
  3465. "native_offset" : "0x0",
  3466. "filename" : "Unity.Entities.Hybrid.dll",
  3467. "sizeofimage" : "0x40000",
  3468. "timestamp" : "0xa689f189",
  3469. "il_offset" : "0x00001"
  3470. }
  3471. ,
  3472. {
  3473. "is_managed" : "true",
  3474. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  3475. "token" : "0x00000",
  3476. "native_offset" : "0x0",
  3477. "filename" : "mscorlib.dll",
  3478. "sizeofimage" : "0x470000",
  3479. "timestamp" : "0xe8f31350",
  3480. "il_offset" : "0x0002a"
  3481. }
  3482. ,
  3483. {
  3484. "is_managed" : "false",
  3485. "native_address" : "unregistered"
  3486. }
  3487. ,
  3488. {
  3489. "is_managed" : "true",
  3490. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  3491. "token" : "0x00000",
  3492. "native_offset" : "0x0",
  3493. "filename" : "mscorlib.dll",
  3494. "sizeofimage" : "0x470000",
  3495. "timestamp" : "0xe8f31350",
  3496. "il_offset" : "0xffffffff"
  3497. }
  3498. ,
  3499. {
  3500. "is_managed" : "true",
  3501. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  3502. "token" : "0x600471a",
  3503. "native_offset" : "0x0",
  3504. "filename" : "mscorlib.dll",
  3505. "sizeofimage" : "0x470000",
  3506. "timestamp" : "0xe8f31350",
  3507. "il_offset" : "0x0002a"
  3508. }
  3509. ,
  3510. {
  3511. "is_managed" : "true",
  3512. "guid" : "B683E0C5-952B-4FB0-AA0C-388E15D09736",
  3513. "token" : "0x6002bdb",
  3514. "native_offset" : "0x0",
  3515. "filename" : "UnityEditor.CoreModule.dll",
  3516. "sizeofimage" : "0x9ba000",
  3517. "timestamp" : "0xbe0bd8d3",
  3518. "il_offset" : "0x000d6"
  3519. }
  3520. ,
  3521. {
  3522. "is_managed" : "true",
  3523. "guid" : "B683E0C5-952B-4FB0-AA0C-388E15D09736",
  3524. "token" : "0x00000",
  3525. "native_offset" : "0x0",
  3526. "filename" : "UnityEditor.CoreModule.dll",
  3527. "sizeofimage" : "0x9ba000",
  3528. "timestamp" : "0xbe0bd8d3",
  3529. "il_offset" : "0xffffffff"
  3530. }
  3531. ],
  3532. "unmanaged_frames" : [
  3533. {
  3534. "is_managed" : "false",
  3535. "native_address" : "0x17f4452c4",
  3536. "native_offset" : "0x00000"
  3537. }
  3538. ,
  3539. {
  3540. "is_managed" : "false",
  3541. "native_address" : "0x17f57c63c",
  3542. "native_offset" : "0x00000"
  3543. }
  3544. ,
  3545. {
  3546. "is_managed" : "false",
  3547. "native_address" : "0x17f57c998",
  3548. "native_offset" : "0x00000"
  3549. }
  3550. ,
  3551. {
  3552. "is_managed" : "false",
  3553. "native_address" : "0x17f57c760",
  3554. "native_offset" : "0x00000"
  3555. }
  3556. ,
  3557. {
  3558. "is_managed" : "false",
  3559. "native_address" : "0x17f4864f4",
  3560. "native_offset" : "0x00000"
  3561. }
  3562. ,
  3563. {
  3564. "is_managed" : "false",
  3565. "native_address" : "0x186292e04",
  3566. "native_offset" : "0x00000"
  3567. }
  3568. ,
  3569. {
  3570. "is_managed" : "false",
  3571. "native_address" : "0x17f5126ec",
  3572. "native_offset" : "0x00000"
  3573. }
  3574. ,
  3575. {
  3576. "is_managed" : "false",
  3577. "native_address" : "0x17f5126ec",
  3578. "native_offset" : "0x00000"
  3579. }
  3580. ,
  3581. {
  3582. "is_managed" : "false",
  3583. "native_address" : "0x17f518090",
  3584. "native_offset" : "0x00000"
  3585. }
  3586. ,
  3587. {
  3588. "is_managed" : "true",
  3589. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  3590. "token" : "0x00000",
  3591. "native_offset" : "0x0",
  3592. "filename" : "mscorlib.dll",
  3593. "sizeofimage" : "0x470000",
  3594. "timestamp" : "0xe8f31350",
  3595. "il_offset" : "0x00000"
  3596. }
  3597. ,
  3598. {
  3599. "is_managed" : "true",
  3600. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  3601. "token" : "0x6001a8a",
  3602. "native_offset" : "0x0",
  3603. "filename" : "mscorlib.dll",
  3604. "sizeofimage" : "0x470000",
  3605. "timestamp" : "0xe8f31350",
  3606. "il_offset" : "0x00000"
  3607. }
  3608. ,
  3609. {
  3610. "is_managed" : "true",
  3611. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  3612. "token" : "0x6001717",
  3613. "native_offset" : "0x0",
  3614. "filename" : "mscorlib.dll",
  3615. "sizeofimage" : "0x470000",
  3616. "timestamp" : "0xe8f31350",
  3617. "il_offset" : "0x00000"
  3618. }
  3619. ,
  3620. {
  3621. "is_managed" : "true",
  3622. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  3623. "token" : "0x600155d",
  3624. "native_offset" : "0x0",
  3625. "filename" : "mscorlib.dll",
  3626. "sizeofimage" : "0x470000",
  3627. "timestamp" : "0xe8f31350",
  3628. "il_offset" : "0x00000"
  3629. }
  3630. ,
  3631. {
  3632. "is_managed" : "true",
  3633. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  3634. "token" : "0x600155c",
  3635. "native_offset" : "0x0",
  3636. "filename" : "mscorlib.dll",
  3637. "sizeofimage" : "0x470000",
  3638. "timestamp" : "0xe8f31350",
  3639. "il_offset" : "0x00000"
  3640. }
  3641. ,
  3642. {
  3643. "is_managed" : "true",
  3644. "guid" : "0D05A27D-D73E-4075-B083-902A98B6FFA5",
  3645. "token" : "0x6001769",
  3646. "native_offset" : "0x0",
  3647. "filename" : "Unity.Entities.dll",
  3648. "sizeofimage" : "0x178000",
  3649. "timestamp" : "0xc7319ecc",
  3650. "il_offset" : "0x00000"
  3651. }
  3652. ,
  3653. {
  3654. "is_managed" : "true",
  3655. "guid" : "0D05A27D-D73E-4075-B083-902A98B6FFA5",
  3656. "token" : "0x6001769",
  3657. "native_offset" : "0x0",
  3658. "filename" : "Unity.Entities.dll",
  3659. "sizeofimage" : "0x178000",
  3660. "timestamp" : "0xc7319ecc",
  3661. "il_offset" : "0x00000"
  3662. }
  3663. ,
  3664. {
  3665. "is_managed" : "true",
  3666. "guid" : "0D05A27D-D73E-4075-B083-902A98B6FFA5",
  3667. "token" : "0x6001769",
  3668. "native_offset" : "0x0",
  3669. "filename" : "Unity.Entities.dll",
  3670. "sizeofimage" : "0x178000",
  3671. "timestamp" : "0xc7319ecc",
  3672. "il_offset" : "0x00000"
  3673. }
  3674. ,
  3675. {
  3676. "is_managed" : "true",
  3677. "guid" : "0D05A27D-D73E-4075-B083-902A98B6FFA5",
  3678. "token" : "0x600176e",
  3679. "native_offset" : "0x0",
  3680. "filename" : "Unity.Entities.dll",
  3681. "sizeofimage" : "0x178000",
  3682. "timestamp" : "0xc7319ecc",
  3683. "il_offset" : "0x00000"
  3684. }
  3685. ,
  3686. {
  3687. "is_managed" : "true",
  3688. "guid" : "0D05A27D-D73E-4075-B083-902A98B6FFA5",
  3689. "token" : "0x600176d",
  3690. "native_offset" : "0x0",
  3691. "filename" : "Unity.Entities.dll",
  3692. "sizeofimage" : "0x178000",
  3693. "timestamp" : "0xc7319ecc",
  3694. "il_offset" : "0x00000"
  3695. }
  3696. ,
  3697. {
  3698. "is_managed" : "true",
  3699. "guid" : "0D05A27D-D73E-4075-B083-902A98B6FFA5",
  3700. "token" : "0x6001760",
  3701. "native_offset" : "0x0",
  3702. "filename" : "Unity.Entities.dll",
  3703. "sizeofimage" : "0x178000",
  3704. "timestamp" : "0xc7319ecc",
  3705. "il_offset" : "0x00000"
  3706. }
  3707. ,
  3708. {
  3709. "is_managed" : "true",
  3710. "guid" : "0D05A27D-D73E-4075-B083-902A98B6FFA5",
  3711. "token" : "0x600175e",
  3712. "native_offset" : "0x0",
  3713. "filename" : "Unity.Entities.dll",
  3714. "sizeofimage" : "0x178000",
  3715. "timestamp" : "0xc7319ecc",
  3716. "il_offset" : "0x00000"
  3717. }
  3718. ,
  3719. {
  3720. "is_managed" : "true",
  3721. "guid" : "0D05A27D-D73E-4075-B083-902A98B6FFA5",
  3722. "token" : "0x6001730",
  3723. "native_offset" : "0x0",
  3724. "filename" : "Unity.Entities.dll",
  3725. "sizeofimage" : "0x178000",
  3726. "timestamp" : "0xc7319ecc",
  3727. "il_offset" : "0x00000"
  3728. }
  3729. ,
  3730. {
  3731. "is_managed" : "true",
  3732. "guid" : "138FB0A4-C1EA-4F73-8E0E-880C91BBE873",
  3733. "token" : "0x60001cd",
  3734. "native_offset" : "0x0",
  3735. "filename" : "Unity.Entities.Hybrid.dll",
  3736. "sizeofimage" : "0x40000",
  3737. "timestamp" : "0xa689f189",
  3738. "il_offset" : "0x00000"
  3739. }
  3740. ,
  3741. {
  3742. "is_managed" : "true",
  3743. "guid" : "138FB0A4-C1EA-4F73-8E0E-880C91BBE873",
  3744. "token" : "0x60001cc",
  3745. "native_offset" : "0x0",
  3746. "filename" : "Unity.Entities.Hybrid.dll",
  3747. "sizeofimage" : "0x40000",
  3748. "timestamp" : "0xa689f189",
  3749. "il_offset" : "0x00000"
  3750. }
  3751. ,
  3752. {
  3753. "is_managed" : "true",
  3754. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  3755. "token" : "0x00000",
  3756. "native_offset" : "0x0",
  3757. "filename" : "mscorlib.dll",
  3758. "sizeofimage" : "0x470000",
  3759. "timestamp" : "0xe8f31350",
  3760. "il_offset" : "0x00000"
  3761. }
  3762. ,
  3763. {
  3764. "is_managed" : "false",
  3765. "native_address" : "0x17f3d4eac",
  3766. "native_offset" : "0x00000"
  3767. }
  3768. ,
  3769. {
  3770. "is_managed" : "false",
  3771. "native_address" : "0x17f55b370",
  3772. "native_offset" : "0x00000"
  3773. }
  3774. ,
  3775. {
  3776. "is_managed" : "false",
  3777. "native_address" : "0x17f557798",
  3778. "native_offset" : "0x00000"
  3779. }
  3780. ,
  3781. {
  3782. "is_managed" : "false",
  3783. "native_address" : "0x17f51c5fc",
  3784. "native_offset" : "0x00000"
  3785. }
  3786. ,
  3787. {
  3788. "is_managed" : "true",
  3789. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  3790. "token" : "0x00000",
  3791. "native_offset" : "0x0",
  3792. "filename" : "mscorlib.dll",
  3793. "sizeofimage" : "0x470000",
  3794. "timestamp" : "0xe8f31350",
  3795. "il_offset" : "0x00000"
  3796. }
  3797. ,
  3798. {
  3799. "is_managed" : "true",
  3800. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  3801. "token" : "0x600471a",
  3802. "native_offset" : "0x0",
  3803. "filename" : "mscorlib.dll",
  3804. "sizeofimage" : "0x470000",
  3805. "timestamp" : "0xe8f31350",
  3806. "il_offset" : "0x00000"
  3807. }
  3808. ,
  3809. {
  3810. "is_managed" : "true",
  3811. "guid" : "B683E0C5-952B-4FB0-AA0C-388E15D09736",
  3812. "token" : "0x6002bdb",
  3813. "native_offset" : "0x0",
  3814. "filename" : "UnityEditor.CoreModule.dll",
  3815. "sizeofimage" : "0x9ba000",
  3816. "timestamp" : "0xbe0bd8d3",
  3817. "il_offset" : "0x00000"
  3818. }
  3819. ,
  3820. {
  3821. "is_managed" : "true",
  3822. "guid" : "B683E0C5-952B-4FB0-AA0C-388E15D09736",
  3823. "token" : "0x00000",
  3824. "native_offset" : "0x0",
  3825. "filename" : "UnityEditor.CoreModule.dll",
  3826. "sizeofimage" : "0x9ba000",
  3827. "timestamp" : "0xbe0bd8d3",
  3828. "il_offset" : "0x00000"
  3829. }
  3830. ,
  3831. {
  3832. "is_managed" : "false",
  3833. "native_address" : "0x17f3d4eac",
  3834. "native_offset" : "0x00000"
  3835. }
  3836. ,
  3837. {
  3838. "is_managed" : "false",
  3839. "native_address" : "0x17f55b370",
  3840. "native_offset" : "0x00000"
  3841. }
  3842. ,
  3843. {
  3844. "is_managed" : "false",
  3845. "native_address" : "0x17f55b290",
  3846. "native_offset" : "0x00000"
  3847. }
  3848. ,
  3849. {
  3850. "is_managed" : "false",
  3851. "native_address" : "0x1036b5c9c",
  3852. "native_offset" : "0x00000"
  3853. }
  3854. ,
  3855. {
  3856. "is_managed" : "false",
  3857. "native_address" : "0x103690cfc",
  3858. "native_offset" : "0x00000"
  3859. }
  3860. ,
  3861. {
  3862. "is_managed" : "false",
  3863. "native_address" : "0x1037c8c3c",
  3864. "native_offset" : "0x00000"
  3865. }
  3866. ,
  3867. {
  3868. "is_managed" : "false",
  3869. "native_address" : "0x10365a6e8",
  3870. "native_offset" : "0x00000"
  3871. }
  3872. ,
  3873. {
  3874. "is_managed" : "false",
  3875. "native_address" : "0x10365bfc8",
  3876. "native_offset" : "0x00000"
  3877. }
  3878. ,
  3879. {
  3880. "is_managed" : "false",
  3881. "native_address" : "0x104a3e04c",
  3882. "native_offset" : "0x00000"
  3883. }
  3884. ,
  3885. {
  3886. "is_managed" : "false",
  3887. "native_address" : "0x104ad64d8",
  3888. "native_offset" : "0x00000"
  3889. }
  3890. ,
  3891. {
  3892. "is_managed" : "false",
  3893. "native_address" : "0x104ab55d8",
  3894. "native_offset" : "0x00000"
  3895. }
  3896. ,
  3897. {
  3898. "is_managed" : "false",
  3899. "native_address" : "0x104ab75ac",
  3900. "native_offset" : "0x00000"
  3901. }
  3902. ,
  3903. {
  3904. "is_managed" : "false",
  3905. "native_address" : "0x1042f1fc4",
  3906. "native_offset" : "0x00000"
  3907. }
  3908. ,
  3909. {
  3910. "is_managed" : "false",
  3911. "native_address" : "0x1055a494c",
  3912. "native_offset" : "0x00000"
  3913. }
  3914. ,
  3915. {
  3916. "is_managed" : "false",
  3917. "native_address" : "0x186339360",
  3918. "native_offset" : "0x00000"
  3919. }
  3920. ,
  3921. {
  3922. "is_managed" : "false",
  3923. "native_address" : "0x1863ca20c",
  3924. "native_offset" : "0x00000"
  3925. }
  3926. ,
  3927. {
  3928. "is_managed" : "false",
  3929. "native_address" : "0x1863ca154",
  3930. "native_offset" : "0x00000"
  3931. }
  3932. ,
  3933. {
  3934. "is_managed" : "false",
  3935. "native_address" : "0x186307f9c",
  3936. "native_offset" : "0x00000"
  3937. }
  3938. ,
  3939. {
  3940. "is_managed" : "false",
  3941. "native_address" : "0x1874c1fe4",
  3942. "native_offset" : "0x00000"
  3943. }
  3944. ,
  3945. {
  3946. "is_managed" : "false",
  3947. "native_address" : "0x189eb5a78",
  3948. "native_offset" : "0x00000"
  3949. }
  3950. ,
  3951. {
  3952. "is_managed" : "false",
  3953. "native_address" : "0x189eb5828",
  3954. "native_offset" : "0x00000"
  3955. }
  3956. ,
  3957. {
  3958. "is_managed" : "false",
  3959. "native_address" : "0x189eb3c88",
  3960. "native_offset" : "0x00000"
  3961. }
  3962. ,
  3963. {
  3964. "is_managed" : "false",
  3965. "native_address" : "0x189eb3890",
  3966. "native_offset" : "0x00000"
  3967. }
  3968. ,
  3969. {
  3970. "is_managed" : "false",
  3971. "native_address" : "0x1874eac9c",
  3972. "native_offset" : "0x00000"
  3973. }
  3974. ,
  3975. {
  3976. "is_managed" : "false",
  3977. "native_address" : "0x1874eaa94",
  3978. "native_offset" : "0x00000"
  3979. }
  3980. ,
  3981. {
  3982. "is_managed" : "false",
  3983. "native_address" : "0x18d8b9134",
  3984. "native_offset" : "0x00000"
  3985. }
  3986. ,
  3987. {
  3988. "is_managed" : "false",
  3989. "native_address" : "0x18d8b8a58",
  3990. "native_offset" : "0x00000"
  3991. }
  3992. ,
  3993. {
  3994. "is_managed" : "false",
  3995. "native_address" : "0x18d8b1fa4",
  3996. "native_offset" : "0x00000"
  3997. }
  3998. ,
  3999. {
  4000. "is_managed" : "false",
  4001. "native_address" : "0x1917aa288",
  4002. "native_offset" : "0x00000"
  4003. }
  4004. ,
  4005. {
  4006. "is_managed" : "false",
  4007. "native_address" : "0x189ead12c",
  4008. "native_offset" : "0x00000"
  4009. }
  4010. ,
  4011. {
  4012. "is_managed" : "false",
  4013. "native_address" : "0x18a8040b0",
  4014. "native_offset" : "0x00000"
  4015. }
  4016. ,
  4017. {
  4018. "is_managed" : "false",
  4019. "native_address" : "0x189e9fe90",
  4020. "native_offset" : "0x00000"
  4021. }
  4022. ,
  4023. {
  4024. "is_managed" : "false",
  4025. "native_address" : "0x189e76684",
  4026. "native_offset" : "0x00000"
  4027. }
  4028. ,
  4029. {
  4030. "is_managed" : "false",
  4031. "native_address" : "0x1055be7b8",
  4032. "native_offset" : "0x00000"
  4033. }
  4034. ,
  4035. {
  4036. "is_managed" : "false",
  4037. "native_address" : "0x1055beb1c",
  4038. "native_offset" : "0x00000"
  4039. }
  4040. ,
  4041. {
  4042. "is_managed" : "false",
  4043. "native_address" : "0x185edc274",
  4044. "native_offset" : "0x00000"
  4045. }
  4046. ]
  4047. },
  4048. {
  4049. "is_managed" : false,
  4050. "offset_free_hash" : "0x0",
  4051. "offset_rich_hash" : "0x0",
  4052. "crashed" : false,
  4053. "native_thread_id" : "0x345ca3000",
  4054. "thread_info_addr" : "0x151027600",
  4055. "thread_name" : "Thread Pool Worker",
  4056. "ctx" : {
  4057. "IP" : "0x18621aee8",
  4058. "SP" : "0x345ca2db0",
  4059. "BP" : "0x345ca2e50"
  4060. },
  4061. "unmanaged_frames" : [
  4062. {
  4063. "is_managed" : "false",
  4064. "native_address" : "0x17f4452c4",
  4065. "native_offset" : "0x00000"
  4066. }
  4067. ,
  4068. {
  4069. "is_managed" : "false",
  4070. "native_address" : "0x17f57c63c",
  4071. "native_offset" : "0x00000"
  4072. }
  4073. ,
  4074. {
  4075. "is_managed" : "false",
  4076. "native_address" : "0x17f57c998",
  4077. "native_offset" : "0x00000"
  4078. }
  4079. ,
  4080. {
  4081. "is_managed" : "false",
  4082. "native_address" : "0x17f57c760",
  4083. "native_offset" : "0x00000"
  4084. }
  4085. ,
  4086. {
  4087. "is_managed" : "false",
  4088. "native_address" : "0x17f4864f4",
  4089. "native_offset" : "0x00000"
  4090. }
  4091. ,
  4092. {
  4093. "is_managed" : "false",
  4094. "native_address" : "0x186292e04",
  4095. "native_offset" : "0x00000"
  4096. }
  4097. ,
  4098. {
  4099. "is_managed" : "false",
  4100. "native_address" : "0x17f4d52e8",
  4101. "native_offset" : "0x00000"
  4102. }
  4103. ,
  4104. {
  4105. "is_managed" : "false",
  4106. "native_address" : "0x17f57d3a8",
  4107. "native_offset" : "0x00000"
  4108. }
  4109. ,
  4110. {
  4111. "is_managed" : "false",
  4112. "native_address" : "0x17f57d254",
  4113. "native_offset" : "0x00000"
  4114. }
  4115. ,
  4116. {
  4117. "is_managed" : "false",
  4118. "native_address" : "0x17f5fcd28",
  4119. "native_offset" : "0x00000"
  4120. }
  4121. ,
  4122. {
  4123. "is_managed" : "false",
  4124. "native_address" : "0x17f5fccb0",
  4125. "native_offset" : "0x00000"
  4126. }
  4127. ,
  4128. {
  4129. "is_managed" : "false",
  4130. "native_address" : "0x18625c2e4",
  4131. "native_offset" : "0x00000"
  4132. }
  4133. ,
  4134. {
  4135. "is_managed" : "false",
  4136. "native_address" : "0x1862570fc",
  4137. "native_offset" : "0x00000"
  4138. }
  4139. ]
  4140. },
  4141. {
  4142. "is_managed" : true,
  4143. "offset_free_hash" : "0x2268b0010c",
  4144. "offset_rich_hash" : "0x2268b0077a",
  4145. "crashed" : false,
  4146. "native_thread_id" : "0x369f53000",
  4147. "thread_info_addr" : "0x35b999800",
  4148. "thread_name" : "Burst-CompilerThread-3",
  4149. "ctx" : {
  4150. "IP" : "0x18621e6ec",
  4151. "SP" : "0x369f50e40",
  4152. "BP" : "0x369f50ed0"
  4153. },
  4154. "managed_frames" : [
  4155. {
  4156. "is_managed" : "false",
  4157. "native_address" : "unregistered"
  4158. }
  4159. ,
  4160. {
  4161. "is_managed" : "true",
  4162. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4163. "token" : "0x00000",
  4164. "native_offset" : "0x0",
  4165. "filename" : "mscorlib.dll",
  4166. "sizeofimage" : "0x470000",
  4167. "timestamp" : "0xe8f31350",
  4168. "il_offset" : "0xffffffff"
  4169. }
  4170. ,
  4171. {
  4172. "is_managed" : "true",
  4173. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4174. "token" : "0x60001a3",
  4175. "native_offset" : "0x0",
  4176. "filename" : "Burst.Compiler.IL.dll",
  4177. "sizeofimage" : "0x1aa000",
  4178. "timestamp" : "0x8ae67a69",
  4179. "il_offset" : "0x00009"
  4180. }
  4181. ,
  4182. {
  4183. "is_managed" : "true",
  4184. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4185. "token" : "0x6000be5",
  4186. "native_offset" : "0x0",
  4187. "filename" : "Burst.Compiler.IL.dll",
  4188. "sizeofimage" : "0x1aa000",
  4189. "timestamp" : "0x8ae67a69",
  4190. "il_offset" : "0x001d3"
  4191. }
  4192. ,
  4193. {
  4194. "is_managed" : "true",
  4195. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4196. "token" : "0x6000be4",
  4197. "native_offset" : "0x0",
  4198. "filename" : "Burst.Compiler.IL.dll",
  4199. "sizeofimage" : "0x1aa000",
  4200. "timestamp" : "0x8ae67a69",
  4201. "il_offset" : "0x00071"
  4202. }
  4203. ,
  4204. {
  4205. "is_managed" : "true",
  4206. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4207. "token" : "0x60014ad",
  4208. "native_offset" : "0x0",
  4209. "filename" : "Burst.Compiler.IL.dll",
  4210. "sizeofimage" : "0x1aa000",
  4211. "timestamp" : "0x8ae67a69",
  4212. "il_offset" : "0x0005e"
  4213. }
  4214. ,
  4215. {
  4216. "is_managed" : "true",
  4217. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4218. "token" : "0x60016b5",
  4219. "native_offset" : "0x0",
  4220. "filename" : "Burst.Compiler.IL.dll",
  4221. "sizeofimage" : "0x1aa000",
  4222. "timestamp" : "0x8ae67a69",
  4223. "il_offset" : "0x00058"
  4224. }
  4225. ,
  4226. {
  4227. "is_managed" : "true",
  4228. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4229. "token" : "0x600469b",
  4230. "native_offset" : "0x0",
  4231. "filename" : "mscorlib.dll",
  4232. "sizeofimage" : "0x470000",
  4233. "timestamp" : "0xe8f31350",
  4234. "il_offset" : "0x0002c"
  4235. }
  4236. ,
  4237. {
  4238. "is_managed" : "true",
  4239. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4240. "token" : "0x60014b6",
  4241. "native_offset" : "0x0",
  4242. "filename" : "Burst.Compiler.IL.dll",
  4243. "sizeofimage" : "0x1aa000",
  4244. "timestamp" : "0x8ae67a69",
  4245. "il_offset" : "0x0001c"
  4246. }
  4247. ,
  4248. {
  4249. "is_managed" : "true",
  4250. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4251. "token" : "0x6002300",
  4252. "native_offset" : "0x0",
  4253. "filename" : "mscorlib.dll",
  4254. "sizeofimage" : "0x470000",
  4255. "timestamp" : "0xe8f31350",
  4256. "il_offset" : "0x0000f"
  4257. }
  4258. ,
  4259. {
  4260. "is_managed" : "true",
  4261. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4262. "token" : "0x60023fa",
  4263. "native_offset" : "0x0",
  4264. "filename" : "mscorlib.dll",
  4265. "sizeofimage" : "0x470000",
  4266. "timestamp" : "0xe8f31350",
  4267. "il_offset" : "0x00000"
  4268. }
  4269. ,
  4270. {
  4271. "is_managed" : "true",
  4272. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4273. "token" : "0x60023fd",
  4274. "native_offset" : "0x0",
  4275. "filename" : "mscorlib.dll",
  4276. "sizeofimage" : "0x470000",
  4277. "timestamp" : "0xe8f31350",
  4278. "il_offset" : "0x00000"
  4279. }
  4280. ,
  4281. {
  4282. "is_managed" : "true",
  4283. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4284. "token" : "0x6001f25",
  4285. "native_offset" : "0x0",
  4286. "filename" : "mscorlib.dll",
  4287. "sizeofimage" : "0x470000",
  4288. "timestamp" : "0xe8f31350",
  4289. "il_offset" : "0x00071"
  4290. }
  4291. ,
  4292. {
  4293. "is_managed" : "true",
  4294. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4295. "token" : "0x6001f23",
  4296. "native_offset" : "0x0",
  4297. "filename" : "mscorlib.dll",
  4298. "sizeofimage" : "0x470000",
  4299. "timestamp" : "0xe8f31350",
  4300. "il_offset" : "0x00000"
  4301. }
  4302. ,
  4303. {
  4304. "is_managed" : "true",
  4305. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4306. "token" : "0x6002466",
  4307. "native_offset" : "0x0",
  4308. "filename" : "mscorlib.dll",
  4309. "sizeofimage" : "0x470000",
  4310. "timestamp" : "0xe8f31350",
  4311. "il_offset" : "0x00034"
  4312. }
  4313. ,
  4314. {
  4315. "is_managed" : "true",
  4316. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4317. "token" : "0x60023fc",
  4318. "native_offset" : "0x0",
  4319. "filename" : "mscorlib.dll",
  4320. "sizeofimage" : "0x470000",
  4321. "timestamp" : "0xe8f31350",
  4322. "il_offset" : "0x0004a"
  4323. }
  4324. ,
  4325. {
  4326. "is_managed" : "true",
  4327. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4328. "token" : "0x6002547",
  4329. "native_offset" : "0x0",
  4330. "filename" : "mscorlib.dll",
  4331. "sizeofimage" : "0x470000",
  4332. "timestamp" : "0xe8f31350",
  4333. "il_offset" : "0x00014"
  4334. }
  4335. ,
  4336. {
  4337. "is_managed" : "true",
  4338. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4339. "token" : "0x60014ca",
  4340. "native_offset" : "0x0",
  4341. "filename" : "Burst.Compiler.IL.dll",
  4342. "sizeofimage" : "0x1aa000",
  4343. "timestamp" : "0x8ae67a69",
  4344. "il_offset" : "0x00000"
  4345. }
  4346. ,
  4347. {
  4348. "is_managed" : "true",
  4349. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4350. "token" : "0x6000bdf",
  4351. "native_offset" : "0x0",
  4352. "filename" : "Burst.Compiler.IL.dll",
  4353. "sizeofimage" : "0x1aa000",
  4354. "timestamp" : "0x8ae67a69",
  4355. "il_offset" : "0x000f5"
  4356. }
  4357. ,
  4358. {
  4359. "is_managed" : "true",
  4360. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4361. "token" : "0x6001f7d",
  4362. "native_offset" : "0x0",
  4363. "filename" : "mscorlib.dll",
  4364. "sizeofimage" : "0x470000",
  4365. "timestamp" : "0xe8f31350",
  4366. "il_offset" : "0x00014"
  4367. }
  4368. ,
  4369. {
  4370. "is_managed" : "true",
  4371. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4372. "token" : "0x6001f25",
  4373. "native_offset" : "0x0",
  4374. "filename" : "mscorlib.dll",
  4375. "sizeofimage" : "0x470000",
  4376. "timestamp" : "0xe8f31350",
  4377. "il_offset" : "0x00071"
  4378. }
  4379. ,
  4380. {
  4381. "is_managed" : "true",
  4382. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4383. "token" : "0x6001f23",
  4384. "native_offset" : "0x0",
  4385. "filename" : "mscorlib.dll",
  4386. "sizeofimage" : "0x470000",
  4387. "timestamp" : "0xe8f31350",
  4388. "il_offset" : "0x00000"
  4389. }
  4390. ,
  4391. {
  4392. "is_managed" : "true",
  4393. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4394. "token" : "0x6001f22",
  4395. "native_offset" : "0x0",
  4396. "filename" : "mscorlib.dll",
  4397. "sizeofimage" : "0x470000",
  4398. "timestamp" : "0xe8f31350",
  4399. "il_offset" : "0x0002b"
  4400. }
  4401. ,
  4402. {
  4403. "is_managed" : "true",
  4404. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4405. "token" : "0x6001f7f",
  4406. "native_offset" : "0x0",
  4407. "filename" : "mscorlib.dll",
  4408. "sizeofimage" : "0x470000",
  4409. "timestamp" : "0xe8f31350",
  4410. "il_offset" : "0x00008"
  4411. }
  4412. ,
  4413. {
  4414. "is_managed" : "true",
  4415. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4416. "token" : "0x00000",
  4417. "native_offset" : "0x0",
  4418. "filename" : "mscorlib.dll",
  4419. "sizeofimage" : "0x470000",
  4420. "timestamp" : "0xe8f31350",
  4421. "il_offset" : "0x00065"
  4422. }
  4423. ],
  4424. "unmanaged_frames" : [
  4425. {
  4426. "is_managed" : "false",
  4427. "native_address" : "0x17f4452c4",
  4428. "native_offset" : "0x00000"
  4429. }
  4430. ,
  4431. {
  4432. "is_managed" : "false",
  4433. "native_address" : "0x17f57c63c",
  4434. "native_offset" : "0x00000"
  4435. }
  4436. ,
  4437. {
  4438. "is_managed" : "false",
  4439. "native_address" : "0x17f57c998",
  4440. "native_offset" : "0x00000"
  4441. }
  4442. ,
  4443. {
  4444. "is_managed" : "false",
  4445. "native_address" : "0x17f57c760",
  4446. "native_offset" : "0x00000"
  4447. }
  4448. ,
  4449. {
  4450. "is_managed" : "false",
  4451. "native_address" : "0x17f4864f4",
  4452. "native_offset" : "0x00000"
  4453. }
  4454. ,
  4455. {
  4456. "is_managed" : "false",
  4457. "native_address" : "0x186292e04",
  4458. "native_offset" : "0x00000"
  4459. }
  4460. ,
  4461. {
  4462. "is_managed" : "false",
  4463. "native_address" : "0x18625c894",
  4464. "native_offset" : "0x00000"
  4465. }
  4466. ,
  4467. {
  4468. "is_managed" : "false",
  4469. "native_address" : "0x17f5b7f9c",
  4470. "native_offset" : "0x00000"
  4471. }
  4472. ,
  4473. {
  4474. "is_managed" : "false",
  4475. "native_address" : "0x17f5b6d4c",
  4476. "native_offset" : "0x00000"
  4477. }
  4478. ,
  4479. {
  4480. "is_managed" : "true",
  4481. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4482. "token" : "0x00000",
  4483. "native_offset" : "0x0",
  4484. "filename" : "mscorlib.dll",
  4485. "sizeofimage" : "0x470000",
  4486. "timestamp" : "0xe8f31350",
  4487. "il_offset" : "0x00000"
  4488. }
  4489. ,
  4490. {
  4491. "is_managed" : "true",
  4492. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4493. "token" : "0x60001a3",
  4494. "native_offset" : "0x0",
  4495. "filename" : "Burst.Compiler.IL.dll",
  4496. "sizeofimage" : "0x1aa000",
  4497. "timestamp" : "0x8ae67a69",
  4498. "il_offset" : "0x00000"
  4499. }
  4500. ,
  4501. {
  4502. "is_managed" : "true",
  4503. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4504. "token" : "0x6000be5",
  4505. "native_offset" : "0x0",
  4506. "filename" : "Burst.Compiler.IL.dll",
  4507. "sizeofimage" : "0x1aa000",
  4508. "timestamp" : "0x8ae67a69",
  4509. "il_offset" : "0x00000"
  4510. }
  4511. ,
  4512. {
  4513. "is_managed" : "true",
  4514. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4515. "token" : "0x6000be4",
  4516. "native_offset" : "0x0",
  4517. "filename" : "Burst.Compiler.IL.dll",
  4518. "sizeofimage" : "0x1aa000",
  4519. "timestamp" : "0x8ae67a69",
  4520. "il_offset" : "0x00000"
  4521. }
  4522. ,
  4523. {
  4524. "is_managed" : "true",
  4525. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4526. "token" : "0x60014ad",
  4527. "native_offset" : "0x0",
  4528. "filename" : "Burst.Compiler.IL.dll",
  4529. "sizeofimage" : "0x1aa000",
  4530. "timestamp" : "0x8ae67a69",
  4531. "il_offset" : "0x00000"
  4532. }
  4533. ,
  4534. {
  4535. "is_managed" : "true",
  4536. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4537. "token" : "0x60016b5",
  4538. "native_offset" : "0x0",
  4539. "filename" : "Burst.Compiler.IL.dll",
  4540. "sizeofimage" : "0x1aa000",
  4541. "timestamp" : "0x8ae67a69",
  4542. "il_offset" : "0x00000"
  4543. }
  4544. ,
  4545. {
  4546. "is_managed" : "true",
  4547. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4548. "token" : "0x600469b",
  4549. "native_offset" : "0x0",
  4550. "filename" : "mscorlib.dll",
  4551. "sizeofimage" : "0x470000",
  4552. "timestamp" : "0xe8f31350",
  4553. "il_offset" : "0x00000"
  4554. }
  4555. ,
  4556. {
  4557. "is_managed" : "true",
  4558. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4559. "token" : "0x60014b6",
  4560. "native_offset" : "0x0",
  4561. "filename" : "Burst.Compiler.IL.dll",
  4562. "sizeofimage" : "0x1aa000",
  4563. "timestamp" : "0x8ae67a69",
  4564. "il_offset" : "0x00000"
  4565. }
  4566. ,
  4567. {
  4568. "is_managed" : "true",
  4569. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4570. "token" : "0x6002300",
  4571. "native_offset" : "0x0",
  4572. "filename" : "mscorlib.dll",
  4573. "sizeofimage" : "0x470000",
  4574. "timestamp" : "0xe8f31350",
  4575. "il_offset" : "0x00000"
  4576. }
  4577. ,
  4578. {
  4579. "is_managed" : "true",
  4580. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4581. "token" : "0x60023fa",
  4582. "native_offset" : "0x0",
  4583. "filename" : "mscorlib.dll",
  4584. "sizeofimage" : "0x470000",
  4585. "timestamp" : "0xe8f31350",
  4586. "il_offset" : "0x00000"
  4587. }
  4588. ,
  4589. {
  4590. "is_managed" : "true",
  4591. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4592. "token" : "0x60023fd",
  4593. "native_offset" : "0x0",
  4594. "filename" : "mscorlib.dll",
  4595. "sizeofimage" : "0x470000",
  4596. "timestamp" : "0xe8f31350",
  4597. "il_offset" : "0x00000"
  4598. }
  4599. ,
  4600. {
  4601. "is_managed" : "true",
  4602. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4603. "token" : "0x6001f25",
  4604. "native_offset" : "0x0",
  4605. "filename" : "mscorlib.dll",
  4606. "sizeofimage" : "0x470000",
  4607. "timestamp" : "0xe8f31350",
  4608. "il_offset" : "0x00000"
  4609. }
  4610. ,
  4611. {
  4612. "is_managed" : "true",
  4613. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4614. "token" : "0x6001f23",
  4615. "native_offset" : "0x0",
  4616. "filename" : "mscorlib.dll",
  4617. "sizeofimage" : "0x470000",
  4618. "timestamp" : "0xe8f31350",
  4619. "il_offset" : "0x00000"
  4620. }
  4621. ,
  4622. {
  4623. "is_managed" : "true",
  4624. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4625. "token" : "0x6002466",
  4626. "native_offset" : "0x0",
  4627. "filename" : "mscorlib.dll",
  4628. "sizeofimage" : "0x470000",
  4629. "timestamp" : "0xe8f31350",
  4630. "il_offset" : "0x00000"
  4631. }
  4632. ,
  4633. {
  4634. "is_managed" : "true",
  4635. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4636. "token" : "0x60023fc",
  4637. "native_offset" : "0x0",
  4638. "filename" : "mscorlib.dll",
  4639. "sizeofimage" : "0x470000",
  4640. "timestamp" : "0xe8f31350",
  4641. "il_offset" : "0x00000"
  4642. }
  4643. ,
  4644. {
  4645. "is_managed" : "true",
  4646. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4647. "token" : "0x6002547",
  4648. "native_offset" : "0x0",
  4649. "filename" : "mscorlib.dll",
  4650. "sizeofimage" : "0x470000",
  4651. "timestamp" : "0xe8f31350",
  4652. "il_offset" : "0x00000"
  4653. }
  4654. ,
  4655. {
  4656. "is_managed" : "true",
  4657. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4658. "token" : "0x60014ca",
  4659. "native_offset" : "0x0",
  4660. "filename" : "Burst.Compiler.IL.dll",
  4661. "sizeofimage" : "0x1aa000",
  4662. "timestamp" : "0x8ae67a69",
  4663. "il_offset" : "0x00000"
  4664. }
  4665. ,
  4666. {
  4667. "is_managed" : "true",
  4668. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4669. "token" : "0x6000bdf",
  4670. "native_offset" : "0x0",
  4671. "filename" : "Burst.Compiler.IL.dll",
  4672. "sizeofimage" : "0x1aa000",
  4673. "timestamp" : "0x8ae67a69",
  4674. "il_offset" : "0x00000"
  4675. }
  4676. ,
  4677. {
  4678. "is_managed" : "true",
  4679. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4680. "token" : "0x6001f7d",
  4681. "native_offset" : "0x0",
  4682. "filename" : "mscorlib.dll",
  4683. "sizeofimage" : "0x470000",
  4684. "timestamp" : "0xe8f31350",
  4685. "il_offset" : "0x00000"
  4686. }
  4687. ,
  4688. {
  4689. "is_managed" : "true",
  4690. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4691. "token" : "0x6001f25",
  4692. "native_offset" : "0x0",
  4693. "filename" : "mscorlib.dll",
  4694. "sizeofimage" : "0x470000",
  4695. "timestamp" : "0xe8f31350",
  4696. "il_offset" : "0x00000"
  4697. }
  4698. ,
  4699. {
  4700. "is_managed" : "true",
  4701. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4702. "token" : "0x6001f23",
  4703. "native_offset" : "0x0",
  4704. "filename" : "mscorlib.dll",
  4705. "sizeofimage" : "0x470000",
  4706. "timestamp" : "0xe8f31350",
  4707. "il_offset" : "0x00000"
  4708. }
  4709. ,
  4710. {
  4711. "is_managed" : "true",
  4712. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4713. "token" : "0x6001f22",
  4714. "native_offset" : "0x0",
  4715. "filename" : "mscorlib.dll",
  4716. "sizeofimage" : "0x470000",
  4717. "timestamp" : "0xe8f31350",
  4718. "il_offset" : "0x00000"
  4719. }
  4720. ,
  4721. {
  4722. "is_managed" : "true",
  4723. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4724. "token" : "0x6001f7f",
  4725. "native_offset" : "0x0",
  4726. "filename" : "mscorlib.dll",
  4727. "sizeofimage" : "0x470000",
  4728. "timestamp" : "0xe8f31350",
  4729. "il_offset" : "0x00000"
  4730. }
  4731. ,
  4732. {
  4733. "is_managed" : "true",
  4734. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4735. "token" : "0x00000",
  4736. "native_offset" : "0x0",
  4737. "filename" : "mscorlib.dll",
  4738. "sizeofimage" : "0x470000",
  4739. "timestamp" : "0xe8f31350",
  4740. "il_offset" : "0x00000"
  4741. }
  4742. ,
  4743. {
  4744. "is_managed" : "false",
  4745. "native_address" : "0x17f3d4eac",
  4746. "native_offset" : "0x00000"
  4747. }
  4748. ,
  4749. {
  4750. "is_managed" : "false",
  4751. "native_address" : "0x17f55b370",
  4752. "native_offset" : "0x00000"
  4753. }
  4754. ,
  4755. {
  4756. "is_managed" : "false",
  4757. "native_address" : "0x17f55cf80",
  4758. "native_offset" : "0x00000"
  4759. }
  4760. ,
  4761. {
  4762. "is_managed" : "false",
  4763. "native_address" : "0x17f57d49c",
  4764. "native_offset" : "0x00000"
  4765. }
  4766. ,
  4767. {
  4768. "is_managed" : "false",
  4769. "native_address" : "0x17f57d254",
  4770. "native_offset" : "0x00000"
  4771. }
  4772. ,
  4773. {
  4774. "is_managed" : "false",
  4775. "native_address" : "0x17f5fcd28",
  4776. "native_offset" : "0x00000"
  4777. }
  4778. ,
  4779. {
  4780. "is_managed" : "false",
  4781. "native_address" : "0x17f5fccb0",
  4782. "native_offset" : "0x00000"
  4783. }
  4784. ,
  4785. {
  4786. "is_managed" : "false",
  4787. "native_address" : "0x18625c2e4",
  4788. "native_offset" : "0x00000"
  4789. }
  4790. ,
  4791. {
  4792. "is_managed" : "false",
  4793. "native_address" : "0x1862570fc",
  4794. "native_offset" : "0x00000"
  4795. }
  4796. ]
  4797. },
  4798. {
  4799. "is_managed" : true,
  4800. "offset_free_hash" : "0x23ea8cea72",
  4801. "offset_rich_hash" : "0x23ea8cf190",
  4802. "crashed" : false,
  4803. "native_thread_id" : "0x36a36b000",
  4804. "thread_info_addr" : "0x35bbcc200",
  4805. "thread_name" : "Burst-CompilerThread-5",
  4806. "ctx" : {
  4807. "IP" : "0x18621e6ec",
  4808. "SP" : "0x36a368c40",
  4809. "BP" : "0x36a368cd0"
  4810. },
  4811. "managed_frames" : [
  4812. {
  4813. "is_managed" : "false",
  4814. "native_address" : "unregistered"
  4815. }
  4816. ,
  4817. {
  4818. "is_managed" : "true",
  4819. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4820. "token" : "0x00000",
  4821. "native_offset" : "0x0",
  4822. "filename" : "mscorlib.dll",
  4823. "sizeofimage" : "0x470000",
  4824. "timestamp" : "0xe8f31350",
  4825. "il_offset" : "0xffffffff"
  4826. }
  4827. ,
  4828. {
  4829. "is_managed" : "true",
  4830. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4831. "token" : "0x60001ad",
  4832. "native_offset" : "0x0",
  4833. "filename" : "Burst.Compiler.IL.dll",
  4834. "sizeofimage" : "0x1aa000",
  4835. "timestamp" : "0x8ae67a69",
  4836. "il_offset" : "0x00009"
  4837. }
  4838. ,
  4839. {
  4840. "is_managed" : "true",
  4841. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4842. "token" : "0x6000be5",
  4843. "native_offset" : "0x0",
  4844. "filename" : "Burst.Compiler.IL.dll",
  4845. "sizeofimage" : "0x1aa000",
  4846. "timestamp" : "0x8ae67a69",
  4847. "il_offset" : "0x000a5"
  4848. }
  4849. ,
  4850. {
  4851. "is_managed" : "true",
  4852. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4853. "token" : "0x6000be5",
  4854. "native_offset" : "0x0",
  4855. "filename" : "Burst.Compiler.IL.dll",
  4856. "sizeofimage" : "0x1aa000",
  4857. "timestamp" : "0x8ae67a69",
  4858. "il_offset" : "0x001de"
  4859. }
  4860. ,
  4861. {
  4862. "is_managed" : "true",
  4863. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4864. "token" : "0x6000be4",
  4865. "native_offset" : "0x0",
  4866. "filename" : "Burst.Compiler.IL.dll",
  4867. "sizeofimage" : "0x1aa000",
  4868. "timestamp" : "0x8ae67a69",
  4869. "il_offset" : "0x00071"
  4870. }
  4871. ,
  4872. {
  4873. "is_managed" : "true",
  4874. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4875. "token" : "0x60014ad",
  4876. "native_offset" : "0x0",
  4877. "filename" : "Burst.Compiler.IL.dll",
  4878. "sizeofimage" : "0x1aa000",
  4879. "timestamp" : "0x8ae67a69",
  4880. "il_offset" : "0x0005e"
  4881. }
  4882. ,
  4883. {
  4884. "is_managed" : "true",
  4885. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4886. "token" : "0x60016b5",
  4887. "native_offset" : "0x0",
  4888. "filename" : "Burst.Compiler.IL.dll",
  4889. "sizeofimage" : "0x1aa000",
  4890. "timestamp" : "0x8ae67a69",
  4891. "il_offset" : "0x00058"
  4892. }
  4893. ,
  4894. {
  4895. "is_managed" : "true",
  4896. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4897. "token" : "0x600469b",
  4898. "native_offset" : "0x0",
  4899. "filename" : "mscorlib.dll",
  4900. "sizeofimage" : "0x470000",
  4901. "timestamp" : "0xe8f31350",
  4902. "il_offset" : "0x0002c"
  4903. }
  4904. ,
  4905. {
  4906. "is_managed" : "true",
  4907. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  4908. "token" : "0x60014b6",
  4909. "native_offset" : "0x0",
  4910. "filename" : "Burst.Compiler.IL.dll",
  4911. "sizeofimage" : "0x1aa000",
  4912. "timestamp" : "0x8ae67a69",
  4913. "il_offset" : "0x0001c"
  4914. }
  4915. ,
  4916. {
  4917. "is_managed" : "true",
  4918. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4919. "token" : "0x6002300",
  4920. "native_offset" : "0x0",
  4921. "filename" : "mscorlib.dll",
  4922. "sizeofimage" : "0x470000",
  4923. "timestamp" : "0xe8f31350",
  4924. "il_offset" : "0x0000f"
  4925. }
  4926. ,
  4927. {
  4928. "is_managed" : "true",
  4929. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4930. "token" : "0x60023fa",
  4931. "native_offset" : "0x0",
  4932. "filename" : "mscorlib.dll",
  4933. "sizeofimage" : "0x470000",
  4934. "timestamp" : "0xe8f31350",
  4935. "il_offset" : "0x00000"
  4936. }
  4937. ,
  4938. {
  4939. "is_managed" : "true",
  4940. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4941. "token" : "0x60023fd",
  4942. "native_offset" : "0x0",
  4943. "filename" : "mscorlib.dll",
  4944. "sizeofimage" : "0x470000",
  4945. "timestamp" : "0xe8f31350",
  4946. "il_offset" : "0x00000"
  4947. }
  4948. ,
  4949. {
  4950. "is_managed" : "true",
  4951. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4952. "token" : "0x6001f25",
  4953. "native_offset" : "0x0",
  4954. "filename" : "mscorlib.dll",
  4955. "sizeofimage" : "0x470000",
  4956. "timestamp" : "0xe8f31350",
  4957. "il_offset" : "0x00071"
  4958. }
  4959. ,
  4960. {
  4961. "is_managed" : "true",
  4962. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4963. "token" : "0x6001f23",
  4964. "native_offset" : "0x0",
  4965. "filename" : "mscorlib.dll",
  4966. "sizeofimage" : "0x470000",
  4967. "timestamp" : "0xe8f31350",
  4968. "il_offset" : "0x00000"
  4969. }
  4970. ,
  4971. {
  4972. "is_managed" : "true",
  4973. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4974. "token" : "0x6002466",
  4975. "native_offset" : "0x0",
  4976. "filename" : "mscorlib.dll",
  4977. "sizeofimage" : "0x470000",
  4978. "timestamp" : "0xe8f31350",
  4979. "il_offset" : "0x00034"
  4980. }
  4981. ,
  4982. {
  4983. "is_managed" : "true",
  4984. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4985. "token" : "0x60023fc",
  4986. "native_offset" : "0x0",
  4987. "filename" : "mscorlib.dll",
  4988. "sizeofimage" : "0x470000",
  4989. "timestamp" : "0xe8f31350",
  4990. "il_offset" : "0x0004a"
  4991. }
  4992. ,
  4993. {
  4994. "is_managed" : "true",
  4995. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  4996. "token" : "0x6002547",
  4997. "native_offset" : "0x0",
  4998. "filename" : "mscorlib.dll",
  4999. "sizeofimage" : "0x470000",
  5000. "timestamp" : "0xe8f31350",
  5001. "il_offset" : "0x00014"
  5002. }
  5003. ,
  5004. {
  5005. "is_managed" : "true",
  5006. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5007. "token" : "0x60014ca",
  5008. "native_offset" : "0x0",
  5009. "filename" : "Burst.Compiler.IL.dll",
  5010. "sizeofimage" : "0x1aa000",
  5011. "timestamp" : "0x8ae67a69",
  5012. "il_offset" : "0x00000"
  5013. }
  5014. ,
  5015. {
  5016. "is_managed" : "true",
  5017. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5018. "token" : "0x6000bdf",
  5019. "native_offset" : "0x0",
  5020. "filename" : "Burst.Compiler.IL.dll",
  5021. "sizeofimage" : "0x1aa000",
  5022. "timestamp" : "0x8ae67a69",
  5023. "il_offset" : "0x000f5"
  5024. }
  5025. ,
  5026. {
  5027. "is_managed" : "true",
  5028. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5029. "token" : "0x6001f7d",
  5030. "native_offset" : "0x0",
  5031. "filename" : "mscorlib.dll",
  5032. "sizeofimage" : "0x470000",
  5033. "timestamp" : "0xe8f31350",
  5034. "il_offset" : "0x00014"
  5035. }
  5036. ,
  5037. {
  5038. "is_managed" : "true",
  5039. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5040. "token" : "0x6001f25",
  5041. "native_offset" : "0x0",
  5042. "filename" : "mscorlib.dll",
  5043. "sizeofimage" : "0x470000",
  5044. "timestamp" : "0xe8f31350",
  5045. "il_offset" : "0x00071"
  5046. }
  5047. ,
  5048. {
  5049. "is_managed" : "true",
  5050. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5051. "token" : "0x6001f23",
  5052. "native_offset" : "0x0",
  5053. "filename" : "mscorlib.dll",
  5054. "sizeofimage" : "0x470000",
  5055. "timestamp" : "0xe8f31350",
  5056. "il_offset" : "0x00000"
  5057. }
  5058. ,
  5059. {
  5060. "is_managed" : "true",
  5061. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5062. "token" : "0x6001f22",
  5063. "native_offset" : "0x0",
  5064. "filename" : "mscorlib.dll",
  5065. "sizeofimage" : "0x470000",
  5066. "timestamp" : "0xe8f31350",
  5067. "il_offset" : "0x0002b"
  5068. }
  5069. ,
  5070. {
  5071. "is_managed" : "true",
  5072. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5073. "token" : "0x6001f7f",
  5074. "native_offset" : "0x0",
  5075. "filename" : "mscorlib.dll",
  5076. "sizeofimage" : "0x470000",
  5077. "timestamp" : "0xe8f31350",
  5078. "il_offset" : "0x00008"
  5079. }
  5080. ,
  5081. {
  5082. "is_managed" : "true",
  5083. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5084. "token" : "0x00000",
  5085. "native_offset" : "0x0",
  5086. "filename" : "mscorlib.dll",
  5087. "sizeofimage" : "0x470000",
  5088. "timestamp" : "0xe8f31350",
  5089. "il_offset" : "0x00065"
  5090. }
  5091. ],
  5092. "unmanaged_frames" : [
  5093. {
  5094. "is_managed" : "false",
  5095. "native_address" : "0x17f4452c4",
  5096. "native_offset" : "0x00000"
  5097. }
  5098. ,
  5099. {
  5100. "is_managed" : "false",
  5101. "native_address" : "0x17f57c63c",
  5102. "native_offset" : "0x00000"
  5103. }
  5104. ,
  5105. {
  5106. "is_managed" : "false",
  5107. "native_address" : "0x17f57c998",
  5108. "native_offset" : "0x00000"
  5109. }
  5110. ,
  5111. {
  5112. "is_managed" : "false",
  5113. "native_address" : "0x17f57c760",
  5114. "native_offset" : "0x00000"
  5115. }
  5116. ,
  5117. {
  5118. "is_managed" : "false",
  5119. "native_address" : "0x17f4864f4",
  5120. "native_offset" : "0x00000"
  5121. }
  5122. ,
  5123. {
  5124. "is_managed" : "false",
  5125. "native_address" : "0x186292e04",
  5126. "native_offset" : "0x00000"
  5127. }
  5128. ,
  5129. {
  5130. "is_managed" : "false",
  5131. "native_address" : "0x18625c894",
  5132. "native_offset" : "0x00000"
  5133. }
  5134. ,
  5135. {
  5136. "is_managed" : "false",
  5137. "native_address" : "0x17f5b7f9c",
  5138. "native_offset" : "0x00000"
  5139. }
  5140. ,
  5141. {
  5142. "is_managed" : "false",
  5143. "native_address" : "0x17f5b6d4c",
  5144. "native_offset" : "0x00000"
  5145. }
  5146. ,
  5147. {
  5148. "is_managed" : "true",
  5149. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5150. "token" : "0x00000",
  5151. "native_offset" : "0x0",
  5152. "filename" : "mscorlib.dll",
  5153. "sizeofimage" : "0x470000",
  5154. "timestamp" : "0xe8f31350",
  5155. "il_offset" : "0x00000"
  5156. }
  5157. ,
  5158. {
  5159. "is_managed" : "true",
  5160. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5161. "token" : "0x60001ad",
  5162. "native_offset" : "0x0",
  5163. "filename" : "Burst.Compiler.IL.dll",
  5164. "sizeofimage" : "0x1aa000",
  5165. "timestamp" : "0x8ae67a69",
  5166. "il_offset" : "0x00000"
  5167. }
  5168. ,
  5169. {
  5170. "is_managed" : "true",
  5171. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5172. "token" : "0x6000be5",
  5173. "native_offset" : "0x0",
  5174. "filename" : "Burst.Compiler.IL.dll",
  5175. "sizeofimage" : "0x1aa000",
  5176. "timestamp" : "0x8ae67a69",
  5177. "il_offset" : "0x00000"
  5178. }
  5179. ,
  5180. {
  5181. "is_managed" : "true",
  5182. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5183. "token" : "0x6000be5",
  5184. "native_offset" : "0x0",
  5185. "filename" : "Burst.Compiler.IL.dll",
  5186. "sizeofimage" : "0x1aa000",
  5187. "timestamp" : "0x8ae67a69",
  5188. "il_offset" : "0x00000"
  5189. }
  5190. ,
  5191. {
  5192. "is_managed" : "true",
  5193. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5194. "token" : "0x6000be4",
  5195. "native_offset" : "0x0",
  5196. "filename" : "Burst.Compiler.IL.dll",
  5197. "sizeofimage" : "0x1aa000",
  5198. "timestamp" : "0x8ae67a69",
  5199. "il_offset" : "0x00000"
  5200. }
  5201. ,
  5202. {
  5203. "is_managed" : "true",
  5204. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5205. "token" : "0x60014ad",
  5206. "native_offset" : "0x0",
  5207. "filename" : "Burst.Compiler.IL.dll",
  5208. "sizeofimage" : "0x1aa000",
  5209. "timestamp" : "0x8ae67a69",
  5210. "il_offset" : "0x00000"
  5211. }
  5212. ,
  5213. {
  5214. "is_managed" : "true",
  5215. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5216. "token" : "0x60016b5",
  5217. "native_offset" : "0x0",
  5218. "filename" : "Burst.Compiler.IL.dll",
  5219. "sizeofimage" : "0x1aa000",
  5220. "timestamp" : "0x8ae67a69",
  5221. "il_offset" : "0x00000"
  5222. }
  5223. ,
  5224. {
  5225. "is_managed" : "true",
  5226. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5227. "token" : "0x600469b",
  5228. "native_offset" : "0x0",
  5229. "filename" : "mscorlib.dll",
  5230. "sizeofimage" : "0x470000",
  5231. "timestamp" : "0xe8f31350",
  5232. "il_offset" : "0x00000"
  5233. }
  5234. ,
  5235. {
  5236. "is_managed" : "true",
  5237. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5238. "token" : "0x60014b6",
  5239. "native_offset" : "0x0",
  5240. "filename" : "Burst.Compiler.IL.dll",
  5241. "sizeofimage" : "0x1aa000",
  5242. "timestamp" : "0x8ae67a69",
  5243. "il_offset" : "0x00000"
  5244. }
  5245. ,
  5246. {
  5247. "is_managed" : "true",
  5248. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5249. "token" : "0x6002300",
  5250. "native_offset" : "0x0",
  5251. "filename" : "mscorlib.dll",
  5252. "sizeofimage" : "0x470000",
  5253. "timestamp" : "0xe8f31350",
  5254. "il_offset" : "0x00000"
  5255. }
  5256. ,
  5257. {
  5258. "is_managed" : "true",
  5259. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5260. "token" : "0x60023fa",
  5261. "native_offset" : "0x0",
  5262. "filename" : "mscorlib.dll",
  5263. "sizeofimage" : "0x470000",
  5264. "timestamp" : "0xe8f31350",
  5265. "il_offset" : "0x00000"
  5266. }
  5267. ,
  5268. {
  5269. "is_managed" : "true",
  5270. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5271. "token" : "0x60023fd",
  5272. "native_offset" : "0x0",
  5273. "filename" : "mscorlib.dll",
  5274. "sizeofimage" : "0x470000",
  5275. "timestamp" : "0xe8f31350",
  5276. "il_offset" : "0x00000"
  5277. }
  5278. ,
  5279. {
  5280. "is_managed" : "true",
  5281. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5282. "token" : "0x6001f25",
  5283. "native_offset" : "0x0",
  5284. "filename" : "mscorlib.dll",
  5285. "sizeofimage" : "0x470000",
  5286. "timestamp" : "0xe8f31350",
  5287. "il_offset" : "0x00000"
  5288. }
  5289. ,
  5290. {
  5291. "is_managed" : "true",
  5292. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5293. "token" : "0x6001f23",
  5294. "native_offset" : "0x0",
  5295. "filename" : "mscorlib.dll",
  5296. "sizeofimage" : "0x470000",
  5297. "timestamp" : "0xe8f31350",
  5298. "il_offset" : "0x00000"
  5299. }
  5300. ,
  5301. {
  5302. "is_managed" : "true",
  5303. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5304. "token" : "0x6002466",
  5305. "native_offset" : "0x0",
  5306. "filename" : "mscorlib.dll",
  5307. "sizeofimage" : "0x470000",
  5308. "timestamp" : "0xe8f31350",
  5309. "il_offset" : "0x00000"
  5310. }
  5311. ,
  5312. {
  5313. "is_managed" : "true",
  5314. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5315. "token" : "0x60023fc",
  5316. "native_offset" : "0x0",
  5317. "filename" : "mscorlib.dll",
  5318. "sizeofimage" : "0x470000",
  5319. "timestamp" : "0xe8f31350",
  5320. "il_offset" : "0x00000"
  5321. }
  5322. ,
  5323. {
  5324. "is_managed" : "true",
  5325. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5326. "token" : "0x6002547",
  5327. "native_offset" : "0x0",
  5328. "filename" : "mscorlib.dll",
  5329. "sizeofimage" : "0x470000",
  5330. "timestamp" : "0xe8f31350",
  5331. "il_offset" : "0x00000"
  5332. }
  5333. ,
  5334. {
  5335. "is_managed" : "true",
  5336. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5337. "token" : "0x60014ca",
  5338. "native_offset" : "0x0",
  5339. "filename" : "Burst.Compiler.IL.dll",
  5340. "sizeofimage" : "0x1aa000",
  5341. "timestamp" : "0x8ae67a69",
  5342. "il_offset" : "0x00000"
  5343. }
  5344. ,
  5345. {
  5346. "is_managed" : "true",
  5347. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5348. "token" : "0x6000bdf",
  5349. "native_offset" : "0x0",
  5350. "filename" : "Burst.Compiler.IL.dll",
  5351. "sizeofimage" : "0x1aa000",
  5352. "timestamp" : "0x8ae67a69",
  5353. "il_offset" : "0x00000"
  5354. }
  5355. ,
  5356. {
  5357. "is_managed" : "true",
  5358. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5359. "token" : "0x6001f7d",
  5360. "native_offset" : "0x0",
  5361. "filename" : "mscorlib.dll",
  5362. "sizeofimage" : "0x470000",
  5363. "timestamp" : "0xe8f31350",
  5364. "il_offset" : "0x00000"
  5365. }
  5366. ,
  5367. {
  5368. "is_managed" : "true",
  5369. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5370. "token" : "0x6001f25",
  5371. "native_offset" : "0x0",
  5372. "filename" : "mscorlib.dll",
  5373. "sizeofimage" : "0x470000",
  5374. "timestamp" : "0xe8f31350",
  5375. "il_offset" : "0x00000"
  5376. }
  5377. ,
  5378. {
  5379. "is_managed" : "true",
  5380. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5381. "token" : "0x6001f23",
  5382. "native_offset" : "0x0",
  5383. "filename" : "mscorlib.dll",
  5384. "sizeofimage" : "0x470000",
  5385. "timestamp" : "0xe8f31350",
  5386. "il_offset" : "0x00000"
  5387. }
  5388. ,
  5389. {
  5390. "is_managed" : "true",
  5391. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5392. "token" : "0x6001f22",
  5393. "native_offset" : "0x0",
  5394. "filename" : "mscorlib.dll",
  5395. "sizeofimage" : "0x470000",
  5396. "timestamp" : "0xe8f31350",
  5397. "il_offset" : "0x00000"
  5398. }
  5399. ,
  5400. {
  5401. "is_managed" : "true",
  5402. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5403. "token" : "0x6001f7f",
  5404. "native_offset" : "0x0",
  5405. "filename" : "mscorlib.dll",
  5406. "sizeofimage" : "0x470000",
  5407. "timestamp" : "0xe8f31350",
  5408. "il_offset" : "0x00000"
  5409. }
  5410. ,
  5411. {
  5412. "is_managed" : "true",
  5413. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5414. "token" : "0x00000",
  5415. "native_offset" : "0x0",
  5416. "filename" : "mscorlib.dll",
  5417. "sizeofimage" : "0x470000",
  5418. "timestamp" : "0xe8f31350",
  5419. "il_offset" : "0x00000"
  5420. }
  5421. ,
  5422. {
  5423. "is_managed" : "false",
  5424. "native_address" : "0x17f3d4eac",
  5425. "native_offset" : "0x00000"
  5426. }
  5427. ,
  5428. {
  5429. "is_managed" : "false",
  5430. "native_address" : "0x17f55b370",
  5431. "native_offset" : "0x00000"
  5432. }
  5433. ,
  5434. {
  5435. "is_managed" : "false",
  5436. "native_address" : "0x17f55cf80",
  5437. "native_offset" : "0x00000"
  5438. }
  5439. ,
  5440. {
  5441. "is_managed" : "false",
  5442. "native_address" : "0x17f57d49c",
  5443. "native_offset" : "0x00000"
  5444. }
  5445. ,
  5446. {
  5447. "is_managed" : "false",
  5448. "native_address" : "0x17f57d254",
  5449. "native_offset" : "0x00000"
  5450. }
  5451. ,
  5452. {
  5453. "is_managed" : "false",
  5454. "native_address" : "0x17f5fcd28",
  5455. "native_offset" : "0x00000"
  5456. }
  5457. ,
  5458. {
  5459. "is_managed" : "false",
  5460. "native_address" : "0x17f5fccb0",
  5461. "native_offset" : "0x00000"
  5462. }
  5463. ,
  5464. {
  5465. "is_managed" : "false",
  5466. "native_address" : "0x18625c2e4",
  5467. "native_offset" : "0x00000"
  5468. }
  5469. ,
  5470. {
  5471. "is_managed" : "false",
  5472. "native_address" : "0x1862570fc",
  5473. "native_offset" : "0x00000"
  5474. }
  5475. ]
  5476. },
  5477. {
  5478. "is_managed" : false,
  5479. "offset_free_hash" : "0x12c995373b",
  5480. "offset_rich_hash" : "0x12c995373b",
  5481. "crashed" : true,
  5482. "native_thread_id" : "0x36a783000",
  5483. "thread_info_addr" : "0x352b8ee00",
  5484. "thread_name" : "Burst-CompilerThread-7",
  5485. "ctx" : {
  5486. "IP" : "0x37ff35440",
  5487. "SP" : "0x36a780d80",
  5488. "BP" : "0x36a780d80"
  5489. },
  5490. "unmanaged_frames" : [
  5491. {
  5492. "is_managed" : "false",
  5493. "native_address" : "0x17f4452c4",
  5494. "native_offset" : "0x00000"
  5495. }
  5496. ,
  5497. {
  5498. "is_managed" : "false",
  5499. "native_address" : "0x17f57c63c",
  5500. "native_offset" : "0x00000"
  5501. }
  5502. ,
  5503. {
  5504. "is_managed" : "false",
  5505. "native_address" : "0x17f57c998",
  5506. "native_offset" : "0x00000"
  5507. }
  5508. ,
  5509. {
  5510. "is_managed" : "false",
  5511. "native_address" : "0x17f57cf88",
  5512. "native_offset" : "0x00000"
  5513. }
  5514. ,
  5515. {
  5516. "is_managed" : "false",
  5517. "native_address" : "0x17f487340",
  5518. "native_offset" : "0x00000"
  5519. }
  5520. ,
  5521. {
  5522. "is_managed" : "false",
  5523. "native_address" : "0x17f44945c",
  5524. "native_offset" : "0x00000"
  5525. }
  5526. ,
  5527. {
  5528. "is_managed" : "false",
  5529. "native_address" : "0x17f3d1bec",
  5530. "native_offset" : "0x00000"
  5531. }
  5532. ,
  5533. {
  5534. "is_managed" : "false",
  5535. "native_address" : "0x186292e04",
  5536. "native_offset" : "0x00000"
  5537. }
  5538. ,
  5539. {
  5540. "is_managed" : "true",
  5541. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5542. "token" : "0x6000010",
  5543. "native_offset" : "0x0",
  5544. "filename" : "Burst.Compiler.IL.dll",
  5545. "sizeofimage" : "0x1aa000",
  5546. "timestamp" : "0x8ae67a69",
  5547. "il_offset" : "0x00000"
  5548. }
  5549. ,
  5550. {
  5551. "is_managed" : "true",
  5552. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5553. "token" : "0x6000a97",
  5554. "native_offset" : "0x0",
  5555. "filename" : "Burst.Compiler.IL.dll",
  5556. "sizeofimage" : "0x1aa000",
  5557. "timestamp" : "0x8ae67a69",
  5558. "il_offset" : "0x00000"
  5559. }
  5560. ,
  5561. {
  5562. "is_managed" : "true",
  5563. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5564. "token" : "0x6000be5",
  5565. "native_offset" : "0x0",
  5566. "filename" : "Burst.Compiler.IL.dll",
  5567. "sizeofimage" : "0x1aa000",
  5568. "timestamp" : "0x8ae67a69",
  5569. "il_offset" : "0x00000"
  5570. }
  5571. ,
  5572. {
  5573. "is_managed" : "true",
  5574. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5575. "token" : "0x6000be5",
  5576. "native_offset" : "0x0",
  5577. "filename" : "Burst.Compiler.IL.dll",
  5578. "sizeofimage" : "0x1aa000",
  5579. "timestamp" : "0x8ae67a69",
  5580. "il_offset" : "0x00000"
  5581. }
  5582. ,
  5583. {
  5584. "is_managed" : "true",
  5585. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5586. "token" : "0x6000be5",
  5587. "native_offset" : "0x0",
  5588. "filename" : "Burst.Compiler.IL.dll",
  5589. "sizeofimage" : "0x1aa000",
  5590. "timestamp" : "0x8ae67a69",
  5591. "il_offset" : "0x00000"
  5592. }
  5593. ,
  5594. {
  5595. "is_managed" : "true",
  5596. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5597. "token" : "0x6000be4",
  5598. "native_offset" : "0x0",
  5599. "filename" : "Burst.Compiler.IL.dll",
  5600. "sizeofimage" : "0x1aa000",
  5601. "timestamp" : "0x8ae67a69",
  5602. "il_offset" : "0x00000"
  5603. }
  5604. ,
  5605. {
  5606. "is_managed" : "true",
  5607. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5608. "token" : "0x60014ad",
  5609. "native_offset" : "0x0",
  5610. "filename" : "Burst.Compiler.IL.dll",
  5611. "sizeofimage" : "0x1aa000",
  5612. "timestamp" : "0x8ae67a69",
  5613. "il_offset" : "0x00000"
  5614. }
  5615. ,
  5616. {
  5617. "is_managed" : "true",
  5618. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5619. "token" : "0x60016b5",
  5620. "native_offset" : "0x0",
  5621. "filename" : "Burst.Compiler.IL.dll",
  5622. "sizeofimage" : "0x1aa000",
  5623. "timestamp" : "0x8ae67a69",
  5624. "il_offset" : "0x00000"
  5625. }
  5626. ,
  5627. {
  5628. "is_managed" : "true",
  5629. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5630. "token" : "0x600469b",
  5631. "native_offset" : "0x0",
  5632. "filename" : "mscorlib.dll",
  5633. "sizeofimage" : "0x470000",
  5634. "timestamp" : "0xe8f31350",
  5635. "il_offset" : "0x00000"
  5636. }
  5637. ,
  5638. {
  5639. "is_managed" : "true",
  5640. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5641. "token" : "0x60014b6",
  5642. "native_offset" : "0x0",
  5643. "filename" : "Burst.Compiler.IL.dll",
  5644. "sizeofimage" : "0x1aa000",
  5645. "timestamp" : "0x8ae67a69",
  5646. "il_offset" : "0x00000"
  5647. }
  5648. ,
  5649. {
  5650. "is_managed" : "true",
  5651. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5652. "token" : "0x6002300",
  5653. "native_offset" : "0x0",
  5654. "filename" : "mscorlib.dll",
  5655. "sizeofimage" : "0x470000",
  5656. "timestamp" : "0xe8f31350",
  5657. "il_offset" : "0x00000"
  5658. }
  5659. ,
  5660. {
  5661. "is_managed" : "true",
  5662. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5663. "token" : "0x60023fa",
  5664. "native_offset" : "0x0",
  5665. "filename" : "mscorlib.dll",
  5666. "sizeofimage" : "0x470000",
  5667. "timestamp" : "0xe8f31350",
  5668. "il_offset" : "0x00000"
  5669. }
  5670. ,
  5671. {
  5672. "is_managed" : "true",
  5673. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5674. "token" : "0x60023fd",
  5675. "native_offset" : "0x0",
  5676. "filename" : "mscorlib.dll",
  5677. "sizeofimage" : "0x470000",
  5678. "timestamp" : "0xe8f31350",
  5679. "il_offset" : "0x00000"
  5680. }
  5681. ,
  5682. {
  5683. "is_managed" : "true",
  5684. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5685. "token" : "0x6001f25",
  5686. "native_offset" : "0x0",
  5687. "filename" : "mscorlib.dll",
  5688. "sizeofimage" : "0x470000",
  5689. "timestamp" : "0xe8f31350",
  5690. "il_offset" : "0x00000"
  5691. }
  5692. ,
  5693. {
  5694. "is_managed" : "true",
  5695. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5696. "token" : "0x6001f23",
  5697. "native_offset" : "0x0",
  5698. "filename" : "mscorlib.dll",
  5699. "sizeofimage" : "0x470000",
  5700. "timestamp" : "0xe8f31350",
  5701. "il_offset" : "0x00000"
  5702. }
  5703. ,
  5704. {
  5705. "is_managed" : "true",
  5706. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5707. "token" : "0x6002466",
  5708. "native_offset" : "0x0",
  5709. "filename" : "mscorlib.dll",
  5710. "sizeofimage" : "0x470000",
  5711. "timestamp" : "0xe8f31350",
  5712. "il_offset" : "0x00000"
  5713. }
  5714. ,
  5715. {
  5716. "is_managed" : "true",
  5717. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5718. "token" : "0x60023fc",
  5719. "native_offset" : "0x0",
  5720. "filename" : "mscorlib.dll",
  5721. "sizeofimage" : "0x470000",
  5722. "timestamp" : "0xe8f31350",
  5723. "il_offset" : "0x00000"
  5724. }
  5725. ,
  5726. {
  5727. "is_managed" : "true",
  5728. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5729. "token" : "0x6002547",
  5730. "native_offset" : "0x0",
  5731. "filename" : "mscorlib.dll",
  5732. "sizeofimage" : "0x470000",
  5733. "timestamp" : "0xe8f31350",
  5734. "il_offset" : "0x00000"
  5735. }
  5736. ,
  5737. {
  5738. "is_managed" : "true",
  5739. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5740. "token" : "0x60014ca",
  5741. "native_offset" : "0x0",
  5742. "filename" : "Burst.Compiler.IL.dll",
  5743. "sizeofimage" : "0x1aa000",
  5744. "timestamp" : "0x8ae67a69",
  5745. "il_offset" : "0x00000"
  5746. }
  5747. ,
  5748. {
  5749. "is_managed" : "true",
  5750. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  5751. "token" : "0x6000bdf",
  5752. "native_offset" : "0x0",
  5753. "filename" : "Burst.Compiler.IL.dll",
  5754. "sizeofimage" : "0x1aa000",
  5755. "timestamp" : "0x8ae67a69",
  5756. "il_offset" : "0x00000"
  5757. }
  5758. ,
  5759. {
  5760. "is_managed" : "true",
  5761. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5762. "token" : "0x6001f7d",
  5763. "native_offset" : "0x0",
  5764. "filename" : "mscorlib.dll",
  5765. "sizeofimage" : "0x470000",
  5766. "timestamp" : "0xe8f31350",
  5767. "il_offset" : "0x00000"
  5768. }
  5769. ,
  5770. {
  5771. "is_managed" : "true",
  5772. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5773. "token" : "0x6001f25",
  5774. "native_offset" : "0x0",
  5775. "filename" : "mscorlib.dll",
  5776. "sizeofimage" : "0x470000",
  5777. "timestamp" : "0xe8f31350",
  5778. "il_offset" : "0x00000"
  5779. }
  5780. ,
  5781. {
  5782. "is_managed" : "true",
  5783. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5784. "token" : "0x6001f23",
  5785. "native_offset" : "0x0",
  5786. "filename" : "mscorlib.dll",
  5787. "sizeofimage" : "0x470000",
  5788. "timestamp" : "0xe8f31350",
  5789. "il_offset" : "0x00000"
  5790. }
  5791. ,
  5792. {
  5793. "is_managed" : "true",
  5794. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5795. "token" : "0x6001f22",
  5796. "native_offset" : "0x0",
  5797. "filename" : "mscorlib.dll",
  5798. "sizeofimage" : "0x470000",
  5799. "timestamp" : "0xe8f31350",
  5800. "il_offset" : "0x00000"
  5801. }
  5802. ,
  5803. {
  5804. "is_managed" : "true",
  5805. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5806. "token" : "0x6001f7f",
  5807. "native_offset" : "0x0",
  5808. "filename" : "mscorlib.dll",
  5809. "sizeofimage" : "0x470000",
  5810. "timestamp" : "0xe8f31350",
  5811. "il_offset" : "0x00000"
  5812. }
  5813. ,
  5814. {
  5815. "is_managed" : "true",
  5816. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5817. "token" : "0x00000",
  5818. "native_offset" : "0x0",
  5819. "filename" : "mscorlib.dll",
  5820. "sizeofimage" : "0x470000",
  5821. "timestamp" : "0xe8f31350",
  5822. "il_offset" : "0x00000"
  5823. }
  5824. ,
  5825. {
  5826. "is_managed" : "false",
  5827. "native_address" : "0x17f3d4eac",
  5828. "native_offset" : "0x00000"
  5829. }
  5830. ,
  5831. {
  5832. "is_managed" : "false",
  5833. "native_address" : "0x17f55b370",
  5834. "native_offset" : "0x00000"
  5835. }
  5836. ,
  5837. {
  5838. "is_managed" : "false",
  5839. "native_address" : "0x17f55cf80",
  5840. "native_offset" : "0x00000"
  5841. }
  5842. ,
  5843. {
  5844. "is_managed" : "false",
  5845. "native_address" : "0x17f57d49c",
  5846. "native_offset" : "0x00000"
  5847. }
  5848. ,
  5849. {
  5850. "is_managed" : "false",
  5851. "native_address" : "0x17f57d254",
  5852. "native_offset" : "0x00000"
  5853. }
  5854. ,
  5855. {
  5856. "is_managed" : "false",
  5857. "native_address" : "0x17f5fcd28",
  5858. "native_offset" : "0x00000"
  5859. }
  5860. ,
  5861. {
  5862. "is_managed" : "false",
  5863. "native_address" : "0x17f5fccb0",
  5864. "native_offset" : "0x00000"
  5865. }
  5866. ,
  5867. {
  5868. "is_managed" : "false",
  5869. "native_address" : "0x18625c2e4",
  5870. "native_offset" : "0x00000"
  5871. }
  5872. ,
  5873. {
  5874. "is_managed" : "false",
  5875. "native_address" : "0x1862570fc",
  5876. "native_offset" : "0x00000"
  5877. }
  5878. ]
  5879. },
  5880. {
  5881. "is_managed" : true,
  5882. "offset_free_hash" : "0x28d64da3f0",
  5883. "offset_rich_hash" : "0x28d64dada2",
  5884. "crashed" : false,
  5885. "native_thread_id" : "0x347f5b000",
  5886. "thread_info_addr" : "0x352b47200",
  5887. "thread_name" : "Burst-CompilerThread-1",
  5888. "ctx" : {
  5889. "IP" : "0x18621afa8",
  5890. "SP" : "0x347f585a0",
  5891. "BP" : "0x347f585a0"
  5892. },
  5893. "managed_frames" : [
  5894. {
  5895. "is_managed" : "false",
  5896. "native_address" : "unregistered"
  5897. }
  5898. ,
  5899. {
  5900. "is_managed" : "true",
  5901. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  5902. "token" : "0x00000",
  5903. "native_offset" : "0x0",
  5904. "filename" : "mscorlib.dll",
  5905. "sizeofimage" : "0x470000",
  5906. "timestamp" : "0xe8f31350",
  5907. "il_offset" : "0xffffffff"
  5908. }
  5909. ,
  5910. {
  5911. "is_managed" : "true",
  5912. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  5913. "token" : "0x600018b",
  5914. "native_offset" : "0x0",
  5915. "filename" : "Unity.Burst.Cecil.dll",
  5916. "sizeofimage" : "0x5e000",
  5917. "timestamp" : "0x848efc4c",
  5918. "il_offset" : "0x00016"
  5919. }
  5920. ,
  5921. {
  5922. "is_managed" : "true",
  5923. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  5924. "token" : "0x600085d",
  5925. "native_offset" : "0x0",
  5926. "filename" : "Unity.Burst.Cecil.dll",
  5927. "sizeofimage" : "0x5e000",
  5928. "timestamp" : "0x848efc4c",
  5929. "il_offset" : "0x00000"
  5930. }
  5931. ,
  5932. {
  5933. "is_managed" : "true",
  5934. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  5935. "token" : "0x6000710",
  5936. "native_offset" : "0x0",
  5937. "filename" : "Unity.Burst.Cecil.dll",
  5938. "sizeofimage" : "0x5e000",
  5939. "timestamp" : "0x848efc4c",
  5940. "il_offset" : "0x00040"
  5941. }
  5942. ,
  5943. {
  5944. "is_managed" : "true",
  5945. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  5946. "token" : "0x6000809",
  5947. "native_offset" : "0x0",
  5948. "filename" : "Unity.Burst.Cecil.dll",
  5949. "sizeofimage" : "0x5e000",
  5950. "timestamp" : "0x848efc4c",
  5951. "il_offset" : "0x0001d"
  5952. }
  5953. ,
  5954. {
  5955. "is_managed" : "true",
  5956. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  5957. "token" : "0x6000129",
  5958. "native_offset" : "0x0",
  5959. "filename" : "Unity.Burst.Cecil.dll",
  5960. "sizeofimage" : "0x5e000",
  5961. "timestamp" : "0x848efc4c",
  5962. "il_offset" : "0x00000"
  5963. }
  5964. ,
  5965. {
  5966. "is_managed" : "true",
  5967. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  5968. "token" : "0x6000122",
  5969. "native_offset" : "0x0",
  5970. "filename" : "Unity.Burst.Cecil.dll",
  5971. "sizeofimage" : "0x5e000",
  5972. "timestamp" : "0x848efc4c",
  5973. "il_offset" : "0x00059"
  5974. }
  5975. ,
  5976. {
  5977. "is_managed" : "true",
  5978. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  5979. "token" : "0x6000121",
  5980. "native_offset" : "0x0",
  5981. "filename" : "Unity.Burst.Cecil.dll",
  5982. "sizeofimage" : "0x5e000",
  5983. "timestamp" : "0x848efc4c",
  5984. "il_offset" : "0x0000c"
  5985. }
  5986. ,
  5987. {
  5988. "is_managed" : "true",
  5989. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  5990. "token" : "0x6000120",
  5991. "native_offset" : "0x0",
  5992. "filename" : "Unity.Burst.Cecil.dll",
  5993. "sizeofimage" : "0x5e000",
  5994. "timestamp" : "0x848efc4c",
  5995. "il_offset" : "0x0004f"
  5996. }
  5997. ,
  5998. {
  5999. "is_managed" : "true",
  6000. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6001. "token" : "0x6000130",
  6002. "native_offset" : "0x0",
  6003. "filename" : "Unity.Burst.Cecil.dll",
  6004. "sizeofimage" : "0x5e000",
  6005. "timestamp" : "0x848efc4c",
  6006. "il_offset" : "0x00007"
  6007. }
  6008. ,
  6009. {
  6010. "is_managed" : "true",
  6011. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6012. "token" : "0x600070e",
  6013. "native_offset" : "0x0",
  6014. "filename" : "Unity.Burst.Cecil.dll",
  6015. "sizeofimage" : "0x5e000",
  6016. "timestamp" : "0x848efc4c",
  6017. "il_offset" : "0x00029"
  6018. }
  6019. ,
  6020. {
  6021. "is_managed" : "true",
  6022. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6023. "token" : "0x600011f",
  6024. "native_offset" : "0x0",
  6025. "filename" : "Unity.Burst.Cecil.dll",
  6026. "sizeofimage" : "0x5e000",
  6027. "timestamp" : "0x848efc4c",
  6028. "il_offset" : "0x00000"
  6029. }
  6030. ,
  6031. {
  6032. "is_managed" : "true",
  6033. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6034. "token" : "0x600011a",
  6035. "native_offset" : "0x0",
  6036. "filename" : "Unity.Burst.Cecil.dll",
  6037. "sizeofimage" : "0x5e000",
  6038. "timestamp" : "0x848efc4c",
  6039. "il_offset" : "0x0007b"
  6040. }
  6041. ,
  6042. {
  6043. "is_managed" : "true",
  6044. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6045. "token" : "0x600071e",
  6046. "native_offset" : "0x0",
  6047. "filename" : "Unity.Burst.Cecil.dll",
  6048. "sizeofimage" : "0x5e000",
  6049. "timestamp" : "0x848efc4c",
  6050. "il_offset" : "0x0000d"
  6051. }
  6052. ,
  6053. {
  6054. "is_managed" : "true",
  6055. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6056. "token" : "0x600071a",
  6057. "native_offset" : "0x0",
  6058. "filename" : "Unity.Burst.Cecil.dll",
  6059. "sizeofimage" : "0x5e000",
  6060. "timestamp" : "0x848efc4c",
  6061. "il_offset" : "0x0005b"
  6062. }
  6063. ,
  6064. {
  6065. "is_managed" : "true",
  6066. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6067. "token" : "0x60001af",
  6068. "native_offset" : "0x0",
  6069. "filename" : "Burst.Compiler.IL.dll",
  6070. "sizeofimage" : "0x1aa000",
  6071. "timestamp" : "0x8ae67a69",
  6072. "il_offset" : "0x0000f"
  6073. }
  6074. ,
  6075. {
  6076. "is_managed" : "true",
  6077. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6078. "token" : "0x60001ae",
  6079. "native_offset" : "0x0",
  6080. "filename" : "Burst.Compiler.IL.dll",
  6081. "sizeofimage" : "0x1aa000",
  6082. "timestamp" : "0x8ae67a69",
  6083. "il_offset" : "0x00073"
  6084. }
  6085. ,
  6086. {
  6087. "is_managed" : "true",
  6088. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6089. "token" : "0x600032f",
  6090. "native_offset" : "0x0",
  6091. "filename" : "Unity.Burst.Cecil.dll",
  6092. "sizeofimage" : "0x5e000",
  6093. "timestamp" : "0x848efc4c",
  6094. "il_offset" : "0x0000c"
  6095. }
  6096. ,
  6097. {
  6098. "is_managed" : "true",
  6099. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6100. "token" : "0x600000b",
  6101. "native_offset" : "0x0",
  6102. "filename" : "Burst.Compiler.IL.dll",
  6103. "sizeofimage" : "0x1aa000",
  6104. "timestamp" : "0x8ae67a69",
  6105. "il_offset" : "0x00007"
  6106. }
  6107. ,
  6108. {
  6109. "is_managed" : "true",
  6110. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6111. "token" : "0x60001a3",
  6112. "native_offset" : "0x0",
  6113. "filename" : "Burst.Compiler.IL.dll",
  6114. "sizeofimage" : "0x1aa000",
  6115. "timestamp" : "0x8ae67a69",
  6116. "il_offset" : "0x0007e"
  6117. }
  6118. ,
  6119. {
  6120. "is_managed" : "true",
  6121. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6122. "token" : "0x6000be5",
  6123. "native_offset" : "0x0",
  6124. "filename" : "Burst.Compiler.IL.dll",
  6125. "sizeofimage" : "0x1aa000",
  6126. "timestamp" : "0x8ae67a69",
  6127. "il_offset" : "0x001d3"
  6128. }
  6129. ,
  6130. {
  6131. "is_managed" : "true",
  6132. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6133. "token" : "0x6000be4",
  6134. "native_offset" : "0x0",
  6135. "filename" : "Burst.Compiler.IL.dll",
  6136. "sizeofimage" : "0x1aa000",
  6137. "timestamp" : "0x8ae67a69",
  6138. "il_offset" : "0x00071"
  6139. }
  6140. ,
  6141. {
  6142. "is_managed" : "true",
  6143. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6144. "token" : "0x60014ad",
  6145. "native_offset" : "0x0",
  6146. "filename" : "Burst.Compiler.IL.dll",
  6147. "sizeofimage" : "0x1aa000",
  6148. "timestamp" : "0x8ae67a69",
  6149. "il_offset" : "0x0005e"
  6150. }
  6151. ,
  6152. {
  6153. "is_managed" : "true",
  6154. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6155. "token" : "0x60016b5",
  6156. "native_offset" : "0x0",
  6157. "filename" : "Burst.Compiler.IL.dll",
  6158. "sizeofimage" : "0x1aa000",
  6159. "timestamp" : "0x8ae67a69",
  6160. "il_offset" : "0x00058"
  6161. }
  6162. ,
  6163. {
  6164. "is_managed" : "true",
  6165. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6166. "token" : "0x600469b",
  6167. "native_offset" : "0x0",
  6168. "filename" : "mscorlib.dll",
  6169. "sizeofimage" : "0x470000",
  6170. "timestamp" : "0xe8f31350",
  6171. "il_offset" : "0x0002c"
  6172. }
  6173. ,
  6174. {
  6175. "is_managed" : "true",
  6176. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6177. "token" : "0x60014b6",
  6178. "native_offset" : "0x0",
  6179. "filename" : "Burst.Compiler.IL.dll",
  6180. "sizeofimage" : "0x1aa000",
  6181. "timestamp" : "0x8ae67a69",
  6182. "il_offset" : "0x0001c"
  6183. }
  6184. ,
  6185. {
  6186. "is_managed" : "true",
  6187. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6188. "token" : "0x6002300",
  6189. "native_offset" : "0x0",
  6190. "filename" : "mscorlib.dll",
  6191. "sizeofimage" : "0x470000",
  6192. "timestamp" : "0xe8f31350",
  6193. "il_offset" : "0x0000f"
  6194. }
  6195. ,
  6196. {
  6197. "is_managed" : "true",
  6198. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6199. "token" : "0x60023fa",
  6200. "native_offset" : "0x0",
  6201. "filename" : "mscorlib.dll",
  6202. "sizeofimage" : "0x470000",
  6203. "timestamp" : "0xe8f31350",
  6204. "il_offset" : "0x00000"
  6205. }
  6206. ,
  6207. {
  6208. "is_managed" : "true",
  6209. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6210. "token" : "0x60023fd",
  6211. "native_offset" : "0x0",
  6212. "filename" : "mscorlib.dll",
  6213. "sizeofimage" : "0x470000",
  6214. "timestamp" : "0xe8f31350",
  6215. "il_offset" : "0x00000"
  6216. }
  6217. ,
  6218. {
  6219. "is_managed" : "true",
  6220. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6221. "token" : "0x6001f25",
  6222. "native_offset" : "0x0",
  6223. "filename" : "mscorlib.dll",
  6224. "sizeofimage" : "0x470000",
  6225. "timestamp" : "0xe8f31350",
  6226. "il_offset" : "0x00071"
  6227. }
  6228. ,
  6229. {
  6230. "is_managed" : "true",
  6231. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6232. "token" : "0x6001f23",
  6233. "native_offset" : "0x0",
  6234. "filename" : "mscorlib.dll",
  6235. "sizeofimage" : "0x470000",
  6236. "timestamp" : "0xe8f31350",
  6237. "il_offset" : "0x00000"
  6238. }
  6239. ,
  6240. {
  6241. "is_managed" : "true",
  6242. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6243. "token" : "0x6002466",
  6244. "native_offset" : "0x0",
  6245. "filename" : "mscorlib.dll",
  6246. "sizeofimage" : "0x470000",
  6247. "timestamp" : "0xe8f31350",
  6248. "il_offset" : "0x00034"
  6249. }
  6250. ,
  6251. {
  6252. "is_managed" : "true",
  6253. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6254. "token" : "0x60023fc",
  6255. "native_offset" : "0x0",
  6256. "filename" : "mscorlib.dll",
  6257. "sizeofimage" : "0x470000",
  6258. "timestamp" : "0xe8f31350",
  6259. "il_offset" : "0x0004a"
  6260. }
  6261. ,
  6262. {
  6263. "is_managed" : "true",
  6264. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6265. "token" : "0x6002547",
  6266. "native_offset" : "0x0",
  6267. "filename" : "mscorlib.dll",
  6268. "sizeofimage" : "0x470000",
  6269. "timestamp" : "0xe8f31350",
  6270. "il_offset" : "0x00014"
  6271. }
  6272. ,
  6273. {
  6274. "is_managed" : "true",
  6275. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6276. "token" : "0x60014ca",
  6277. "native_offset" : "0x0",
  6278. "filename" : "Burst.Compiler.IL.dll",
  6279. "sizeofimage" : "0x1aa000",
  6280. "timestamp" : "0x8ae67a69",
  6281. "il_offset" : "0x00000"
  6282. }
  6283. ,
  6284. {
  6285. "is_managed" : "true",
  6286. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6287. "token" : "0x6000bdf",
  6288. "native_offset" : "0x0",
  6289. "filename" : "Burst.Compiler.IL.dll",
  6290. "sizeofimage" : "0x1aa000",
  6291. "timestamp" : "0x8ae67a69",
  6292. "il_offset" : "0x000f5"
  6293. }
  6294. ,
  6295. {
  6296. "is_managed" : "true",
  6297. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6298. "token" : "0x6001f7d",
  6299. "native_offset" : "0x0",
  6300. "filename" : "mscorlib.dll",
  6301. "sizeofimage" : "0x470000",
  6302. "timestamp" : "0xe8f31350",
  6303. "il_offset" : "0x00014"
  6304. }
  6305. ,
  6306. {
  6307. "is_managed" : "true",
  6308. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6309. "token" : "0x6001f25",
  6310. "native_offset" : "0x0",
  6311. "filename" : "mscorlib.dll",
  6312. "sizeofimage" : "0x470000",
  6313. "timestamp" : "0xe8f31350",
  6314. "il_offset" : "0x00071"
  6315. }
  6316. ,
  6317. {
  6318. "is_managed" : "true",
  6319. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6320. "token" : "0x6001f23",
  6321. "native_offset" : "0x0",
  6322. "filename" : "mscorlib.dll",
  6323. "sizeofimage" : "0x470000",
  6324. "timestamp" : "0xe8f31350",
  6325. "il_offset" : "0x00000"
  6326. }
  6327. ,
  6328. {
  6329. "is_managed" : "true",
  6330. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6331. "token" : "0x6001f22",
  6332. "native_offset" : "0x0",
  6333. "filename" : "mscorlib.dll",
  6334. "sizeofimage" : "0x470000",
  6335. "timestamp" : "0xe8f31350",
  6336. "il_offset" : "0x0002b"
  6337. }
  6338. ,
  6339. {
  6340. "is_managed" : "true",
  6341. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6342. "token" : "0x6001f7f",
  6343. "native_offset" : "0x0",
  6344. "filename" : "mscorlib.dll",
  6345. "sizeofimage" : "0x470000",
  6346. "timestamp" : "0xe8f31350",
  6347. "il_offset" : "0x00008"
  6348. }
  6349. ,
  6350. {
  6351. "is_managed" : "true",
  6352. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6353. "token" : "0x00000",
  6354. "native_offset" : "0x0",
  6355. "filename" : "mscorlib.dll",
  6356. "sizeofimage" : "0x470000",
  6357. "timestamp" : "0xe8f31350",
  6358. "il_offset" : "0x00065"
  6359. }
  6360. ],
  6361. "unmanaged_frames" : [
  6362. {
  6363. "is_managed" : "false",
  6364. "native_address" : "0x17f4452c4",
  6365. "native_offset" : "0x00000"
  6366. }
  6367. ,
  6368. {
  6369. "is_managed" : "false",
  6370. "native_address" : "0x17f57c63c",
  6371. "native_offset" : "0x00000"
  6372. }
  6373. ,
  6374. {
  6375. "is_managed" : "false",
  6376. "native_address" : "0x17f57c998",
  6377. "native_offset" : "0x00000"
  6378. }
  6379. ,
  6380. {
  6381. "is_managed" : "false",
  6382. "native_address" : "0x17f57c760",
  6383. "native_offset" : "0x00000"
  6384. }
  6385. ,
  6386. {
  6387. "is_managed" : "false",
  6388. "native_address" : "0x17f4864f4",
  6389. "native_offset" : "0x00000"
  6390. }
  6391. ,
  6392. {
  6393. "is_managed" : "false",
  6394. "native_address" : "0x186292e04",
  6395. "native_offset" : "0x00000"
  6396. }
  6397. ,
  6398. {
  6399. "is_managed" : "false",
  6400. "native_address" : "0x186259170",
  6401. "native_offset" : "0x00000"
  6402. }
  6403. ,
  6404. {
  6405. "is_managed" : "false",
  6406. "native_address" : "0x17f5e9ffc",
  6407. "native_offset" : "0x00000"
  6408. }
  6409. ,
  6410. {
  6411. "is_managed" : "false",
  6412. "native_address" : "0x17f5f4d34",
  6413. "native_offset" : "0x00000"
  6414. }
  6415. ,
  6416. {
  6417. "is_managed" : "false",
  6418. "native_address" : "0x17f5ba958",
  6419. "native_offset" : "0x00000"
  6420. }
  6421. ,
  6422. {
  6423. "is_managed" : "false",
  6424. "native_address" : "0x17f55f808",
  6425. "native_offset" : "0x00000"
  6426. }
  6427. ,
  6428. {
  6429. "is_managed" : "false",
  6430. "native_address" : "0x17f55fbc0",
  6431. "native_offset" : "0x00000"
  6432. }
  6433. ,
  6434. {
  6435. "is_managed" : "true",
  6436. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6437. "token" : "0x00000",
  6438. "native_offset" : "0x0",
  6439. "filename" : "mscorlib.dll",
  6440. "sizeofimage" : "0x470000",
  6441. "timestamp" : "0xe8f31350",
  6442. "il_offset" : "0x00000"
  6443. }
  6444. ,
  6445. {
  6446. "is_managed" : "true",
  6447. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6448. "token" : "0x600018b",
  6449. "native_offset" : "0x0",
  6450. "filename" : "Unity.Burst.Cecil.dll",
  6451. "sizeofimage" : "0x5e000",
  6452. "timestamp" : "0x848efc4c",
  6453. "il_offset" : "0x00000"
  6454. }
  6455. ,
  6456. {
  6457. "is_managed" : "true",
  6458. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6459. "token" : "0x600085d",
  6460. "native_offset" : "0x0",
  6461. "filename" : "Unity.Burst.Cecil.dll",
  6462. "sizeofimage" : "0x5e000",
  6463. "timestamp" : "0x848efc4c",
  6464. "il_offset" : "0x00000"
  6465. }
  6466. ,
  6467. {
  6468. "is_managed" : "true",
  6469. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6470. "token" : "0x6000710",
  6471. "native_offset" : "0x0",
  6472. "filename" : "Unity.Burst.Cecil.dll",
  6473. "sizeofimage" : "0x5e000",
  6474. "timestamp" : "0x848efc4c",
  6475. "il_offset" : "0x00000"
  6476. }
  6477. ,
  6478. {
  6479. "is_managed" : "true",
  6480. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6481. "token" : "0x6000809",
  6482. "native_offset" : "0x0",
  6483. "filename" : "Unity.Burst.Cecil.dll",
  6484. "sizeofimage" : "0x5e000",
  6485. "timestamp" : "0x848efc4c",
  6486. "il_offset" : "0x00000"
  6487. }
  6488. ,
  6489. {
  6490. "is_managed" : "true",
  6491. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6492. "token" : "0x6000129",
  6493. "native_offset" : "0x0",
  6494. "filename" : "Unity.Burst.Cecil.dll",
  6495. "sizeofimage" : "0x5e000",
  6496. "timestamp" : "0x848efc4c",
  6497. "il_offset" : "0x00000"
  6498. }
  6499. ,
  6500. {
  6501. "is_managed" : "true",
  6502. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6503. "token" : "0x6000122",
  6504. "native_offset" : "0x0",
  6505. "filename" : "Unity.Burst.Cecil.dll",
  6506. "sizeofimage" : "0x5e000",
  6507. "timestamp" : "0x848efc4c",
  6508. "il_offset" : "0x00000"
  6509. }
  6510. ,
  6511. {
  6512. "is_managed" : "true",
  6513. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6514. "token" : "0x6000121",
  6515. "native_offset" : "0x0",
  6516. "filename" : "Unity.Burst.Cecil.dll",
  6517. "sizeofimage" : "0x5e000",
  6518. "timestamp" : "0x848efc4c",
  6519. "il_offset" : "0x00000"
  6520. }
  6521. ,
  6522. {
  6523. "is_managed" : "true",
  6524. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6525. "token" : "0x6000120",
  6526. "native_offset" : "0x0",
  6527. "filename" : "Unity.Burst.Cecil.dll",
  6528. "sizeofimage" : "0x5e000",
  6529. "timestamp" : "0x848efc4c",
  6530. "il_offset" : "0x00000"
  6531. }
  6532. ,
  6533. {
  6534. "is_managed" : "true",
  6535. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6536. "token" : "0x6000130",
  6537. "native_offset" : "0x0",
  6538. "filename" : "Unity.Burst.Cecil.dll",
  6539. "sizeofimage" : "0x5e000",
  6540. "timestamp" : "0x848efc4c",
  6541. "il_offset" : "0x00000"
  6542. }
  6543. ,
  6544. {
  6545. "is_managed" : "true",
  6546. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6547. "token" : "0x600070e",
  6548. "native_offset" : "0x0",
  6549. "filename" : "Unity.Burst.Cecil.dll",
  6550. "sizeofimage" : "0x5e000",
  6551. "timestamp" : "0x848efc4c",
  6552. "il_offset" : "0x00000"
  6553. }
  6554. ,
  6555. {
  6556. "is_managed" : "true",
  6557. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6558. "token" : "0x600011f",
  6559. "native_offset" : "0x0",
  6560. "filename" : "Unity.Burst.Cecil.dll",
  6561. "sizeofimage" : "0x5e000",
  6562. "timestamp" : "0x848efc4c",
  6563. "il_offset" : "0x00000"
  6564. }
  6565. ,
  6566. {
  6567. "is_managed" : "true",
  6568. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6569. "token" : "0x600011a",
  6570. "native_offset" : "0x0",
  6571. "filename" : "Unity.Burst.Cecil.dll",
  6572. "sizeofimage" : "0x5e000",
  6573. "timestamp" : "0x848efc4c",
  6574. "il_offset" : "0x00000"
  6575. }
  6576. ,
  6577. {
  6578. "is_managed" : "true",
  6579. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6580. "token" : "0x600071e",
  6581. "native_offset" : "0x0",
  6582. "filename" : "Unity.Burst.Cecil.dll",
  6583. "sizeofimage" : "0x5e000",
  6584. "timestamp" : "0x848efc4c",
  6585. "il_offset" : "0x00000"
  6586. }
  6587. ,
  6588. {
  6589. "is_managed" : "true",
  6590. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6591. "token" : "0x600071a",
  6592. "native_offset" : "0x0",
  6593. "filename" : "Unity.Burst.Cecil.dll",
  6594. "sizeofimage" : "0x5e000",
  6595. "timestamp" : "0x848efc4c",
  6596. "il_offset" : "0x00000"
  6597. }
  6598. ,
  6599. {
  6600. "is_managed" : "true",
  6601. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6602. "token" : "0x60001af",
  6603. "native_offset" : "0x0",
  6604. "filename" : "Burst.Compiler.IL.dll",
  6605. "sizeofimage" : "0x1aa000",
  6606. "timestamp" : "0x8ae67a69",
  6607. "il_offset" : "0x00000"
  6608. }
  6609. ,
  6610. {
  6611. "is_managed" : "true",
  6612. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6613. "token" : "0x60001ae",
  6614. "native_offset" : "0x0",
  6615. "filename" : "Burst.Compiler.IL.dll",
  6616. "sizeofimage" : "0x1aa000",
  6617. "timestamp" : "0x8ae67a69",
  6618. "il_offset" : "0x00000"
  6619. }
  6620. ,
  6621. {
  6622. "is_managed" : "true",
  6623. "guid" : "853812AE-52C3-41DA-AEF3-C62ECDB86B32",
  6624. "token" : "0x600032f",
  6625. "native_offset" : "0x0",
  6626. "filename" : "Unity.Burst.Cecil.dll",
  6627. "sizeofimage" : "0x5e000",
  6628. "timestamp" : "0x848efc4c",
  6629. "il_offset" : "0x00000"
  6630. }
  6631. ,
  6632. {
  6633. "is_managed" : "true",
  6634. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6635. "token" : "0x600000b",
  6636. "native_offset" : "0x0",
  6637. "filename" : "Burst.Compiler.IL.dll",
  6638. "sizeofimage" : "0x1aa000",
  6639. "timestamp" : "0x8ae67a69",
  6640. "il_offset" : "0x00000"
  6641. }
  6642. ,
  6643. {
  6644. "is_managed" : "true",
  6645. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6646. "token" : "0x60001a3",
  6647. "native_offset" : "0x0",
  6648. "filename" : "Burst.Compiler.IL.dll",
  6649. "sizeofimage" : "0x1aa000",
  6650. "timestamp" : "0x8ae67a69",
  6651. "il_offset" : "0x00000"
  6652. }
  6653. ,
  6654. {
  6655. "is_managed" : "true",
  6656. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6657. "token" : "0x6000be5",
  6658. "native_offset" : "0x0",
  6659. "filename" : "Burst.Compiler.IL.dll",
  6660. "sizeofimage" : "0x1aa000",
  6661. "timestamp" : "0x8ae67a69",
  6662. "il_offset" : "0x00000"
  6663. }
  6664. ,
  6665. {
  6666. "is_managed" : "true",
  6667. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6668. "token" : "0x6000be4",
  6669. "native_offset" : "0x0",
  6670. "filename" : "Burst.Compiler.IL.dll",
  6671. "sizeofimage" : "0x1aa000",
  6672. "timestamp" : "0x8ae67a69",
  6673. "il_offset" : "0x00000"
  6674. }
  6675. ,
  6676. {
  6677. "is_managed" : "true",
  6678. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6679. "token" : "0x60014ad",
  6680. "native_offset" : "0x0",
  6681. "filename" : "Burst.Compiler.IL.dll",
  6682. "sizeofimage" : "0x1aa000",
  6683. "timestamp" : "0x8ae67a69",
  6684. "il_offset" : "0x00000"
  6685. }
  6686. ,
  6687. {
  6688. "is_managed" : "true",
  6689. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6690. "token" : "0x60016b5",
  6691. "native_offset" : "0x0",
  6692. "filename" : "Burst.Compiler.IL.dll",
  6693. "sizeofimage" : "0x1aa000",
  6694. "timestamp" : "0x8ae67a69",
  6695. "il_offset" : "0x00000"
  6696. }
  6697. ,
  6698. {
  6699. "is_managed" : "true",
  6700. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6701. "token" : "0x600469b",
  6702. "native_offset" : "0x0",
  6703. "filename" : "mscorlib.dll",
  6704. "sizeofimage" : "0x470000",
  6705. "timestamp" : "0xe8f31350",
  6706. "il_offset" : "0x00000"
  6707. }
  6708. ,
  6709. {
  6710. "is_managed" : "true",
  6711. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6712. "token" : "0x60014b6",
  6713. "native_offset" : "0x0",
  6714. "filename" : "Burst.Compiler.IL.dll",
  6715. "sizeofimage" : "0x1aa000",
  6716. "timestamp" : "0x8ae67a69",
  6717. "il_offset" : "0x00000"
  6718. }
  6719. ,
  6720. {
  6721. "is_managed" : "true",
  6722. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6723. "token" : "0x6002300",
  6724. "native_offset" : "0x0",
  6725. "filename" : "mscorlib.dll",
  6726. "sizeofimage" : "0x470000",
  6727. "timestamp" : "0xe8f31350",
  6728. "il_offset" : "0x00000"
  6729. }
  6730. ,
  6731. {
  6732. "is_managed" : "true",
  6733. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6734. "token" : "0x60023fa",
  6735. "native_offset" : "0x0",
  6736. "filename" : "mscorlib.dll",
  6737. "sizeofimage" : "0x470000",
  6738. "timestamp" : "0xe8f31350",
  6739. "il_offset" : "0x00000"
  6740. }
  6741. ,
  6742. {
  6743. "is_managed" : "true",
  6744. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6745. "token" : "0x60023fd",
  6746. "native_offset" : "0x0",
  6747. "filename" : "mscorlib.dll",
  6748. "sizeofimage" : "0x470000",
  6749. "timestamp" : "0xe8f31350",
  6750. "il_offset" : "0x00000"
  6751. }
  6752. ,
  6753. {
  6754. "is_managed" : "true",
  6755. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6756. "token" : "0x6001f25",
  6757. "native_offset" : "0x0",
  6758. "filename" : "mscorlib.dll",
  6759. "sizeofimage" : "0x470000",
  6760. "timestamp" : "0xe8f31350",
  6761. "il_offset" : "0x00000"
  6762. }
  6763. ,
  6764. {
  6765. "is_managed" : "true",
  6766. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6767. "token" : "0x6001f23",
  6768. "native_offset" : "0x0",
  6769. "filename" : "mscorlib.dll",
  6770. "sizeofimage" : "0x470000",
  6771. "timestamp" : "0xe8f31350",
  6772. "il_offset" : "0x00000"
  6773. }
  6774. ,
  6775. {
  6776. "is_managed" : "true",
  6777. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6778. "token" : "0x6002466",
  6779. "native_offset" : "0x0",
  6780. "filename" : "mscorlib.dll",
  6781. "sizeofimage" : "0x470000",
  6782. "timestamp" : "0xe8f31350",
  6783. "il_offset" : "0x00000"
  6784. }
  6785. ,
  6786. {
  6787. "is_managed" : "true",
  6788. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6789. "token" : "0x60023fc",
  6790. "native_offset" : "0x0",
  6791. "filename" : "mscorlib.dll",
  6792. "sizeofimage" : "0x470000",
  6793. "timestamp" : "0xe8f31350",
  6794. "il_offset" : "0x00000"
  6795. }
  6796. ,
  6797. {
  6798. "is_managed" : "true",
  6799. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6800. "token" : "0x6002547",
  6801. "native_offset" : "0x0",
  6802. "filename" : "mscorlib.dll",
  6803. "sizeofimage" : "0x470000",
  6804. "timestamp" : "0xe8f31350",
  6805. "il_offset" : "0x00000"
  6806. }
  6807. ,
  6808. {
  6809. "is_managed" : "true",
  6810. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6811. "token" : "0x60014ca",
  6812. "native_offset" : "0x0",
  6813. "filename" : "Burst.Compiler.IL.dll",
  6814. "sizeofimage" : "0x1aa000",
  6815. "timestamp" : "0x8ae67a69",
  6816. "il_offset" : "0x00000"
  6817. }
  6818. ,
  6819. {
  6820. "is_managed" : "true",
  6821. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6822. "token" : "0x6000bdf",
  6823. "native_offset" : "0x0",
  6824. "filename" : "Burst.Compiler.IL.dll",
  6825. "sizeofimage" : "0x1aa000",
  6826. "timestamp" : "0x8ae67a69",
  6827. "il_offset" : "0x00000"
  6828. }
  6829. ,
  6830. {
  6831. "is_managed" : "true",
  6832. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6833. "token" : "0x6001f7d",
  6834. "native_offset" : "0x0",
  6835. "filename" : "mscorlib.dll",
  6836. "sizeofimage" : "0x470000",
  6837. "timestamp" : "0xe8f31350",
  6838. "il_offset" : "0x00000"
  6839. }
  6840. ,
  6841. {
  6842. "is_managed" : "true",
  6843. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6844. "token" : "0x6001f25",
  6845. "native_offset" : "0x0",
  6846. "filename" : "mscorlib.dll",
  6847. "sizeofimage" : "0x470000",
  6848. "timestamp" : "0xe8f31350",
  6849. "il_offset" : "0x00000"
  6850. }
  6851. ,
  6852. {
  6853. "is_managed" : "true",
  6854. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6855. "token" : "0x6001f23",
  6856. "native_offset" : "0x0",
  6857. "filename" : "mscorlib.dll",
  6858. "sizeofimage" : "0x470000",
  6859. "timestamp" : "0xe8f31350",
  6860. "il_offset" : "0x00000"
  6861. }
  6862. ,
  6863. {
  6864. "is_managed" : "true",
  6865. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6866. "token" : "0x6001f22",
  6867. "native_offset" : "0x0",
  6868. "filename" : "mscorlib.dll",
  6869. "sizeofimage" : "0x470000",
  6870. "timestamp" : "0xe8f31350",
  6871. "il_offset" : "0x00000"
  6872. }
  6873. ,
  6874. {
  6875. "is_managed" : "true",
  6876. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6877. "token" : "0x6001f7f",
  6878. "native_offset" : "0x0",
  6879. "filename" : "mscorlib.dll",
  6880. "sizeofimage" : "0x470000",
  6881. "timestamp" : "0xe8f31350",
  6882. "il_offset" : "0x00000"
  6883. }
  6884. ,
  6885. {
  6886. "is_managed" : "true",
  6887. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6888. "token" : "0x00000",
  6889. "native_offset" : "0x0",
  6890. "filename" : "mscorlib.dll",
  6891. "sizeofimage" : "0x470000",
  6892. "timestamp" : "0xe8f31350",
  6893. "il_offset" : "0x00000"
  6894. }
  6895. ,
  6896. {
  6897. "is_managed" : "false",
  6898. "native_address" : "0x17f3d4eac",
  6899. "native_offset" : "0x00000"
  6900. }
  6901. ,
  6902. {
  6903. "is_managed" : "false",
  6904. "native_address" : "0x17f55b370",
  6905. "native_offset" : "0x00000"
  6906. }
  6907. ,
  6908. {
  6909. "is_managed" : "false",
  6910. "native_address" : "0x17f55cf80",
  6911. "native_offset" : "0x00000"
  6912. }
  6913. ,
  6914. {
  6915. "is_managed" : "false",
  6916. "native_address" : "0x17f57d49c",
  6917. "native_offset" : "0x00000"
  6918. }
  6919. ,
  6920. {
  6921. "is_managed" : "false",
  6922. "native_address" : "0x17f57d254",
  6923. "native_offset" : "0x00000"
  6924. }
  6925. ,
  6926. {
  6927. "is_managed" : "false",
  6928. "native_address" : "0x17f5fcd28",
  6929. "native_offset" : "0x00000"
  6930. }
  6931. ,
  6932. {
  6933. "is_managed" : "false",
  6934. "native_address" : "0x17f5fccb0",
  6935. "native_offset" : "0x00000"
  6936. }
  6937. ,
  6938. {
  6939. "is_managed" : "false",
  6940. "native_address" : "0x18625c2e4",
  6941. "native_offset" : "0x00000"
  6942. }
  6943. ,
  6944. {
  6945. "is_managed" : "false",
  6946. "native_address" : "0x1862570fc",
  6947. "native_offset" : "0x00000"
  6948. }
  6949. ]
  6950. },
  6951. {
  6952. "is_managed" : true,
  6953. "offset_free_hash" : "0x26ee46c83a",
  6954. "offset_rich_hash" : "0x26ee46cfb5",
  6955. "crashed" : false,
  6956. "native_thread_id" : "0x36ab9b000",
  6957. "thread_info_addr" : "0x352c69200",
  6958. "thread_name" : "Burst-CompilerThread-9",
  6959. "ctx" : {
  6960. "IP" : "0x18621e6ec",
  6961. "SP" : "0x36ab98930",
  6962. "BP" : "0x36ab989c0"
  6963. },
  6964. "managed_frames" : [
  6965. {
  6966. "is_managed" : "false",
  6967. "native_address" : "unregistered"
  6968. }
  6969. ,
  6970. {
  6971. "is_managed" : "true",
  6972. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  6973. "token" : "0x00000",
  6974. "native_offset" : "0x0",
  6975. "filename" : "mscorlib.dll",
  6976. "sizeofimage" : "0x470000",
  6977. "timestamp" : "0xe8f31350",
  6978. "il_offset" : "0xffffffff"
  6979. }
  6980. ,
  6981. {
  6982. "is_managed" : "true",
  6983. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6984. "token" : "0x60001a6",
  6985. "native_offset" : "0x0",
  6986. "filename" : "Burst.Compiler.IL.dll",
  6987. "sizeofimage" : "0x1aa000",
  6988. "timestamp" : "0x8ae67a69",
  6989. "il_offset" : "0x00009"
  6990. }
  6991. ,
  6992. {
  6993. "is_managed" : "true",
  6994. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  6995. "token" : "0x6000eb5",
  6996. "native_offset" : "0x0",
  6997. "filename" : "Burst.Compiler.IL.dll",
  6998. "sizeofimage" : "0x1aa000",
  6999. "timestamp" : "0x8ae67a69",
  7000. "il_offset" : "0x0003d"
  7001. }
  7002. ,
  7003. {
  7004. "is_managed" : "true",
  7005. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  7006. "token" : "0x6000eae",
  7007. "native_offset" : "0x0",
  7008. "filename" : "Burst.Compiler.IL.dll",
  7009. "sizeofimage" : "0x1aa000",
  7010. "timestamp" : "0x8ae67a69",
  7011. "il_offset" : "0x000a0"
  7012. }
  7013. ,
  7014. {
  7015. "is_managed" : "true",
  7016. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  7017. "token" : "0x6000be5",
  7018. "native_offset" : "0x0",
  7019. "filename" : "Burst.Compiler.IL.dll",
  7020. "sizeofimage" : "0x1aa000",
  7021. "timestamp" : "0x8ae67a69",
  7022. "il_offset" : "0x00025"
  7023. }
  7024. ,
  7025. {
  7026. "is_managed" : "true",
  7027. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  7028. "token" : "0x6000be5",
  7029. "native_offset" : "0x0",
  7030. "filename" : "Burst.Compiler.IL.dll",
  7031. "sizeofimage" : "0x1aa000",
  7032. "timestamp" : "0x8ae67a69",
  7033. "il_offset" : "0x001de"
  7034. }
  7035. ,
  7036. {
  7037. "is_managed" : "true",
  7038. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  7039. "token" : "0x6000be4",
  7040. "native_offset" : "0x0",
  7041. "filename" : "Burst.Compiler.IL.dll",
  7042. "sizeofimage" : "0x1aa000",
  7043. "timestamp" : "0x8ae67a69",
  7044. "il_offset" : "0x00071"
  7045. }
  7046. ,
  7047. {
  7048. "is_managed" : "true",
  7049. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  7050. "token" : "0x60014ad",
  7051. "native_offset" : "0x0",
  7052. "filename" : "Burst.Compiler.IL.dll",
  7053. "sizeofimage" : "0x1aa000",
  7054. "timestamp" : "0x8ae67a69",
  7055. "il_offset" : "0x0005e"
  7056. }
  7057. ,
  7058. {
  7059. "is_managed" : "true",
  7060. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  7061. "token" : "0x60016b5",
  7062. "native_offset" : "0x0",
  7063. "filename" : "Burst.Compiler.IL.dll",
  7064. "sizeofimage" : "0x1aa000",
  7065. "timestamp" : "0x8ae67a69",
  7066. "il_offset" : "0x00058"
  7067. }
  7068. ,
  7069. {
  7070. "is_managed" : "true",
  7071. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7072. "token" : "0x600469b",
  7073. "native_offset" : "0x0",
  7074. "filename" : "mscorlib.dll",
  7075. "sizeofimage" : "0x470000",
  7076. "timestamp" : "0xe8f31350",
  7077. "il_offset" : "0x0002c"
  7078. }
  7079. ,
  7080. {
  7081. "is_managed" : "true",
  7082. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  7083. "token" : "0x60014b6",
  7084. "native_offset" : "0x0",
  7085. "filename" : "Burst.Compiler.IL.dll",
  7086. "sizeofimage" : "0x1aa000",
  7087. "timestamp" : "0x8ae67a69",
  7088. "il_offset" : "0x0001c"
  7089. }
  7090. ,
  7091. {
  7092. "is_managed" : "true",
  7093. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7094. "token" : "0x6002300",
  7095. "native_offset" : "0x0",
  7096. "filename" : "mscorlib.dll",
  7097. "sizeofimage" : "0x470000",
  7098. "timestamp" : "0xe8f31350",
  7099. "il_offset" : "0x0000f"
  7100. }
  7101. ,
  7102. {
  7103. "is_managed" : "true",
  7104. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7105. "token" : "0x60023fa",
  7106. "native_offset" : "0x0",
  7107. "filename" : "mscorlib.dll",
  7108. "sizeofimage" : "0x470000",
  7109. "timestamp" : "0xe8f31350",
  7110. "il_offset" : "0x00000"
  7111. }
  7112. ,
  7113. {
  7114. "is_managed" : "true",
  7115. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7116. "token" : "0x60023fd",
  7117. "native_offset" : "0x0",
  7118. "filename" : "mscorlib.dll",
  7119. "sizeofimage" : "0x470000",
  7120. "timestamp" : "0xe8f31350",
  7121. "il_offset" : "0x00000"
  7122. }
  7123. ,
  7124. {
  7125. "is_managed" : "true",
  7126. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7127. "token" : "0x6001f25",
  7128. "native_offset" : "0x0",
  7129. "filename" : "mscorlib.dll",
  7130. "sizeofimage" : "0x470000",
  7131. "timestamp" : "0xe8f31350",
  7132. "il_offset" : "0x00071"
  7133. }
  7134. ,
  7135. {
  7136. "is_managed" : "true",
  7137. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7138. "token" : "0x6001f23",
  7139. "native_offset" : "0x0",
  7140. "filename" : "mscorlib.dll",
  7141. "sizeofimage" : "0x470000",
  7142. "timestamp" : "0xe8f31350",
  7143. "il_offset" : "0x00000"
  7144. }
  7145. ,
  7146. {
  7147. "is_managed" : "true",
  7148. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7149. "token" : "0x6002466",
  7150. "native_offset" : "0x0",
  7151. "filename" : "mscorlib.dll",
  7152. "sizeofimage" : "0x470000",
  7153. "timestamp" : "0xe8f31350",
  7154. "il_offset" : "0x00034"
  7155. }
  7156. ,
  7157. {
  7158. "is_managed" : "true",
  7159. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7160. "token" : "0x60023fc",
  7161. "native_offset" : "0x0",
  7162. "filename" : "mscorlib.dll",
  7163. "sizeofimage" : "0x470000",
  7164. "timestamp" : "0xe8f31350",
  7165. "il_offset" : "0x0004a"
  7166. }
  7167. ,
  7168. {
  7169. "is_managed" : "true",
  7170. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7171. "token" : "0x6002547",
  7172. "native_offset" : "0x0",
  7173. "filename" : "mscorlib.dll",
  7174. "sizeofimage" : "0x470000",
  7175. "timestamp" : "0xe8f31350",
  7176. "il_offset" : "0x00014"
  7177. }
  7178. ,
  7179. {
  7180. "is_managed" : "true",
  7181. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  7182. "token" : "0x60014ca",
  7183. "native_offset" : "0x0",
  7184. "filename" : "Burst.Compiler.IL.dll",
  7185. "sizeofimage" : "0x1aa000",
  7186. "timestamp" : "0x8ae67a69",
  7187. "il_offset" : "0x00000"
  7188. }
  7189. ,
  7190. {
  7191. "is_managed" : "true",
  7192. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  7193. "token" : "0x6000bdf",
  7194. "native_offset" : "0x0",
  7195. "filename" : "Burst.Compiler.IL.dll",
  7196. "sizeofimage" : "0x1aa000",
  7197. "timestamp" : "0x8ae67a69",
  7198. "il_offset" : "0x000f5"
  7199. }
  7200. ,
  7201. {
  7202. "is_managed" : "true",
  7203. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7204. "token" : "0x6001f7d",
  7205. "native_offset" : "0x0",
  7206. "filename" : "mscorlib.dll",
  7207. "sizeofimage" : "0x470000",
  7208. "timestamp" : "0xe8f31350",
  7209. "il_offset" : "0x00014"
  7210. }
  7211. ,
  7212. {
  7213. "is_managed" : "true",
  7214. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7215. "token" : "0x6001f25",
  7216. "native_offset" : "0x0",
  7217. "filename" : "mscorlib.dll",
  7218. "sizeofimage" : "0x470000",
  7219. "timestamp" : "0xe8f31350",
  7220. "il_offset" : "0x00071"
  7221. }
  7222. ,
  7223. {
  7224. "is_managed" : "true",
  7225. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7226. "token" : "0x6001f23",
  7227. "native_offset" : "0x0",
  7228. "filename" : "mscorlib.dll",
  7229. "sizeofimage" : "0x470000",
  7230. "timestamp" : "0xe8f31350",
  7231. "il_offset" : "0x00000"
  7232. }
  7233. ,
  7234. {
  7235. "is_managed" : "true",
  7236. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7237. "token" : "0x6001f22",
  7238. "native_offset" : "0x0",
  7239. "filename" : "mscorlib.dll",
  7240. "sizeofimage" : "0x470000",
  7241. "timestamp" : "0xe8f31350",
  7242. "il_offset" : "0x0002b"
  7243. }
  7244. ,
  7245. {
  7246. "is_managed" : "true",
  7247. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7248. "token" : "0x6001f7f",
  7249. "native_offset" : "0x0",
  7250. "filename" : "mscorlib.dll",
  7251. "sizeofimage" : "0x470000",
  7252. "timestamp" : "0xe8f31350",
  7253. "il_offset" : "0x00008"
  7254. }
  7255. ,
  7256. {
  7257. "is_managed" : "true",
  7258. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7259. "token" : "0x00000",
  7260. "native_offset" : "0x0",
  7261. "filename" : "mscorlib.dll",
  7262. "sizeofimage" : "0x470000",
  7263. "timestamp" : "0xe8f31350",
  7264. "il_offset" : "0x00065"
  7265. }
  7266. ],
  7267. "unmanaged_frames" : [
  7268. {
  7269. "is_managed" : "false",
  7270. "native_address" : "0x17f4452c4",
  7271. "native_offset" : "0x00000"
  7272. }
  7273. ,
  7274. {
  7275. "is_managed" : "false",
  7276. "native_address" : "0x17f57c63c",
  7277. "native_offset" : "0x00000"
  7278. }
  7279. ,
  7280. {
  7281. "is_managed" : "false",
  7282. "native_address" : "0x17f57c998",
  7283. "native_offset" : "0x00000"
  7284. }
  7285. ,
  7286. {
  7287. "is_managed" : "false",
  7288. "native_address" : "0x17f57c760",
  7289. "native_offset" : "0x00000"
  7290. }
  7291. ,
  7292. {
  7293. "is_managed" : "false",
  7294. "native_address" : "0x17f4864f4",
  7295. "native_offset" : "0x00000"
  7296. }
  7297. ,
  7298. {
  7299. "is_managed" : "false",
  7300. "native_address" : "0x186292e04",
  7301. "native_offset" : "0x00000"
  7302. }
  7303. ,
  7304. {
  7305. "is_managed" : "false",
  7306. "native_address" : "0x18625c894",
  7307. "native_offset" : "0x00000"
  7308. }
  7309. ,
  7310. {
  7311. "is_managed" : "false",
  7312. "native_address" : "0x17f5b7f9c",
  7313. "native_offset" : "0x00000"
  7314. }
  7315. ,
  7316. {
  7317. "is_managed" : "false",
  7318. "native_address" : "0x17f5b6d4c",
  7319. "native_offset" : "0x00000"
  7320. }
  7321. ,
  7322. {
  7323. "is_managed" : "true",
  7324. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7325. "token" : "0x00000",
  7326. "native_offset" : "0x0",
  7327. "filename" : "mscorlib.dll",
  7328. "sizeofimage" : "0x470000",
  7329. "timestamp" : "0xe8f31350",
  7330. "il_offset" : "0x00000"
  7331. }
  7332. ,
  7333. {
  7334. "is_managed" : "true",
  7335. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  7336. "token" : "0x60001a6",
  7337. "native_offset" : "0x0",
  7338. "filename" : "Burst.Compiler.IL.dll",
  7339. "sizeofimage" : "0x1aa000",
  7340. "timestamp" : "0x8ae67a69",
  7341. "il_offset" : "0x00000"
  7342. }
  7343. ,
  7344. {
  7345. "is_managed" : "true",
  7346. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  7347. "token" : "0x6000eb5",
  7348. "native_offset" : "0x0",
  7349. "filename" : "Burst.Compiler.IL.dll",
  7350. "sizeofimage" : "0x1aa000",
  7351. "timestamp" : "0x8ae67a69",
  7352. "il_offset" : "0x00000"
  7353. }
  7354. ,
  7355. {
  7356. "is_managed" : "true",
  7357. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  7358. "token" : "0x6000eae",
  7359. "native_offset" : "0x0",
  7360. "filename" : "Burst.Compiler.IL.dll",
  7361. "sizeofimage" : "0x1aa000",
  7362. "timestamp" : "0x8ae67a69",
  7363. "il_offset" : "0x00000"
  7364. }
  7365. ,
  7366. {
  7367. "is_managed" : "true",
  7368. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  7369. "token" : "0x6000be5",
  7370. "native_offset" : "0x0",
  7371. "filename" : "Burst.Compiler.IL.dll",
  7372. "sizeofimage" : "0x1aa000",
  7373. "timestamp" : "0x8ae67a69",
  7374. "il_offset" : "0x00000"
  7375. }
  7376. ,
  7377. {
  7378. "is_managed" : "true",
  7379. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  7380. "token" : "0x6000be5",
  7381. "native_offset" : "0x0",
  7382. "filename" : "Burst.Compiler.IL.dll",
  7383. "sizeofimage" : "0x1aa000",
  7384. "timestamp" : "0x8ae67a69",
  7385. "il_offset" : "0x00000"
  7386. }
  7387. ,
  7388. {
  7389. "is_managed" : "true",
  7390. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  7391. "token" : "0x6000be4",
  7392. "native_offset" : "0x0",
  7393. "filename" : "Burst.Compiler.IL.dll",
  7394. "sizeofimage" : "0x1aa000",
  7395. "timestamp" : "0x8ae67a69",
  7396. "il_offset" : "0x00000"
  7397. }
  7398. ,
  7399. {
  7400. "is_managed" : "true",
  7401. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  7402. "token" : "0x60014ad",
  7403. "native_offset" : "0x0",
  7404. "filename" : "Burst.Compiler.IL.dll",
  7405. "sizeofimage" : "0x1aa000",
  7406. "timestamp" : "0x8ae67a69",
  7407. "il_offset" : "0x00000"
  7408. }
  7409. ,
  7410. {
  7411. "is_managed" : "true",
  7412. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  7413. "token" : "0x60016b5",
  7414. "native_offset" : "0x0",
  7415. "filename" : "Burst.Compiler.IL.dll",
  7416. "sizeofimage" : "0x1aa000",
  7417. "timestamp" : "0x8ae67a69",
  7418. "il_offset" : "0x00000"
  7419. }
  7420. ,
  7421. {
  7422. "is_managed" : "true",
  7423. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7424. "token" : "0x600469b",
  7425. "native_offset" : "0x0",
  7426. "filename" : "mscorlib.dll",
  7427. "sizeofimage" : "0x470000",
  7428. "timestamp" : "0xe8f31350",
  7429. "il_offset" : "0x00000"
  7430. }
  7431. ,
  7432. {
  7433. "is_managed" : "true",
  7434. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  7435. "token" : "0x60014b6",
  7436. "native_offset" : "0x0",
  7437. "filename" : "Burst.Compiler.IL.dll",
  7438. "sizeofimage" : "0x1aa000",
  7439. "timestamp" : "0x8ae67a69",
  7440. "il_offset" : "0x00000"
  7441. }
  7442. ,
  7443. {
  7444. "is_managed" : "true",
  7445. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7446. "token" : "0x6002300",
  7447. "native_offset" : "0x0",
  7448. "filename" : "mscorlib.dll",
  7449. "sizeofimage" : "0x470000",
  7450. "timestamp" : "0xe8f31350",
  7451. "il_offset" : "0x00000"
  7452. }
  7453. ,
  7454. {
  7455. "is_managed" : "true",
  7456. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7457. "token" : "0x60023fa",
  7458. "native_offset" : "0x0",
  7459. "filename" : "mscorlib.dll",
  7460. "sizeofimage" : "0x470000",
  7461. "timestamp" : "0xe8f31350",
  7462. "il_offset" : "0x00000"
  7463. }
  7464. ,
  7465. {
  7466. "is_managed" : "true",
  7467. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7468. "token" : "0x60023fd",
  7469. "native_offset" : "0x0",
  7470. "filename" : "mscorlib.dll",
  7471. "sizeofimage" : "0x470000",
  7472. "timestamp" : "0xe8f31350",
  7473. "il_offset" : "0x00000"
  7474. }
  7475. ,
  7476. {
  7477. "is_managed" : "true",
  7478. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7479. "token" : "0x6001f25",
  7480. "native_offset" : "0x0",
  7481. "filename" : "mscorlib.dll",
  7482. "sizeofimage" : "0x470000",
  7483. "timestamp" : "0xe8f31350",
  7484. "il_offset" : "0x00000"
  7485. }
  7486. ,
  7487. {
  7488. "is_managed" : "true",
  7489. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7490. "token" : "0x6001f23",
  7491. "native_offset" : "0x0",
  7492. "filename" : "mscorlib.dll",
  7493. "sizeofimage" : "0x470000",
  7494. "timestamp" : "0xe8f31350",
  7495. "il_offset" : "0x00000"
  7496. }
  7497. ,
  7498. {
  7499. "is_managed" : "true",
  7500. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7501. "token" : "0x6002466",
  7502. "native_offset" : "0x0",
  7503. "filename" : "mscorlib.dll",
  7504. "sizeofimage" : "0x470000",
  7505. "timestamp" : "0xe8f31350",
  7506. "il_offset" : "0x00000"
  7507. }
  7508. ,
  7509. {
  7510. "is_managed" : "true",
  7511. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7512. "token" : "0x60023fc",
  7513. "native_offset" : "0x0",
  7514. "filename" : "mscorlib.dll",
  7515. "sizeofimage" : "0x470000",
  7516. "timestamp" : "0xe8f31350",
  7517. "il_offset" : "0x00000"
  7518. }
  7519. ,
  7520. {
  7521. "is_managed" : "true",
  7522. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7523. "token" : "0x6002547",
  7524. "native_offset" : "0x0",
  7525. "filename" : "mscorlib.dll",
  7526. "sizeofimage" : "0x470000",
  7527. "timestamp" : "0xe8f31350",
  7528. "il_offset" : "0x00000"
  7529. }
  7530. ,
  7531. {
  7532. "is_managed" : "true",
  7533. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  7534. "token" : "0x60014ca",
  7535. "native_offset" : "0x0",
  7536. "filename" : "Burst.Compiler.IL.dll",
  7537. "sizeofimage" : "0x1aa000",
  7538. "timestamp" : "0x8ae67a69",
  7539. "il_offset" : "0x00000"
  7540. }
  7541. ,
  7542. {
  7543. "is_managed" : "true",
  7544. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  7545. "token" : "0x6000bdf",
  7546. "native_offset" : "0x0",
  7547. "filename" : "Burst.Compiler.IL.dll",
  7548. "sizeofimage" : "0x1aa000",
  7549. "timestamp" : "0x8ae67a69",
  7550. "il_offset" : "0x00000"
  7551. }
  7552. ,
  7553. {
  7554. "is_managed" : "true",
  7555. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7556. "token" : "0x6001f7d",
  7557. "native_offset" : "0x0",
  7558. "filename" : "mscorlib.dll",
  7559. "sizeofimage" : "0x470000",
  7560. "timestamp" : "0xe8f31350",
  7561. "il_offset" : "0x00000"
  7562. }
  7563. ,
  7564. {
  7565. "is_managed" : "true",
  7566. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7567. "token" : "0x6001f25",
  7568. "native_offset" : "0x0",
  7569. "filename" : "mscorlib.dll",
  7570. "sizeofimage" : "0x470000",
  7571. "timestamp" : "0xe8f31350",
  7572. "il_offset" : "0x00000"
  7573. }
  7574. ,
  7575. {
  7576. "is_managed" : "true",
  7577. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7578. "token" : "0x6001f23",
  7579. "native_offset" : "0x0",
  7580. "filename" : "mscorlib.dll",
  7581. "sizeofimage" : "0x470000",
  7582. "timestamp" : "0xe8f31350",
  7583. "il_offset" : "0x00000"
  7584. }
  7585. ,
  7586. {
  7587. "is_managed" : "true",
  7588. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7589. "token" : "0x6001f22",
  7590. "native_offset" : "0x0",
  7591. "filename" : "mscorlib.dll",
  7592. "sizeofimage" : "0x470000",
  7593. "timestamp" : "0xe8f31350",
  7594. "il_offset" : "0x00000"
  7595. }
  7596. ,
  7597. {
  7598. "is_managed" : "true",
  7599. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7600. "token" : "0x6001f7f",
  7601. "native_offset" : "0x0",
  7602. "filename" : "mscorlib.dll",
  7603. "sizeofimage" : "0x470000",
  7604. "timestamp" : "0xe8f31350",
  7605. "il_offset" : "0x00000"
  7606. }
  7607. ,
  7608. {
  7609. "is_managed" : "true",
  7610. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  7611. "token" : "0x00000",
  7612. "native_offset" : "0x0",
  7613. "filename" : "mscorlib.dll",
  7614. "sizeofimage" : "0x470000",
  7615. "timestamp" : "0xe8f31350",
  7616. "il_offset" : "0x00000"
  7617. }
  7618. ,
  7619. {
  7620. "is_managed" : "false",
  7621. "native_address" : "0x17f3d4eac",
  7622. "native_offset" : "0x00000"
  7623. }
  7624. ,
  7625. {
  7626. "is_managed" : "false",
  7627. "native_address" : "0x17f55b370",
  7628. "native_offset" : "0x00000"
  7629. }
  7630. ,
  7631. {
  7632. "is_managed" : "false",
  7633. "native_address" : "0x17f55cf80",
  7634. "native_offset" : "0x00000"
  7635. }
  7636. ,
  7637. {
  7638. "is_managed" : "false",
  7639. "native_address" : "0x17f57d49c",
  7640. "native_offset" : "0x00000"
  7641. }
  7642. ,
  7643. {
  7644. "is_managed" : "false",
  7645. "native_address" : "0x17f57d254",
  7646. "native_offset" : "0x00000"
  7647. }
  7648. ,
  7649. {
  7650. "is_managed" : "false",
  7651. "native_address" : "0x17f5fcd28",
  7652. "native_offset" : "0x00000"
  7653. }
  7654. ,
  7655. {
  7656. "is_managed" : "false",
  7657. "native_address" : "0x17f5fccb0",
  7658. "native_offset" : "0x00000"
  7659. }
  7660. ,
  7661. {
  7662. "is_managed" : "false",
  7663. "native_address" : "0x18625c2e4",
  7664. "native_offset" : "0x00000"
  7665. }
  7666. ,
  7667. {
  7668. "is_managed" : "false",
  7669. "native_address" : "0x1862570fc",
  7670. "native_offset" : "0x00000"
  7671. }
  7672. ]
  7673. },
  7674. {
  7675. "is_managed" : false,
  7676. "offset_free_hash" : "0x0",
  7677. "offset_rich_hash" : "0x0",
  7678. "crashed" : false,
  7679. "native_thread_id" : "0x346787000",
  7680. "thread_info_addr" : "0x15101e200",
  7681. "thread_name" : "Thread Pool Worker",
  7682. "ctx" : {
  7683. "IP" : "0x18621aee8",
  7684. "SP" : "0x346786db0",
  7685. "BP" : "0x346786e50"
  7686. },
  7687. "unmanaged_frames" : [
  7688. {
  7689. "is_managed" : "false",
  7690. "native_address" : "0x17f4452c4",
  7691. "native_offset" : "0x00000"
  7692. }
  7693. ,
  7694. {
  7695. "is_managed" : "false",
  7696. "native_address" : "0x17f57c63c",
  7697. "native_offset" : "0x00000"
  7698. }
  7699. ,
  7700. {
  7701. "is_managed" : "false",
  7702. "native_address" : "0x17f57c998",
  7703. "native_offset" : "0x00000"
  7704. }
  7705. ,
  7706. {
  7707. "is_managed" : "false",
  7708. "native_address" : "0x17f57c760",
  7709. "native_offset" : "0x00000"
  7710. }
  7711. ,
  7712. {
  7713. "is_managed" : "false",
  7714. "native_address" : "0x17f4864f4",
  7715. "native_offset" : "0x00000"
  7716. }
  7717. ,
  7718. {
  7719. "is_managed" : "false",
  7720. "native_address" : "0x186292e04",
  7721. "native_offset" : "0x00000"
  7722. }
  7723. ,
  7724. {
  7725. "is_managed" : "false",
  7726. "native_address" : "0x17f4d52e8",
  7727. "native_offset" : "0x00000"
  7728. }
  7729. ,
  7730. {
  7731. "is_managed" : "false",
  7732. "native_address" : "0x17f57d3a8",
  7733. "native_offset" : "0x00000"
  7734. }
  7735. ,
  7736. {
  7737. "is_managed" : "false",
  7738. "native_address" : "0x17f57d254",
  7739. "native_offset" : "0x00000"
  7740. }
  7741. ,
  7742. {
  7743. "is_managed" : "false",
  7744. "native_address" : "0x17f5fcd28",
  7745. "native_offset" : "0x00000"
  7746. }
  7747. ,
  7748. {
  7749. "is_managed" : "false",
  7750. "native_address" : "0x17f5fccb0",
  7751. "native_offset" : "0x00000"
  7752. }
  7753. ,
  7754. {
  7755. "is_managed" : "false",
  7756. "native_address" : "0x18625c2e4",
  7757. "native_offset" : "0x00000"
  7758. }
  7759. ,
  7760. {
  7761. "is_managed" : "false",
  7762. "native_address" : "0x1862570fc",
  7763. "native_offset" : "0x00000"
  7764. }
  7765. ]
  7766. },
  7767. {
  7768. "is_managed" : false,
  7769. "offset_free_hash" : "0x0",
  7770. "offset_rich_hash" : "0x0",
  7771. "crashed" : false,
  7772. "native_thread_id" : "0x344f9b000",
  7773. "thread_info_addr" : "0x15404e200",
  7774. "thread_name" : "Thread Pool Worker",
  7775. "ctx" : {
  7776. "IP" : "0x18621aee8",
  7777. "SP" : "0x344f9adb0",
  7778. "BP" : "0x344f9ae50"
  7779. },
  7780. "unmanaged_frames" : [
  7781. {
  7782. "is_managed" : "false",
  7783. "native_address" : "0x17f4452c4",
  7784. "native_offset" : "0x00000"
  7785. }
  7786. ,
  7787. {
  7788. "is_managed" : "false",
  7789. "native_address" : "0x17f57c63c",
  7790. "native_offset" : "0x00000"
  7791. }
  7792. ,
  7793. {
  7794. "is_managed" : "false",
  7795. "native_address" : "0x17f57c998",
  7796. "native_offset" : "0x00000"
  7797. }
  7798. ,
  7799. {
  7800. "is_managed" : "false",
  7801. "native_address" : "0x17f57c760",
  7802. "native_offset" : "0x00000"
  7803. }
  7804. ,
  7805. {
  7806. "is_managed" : "false",
  7807. "native_address" : "0x17f4864f4",
  7808. "native_offset" : "0x00000"
  7809. }
  7810. ,
  7811. {
  7812. "is_managed" : "false",
  7813. "native_address" : "0x186292e04",
  7814. "native_offset" : "0x00000"
  7815. }
  7816. ,
  7817. {
  7818. "is_managed" : "false",
  7819. "native_address" : "0x17f4d52e8",
  7820. "native_offset" : "0x00000"
  7821. }
  7822. ,
  7823. {
  7824. "is_managed" : "false",
  7825. "native_address" : "0x17f57d3a8",
  7826. "native_offset" : "0x00000"
  7827. }
  7828. ,
  7829. {
  7830. "is_managed" : "false",
  7831. "native_address" : "0x17f57d254",
  7832. "native_offset" : "0x00000"
  7833. }
  7834. ,
  7835. {
  7836. "is_managed" : "false",
  7837. "native_address" : "0x17f5fcd28",
  7838. "native_offset" : "0x00000"
  7839. }
  7840. ,
  7841. {
  7842. "is_managed" : "false",
  7843. "native_address" : "0x17f5fccb0",
  7844. "native_offset" : "0x00000"
  7845. }
  7846. ,
  7847. {
  7848. "is_managed" : "false",
  7849. "native_address" : "0x18625c2e4",
  7850. "native_offset" : "0x00000"
  7851. }
  7852. ,
  7853. {
  7854. "is_managed" : "false",
  7855. "native_address" : "0x1862570fc",
  7856. "native_offset" : "0x00000"
  7857. }
  7858. ]
  7859. },
  7860. {
  7861. "is_managed" : false,
  7862. "offset_free_hash" : "0x0",
  7863. "offset_rich_hash" : "0x0",
  7864. "crashed" : false,
  7865. "native_thread_id" : "0x17fc6f000",
  7866. "thread_info_addr" : "0x15192d000",
  7867. "thread_name" : "Finalizer",
  7868. "ctx" : {
  7869. "IP" : "0x18621aed0",
  7870. "SP" : "0x17fc6edd0",
  7871. "BP" : "0x17fc6ee50"
  7872. },
  7873. "unmanaged_frames" : [
  7874. {
  7875. "is_managed" : "false",
  7876. "native_address" : "0x17f4452c4",
  7877. "native_offset" : "0x00000"
  7878. }
  7879. ,
  7880. {
  7881. "is_managed" : "false",
  7882. "native_address" : "0x17f57c63c",
  7883. "native_offset" : "0x00000"
  7884. }
  7885. ,
  7886. {
  7887. "is_managed" : "false",
  7888. "native_address" : "0x17f57c998",
  7889. "native_offset" : "0x00000"
  7890. }
  7891. ,
  7892. {
  7893. "is_managed" : "false",
  7894. "native_address" : "0x17f57c760",
  7895. "native_offset" : "0x00000"
  7896. }
  7897. ,
  7898. {
  7899. "is_managed" : "false",
  7900. "native_address" : "0x17f4864f4",
  7901. "native_offset" : "0x00000"
  7902. }
  7903. ,
  7904. {
  7905. "is_managed" : "false",
  7906. "native_address" : "0x186292e04",
  7907. "native_offset" : "0x00000"
  7908. }
  7909. ,
  7910. {
  7911. "is_managed" : "false",
  7912. "native_address" : "0x17f5b6290",
  7913. "native_offset" : "0x00000"
  7914. }
  7915. ,
  7916. {
  7917. "is_managed" : "false",
  7918. "native_address" : "0x17f57d3a8",
  7919. "native_offset" : "0x00000"
  7920. }
  7921. ,
  7922. {
  7923. "is_managed" : "false",
  7924. "native_address" : "0x17f57d254",
  7925. "native_offset" : "0x00000"
  7926. }
  7927. ,
  7928. {
  7929. "is_managed" : "false",
  7930. "native_address" : "0x17f5fcd28",
  7931. "native_offset" : "0x00000"
  7932. }
  7933. ,
  7934. {
  7935. "is_managed" : "false",
  7936. "native_address" : "0x17f5fccb0",
  7937. "native_offset" : "0x00000"
  7938. }
  7939. ,
  7940. {
  7941. "is_managed" : "false",
  7942. "native_address" : "0x18625c2e4",
  7943. "native_offset" : "0x00000"
  7944. }
  7945. ,
  7946. {
  7947. "is_managed" : "false",
  7948. "native_address" : "0x1862570fc",
  7949. "native_offset" : "0x00000"
  7950. }
  7951. ]
  7952. },
  7953. {
  7954. "is_managed" : false,
  7955. "offset_free_hash" : "0x0",
  7956. "offset_rich_hash" : "0x0",
  7957. "crashed" : false,
  7958. "native_thread_id" : "0x3460fb000",
  7959. "thread_info_addr" : "0x153246c00",
  7960. "thread_name" : "Thread Pool Worker",
  7961. "ctx" : {
  7962. "IP" : "0x18621aee8",
  7963. "SP" : "0x3460fadb0",
  7964. "BP" : "0x3460fae50"
  7965. },
  7966. "unmanaged_frames" : [
  7967. {
  7968. "is_managed" : "false",
  7969. "native_address" : "0x17f4452c4",
  7970. "native_offset" : "0x00000"
  7971. }
  7972. ,
  7973. {
  7974. "is_managed" : "false",
  7975. "native_address" : "0x17f57c63c",
  7976. "native_offset" : "0x00000"
  7977. }
  7978. ,
  7979. {
  7980. "is_managed" : "false",
  7981. "native_address" : "0x17f57c998",
  7982. "native_offset" : "0x00000"
  7983. }
  7984. ,
  7985. {
  7986. "is_managed" : "false",
  7987. "native_address" : "0x17f57c760",
  7988. "native_offset" : "0x00000"
  7989. }
  7990. ,
  7991. {
  7992. "is_managed" : "false",
  7993. "native_address" : "0x17f4864f4",
  7994. "native_offset" : "0x00000"
  7995. }
  7996. ,
  7997. {
  7998. "is_managed" : "false",
  7999. "native_address" : "0x186292e04",
  8000. "native_offset" : "0x00000"
  8001. }
  8002. ,
  8003. {
  8004. "is_managed" : "false",
  8005. "native_address" : "0x17f4d52e8",
  8006. "native_offset" : "0x00000"
  8007. }
  8008. ,
  8009. {
  8010. "is_managed" : "false",
  8011. "native_address" : "0x17f57d3a8",
  8012. "native_offset" : "0x00000"
  8013. }
  8014. ,
  8015. {
  8016. "is_managed" : "false",
  8017. "native_address" : "0x17f57d254",
  8018. "native_offset" : "0x00000"
  8019. }
  8020. ,
  8021. {
  8022. "is_managed" : "false",
  8023. "native_address" : "0x17f5fcd28",
  8024. "native_offset" : "0x00000"
  8025. }
  8026. ,
  8027. {
  8028. "is_managed" : "false",
  8029. "native_address" : "0x17f5fccb0",
  8030. "native_offset" : "0x00000"
  8031. }
  8032. ,
  8033. {
  8034. "is_managed" : "false",
  8035. "native_address" : "0x18625c2e4",
  8036. "native_offset" : "0x00000"
  8037. }
  8038. ,
  8039. {
  8040. "is_managed" : "false",
  8041. "native_address" : "0x1862570fc",
  8042. "native_offset" : "0x00000"
  8043. }
  8044. ]
  8045. },
  8046. {
  8047. "is_managed" : false,
  8048. "offset_free_hash" : "0x0",
  8049. "offset_rich_hash" : "0x0",
  8050. "crashed" : false,
  8051. "native_thread_id" : "0x347063000",
  8052. "thread_info_addr" : "0x33a04ba00",
  8053. "thread_name" : "Thread Pool Worker",
  8054. "ctx" : {
  8055. "IP" : "0x18621aee8",
  8056. "SP" : "0x347062db0",
  8057. "BP" : "0x347062e50"
  8058. },
  8059. "unmanaged_frames" : [
  8060. {
  8061. "is_managed" : "false",
  8062. "native_address" : "0x17f4452c4",
  8063. "native_offset" : "0x00000"
  8064. }
  8065. ,
  8066. {
  8067. "is_managed" : "false",
  8068. "native_address" : "0x17f57c63c",
  8069. "native_offset" : "0x00000"
  8070. }
  8071. ,
  8072. {
  8073. "is_managed" : "false",
  8074. "native_address" : "0x17f57c998",
  8075. "native_offset" : "0x00000"
  8076. }
  8077. ,
  8078. {
  8079. "is_managed" : "false",
  8080. "native_address" : "0x17f57c760",
  8081. "native_offset" : "0x00000"
  8082. }
  8083. ,
  8084. {
  8085. "is_managed" : "false",
  8086. "native_address" : "0x17f4864f4",
  8087. "native_offset" : "0x00000"
  8088. }
  8089. ,
  8090. {
  8091. "is_managed" : "false",
  8092. "native_address" : "0x186292e04",
  8093. "native_offset" : "0x00000"
  8094. }
  8095. ,
  8096. {
  8097. "is_managed" : "false",
  8098. "native_address" : "0x17f4d52e8",
  8099. "native_offset" : "0x00000"
  8100. }
  8101. ,
  8102. {
  8103. "is_managed" : "false",
  8104. "native_address" : "0x17f57d3a8",
  8105. "native_offset" : "0x00000"
  8106. }
  8107. ,
  8108. {
  8109. "is_managed" : "false",
  8110. "native_address" : "0x17f57d254",
  8111. "native_offset" : "0x00000"
  8112. }
  8113. ,
  8114. {
  8115. "is_managed" : "false",
  8116. "native_address" : "0x17f5fcd28",
  8117. "native_offset" : "0x00000"
  8118. }
  8119. ,
  8120. {
  8121. "is_managed" : "false",
  8122. "native_address" : "0x17f5fccb0",
  8123. "native_offset" : "0x00000"
  8124. }
  8125. ,
  8126. {
  8127. "is_managed" : "false",
  8128. "native_address" : "0x18625c2e4",
  8129. "native_offset" : "0x00000"
  8130. }
  8131. ,
  8132. {
  8133. "is_managed" : "false",
  8134. "native_address" : "0x1862570fc",
  8135. "native_offset" : "0x00000"
  8136. }
  8137. ]
  8138. },
  8139. {
  8140. "is_managed" : true,
  8141. "offset_free_hash" : "0x1e95c19c5e",
  8142. "offset_rich_hash" : "0x1e95c1a140",
  8143. "crashed" : false,
  8144. "native_thread_id" : "0x34567f000",
  8145. "thread_info_addr" : "0x151015000",
  8146. "thread_name" : "Thread Pool Worker",
  8147. "ctx" : {
  8148. "IP" : "0x18621e6ec",
  8149. "SP" : "0x34567dae0",
  8150. "BP" : "0x34567db70"
  8151. },
  8152. "managed_frames" : [
  8153. {
  8154. "is_managed" : "false",
  8155. "native_address" : "unregistered"
  8156. }
  8157. ,
  8158. {
  8159. "is_managed" : "true",
  8160. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8161. "token" : "0x00000",
  8162. "native_offset" : "0x0",
  8163. "filename" : "mscorlib.dll",
  8164. "sizeofimage" : "0x470000",
  8165. "timestamp" : "0xe8f31350",
  8166. "il_offset" : "0xffffffff"
  8167. }
  8168. ,
  8169. {
  8170. "is_managed" : "true",
  8171. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8172. "token" : "0x6001f5d",
  8173. "native_offset" : "0x0",
  8174. "filename" : "mscorlib.dll",
  8175. "sizeofimage" : "0x470000",
  8176. "timestamp" : "0xe8f31350",
  8177. "il_offset" : "0x0002f"
  8178. }
  8179. ,
  8180. {
  8181. "is_managed" : "true",
  8182. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8183. "token" : "0x6001f50",
  8184. "native_offset" : "0x0",
  8185. "filename" : "mscorlib.dll",
  8186. "sizeofimage" : "0x470000",
  8187. "timestamp" : "0xe8f31350",
  8188. "il_offset" : "0x0000e"
  8189. }
  8190. ,
  8191. {
  8192. "is_managed" : "true",
  8193. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8194. "token" : "0x6001f52",
  8195. "native_offset" : "0x0",
  8196. "filename" : "mscorlib.dll",
  8197. "sizeofimage" : "0x470000",
  8198. "timestamp" : "0xe8f31350",
  8199. "il_offset" : "0x00000"
  8200. }
  8201. ,
  8202. {
  8203. "is_managed" : "true",
  8204. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8205. "token" : "0x6001ea2",
  8206. "native_offset" : "0x0",
  8207. "filename" : "mscorlib.dll",
  8208. "sizeofimage" : "0x470000",
  8209. "timestamp" : "0xe8f31350",
  8210. "il_offset" : "0x0001d"
  8211. }
  8212. ,
  8213. {
  8214. "is_managed" : "true",
  8215. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8216. "token" : "0x6001ea1",
  8217. "native_offset" : "0x0",
  8218. "filename" : "mscorlib.dll",
  8219. "sizeofimage" : "0x470000",
  8220. "timestamp" : "0xe8f31350",
  8221. "il_offset" : "0x000d9"
  8222. }
  8223. ,
  8224. {
  8225. "is_managed" : "true",
  8226. "guid" : "643F6290-C90C-4761-A1C3-44139E338EE0",
  8227. "token" : "0x60026b3",
  8228. "native_offset" : "0x0",
  8229. "filename" : "System.dll",
  8230. "sizeofimage" : "0x29a000",
  8231. "timestamp" : "0xcf1f6901",
  8232. "il_offset" : "0x00067"
  8233. }
  8234. ,
  8235. {
  8236. "is_managed" : "true",
  8237. "guid" : "643F6290-C90C-4761-A1C3-44139E338EE0",
  8238. "token" : "0x60026d9",
  8239. "native_offset" : "0x0",
  8240. "filename" : "System.dll",
  8241. "sizeofimage" : "0x29a000",
  8242. "timestamp" : "0xcf1f6901",
  8243. "il_offset" : "0x0004d"
  8244. }
  8245. ,
  8246. {
  8247. "is_managed" : "true",
  8248. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  8249. "token" : "0x60016b7",
  8250. "native_offset" : "0x0",
  8251. "filename" : "Burst.Compiler.IL.dll",
  8252. "sizeofimage" : "0x1aa000",
  8253. "timestamp" : "0x8ae67a69",
  8254. "il_offset" : "0x00118"
  8255. }
  8256. ,
  8257. {
  8258. "is_managed" : "true",
  8259. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8260. "token" : "0x6004690",
  8261. "native_offset" : "0x0",
  8262. "filename" : "mscorlib.dll",
  8263. "sizeofimage" : "0x470000",
  8264. "timestamp" : "0xe8f31350",
  8265. "il_offset" : "0x0002c"
  8266. }
  8267. ,
  8268. {
  8269. "is_managed" : "true",
  8270. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  8271. "token" : "0x60014c7",
  8272. "native_offset" : "0x0",
  8273. "filename" : "Burst.Compiler.IL.dll",
  8274. "sizeofimage" : "0x1aa000",
  8275. "timestamp" : "0x8ae67a69",
  8276. "il_offset" : "0x0001c"
  8277. }
  8278. ,
  8279. {
  8280. "is_managed" : "true",
  8281. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8282. "token" : "0x6002300",
  8283. "native_offset" : "0x0",
  8284. "filename" : "mscorlib.dll",
  8285. "sizeofimage" : "0x470000",
  8286. "timestamp" : "0xe8f31350",
  8287. "il_offset" : "0x0000f"
  8288. }
  8289. ,
  8290. {
  8291. "is_managed" : "true",
  8292. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8293. "token" : "0x60023fa",
  8294. "native_offset" : "0x0",
  8295. "filename" : "mscorlib.dll",
  8296. "sizeofimage" : "0x470000",
  8297. "timestamp" : "0xe8f31350",
  8298. "il_offset" : "0x00000"
  8299. }
  8300. ,
  8301. {
  8302. "is_managed" : "true",
  8303. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8304. "token" : "0x60023fd",
  8305. "native_offset" : "0x0",
  8306. "filename" : "mscorlib.dll",
  8307. "sizeofimage" : "0x470000",
  8308. "timestamp" : "0xe8f31350",
  8309. "il_offset" : "0x00000"
  8310. }
  8311. ,
  8312. {
  8313. "is_managed" : "true",
  8314. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8315. "token" : "0x6001f25",
  8316. "native_offset" : "0x0",
  8317. "filename" : "mscorlib.dll",
  8318. "sizeofimage" : "0x470000",
  8319. "timestamp" : "0xe8f31350",
  8320. "il_offset" : "0x00071"
  8321. }
  8322. ,
  8323. {
  8324. "is_managed" : "true",
  8325. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8326. "token" : "0x6001f23",
  8327. "native_offset" : "0x0",
  8328. "filename" : "mscorlib.dll",
  8329. "sizeofimage" : "0x470000",
  8330. "timestamp" : "0xe8f31350",
  8331. "il_offset" : "0x00000"
  8332. }
  8333. ,
  8334. {
  8335. "is_managed" : "true",
  8336. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8337. "token" : "0x6002466",
  8338. "native_offset" : "0x0",
  8339. "filename" : "mscorlib.dll",
  8340. "sizeofimage" : "0x470000",
  8341. "timestamp" : "0xe8f31350",
  8342. "il_offset" : "0x00034"
  8343. }
  8344. ,
  8345. {
  8346. "is_managed" : "true",
  8347. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8348. "token" : "0x60023fc",
  8349. "native_offset" : "0x0",
  8350. "filename" : "mscorlib.dll",
  8351. "sizeofimage" : "0x470000",
  8352. "timestamp" : "0xe8f31350",
  8353. "il_offset" : "0x0004a"
  8354. }
  8355. ,
  8356. {
  8357. "is_managed" : "true",
  8358. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8359. "token" : "0x60023fb",
  8360. "native_offset" : "0x0",
  8361. "filename" : "mscorlib.dll",
  8362. "sizeofimage" : "0x470000",
  8363. "timestamp" : "0xe8f31350",
  8364. "il_offset" : "0x00000"
  8365. }
  8366. ,
  8367. {
  8368. "is_managed" : "true",
  8369. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8370. "token" : "0x6002031",
  8371. "native_offset" : "0x0",
  8372. "filename" : "mscorlib.dll",
  8373. "sizeofimage" : "0x470000",
  8374. "timestamp" : "0xe8f31350",
  8375. "il_offset" : "0x00074"
  8376. }
  8377. ,
  8378. {
  8379. "is_managed" : "true",
  8380. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8381. "token" : "0x6002046",
  8382. "native_offset" : "0x0",
  8383. "filename" : "mscorlib.dll",
  8384. "sizeofimage" : "0x470000",
  8385. "timestamp" : "0xe8f31350",
  8386. "il_offset" : "0x00000"
  8387. }
  8388. ,
  8389. {
  8390. "is_managed" : "true",
  8391. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8392. "token" : "0x00000",
  8393. "native_offset" : "0x0",
  8394. "filename" : "mscorlib.dll",
  8395. "sizeofimage" : "0x470000",
  8396. "timestamp" : "0xe8f31350",
  8397. "il_offset" : "0x0002a"
  8398. }
  8399. ],
  8400. "unmanaged_frames" : [
  8401. {
  8402. "is_managed" : "false",
  8403. "native_address" : "0x17f4452c4",
  8404. "native_offset" : "0x00000"
  8405. }
  8406. ,
  8407. {
  8408. "is_managed" : "false",
  8409. "native_address" : "0x17f57c63c",
  8410. "native_offset" : "0x00000"
  8411. }
  8412. ,
  8413. {
  8414. "is_managed" : "false",
  8415. "native_address" : "0x17f57c998",
  8416. "native_offset" : "0x00000"
  8417. }
  8418. ,
  8419. {
  8420. "is_managed" : "false",
  8421. "native_address" : "0x17f57c760",
  8422. "native_offset" : "0x00000"
  8423. }
  8424. ,
  8425. {
  8426. "is_managed" : "false",
  8427. "native_address" : "0x17f4864f4",
  8428. "native_offset" : "0x00000"
  8429. }
  8430. ,
  8431. {
  8432. "is_managed" : "false",
  8433. "native_address" : "0x186292e04",
  8434. "native_offset" : "0x00000"
  8435. }
  8436. ,
  8437. {
  8438. "is_managed" : "false",
  8439. "native_address" : "0x18625c894",
  8440. "native_offset" : "0x00000"
  8441. }
  8442. ,
  8443. {
  8444. "is_managed" : "false",
  8445. "native_address" : "0x17f5cbeb8",
  8446. "native_offset" : "0x00000"
  8447. }
  8448. ,
  8449. {
  8450. "is_managed" : "false",
  8451. "native_address" : "0x17f58836c",
  8452. "native_offset" : "0x00000"
  8453. }
  8454. ,
  8455. {
  8456. "is_managed" : "false",
  8457. "native_address" : "0x17f5881a0",
  8458. "native_offset" : "0x00000"
  8459. }
  8460. ,
  8461. {
  8462. "is_managed" : "false",
  8463. "native_address" : "0x17f5b75e0",
  8464. "native_offset" : "0x00000"
  8465. }
  8466. ,
  8467. {
  8468. "is_managed" : "false",
  8469. "native_address" : "0x17f520854",
  8470. "native_offset" : "0x00000"
  8471. }
  8472. ,
  8473. {
  8474. "is_managed" : "true",
  8475. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8476. "token" : "0x00000",
  8477. "native_offset" : "0x0",
  8478. "filename" : "mscorlib.dll",
  8479. "sizeofimage" : "0x470000",
  8480. "timestamp" : "0xe8f31350",
  8481. "il_offset" : "0x00000"
  8482. }
  8483. ,
  8484. {
  8485. "is_managed" : "true",
  8486. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8487. "token" : "0x6001f5d",
  8488. "native_offset" : "0x0",
  8489. "filename" : "mscorlib.dll",
  8490. "sizeofimage" : "0x470000",
  8491. "timestamp" : "0xe8f31350",
  8492. "il_offset" : "0x00000"
  8493. }
  8494. ,
  8495. {
  8496. "is_managed" : "true",
  8497. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8498. "token" : "0x6001f50",
  8499. "native_offset" : "0x0",
  8500. "filename" : "mscorlib.dll",
  8501. "sizeofimage" : "0x470000",
  8502. "timestamp" : "0xe8f31350",
  8503. "il_offset" : "0x00000"
  8504. }
  8505. ,
  8506. {
  8507. "is_managed" : "true",
  8508. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8509. "token" : "0x6001f52",
  8510. "native_offset" : "0x0",
  8511. "filename" : "mscorlib.dll",
  8512. "sizeofimage" : "0x470000",
  8513. "timestamp" : "0xe8f31350",
  8514. "il_offset" : "0x00000"
  8515. }
  8516. ,
  8517. {
  8518. "is_managed" : "true",
  8519. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8520. "token" : "0x6001ea2",
  8521. "native_offset" : "0x0",
  8522. "filename" : "mscorlib.dll",
  8523. "sizeofimage" : "0x470000",
  8524. "timestamp" : "0xe8f31350",
  8525. "il_offset" : "0x00000"
  8526. }
  8527. ,
  8528. {
  8529. "is_managed" : "true",
  8530. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8531. "token" : "0x6001ea1",
  8532. "native_offset" : "0x0",
  8533. "filename" : "mscorlib.dll",
  8534. "sizeofimage" : "0x470000",
  8535. "timestamp" : "0xe8f31350",
  8536. "il_offset" : "0x00000"
  8537. }
  8538. ,
  8539. {
  8540. "is_managed" : "true",
  8541. "guid" : "643F6290-C90C-4761-A1C3-44139E338EE0",
  8542. "token" : "0x60026b3",
  8543. "native_offset" : "0x0",
  8544. "filename" : "System.dll",
  8545. "sizeofimage" : "0x29a000",
  8546. "timestamp" : "0xcf1f6901",
  8547. "il_offset" : "0x00000"
  8548. }
  8549. ,
  8550. {
  8551. "is_managed" : "true",
  8552. "guid" : "643F6290-C90C-4761-A1C3-44139E338EE0",
  8553. "token" : "0x60026d9",
  8554. "native_offset" : "0x0",
  8555. "filename" : "System.dll",
  8556. "sizeofimage" : "0x29a000",
  8557. "timestamp" : "0xcf1f6901",
  8558. "il_offset" : "0x00000"
  8559. }
  8560. ,
  8561. {
  8562. "is_managed" : "true",
  8563. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  8564. "token" : "0x60016b7",
  8565. "native_offset" : "0x0",
  8566. "filename" : "Burst.Compiler.IL.dll",
  8567. "sizeofimage" : "0x1aa000",
  8568. "timestamp" : "0x8ae67a69",
  8569. "il_offset" : "0x00000"
  8570. }
  8571. ,
  8572. {
  8573. "is_managed" : "true",
  8574. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8575. "token" : "0x6004690",
  8576. "native_offset" : "0x0",
  8577. "filename" : "mscorlib.dll",
  8578. "sizeofimage" : "0x470000",
  8579. "timestamp" : "0xe8f31350",
  8580. "il_offset" : "0x00000"
  8581. }
  8582. ,
  8583. {
  8584. "is_managed" : "true",
  8585. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  8586. "token" : "0x60014c7",
  8587. "native_offset" : "0x0",
  8588. "filename" : "Burst.Compiler.IL.dll",
  8589. "sizeofimage" : "0x1aa000",
  8590. "timestamp" : "0x8ae67a69",
  8591. "il_offset" : "0x00000"
  8592. }
  8593. ,
  8594. {
  8595. "is_managed" : "true",
  8596. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8597. "token" : "0x6002300",
  8598. "native_offset" : "0x0",
  8599. "filename" : "mscorlib.dll",
  8600. "sizeofimage" : "0x470000",
  8601. "timestamp" : "0xe8f31350",
  8602. "il_offset" : "0x00000"
  8603. }
  8604. ,
  8605. {
  8606. "is_managed" : "true",
  8607. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8608. "token" : "0x60023fa",
  8609. "native_offset" : "0x0",
  8610. "filename" : "mscorlib.dll",
  8611. "sizeofimage" : "0x470000",
  8612. "timestamp" : "0xe8f31350",
  8613. "il_offset" : "0x00000"
  8614. }
  8615. ,
  8616. {
  8617. "is_managed" : "true",
  8618. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8619. "token" : "0x60023fd",
  8620. "native_offset" : "0x0",
  8621. "filename" : "mscorlib.dll",
  8622. "sizeofimage" : "0x470000",
  8623. "timestamp" : "0xe8f31350",
  8624. "il_offset" : "0x00000"
  8625. }
  8626. ,
  8627. {
  8628. "is_managed" : "true",
  8629. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8630. "token" : "0x6001f25",
  8631. "native_offset" : "0x0",
  8632. "filename" : "mscorlib.dll",
  8633. "sizeofimage" : "0x470000",
  8634. "timestamp" : "0xe8f31350",
  8635. "il_offset" : "0x00000"
  8636. }
  8637. ,
  8638. {
  8639. "is_managed" : "true",
  8640. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8641. "token" : "0x6001f23",
  8642. "native_offset" : "0x0",
  8643. "filename" : "mscorlib.dll",
  8644. "sizeofimage" : "0x470000",
  8645. "timestamp" : "0xe8f31350",
  8646. "il_offset" : "0x00000"
  8647. }
  8648. ,
  8649. {
  8650. "is_managed" : "true",
  8651. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8652. "token" : "0x6002466",
  8653. "native_offset" : "0x0",
  8654. "filename" : "mscorlib.dll",
  8655. "sizeofimage" : "0x470000",
  8656. "timestamp" : "0xe8f31350",
  8657. "il_offset" : "0x00000"
  8658. }
  8659. ,
  8660. {
  8661. "is_managed" : "true",
  8662. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8663. "token" : "0x60023fc",
  8664. "native_offset" : "0x0",
  8665. "filename" : "mscorlib.dll",
  8666. "sizeofimage" : "0x470000",
  8667. "timestamp" : "0xe8f31350",
  8668. "il_offset" : "0x00000"
  8669. }
  8670. ,
  8671. {
  8672. "is_managed" : "true",
  8673. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8674. "token" : "0x60023fb",
  8675. "native_offset" : "0x0",
  8676. "filename" : "mscorlib.dll",
  8677. "sizeofimage" : "0x470000",
  8678. "timestamp" : "0xe8f31350",
  8679. "il_offset" : "0x00000"
  8680. }
  8681. ,
  8682. {
  8683. "is_managed" : "true",
  8684. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8685. "token" : "0x6002031",
  8686. "native_offset" : "0x0",
  8687. "filename" : "mscorlib.dll",
  8688. "sizeofimage" : "0x470000",
  8689. "timestamp" : "0xe8f31350",
  8690. "il_offset" : "0x00000"
  8691. }
  8692. ,
  8693. {
  8694. "is_managed" : "true",
  8695. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8696. "token" : "0x6002046",
  8697. "native_offset" : "0x0",
  8698. "filename" : "mscorlib.dll",
  8699. "sizeofimage" : "0x470000",
  8700. "timestamp" : "0xe8f31350",
  8701. "il_offset" : "0x00000"
  8702. }
  8703. ,
  8704. {
  8705. "is_managed" : "true",
  8706. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8707. "token" : "0x00000",
  8708. "native_offset" : "0x0",
  8709. "filename" : "mscorlib.dll",
  8710. "sizeofimage" : "0x470000",
  8711. "timestamp" : "0xe8f31350",
  8712. "il_offset" : "0x00000"
  8713. }
  8714. ,
  8715. {
  8716. "is_managed" : "false",
  8717. "native_address" : "0x17f3d4eac",
  8718. "native_offset" : "0x00000"
  8719. }
  8720. ,
  8721. {
  8722. "is_managed" : "false",
  8723. "native_address" : "0x17f55b370",
  8724. "native_offset" : "0x00000"
  8725. }
  8726. ,
  8727. {
  8728. "is_managed" : "false",
  8729. "native_address" : "0x17f580084",
  8730. "native_offset" : "0x00000"
  8731. }
  8732. ,
  8733. {
  8734. "is_managed" : "false",
  8735. "native_address" : "0x17f4d510c",
  8736. "native_offset" : "0x00000"
  8737. }
  8738. ,
  8739. {
  8740. "is_managed" : "false",
  8741. "native_address" : "0x17f57d3a8",
  8742. "native_offset" : "0x00000"
  8743. }
  8744. ,
  8745. {
  8746. "is_managed" : "false",
  8747. "native_address" : "0x17f57d254",
  8748. "native_offset" : "0x00000"
  8749. }
  8750. ,
  8751. {
  8752. "is_managed" : "false",
  8753. "native_address" : "0x17f5fcd28",
  8754. "native_offset" : "0x00000"
  8755. }
  8756. ,
  8757. {
  8758. "is_managed" : "false",
  8759. "native_address" : "0x17f5fccb0",
  8760. "native_offset" : "0x00000"
  8761. }
  8762. ,
  8763. {
  8764. "is_managed" : "false",
  8765. "native_address" : "0x18625c2e4",
  8766. "native_offset" : "0x00000"
  8767. }
  8768. ,
  8769. {
  8770. "is_managed" : "false",
  8771. "native_address" : "0x1862570fc",
  8772. "native_offset" : "0x00000"
  8773. }
  8774. ]
  8775. },
  8776. {
  8777. "is_managed" : false,
  8778. "offset_free_hash" : "0x0",
  8779. "offset_rich_hash" : "0x0",
  8780. "crashed" : false,
  8781. "native_thread_id" : "0x345a97000",
  8782. "thread_info_addr" : "0x33b584200",
  8783. "thread_name" : "Thread Pool I/O Selector",
  8784. "ctx" : {
  8785. "IP" : "0x186225fbc",
  8786. "SP" : "0x345a96ae0",
  8787. "BP" : "0x345a96ce0"
  8788. },
  8789. "unmanaged_frames" : [
  8790. {
  8791. "is_managed" : "false",
  8792. "native_address" : "0x17f4452c4",
  8793. "native_offset" : "0x00000"
  8794. }
  8795. ,
  8796. {
  8797. "is_managed" : "false",
  8798. "native_address" : "0x17f57c63c",
  8799. "native_offset" : "0x00000"
  8800. }
  8801. ,
  8802. {
  8803. "is_managed" : "false",
  8804. "native_address" : "0x17f57c998",
  8805. "native_offset" : "0x00000"
  8806. }
  8807. ,
  8808. {
  8809. "is_managed" : "false",
  8810. "native_address" : "0x17f57c760",
  8811. "native_offset" : "0x00000"
  8812. }
  8813. ,
  8814. {
  8815. "is_managed" : "false",
  8816. "native_address" : "0x17f4864f4",
  8817. "native_offset" : "0x00000"
  8818. }
  8819. ,
  8820. {
  8821. "is_managed" : "false",
  8822. "native_address" : "0x186292e04",
  8823. "native_offset" : "0x00000"
  8824. }
  8825. ,
  8826. {
  8827. "is_managed" : "false",
  8828. "native_address" : "0x17f5ce934",
  8829. "native_offset" : "0x00000"
  8830. }
  8831. ,
  8832. {
  8833. "is_managed" : "false",
  8834. "native_address" : "0x17f581b78",
  8835. "native_offset" : "0x00000"
  8836. }
  8837. ,
  8838. {
  8839. "is_managed" : "false",
  8840. "native_address" : "0x17f581590",
  8841. "native_offset" : "0x00000"
  8842. }
  8843. ,
  8844. {
  8845. "is_managed" : "false",
  8846. "native_address" : "0x17f57d3a8",
  8847. "native_offset" : "0x00000"
  8848. }
  8849. ,
  8850. {
  8851. "is_managed" : "false",
  8852. "native_address" : "0x17f57d254",
  8853. "native_offset" : "0x00000"
  8854. }
  8855. ,
  8856. {
  8857. "is_managed" : "false",
  8858. "native_address" : "0x17f5fcd28",
  8859. "native_offset" : "0x00000"
  8860. }
  8861. ,
  8862. {
  8863. "is_managed" : "false",
  8864. "native_address" : "0x17f5fccb0",
  8865. "native_offset" : "0x00000"
  8866. }
  8867. ,
  8868. {
  8869. "is_managed" : "false",
  8870. "native_address" : "0x18625c2e4",
  8871. "native_offset" : "0x00000"
  8872. }
  8873. ,
  8874. {
  8875. "is_managed" : "false",
  8876. "native_address" : "0x1862570fc",
  8877. "native_offset" : "0x00000"
  8878. }
  8879. ]
  8880. },
  8881. {
  8882. "is_managed" : false,
  8883. "offset_free_hash" : "0x0",
  8884. "offset_rich_hash" : "0x0",
  8885. "crashed" : false,
  8886. "native_thread_id" : "0x345eaf000",
  8887. "thread_info_addr" : "0x151b6d800",
  8888. "thread_name" : "Thread Pool Worker",
  8889. "ctx" : {
  8890. "IP" : "0x18621aee8",
  8891. "SP" : "0x345eaedb0",
  8892. "BP" : "0x345eaee50"
  8893. },
  8894. "unmanaged_frames" : [
  8895. {
  8896. "is_managed" : "false",
  8897. "native_address" : "0x17f4452c4",
  8898. "native_offset" : "0x00000"
  8899. }
  8900. ,
  8901. {
  8902. "is_managed" : "false",
  8903. "native_address" : "0x17f57c63c",
  8904. "native_offset" : "0x00000"
  8905. }
  8906. ,
  8907. {
  8908. "is_managed" : "false",
  8909. "native_address" : "0x17f57c998",
  8910. "native_offset" : "0x00000"
  8911. }
  8912. ,
  8913. {
  8914. "is_managed" : "false",
  8915. "native_address" : "0x17f57c760",
  8916. "native_offset" : "0x00000"
  8917. }
  8918. ,
  8919. {
  8920. "is_managed" : "false",
  8921. "native_address" : "0x17f4864f4",
  8922. "native_offset" : "0x00000"
  8923. }
  8924. ,
  8925. {
  8926. "is_managed" : "false",
  8927. "native_address" : "0x186292e04",
  8928. "native_offset" : "0x00000"
  8929. }
  8930. ,
  8931. {
  8932. "is_managed" : "false",
  8933. "native_address" : "0x17f4d52e8",
  8934. "native_offset" : "0x00000"
  8935. }
  8936. ,
  8937. {
  8938. "is_managed" : "false",
  8939. "native_address" : "0x17f57d3a8",
  8940. "native_offset" : "0x00000"
  8941. }
  8942. ,
  8943. {
  8944. "is_managed" : "false",
  8945. "native_address" : "0x17f57d254",
  8946. "native_offset" : "0x00000"
  8947. }
  8948. ,
  8949. {
  8950. "is_managed" : "false",
  8951. "native_address" : "0x17f5fcd28",
  8952. "native_offset" : "0x00000"
  8953. }
  8954. ,
  8955. {
  8956. "is_managed" : "false",
  8957. "native_address" : "0x17f5fccb0",
  8958. "native_offset" : "0x00000"
  8959. }
  8960. ,
  8961. {
  8962. "is_managed" : "false",
  8963. "native_address" : "0x18625c2e4",
  8964. "native_offset" : "0x00000"
  8965. }
  8966. ,
  8967. {
  8968. "is_managed" : "false",
  8969. "native_address" : "0x1862570fc",
  8970. "native_offset" : "0x00000"
  8971. }
  8972. ]
  8973. },
  8974. {
  8975. "is_managed" : true,
  8976. "offset_free_hash" : "0x23ea8cea72",
  8977. "offset_rich_hash" : "0x23ea8cf190",
  8978. "crashed" : false,
  8979. "native_thread_id" : "0x369d47000",
  8980. "thread_info_addr" : "0x35c3abc00",
  8981. "thread_name" : "Burst-CompilerThread-2",
  8982. "ctx" : {
  8983. "IP" : "0x18621e6ec",
  8984. "SP" : "0x369d44c40",
  8985. "BP" : "0x369d44cd0"
  8986. },
  8987. "managed_frames" : [
  8988. {
  8989. "is_managed" : "false",
  8990. "native_address" : "unregistered"
  8991. }
  8992. ,
  8993. {
  8994. "is_managed" : "true",
  8995. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  8996. "token" : "0x00000",
  8997. "native_offset" : "0x0",
  8998. "filename" : "mscorlib.dll",
  8999. "sizeofimage" : "0x470000",
  9000. "timestamp" : "0xe8f31350",
  9001. "il_offset" : "0xffffffff"
  9002. }
  9003. ,
  9004. {
  9005. "is_managed" : "true",
  9006. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  9007. "token" : "0x60001ad",
  9008. "native_offset" : "0x0",
  9009. "filename" : "Burst.Compiler.IL.dll",
  9010. "sizeofimage" : "0x1aa000",
  9011. "timestamp" : "0x8ae67a69",
  9012. "il_offset" : "0x00009"
  9013. }
  9014. ,
  9015. {
  9016. "is_managed" : "true",
  9017. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  9018. "token" : "0x6000be5",
  9019. "native_offset" : "0x0",
  9020. "filename" : "Burst.Compiler.IL.dll",
  9021. "sizeofimage" : "0x1aa000",
  9022. "timestamp" : "0x8ae67a69",
  9023. "il_offset" : "0x000a5"
  9024. }
  9025. ,
  9026. {
  9027. "is_managed" : "true",
  9028. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  9029. "token" : "0x6000be5",
  9030. "native_offset" : "0x0",
  9031. "filename" : "Burst.Compiler.IL.dll",
  9032. "sizeofimage" : "0x1aa000",
  9033. "timestamp" : "0x8ae67a69",
  9034. "il_offset" : "0x001de"
  9035. }
  9036. ,
  9037. {
  9038. "is_managed" : "true",
  9039. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  9040. "token" : "0x6000be4",
  9041. "native_offset" : "0x0",
  9042. "filename" : "Burst.Compiler.IL.dll",
  9043. "sizeofimage" : "0x1aa000",
  9044. "timestamp" : "0x8ae67a69",
  9045. "il_offset" : "0x00071"
  9046. }
  9047. ,
  9048. {
  9049. "is_managed" : "true",
  9050. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  9051. "token" : "0x60014ad",
  9052. "native_offset" : "0x0",
  9053. "filename" : "Burst.Compiler.IL.dll",
  9054. "sizeofimage" : "0x1aa000",
  9055. "timestamp" : "0x8ae67a69",
  9056. "il_offset" : "0x0005e"
  9057. }
  9058. ,
  9059. {
  9060. "is_managed" : "true",
  9061. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  9062. "token" : "0x60016b5",
  9063. "native_offset" : "0x0",
  9064. "filename" : "Burst.Compiler.IL.dll",
  9065. "sizeofimage" : "0x1aa000",
  9066. "timestamp" : "0x8ae67a69",
  9067. "il_offset" : "0x00058"
  9068. }
  9069. ,
  9070. {
  9071. "is_managed" : "true",
  9072. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9073. "token" : "0x600469b",
  9074. "native_offset" : "0x0",
  9075. "filename" : "mscorlib.dll",
  9076. "sizeofimage" : "0x470000",
  9077. "timestamp" : "0xe8f31350",
  9078. "il_offset" : "0x0002c"
  9079. }
  9080. ,
  9081. {
  9082. "is_managed" : "true",
  9083. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  9084. "token" : "0x60014b6",
  9085. "native_offset" : "0x0",
  9086. "filename" : "Burst.Compiler.IL.dll",
  9087. "sizeofimage" : "0x1aa000",
  9088. "timestamp" : "0x8ae67a69",
  9089. "il_offset" : "0x0001c"
  9090. }
  9091. ,
  9092. {
  9093. "is_managed" : "true",
  9094. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9095. "token" : "0x6002300",
  9096. "native_offset" : "0x0",
  9097. "filename" : "mscorlib.dll",
  9098. "sizeofimage" : "0x470000",
  9099. "timestamp" : "0xe8f31350",
  9100. "il_offset" : "0x0000f"
  9101. }
  9102. ,
  9103. {
  9104. "is_managed" : "true",
  9105. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9106. "token" : "0x60023fa",
  9107. "native_offset" : "0x0",
  9108. "filename" : "mscorlib.dll",
  9109. "sizeofimage" : "0x470000",
  9110. "timestamp" : "0xe8f31350",
  9111. "il_offset" : "0x00000"
  9112. }
  9113. ,
  9114. {
  9115. "is_managed" : "true",
  9116. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9117. "token" : "0x60023fd",
  9118. "native_offset" : "0x0",
  9119. "filename" : "mscorlib.dll",
  9120. "sizeofimage" : "0x470000",
  9121. "timestamp" : "0xe8f31350",
  9122. "il_offset" : "0x00000"
  9123. }
  9124. ,
  9125. {
  9126. "is_managed" : "true",
  9127. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9128. "token" : "0x6001f25",
  9129. "native_offset" : "0x0",
  9130. "filename" : "mscorlib.dll",
  9131. "sizeofimage" : "0x470000",
  9132. "timestamp" : "0xe8f31350",
  9133. "il_offset" : "0x00071"
  9134. }
  9135. ,
  9136. {
  9137. "is_managed" : "true",
  9138. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9139. "token" : "0x6001f23",
  9140. "native_offset" : "0x0",
  9141. "filename" : "mscorlib.dll",
  9142. "sizeofimage" : "0x470000",
  9143. "timestamp" : "0xe8f31350",
  9144. "il_offset" : "0x00000"
  9145. }
  9146. ,
  9147. {
  9148. "is_managed" : "true",
  9149. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9150. "token" : "0x6002466",
  9151. "native_offset" : "0x0",
  9152. "filename" : "mscorlib.dll",
  9153. "sizeofimage" : "0x470000",
  9154. "timestamp" : "0xe8f31350",
  9155. "il_offset" : "0x00034"
  9156. }
  9157. ,
  9158. {
  9159. "is_managed" : "true",
  9160. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9161. "token" : "0x60023fc",
  9162. "native_offset" : "0x0",
  9163. "filename" : "mscorlib.dll",
  9164. "sizeofimage" : "0x470000",
  9165. "timestamp" : "0xe8f31350",
  9166. "il_offset" : "0x0004a"
  9167. }
  9168. ,
  9169. {
  9170. "is_managed" : "true",
  9171. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9172. "token" : "0x6002547",
  9173. "native_offset" : "0x0",
  9174. "filename" : "mscorlib.dll",
  9175. "sizeofimage" : "0x470000",
  9176. "timestamp" : "0xe8f31350",
  9177. "il_offset" : "0x00014"
  9178. }
  9179. ,
  9180. {
  9181. "is_managed" : "true",
  9182. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  9183. "token" : "0x60014ca",
  9184. "native_offset" : "0x0",
  9185. "filename" : "Burst.Compiler.IL.dll",
  9186. "sizeofimage" : "0x1aa000",
  9187. "timestamp" : "0x8ae67a69",
  9188. "il_offset" : "0x00000"
  9189. }
  9190. ,
  9191. {
  9192. "is_managed" : "true",
  9193. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  9194. "token" : "0x6000bdf",
  9195. "native_offset" : "0x0",
  9196. "filename" : "Burst.Compiler.IL.dll",
  9197. "sizeofimage" : "0x1aa000",
  9198. "timestamp" : "0x8ae67a69",
  9199. "il_offset" : "0x000f5"
  9200. }
  9201. ,
  9202. {
  9203. "is_managed" : "true",
  9204. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9205. "token" : "0x6001f7d",
  9206. "native_offset" : "0x0",
  9207. "filename" : "mscorlib.dll",
  9208. "sizeofimage" : "0x470000",
  9209. "timestamp" : "0xe8f31350",
  9210. "il_offset" : "0x00014"
  9211. }
  9212. ,
  9213. {
  9214. "is_managed" : "true",
  9215. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9216. "token" : "0x6001f25",
  9217. "native_offset" : "0x0",
  9218. "filename" : "mscorlib.dll",
  9219. "sizeofimage" : "0x470000",
  9220. "timestamp" : "0xe8f31350",
  9221. "il_offset" : "0x00071"
  9222. }
  9223. ,
  9224. {
  9225. "is_managed" : "true",
  9226. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9227. "token" : "0x6001f23",
  9228. "native_offset" : "0x0",
  9229. "filename" : "mscorlib.dll",
  9230. "sizeofimage" : "0x470000",
  9231. "timestamp" : "0xe8f31350",
  9232. "il_offset" : "0x00000"
  9233. }
  9234. ,
  9235. {
  9236. "is_managed" : "true",
  9237. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9238. "token" : "0x6001f22",
  9239. "native_offset" : "0x0",
  9240. "filename" : "mscorlib.dll",
  9241. "sizeofimage" : "0x470000",
  9242. "timestamp" : "0xe8f31350",
  9243. "il_offset" : "0x0002b"
  9244. }
  9245. ,
  9246. {
  9247. "is_managed" : "true",
  9248. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9249. "token" : "0x6001f7f",
  9250. "native_offset" : "0x0",
  9251. "filename" : "mscorlib.dll",
  9252. "sizeofimage" : "0x470000",
  9253. "timestamp" : "0xe8f31350",
  9254. "il_offset" : "0x00008"
  9255. }
  9256. ,
  9257. {
  9258. "is_managed" : "true",
  9259. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9260. "token" : "0x00000",
  9261. "native_offset" : "0x0",
  9262. "filename" : "mscorlib.dll",
  9263. "sizeofimage" : "0x470000",
  9264. "timestamp" : "0xe8f31350",
  9265. "il_offset" : "0x00065"
  9266. }
  9267. ],
  9268. "unmanaged_frames" : [
  9269. {
  9270. "is_managed" : "false",
  9271. "native_address" : "0x17f4452c4",
  9272. "native_offset" : "0x00000"
  9273. }
  9274. ,
  9275. {
  9276. "is_managed" : "false",
  9277. "native_address" : "0x17f57c63c",
  9278. "native_offset" : "0x00000"
  9279. }
  9280. ,
  9281. {
  9282. "is_managed" : "false",
  9283. "native_address" : "0x17f57c998",
  9284. "native_offset" : "0x00000"
  9285. }
  9286. ,
  9287. {
  9288. "is_managed" : "false",
  9289. "native_address" : "0x17f57c760",
  9290. "native_offset" : "0x00000"
  9291. }
  9292. ,
  9293. {
  9294. "is_managed" : "false",
  9295. "native_address" : "0x17f4864f4",
  9296. "native_offset" : "0x00000"
  9297. }
  9298. ,
  9299. {
  9300. "is_managed" : "false",
  9301. "native_address" : "0x186292e04",
  9302. "native_offset" : "0x00000"
  9303. }
  9304. ,
  9305. {
  9306. "is_managed" : "false",
  9307. "native_address" : "0x18625c894",
  9308. "native_offset" : "0x00000"
  9309. }
  9310. ,
  9311. {
  9312. "is_managed" : "false",
  9313. "native_address" : "0x17f5b7f9c",
  9314. "native_offset" : "0x00000"
  9315. }
  9316. ,
  9317. {
  9318. "is_managed" : "false",
  9319. "native_address" : "0x17f5b6d4c",
  9320. "native_offset" : "0x00000"
  9321. }
  9322. ,
  9323. {
  9324. "is_managed" : "true",
  9325. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9326. "token" : "0x00000",
  9327. "native_offset" : "0x0",
  9328. "filename" : "mscorlib.dll",
  9329. "sizeofimage" : "0x470000",
  9330. "timestamp" : "0xe8f31350",
  9331. "il_offset" : "0x00000"
  9332. }
  9333. ,
  9334. {
  9335. "is_managed" : "true",
  9336. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  9337. "token" : "0x60001ad",
  9338. "native_offset" : "0x0",
  9339. "filename" : "Burst.Compiler.IL.dll",
  9340. "sizeofimage" : "0x1aa000",
  9341. "timestamp" : "0x8ae67a69",
  9342. "il_offset" : "0x00000"
  9343. }
  9344. ,
  9345. {
  9346. "is_managed" : "true",
  9347. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  9348. "token" : "0x6000be5",
  9349. "native_offset" : "0x0",
  9350. "filename" : "Burst.Compiler.IL.dll",
  9351. "sizeofimage" : "0x1aa000",
  9352. "timestamp" : "0x8ae67a69",
  9353. "il_offset" : "0x00000"
  9354. }
  9355. ,
  9356. {
  9357. "is_managed" : "true",
  9358. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  9359. "token" : "0x6000be5",
  9360. "native_offset" : "0x0",
  9361. "filename" : "Burst.Compiler.IL.dll",
  9362. "sizeofimage" : "0x1aa000",
  9363. "timestamp" : "0x8ae67a69",
  9364. "il_offset" : "0x00000"
  9365. }
  9366. ,
  9367. {
  9368. "is_managed" : "true",
  9369. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  9370. "token" : "0x6000be4",
  9371. "native_offset" : "0x0",
  9372. "filename" : "Burst.Compiler.IL.dll",
  9373. "sizeofimage" : "0x1aa000",
  9374. "timestamp" : "0x8ae67a69",
  9375. "il_offset" : "0x00000"
  9376. }
  9377. ,
  9378. {
  9379. "is_managed" : "true",
  9380. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  9381. "token" : "0x60014ad",
  9382. "native_offset" : "0x0",
  9383. "filename" : "Burst.Compiler.IL.dll",
  9384. "sizeofimage" : "0x1aa000",
  9385. "timestamp" : "0x8ae67a69",
  9386. "il_offset" : "0x00000"
  9387. }
  9388. ,
  9389. {
  9390. "is_managed" : "true",
  9391. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  9392. "token" : "0x60016b5",
  9393. "native_offset" : "0x0",
  9394. "filename" : "Burst.Compiler.IL.dll",
  9395. "sizeofimage" : "0x1aa000",
  9396. "timestamp" : "0x8ae67a69",
  9397. "il_offset" : "0x00000"
  9398. }
  9399. ,
  9400. {
  9401. "is_managed" : "true",
  9402. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9403. "token" : "0x600469b",
  9404. "native_offset" : "0x0",
  9405. "filename" : "mscorlib.dll",
  9406. "sizeofimage" : "0x470000",
  9407. "timestamp" : "0xe8f31350",
  9408. "il_offset" : "0x00000"
  9409. }
  9410. ,
  9411. {
  9412. "is_managed" : "true",
  9413. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  9414. "token" : "0x60014b6",
  9415. "native_offset" : "0x0",
  9416. "filename" : "Burst.Compiler.IL.dll",
  9417. "sizeofimage" : "0x1aa000",
  9418. "timestamp" : "0x8ae67a69",
  9419. "il_offset" : "0x00000"
  9420. }
  9421. ,
  9422. {
  9423. "is_managed" : "true",
  9424. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9425. "token" : "0x6002300",
  9426. "native_offset" : "0x0",
  9427. "filename" : "mscorlib.dll",
  9428. "sizeofimage" : "0x470000",
  9429. "timestamp" : "0xe8f31350",
  9430. "il_offset" : "0x00000"
  9431. }
  9432. ,
  9433. {
  9434. "is_managed" : "true",
  9435. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9436. "token" : "0x60023fa",
  9437. "native_offset" : "0x0",
  9438. "filename" : "mscorlib.dll",
  9439. "sizeofimage" : "0x470000",
  9440. "timestamp" : "0xe8f31350",
  9441. "il_offset" : "0x00000"
  9442. }
  9443. ,
  9444. {
  9445. "is_managed" : "true",
  9446. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9447. "token" : "0x60023fd",
  9448. "native_offset" : "0x0",
  9449. "filename" : "mscorlib.dll",
  9450. "sizeofimage" : "0x470000",
  9451. "timestamp" : "0xe8f31350",
  9452. "il_offset" : "0x00000"
  9453. }
  9454. ,
  9455. {
  9456. "is_managed" : "true",
  9457. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9458. "token" : "0x6001f25",
  9459. "native_offset" : "0x0",
  9460. "filename" : "mscorlib.dll",
  9461. "sizeofimage" : "0x470000",
  9462. "timestamp" : "0xe8f31350",
  9463. "il_offset" : "0x00000"
  9464. }
  9465. ,
  9466. {
  9467. "is_managed" : "true",
  9468. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9469. "token" : "0x6001f23",
  9470. "native_offset" : "0x0",
  9471. "filename" : "mscorlib.dll",
  9472. "sizeofimage" : "0x470000",
  9473. "timestamp" : "0xe8f31350",
  9474. "il_offset" : "0x00000"
  9475. }
  9476. ,
  9477. {
  9478. "is_managed" : "true",
  9479. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9480. "token" : "0x6002466",
  9481. "native_offset" : "0x0",
  9482. "filename" : "mscorlib.dll",
  9483. "sizeofimage" : "0x470000",
  9484. "timestamp" : "0xe8f31350",
  9485. "il_offset" : "0x00000"
  9486. }
  9487. ,
  9488. {
  9489. "is_managed" : "true",
  9490. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9491. "token" : "0x60023fc",
  9492. "native_offset" : "0x0",
  9493. "filename" : "mscorlib.dll",
  9494. "sizeofimage" : "0x470000",
  9495. "timestamp" : "0xe8f31350",
  9496. "il_offset" : "0x00000"
  9497. }
  9498. ,
  9499. {
  9500. "is_managed" : "true",
  9501. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9502. "token" : "0x6002547",
  9503. "native_offset" : "0x0",
  9504. "filename" : "mscorlib.dll",
  9505. "sizeofimage" : "0x470000",
  9506. "timestamp" : "0xe8f31350",
  9507. "il_offset" : "0x00000"
  9508. }
  9509. ,
  9510. {
  9511. "is_managed" : "true",
  9512. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  9513. "token" : "0x60014ca",
  9514. "native_offset" : "0x0",
  9515. "filename" : "Burst.Compiler.IL.dll",
  9516. "sizeofimage" : "0x1aa000",
  9517. "timestamp" : "0x8ae67a69",
  9518. "il_offset" : "0x00000"
  9519. }
  9520. ,
  9521. {
  9522. "is_managed" : "true",
  9523. "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A",
  9524. "token" : "0x6000bdf",
  9525. "native_offset" : "0x0",
  9526. "filename" : "Burst.Compiler.IL.dll",
  9527. "sizeofimage" : "0x1aa000",
  9528. "timestamp" : "0x8ae67a69",
  9529. "il_offset" : "0x00000"
  9530. }
  9531. ,
  9532. {
  9533. "is_managed" : "true",
  9534. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9535. "token" : "0x6001f7d",
  9536. "native_offset" : "0x0",
  9537. "filename" : "mscorlib.dll",
  9538. "sizeofimage" : "0x470000",
  9539. "timestamp" : "0xe8f31350",
  9540. "il_offset" : "0x00000"
  9541. }
  9542. ,
  9543. {
  9544. "is_managed" : "true",
  9545. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9546. "token" : "0x6001f25",
  9547. "native_offset" : "0x0",
  9548. "filename" : "mscorlib.dll",
  9549. "sizeofimage" : "0x470000",
  9550. "timestamp" : "0xe8f31350",
  9551. "il_offset" : "0x00000"
  9552. }
  9553. ,
  9554. {
  9555. "is_managed" : "true",
  9556. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9557. "token" : "0x6001f23",
  9558. "native_offset" : "0x0",
  9559. "filename" : "mscorlib.dll",
  9560. "sizeofimage" : "0x470000",
  9561. "timestamp" : "0xe8f31350",
  9562. "il_offset" : "0x00000"
  9563. }
  9564. ,
  9565. {
  9566. "is_managed" : "true",
  9567. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9568. "token" : "0x6001f22",
  9569. "native_offset" : "0x0",
  9570. "filename" : "mscorlib.dll",
  9571. "sizeofimage" : "0x470000",
  9572. "timestamp" : "0xe8f31350",
  9573. "il_offset" : "0x00000"
  9574. }
  9575. ,
  9576. {
  9577. "is_managed" : "true",
  9578. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9579. "token" : "0x6001f7f",
  9580. "native_offset" : "0x0",
  9581. "filename" : "mscorlib.dll",
  9582. "sizeofimage" : "0x470000",
  9583. "timestamp" : "0xe8f31350",
  9584. "il_offset" : "0x00000"
  9585. }
  9586. ,
  9587. {
  9588. "is_managed" : "true",
  9589. "guid" : "EBD302E1-8A25-47BC-A475-2DE41FA3C166",
  9590. "token" : "0x00000",
  9591. "native_offset" : "0x0",
  9592. "filename" : "mscorlib.dll",
  9593. "sizeofimage" : "0x470000",
  9594. "timestamp" : "0xe8f31350",
  9595. "il_offset" : "0x00000"
  9596. }
  9597. ,
  9598. {
  9599. "is_managed" : "false",
  9600. "native_address" : "0x17f3d4eac",
  9601. "native_offset" : "0x00000"
  9602. }
  9603. ,
  9604. {
  9605. "is_managed" : "false",
  9606. "native_address" : "0x17f55b370",
  9607. "native_offset" : "0x00000"
  9608. }
  9609. ,
  9610. {
  9611. "is_managed" : "false",
  9612. "native_address" : "0x17f55cf80",
  9613. "native_offset" : "0x00000"
  9614. }
  9615. ,
  9616. {
  9617. "is_managed" : "false",
  9618. "native_address" : "0x17f57d49c",
  9619. "native_offset" : "0x00000"
  9620. }
  9621. ,
  9622. {
  9623. "is_managed" : "false",
  9624. "native_address" : "0x17f57d254",
  9625. "native_offset" : "0x00000"
  9626. }
  9627. ,
  9628. {
  9629. "is_managed" : "false",
  9630. "native_address" : "0x17f5fcd28",
  9631. "native_offset" : "0x00000"
  9632. }
  9633. ,
  9634. {
  9635. "is_managed" : "false",
  9636. "native_address" : "0x17f5fccb0",
  9637. "native_offset" : "0x00000"
  9638. }
  9639. ,
  9640. {
  9641. "is_managed" : "false",
  9642. "native_address" : "0x18625c2e4",
  9643. "native_offset" : "0x00000"
  9644. }
  9645. ,
  9646. {
  9647. "is_managed" : "false",
  9648. "native_address" : "0x1862570fc",
  9649. "native_offset" : "0x00000"
  9650. }
  9651. ]
  9652. }
  9653. ]
  9654. }