mono_crash.188aff70a4.0.json 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363
  1. {
  2. "protocol_version" : "0.0.6",
  3. "configuration" : {
  4. "version" : "(6.13.0) (explicit/db8d601e)",
  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" : "2293792768",
  19. "Virtual Size" : "427331256320",
  20. "minor_gc_time" : "0",
  21. "major_gc_time" : "8084787",
  22. "minor_gc_count" : "0",
  23. "major_gc_count" : "6",
  24. "major_gc_time_concurrent" : "0"
  25. },
  26. "threads" : [
  27. {
  28. "is_managed" : true,
  29. "offset_free_hash" : "0x1491dfc51e",
  30. "offset_rich_hash" : "0x1491dfc8e0",
  31. "crashed" : false,
  32. "native_thread_id" : "0x37c3b7000",
  33. "thread_info_addr" : "0x15b69d000",
  34. "thread_name" : "Burst-CompilerThread-7",
  35. "ctx" : {
  36. "IP" : "0x1844ea6ec",
  37. "SP" : "0x37c3b5ad0",
  38. "BP" : "0x37c3b5b60"
  39. },
  40. "managed_frames" : [
  41. {
  42. "is_managed" : "false",
  43. "native_address" : "unregistered"
  44. }
  45. ,
  46. {
  47. "is_managed" : "true",
  48. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  49. "token" : "0x00000",
  50. "native_offset" : "0x0",
  51. "filename" : "mscorlib.dll",
  52. "sizeofimage" : "0x470000",
  53. "timestamp" : "0xb608e565",
  54. "il_offset" : "0xffffffff"
  55. }
  56. ,
  57. {
  58. "is_managed" : "true",
  59. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  60. "token" : "0x60020b3",
  61. "native_offset" : "0x0",
  62. "filename" : "mscorlib.dll",
  63. "sizeofimage" : "0x470000",
  64. "timestamp" : "0xb608e565",
  65. "il_offset" : "0x000c7"
  66. }
  67. ,
  68. {
  69. "is_managed" : "true",
  70. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  71. "token" : "0x60020a5",
  72. "native_offset" : "0x0",
  73. "filename" : "mscorlib.dll",
  74. "sizeofimage" : "0x470000",
  75. "timestamp" : "0xb608e565",
  76. "il_offset" : "0x000a1"
  77. }
  78. ,
  79. {
  80. "is_managed" : "true",
  81. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  82. "token" : "0x60020a9",
  83. "native_offset" : "0x0",
  84. "filename" : "mscorlib.dll",
  85. "sizeofimage" : "0x470000",
  86. "timestamp" : "0xb608e565",
  87. "il_offset" : "0x00000"
  88. }
  89. ,
  90. {
  91. "is_managed" : "true",
  92. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  93. "token" : "0x60026c6",
  94. "native_offset" : "0x0",
  95. "filename" : "System.dll",
  96. "sizeofimage" : "0x29a000",
  97. "timestamp" : "0xe77c4867",
  98. "il_offset" : "0x0006e"
  99. }
  100. ,
  101. {
  102. "is_managed" : "true",
  103. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  104. "token" : "0x60026c5",
  105. "native_offset" : "0x0",
  106. "filename" : "System.dll",
  107. "sizeofimage" : "0x29a000",
  108. "timestamp" : "0xe77c4867",
  109. "il_offset" : "0x0003c"
  110. }
  111. ,
  112. {
  113. "is_managed" : "true",
  114. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  115. "token" : "0x60026c0",
  116. "native_offset" : "0x0",
  117. "filename" : "System.dll",
  118. "sizeofimage" : "0x29a000",
  119. "timestamp" : "0xe77c4867",
  120. "il_offset" : "0x00000"
  121. }
  122. ,
  123. {
  124. "is_managed" : "true",
  125. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  126. "token" : "0x6000b92",
  127. "native_offset" : "0x0",
  128. "filename" : "Burst.Compiler.IL.dll",
  129. "sizeofimage" : "0x1aa000",
  130. "timestamp" : "0x804eb2a0",
  131. "il_offset" : "0x00024"
  132. }
  133. ,
  134. {
  135. "is_managed" : "true",
  136. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  137. "token" : "0x6000be4",
  138. "native_offset" : "0x0",
  139. "filename" : "Burst.Compiler.IL.dll",
  140. "sizeofimage" : "0x1aa000",
  141. "timestamp" : "0x804eb2a0",
  142. "il_offset" : "0x00070"
  143. }
  144. ,
  145. {
  146. "is_managed" : "true",
  147. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  148. "token" : "0x6001f7d",
  149. "native_offset" : "0x0",
  150. "filename" : "mscorlib.dll",
  151. "sizeofimage" : "0x470000",
  152. "timestamp" : "0xb608e565",
  153. "il_offset" : "0x00014"
  154. }
  155. ,
  156. {
  157. "is_managed" : "true",
  158. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  159. "token" : "0x6001f25",
  160. "native_offset" : "0x0",
  161. "filename" : "mscorlib.dll",
  162. "sizeofimage" : "0x470000",
  163. "timestamp" : "0xb608e565",
  164. "il_offset" : "0x00071"
  165. }
  166. ,
  167. {
  168. "is_managed" : "true",
  169. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  170. "token" : "0x6001f23",
  171. "native_offset" : "0x0",
  172. "filename" : "mscorlib.dll",
  173. "sizeofimage" : "0x470000",
  174. "timestamp" : "0xb608e565",
  175. "il_offset" : "0x00000"
  176. }
  177. ,
  178. {
  179. "is_managed" : "true",
  180. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  181. "token" : "0x6001f22",
  182. "native_offset" : "0x0",
  183. "filename" : "mscorlib.dll",
  184. "sizeofimage" : "0x470000",
  185. "timestamp" : "0xb608e565",
  186. "il_offset" : "0x0002b"
  187. }
  188. ,
  189. {
  190. "is_managed" : "true",
  191. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  192. "token" : "0x6001f7f",
  193. "native_offset" : "0x0",
  194. "filename" : "mscorlib.dll",
  195. "sizeofimage" : "0x470000",
  196. "timestamp" : "0xb608e565",
  197. "il_offset" : "0x00008"
  198. }
  199. ,
  200. {
  201. "is_managed" : "true",
  202. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  203. "token" : "0x00000",
  204. "native_offset" : "0x0",
  205. "filename" : "mscorlib.dll",
  206. "sizeofimage" : "0x470000",
  207. "timestamp" : "0xb608e565",
  208. "il_offset" : "0x00065"
  209. }
  210. ],
  211. "unmanaged_frames" : [
  212. {
  213. "is_managed" : "false",
  214. "native_address" : "0x159081180",
  215. "native_offset" : "0x00000"
  216. }
  217. ,
  218. {
  219. "is_managed" : "false",
  220. "native_address" : "0x1591b84d8",
  221. "native_offset" : "0x00000"
  222. }
  223. ,
  224. {
  225. "is_managed" : "false",
  226. "native_address" : "0x1591b8834",
  227. "native_offset" : "0x00000"
  228. }
  229. ,
  230. {
  231. "is_managed" : "false",
  232. "native_address" : "0x1591b85fc",
  233. "native_offset" : "0x00000"
  234. }
  235. ,
  236. {
  237. "is_managed" : "false",
  238. "native_address" : "0x1590c23b0",
  239. "native_offset" : "0x00000"
  240. }
  241. ,
  242. {
  243. "is_managed" : "false",
  244. "native_address" : "0x18455ee04",
  245. "native_offset" : "0x00000"
  246. }
  247. ,
  248. {
  249. "is_managed" : "false",
  250. "native_address" : "0x184528894",
  251. "native_offset" : "0x00000"
  252. }
  253. ,
  254. {
  255. "is_managed" : "false",
  256. "native_address" : "0x159207d54",
  257. "native_offset" : "0x00000"
  258. }
  259. ,
  260. {
  261. "is_managed" : "false",
  262. "native_address" : "0x1591c4ad0",
  263. "native_offset" : "0x00000"
  264. }
  265. ,
  266. {
  267. "is_managed" : "false",
  268. "native_address" : "0x1591c4748",
  269. "native_offset" : "0x00000"
  270. }
  271. ,
  272. {
  273. "is_managed" : "false",
  274. "native_address" : "0x1591b36a8",
  275. "native_offset" : "0x00000"
  276. }
  277. ,
  278. {
  279. "is_managed" : "false",
  280. "native_address" : "0x15915ddd4",
  281. "native_offset" : "0x00000"
  282. }
  283. ,
  284. {
  285. "is_managed" : "true",
  286. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  287. "token" : "0x00000",
  288. "native_offset" : "0x0",
  289. "filename" : "mscorlib.dll",
  290. "sizeofimage" : "0x470000",
  291. "timestamp" : "0xb608e565",
  292. "il_offset" : "0x00000"
  293. }
  294. ,
  295. {
  296. "is_managed" : "true",
  297. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  298. "token" : "0x60020b3",
  299. "native_offset" : "0x0",
  300. "filename" : "mscorlib.dll",
  301. "sizeofimage" : "0x470000",
  302. "timestamp" : "0xb608e565",
  303. "il_offset" : "0x00000"
  304. }
  305. ,
  306. {
  307. "is_managed" : "true",
  308. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  309. "token" : "0x60020a5",
  310. "native_offset" : "0x0",
  311. "filename" : "mscorlib.dll",
  312. "sizeofimage" : "0x470000",
  313. "timestamp" : "0xb608e565",
  314. "il_offset" : "0x00000"
  315. }
  316. ,
  317. {
  318. "is_managed" : "true",
  319. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  320. "token" : "0x60020a9",
  321. "native_offset" : "0x0",
  322. "filename" : "mscorlib.dll",
  323. "sizeofimage" : "0x470000",
  324. "timestamp" : "0xb608e565",
  325. "il_offset" : "0x00000"
  326. }
  327. ,
  328. {
  329. "is_managed" : "true",
  330. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  331. "token" : "0x60026c6",
  332. "native_offset" : "0x0",
  333. "filename" : "System.dll",
  334. "sizeofimage" : "0x29a000",
  335. "timestamp" : "0xe77c4867",
  336. "il_offset" : "0x00000"
  337. }
  338. ,
  339. {
  340. "is_managed" : "true",
  341. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  342. "token" : "0x60026c5",
  343. "native_offset" : "0x0",
  344. "filename" : "System.dll",
  345. "sizeofimage" : "0x29a000",
  346. "timestamp" : "0xe77c4867",
  347. "il_offset" : "0x00000"
  348. }
  349. ,
  350. {
  351. "is_managed" : "true",
  352. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  353. "token" : "0x60026c0",
  354. "native_offset" : "0x0",
  355. "filename" : "System.dll",
  356. "sizeofimage" : "0x29a000",
  357. "timestamp" : "0xe77c4867",
  358. "il_offset" : "0x00000"
  359. }
  360. ,
  361. {
  362. "is_managed" : "true",
  363. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  364. "token" : "0x6000b92",
  365. "native_offset" : "0x0",
  366. "filename" : "Burst.Compiler.IL.dll",
  367. "sizeofimage" : "0x1aa000",
  368. "timestamp" : "0x804eb2a0",
  369. "il_offset" : "0x00000"
  370. }
  371. ,
  372. {
  373. "is_managed" : "true",
  374. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  375. "token" : "0x6000be4",
  376. "native_offset" : "0x0",
  377. "filename" : "Burst.Compiler.IL.dll",
  378. "sizeofimage" : "0x1aa000",
  379. "timestamp" : "0x804eb2a0",
  380. "il_offset" : "0x00000"
  381. }
  382. ,
  383. {
  384. "is_managed" : "true",
  385. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  386. "token" : "0x6001f7d",
  387. "native_offset" : "0x0",
  388. "filename" : "mscorlib.dll",
  389. "sizeofimage" : "0x470000",
  390. "timestamp" : "0xb608e565",
  391. "il_offset" : "0x00000"
  392. }
  393. ,
  394. {
  395. "is_managed" : "true",
  396. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  397. "token" : "0x6001f25",
  398. "native_offset" : "0x0",
  399. "filename" : "mscorlib.dll",
  400. "sizeofimage" : "0x470000",
  401. "timestamp" : "0xb608e565",
  402. "il_offset" : "0x00000"
  403. }
  404. ,
  405. {
  406. "is_managed" : "true",
  407. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  408. "token" : "0x6001f23",
  409. "native_offset" : "0x0",
  410. "filename" : "mscorlib.dll",
  411. "sizeofimage" : "0x470000",
  412. "timestamp" : "0xb608e565",
  413. "il_offset" : "0x00000"
  414. }
  415. ,
  416. {
  417. "is_managed" : "true",
  418. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  419. "token" : "0x6001f22",
  420. "native_offset" : "0x0",
  421. "filename" : "mscorlib.dll",
  422. "sizeofimage" : "0x470000",
  423. "timestamp" : "0xb608e565",
  424. "il_offset" : "0x00000"
  425. }
  426. ,
  427. {
  428. "is_managed" : "true",
  429. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  430. "token" : "0x6001f7f",
  431. "native_offset" : "0x0",
  432. "filename" : "mscorlib.dll",
  433. "sizeofimage" : "0x470000",
  434. "timestamp" : "0xb608e565",
  435. "il_offset" : "0x00000"
  436. }
  437. ,
  438. {
  439. "is_managed" : "true",
  440. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  441. "token" : "0x00000",
  442. "native_offset" : "0x0",
  443. "filename" : "mscorlib.dll",
  444. "sizeofimage" : "0x470000",
  445. "timestamp" : "0xb608e565",
  446. "il_offset" : "0x00000"
  447. }
  448. ,
  449. {
  450. "is_managed" : "false",
  451. "native_address" : "0x159010d34",
  452. "native_offset" : "0x00000"
  453. }
  454. ,
  455. {
  456. "is_managed" : "false",
  457. "native_address" : "0x1591971f4",
  458. "native_offset" : "0x00000"
  459. }
  460. ,
  461. {
  462. "is_managed" : "false",
  463. "native_address" : "0x159198e1c",
  464. "native_offset" : "0x00000"
  465. }
  466. ,
  467. {
  468. "is_managed" : "false",
  469. "native_address" : "0x1591b9338",
  470. "native_offset" : "0x00000"
  471. }
  472. ,
  473. {
  474. "is_managed" : "false",
  475. "native_address" : "0x1591b90f0",
  476. "native_offset" : "0x00000"
  477. }
  478. ,
  479. {
  480. "is_managed" : "false",
  481. "native_address" : "0x159238cb8",
  482. "native_offset" : "0x00000"
  483. }
  484. ,
  485. {
  486. "is_managed" : "false",
  487. "native_address" : "0x159238c40",
  488. "native_offset" : "0x00000"
  489. }
  490. ,
  491. {
  492. "is_managed" : "false",
  493. "native_address" : "0x1845282e4",
  494. "native_offset" : "0x00000"
  495. }
  496. ,
  497. {
  498. "is_managed" : "false",
  499. "native_address" : "0x1845230fc",
  500. "native_offset" : "0x00000"
  501. }
  502. ]
  503. },
  504. {
  505. "is_managed" : true,
  506. "offset_free_hash" : "0x1491dfc51e",
  507. "offset_rich_hash" : "0x1491dfc8e0",
  508. "crashed" : false,
  509. "native_thread_id" : "0x36ac13000",
  510. "thread_info_addr" : "0x15b244800",
  511. "thread_name" : "Burst-CompilerThread-2",
  512. "ctx" : {
  513. "IP" : "0x1844ea6ec",
  514. "SP" : "0x36ac11ad0",
  515. "BP" : "0x36ac11b60"
  516. },
  517. "managed_frames" : [
  518. {
  519. "is_managed" : "false",
  520. "native_address" : "unregistered"
  521. }
  522. ,
  523. {
  524. "is_managed" : "true",
  525. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  526. "token" : "0x00000",
  527. "native_offset" : "0x0",
  528. "filename" : "mscorlib.dll",
  529. "sizeofimage" : "0x470000",
  530. "timestamp" : "0xb608e565",
  531. "il_offset" : "0xffffffff"
  532. }
  533. ,
  534. {
  535. "is_managed" : "true",
  536. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  537. "token" : "0x60020b3",
  538. "native_offset" : "0x0",
  539. "filename" : "mscorlib.dll",
  540. "sizeofimage" : "0x470000",
  541. "timestamp" : "0xb608e565",
  542. "il_offset" : "0x000c7"
  543. }
  544. ,
  545. {
  546. "is_managed" : "true",
  547. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  548. "token" : "0x60020a5",
  549. "native_offset" : "0x0",
  550. "filename" : "mscorlib.dll",
  551. "sizeofimage" : "0x470000",
  552. "timestamp" : "0xb608e565",
  553. "il_offset" : "0x000a1"
  554. }
  555. ,
  556. {
  557. "is_managed" : "true",
  558. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  559. "token" : "0x60020a9",
  560. "native_offset" : "0x0",
  561. "filename" : "mscorlib.dll",
  562. "sizeofimage" : "0x470000",
  563. "timestamp" : "0xb608e565",
  564. "il_offset" : "0x00000"
  565. }
  566. ,
  567. {
  568. "is_managed" : "true",
  569. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  570. "token" : "0x60026c6",
  571. "native_offset" : "0x0",
  572. "filename" : "System.dll",
  573. "sizeofimage" : "0x29a000",
  574. "timestamp" : "0xe77c4867",
  575. "il_offset" : "0x0006e"
  576. }
  577. ,
  578. {
  579. "is_managed" : "true",
  580. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  581. "token" : "0x60026c5",
  582. "native_offset" : "0x0",
  583. "filename" : "System.dll",
  584. "sizeofimage" : "0x29a000",
  585. "timestamp" : "0xe77c4867",
  586. "il_offset" : "0x0003c"
  587. }
  588. ,
  589. {
  590. "is_managed" : "true",
  591. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  592. "token" : "0x60026c0",
  593. "native_offset" : "0x0",
  594. "filename" : "System.dll",
  595. "sizeofimage" : "0x29a000",
  596. "timestamp" : "0xe77c4867",
  597. "il_offset" : "0x00000"
  598. }
  599. ,
  600. {
  601. "is_managed" : "true",
  602. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  603. "token" : "0x6000b92",
  604. "native_offset" : "0x0",
  605. "filename" : "Burst.Compiler.IL.dll",
  606. "sizeofimage" : "0x1aa000",
  607. "timestamp" : "0x804eb2a0",
  608. "il_offset" : "0x00024"
  609. }
  610. ,
  611. {
  612. "is_managed" : "true",
  613. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  614. "token" : "0x6000be4",
  615. "native_offset" : "0x0",
  616. "filename" : "Burst.Compiler.IL.dll",
  617. "sizeofimage" : "0x1aa000",
  618. "timestamp" : "0x804eb2a0",
  619. "il_offset" : "0x00070"
  620. }
  621. ,
  622. {
  623. "is_managed" : "true",
  624. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  625. "token" : "0x6001f7d",
  626. "native_offset" : "0x0",
  627. "filename" : "mscorlib.dll",
  628. "sizeofimage" : "0x470000",
  629. "timestamp" : "0xb608e565",
  630. "il_offset" : "0x00014"
  631. }
  632. ,
  633. {
  634. "is_managed" : "true",
  635. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  636. "token" : "0x6001f25",
  637. "native_offset" : "0x0",
  638. "filename" : "mscorlib.dll",
  639. "sizeofimage" : "0x470000",
  640. "timestamp" : "0xb608e565",
  641. "il_offset" : "0x00071"
  642. }
  643. ,
  644. {
  645. "is_managed" : "true",
  646. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  647. "token" : "0x6001f23",
  648. "native_offset" : "0x0",
  649. "filename" : "mscorlib.dll",
  650. "sizeofimage" : "0x470000",
  651. "timestamp" : "0xb608e565",
  652. "il_offset" : "0x00000"
  653. }
  654. ,
  655. {
  656. "is_managed" : "true",
  657. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  658. "token" : "0x6001f22",
  659. "native_offset" : "0x0",
  660. "filename" : "mscorlib.dll",
  661. "sizeofimage" : "0x470000",
  662. "timestamp" : "0xb608e565",
  663. "il_offset" : "0x0002b"
  664. }
  665. ,
  666. {
  667. "is_managed" : "true",
  668. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  669. "token" : "0x6001f7f",
  670. "native_offset" : "0x0",
  671. "filename" : "mscorlib.dll",
  672. "sizeofimage" : "0x470000",
  673. "timestamp" : "0xb608e565",
  674. "il_offset" : "0x00008"
  675. }
  676. ,
  677. {
  678. "is_managed" : "true",
  679. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  680. "token" : "0x00000",
  681. "native_offset" : "0x0",
  682. "filename" : "mscorlib.dll",
  683. "sizeofimage" : "0x470000",
  684. "timestamp" : "0xb608e565",
  685. "il_offset" : "0x00065"
  686. }
  687. ],
  688. "unmanaged_frames" : [
  689. {
  690. "is_managed" : "false",
  691. "native_address" : "0x159081180",
  692. "native_offset" : "0x00000"
  693. }
  694. ,
  695. {
  696. "is_managed" : "false",
  697. "native_address" : "0x1591b84d8",
  698. "native_offset" : "0x00000"
  699. }
  700. ,
  701. {
  702. "is_managed" : "false",
  703. "native_address" : "0x1591b8834",
  704. "native_offset" : "0x00000"
  705. }
  706. ,
  707. {
  708. "is_managed" : "false",
  709. "native_address" : "0x1591b85fc",
  710. "native_offset" : "0x00000"
  711. }
  712. ,
  713. {
  714. "is_managed" : "false",
  715. "native_address" : "0x1590c23b0",
  716. "native_offset" : "0x00000"
  717. }
  718. ,
  719. {
  720. "is_managed" : "false",
  721. "native_address" : "0x18455ee04",
  722. "native_offset" : "0x00000"
  723. }
  724. ,
  725. {
  726. "is_managed" : "false",
  727. "native_address" : "0x184528894",
  728. "native_offset" : "0x00000"
  729. }
  730. ,
  731. {
  732. "is_managed" : "false",
  733. "native_address" : "0x159207d54",
  734. "native_offset" : "0x00000"
  735. }
  736. ,
  737. {
  738. "is_managed" : "false",
  739. "native_address" : "0x1591c4ad0",
  740. "native_offset" : "0x00000"
  741. }
  742. ,
  743. {
  744. "is_managed" : "false",
  745. "native_address" : "0x1591c4748",
  746. "native_offset" : "0x00000"
  747. }
  748. ,
  749. {
  750. "is_managed" : "false",
  751. "native_address" : "0x1591b36a8",
  752. "native_offset" : "0x00000"
  753. }
  754. ,
  755. {
  756. "is_managed" : "false",
  757. "native_address" : "0x15915ddd4",
  758. "native_offset" : "0x00000"
  759. }
  760. ,
  761. {
  762. "is_managed" : "true",
  763. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  764. "token" : "0x00000",
  765. "native_offset" : "0x0",
  766. "filename" : "mscorlib.dll",
  767. "sizeofimage" : "0x470000",
  768. "timestamp" : "0xb608e565",
  769. "il_offset" : "0x00000"
  770. }
  771. ,
  772. {
  773. "is_managed" : "true",
  774. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  775. "token" : "0x60020b3",
  776. "native_offset" : "0x0",
  777. "filename" : "mscorlib.dll",
  778. "sizeofimage" : "0x470000",
  779. "timestamp" : "0xb608e565",
  780. "il_offset" : "0x00000"
  781. }
  782. ,
  783. {
  784. "is_managed" : "true",
  785. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  786. "token" : "0x60020a5",
  787. "native_offset" : "0x0",
  788. "filename" : "mscorlib.dll",
  789. "sizeofimage" : "0x470000",
  790. "timestamp" : "0xb608e565",
  791. "il_offset" : "0x00000"
  792. }
  793. ,
  794. {
  795. "is_managed" : "true",
  796. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  797. "token" : "0x60020a9",
  798. "native_offset" : "0x0",
  799. "filename" : "mscorlib.dll",
  800. "sizeofimage" : "0x470000",
  801. "timestamp" : "0xb608e565",
  802. "il_offset" : "0x00000"
  803. }
  804. ,
  805. {
  806. "is_managed" : "true",
  807. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  808. "token" : "0x60026c6",
  809. "native_offset" : "0x0",
  810. "filename" : "System.dll",
  811. "sizeofimage" : "0x29a000",
  812. "timestamp" : "0xe77c4867",
  813. "il_offset" : "0x00000"
  814. }
  815. ,
  816. {
  817. "is_managed" : "true",
  818. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  819. "token" : "0x60026c5",
  820. "native_offset" : "0x0",
  821. "filename" : "System.dll",
  822. "sizeofimage" : "0x29a000",
  823. "timestamp" : "0xe77c4867",
  824. "il_offset" : "0x00000"
  825. }
  826. ,
  827. {
  828. "is_managed" : "true",
  829. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  830. "token" : "0x60026c0",
  831. "native_offset" : "0x0",
  832. "filename" : "System.dll",
  833. "sizeofimage" : "0x29a000",
  834. "timestamp" : "0xe77c4867",
  835. "il_offset" : "0x00000"
  836. }
  837. ,
  838. {
  839. "is_managed" : "true",
  840. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  841. "token" : "0x6000b92",
  842. "native_offset" : "0x0",
  843. "filename" : "Burst.Compiler.IL.dll",
  844. "sizeofimage" : "0x1aa000",
  845. "timestamp" : "0x804eb2a0",
  846. "il_offset" : "0x00000"
  847. }
  848. ,
  849. {
  850. "is_managed" : "true",
  851. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  852. "token" : "0x6000be4",
  853. "native_offset" : "0x0",
  854. "filename" : "Burst.Compiler.IL.dll",
  855. "sizeofimage" : "0x1aa000",
  856. "timestamp" : "0x804eb2a0",
  857. "il_offset" : "0x00000"
  858. }
  859. ,
  860. {
  861. "is_managed" : "true",
  862. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  863. "token" : "0x6001f7d",
  864. "native_offset" : "0x0",
  865. "filename" : "mscorlib.dll",
  866. "sizeofimage" : "0x470000",
  867. "timestamp" : "0xb608e565",
  868. "il_offset" : "0x00000"
  869. }
  870. ,
  871. {
  872. "is_managed" : "true",
  873. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  874. "token" : "0x6001f25",
  875. "native_offset" : "0x0",
  876. "filename" : "mscorlib.dll",
  877. "sizeofimage" : "0x470000",
  878. "timestamp" : "0xb608e565",
  879. "il_offset" : "0x00000"
  880. }
  881. ,
  882. {
  883. "is_managed" : "true",
  884. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  885. "token" : "0x6001f23",
  886. "native_offset" : "0x0",
  887. "filename" : "mscorlib.dll",
  888. "sizeofimage" : "0x470000",
  889. "timestamp" : "0xb608e565",
  890. "il_offset" : "0x00000"
  891. }
  892. ,
  893. {
  894. "is_managed" : "true",
  895. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  896. "token" : "0x6001f22",
  897. "native_offset" : "0x0",
  898. "filename" : "mscorlib.dll",
  899. "sizeofimage" : "0x470000",
  900. "timestamp" : "0xb608e565",
  901. "il_offset" : "0x00000"
  902. }
  903. ,
  904. {
  905. "is_managed" : "true",
  906. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  907. "token" : "0x6001f7f",
  908. "native_offset" : "0x0",
  909. "filename" : "mscorlib.dll",
  910. "sizeofimage" : "0x470000",
  911. "timestamp" : "0xb608e565",
  912. "il_offset" : "0x00000"
  913. }
  914. ,
  915. {
  916. "is_managed" : "true",
  917. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  918. "token" : "0x00000",
  919. "native_offset" : "0x0",
  920. "filename" : "mscorlib.dll",
  921. "sizeofimage" : "0x470000",
  922. "timestamp" : "0xb608e565",
  923. "il_offset" : "0x00000"
  924. }
  925. ,
  926. {
  927. "is_managed" : "false",
  928. "native_address" : "0x159010d34",
  929. "native_offset" : "0x00000"
  930. }
  931. ,
  932. {
  933. "is_managed" : "false",
  934. "native_address" : "0x1591971f4",
  935. "native_offset" : "0x00000"
  936. }
  937. ,
  938. {
  939. "is_managed" : "false",
  940. "native_address" : "0x159198e1c",
  941. "native_offset" : "0x00000"
  942. }
  943. ,
  944. {
  945. "is_managed" : "false",
  946. "native_address" : "0x1591b9338",
  947. "native_offset" : "0x00000"
  948. }
  949. ,
  950. {
  951. "is_managed" : "false",
  952. "native_address" : "0x1591b90f0",
  953. "native_offset" : "0x00000"
  954. }
  955. ,
  956. {
  957. "is_managed" : "false",
  958. "native_address" : "0x159238cb8",
  959. "native_offset" : "0x00000"
  960. }
  961. ,
  962. {
  963. "is_managed" : "false",
  964. "native_address" : "0x159238c40",
  965. "native_offset" : "0x00000"
  966. }
  967. ,
  968. {
  969. "is_managed" : "false",
  970. "native_address" : "0x1845282e4",
  971. "native_offset" : "0x00000"
  972. }
  973. ,
  974. {
  975. "is_managed" : "false",
  976. "native_address" : "0x1845230fc",
  977. "native_offset" : "0x00000"
  978. }
  979. ]
  980. },
  981. {
  982. "is_managed" : false,
  983. "offset_free_hash" : "0x0",
  984. "offset_rich_hash" : "0x0",
  985. "crashed" : false,
  986. "native_thread_id" : "0x43b4b7000",
  987. "thread_info_addr" : "0x37d78c600",
  988. "thread_name" : "Thread Pool Worker",
  989. "ctx" : {
  990. "IP" : "0x1844e6ee8",
  991. "SP" : "0x43b4b6db0",
  992. "BP" : "0x43b4b6e50"
  993. },
  994. "unmanaged_frames" : [
  995. {
  996. "is_managed" : "false",
  997. "native_address" : "0x159081180",
  998. "native_offset" : "0x00000"
  999. }
  1000. ,
  1001. {
  1002. "is_managed" : "false",
  1003. "native_address" : "0x1591b84d8",
  1004. "native_offset" : "0x00000"
  1005. }
  1006. ,
  1007. {
  1008. "is_managed" : "false",
  1009. "native_address" : "0x1591b8834",
  1010. "native_offset" : "0x00000"
  1011. }
  1012. ,
  1013. {
  1014. "is_managed" : "false",
  1015. "native_address" : "0x1591b85fc",
  1016. "native_offset" : "0x00000"
  1017. }
  1018. ,
  1019. {
  1020. "is_managed" : "false",
  1021. "native_address" : "0x1590c23b0",
  1022. "native_offset" : "0x00000"
  1023. }
  1024. ,
  1025. {
  1026. "is_managed" : "false",
  1027. "native_address" : "0x18455ee04",
  1028. "native_offset" : "0x00000"
  1029. }
  1030. ,
  1031. {
  1032. "is_managed" : "false",
  1033. "native_address" : "0x159111168",
  1034. "native_offset" : "0x00000"
  1035. }
  1036. ,
  1037. {
  1038. "is_managed" : "false",
  1039. "native_address" : "0x1591b9244",
  1040. "native_offset" : "0x00000"
  1041. }
  1042. ,
  1043. {
  1044. "is_managed" : "false",
  1045. "native_address" : "0x1591b90f0",
  1046. "native_offset" : "0x00000"
  1047. }
  1048. ,
  1049. {
  1050. "is_managed" : "false",
  1051. "native_address" : "0x159238cb8",
  1052. "native_offset" : "0x00000"
  1053. }
  1054. ,
  1055. {
  1056. "is_managed" : "false",
  1057. "native_address" : "0x159238c40",
  1058. "native_offset" : "0x00000"
  1059. }
  1060. ,
  1061. {
  1062. "is_managed" : "false",
  1063. "native_address" : "0x1845282e4",
  1064. "native_offset" : "0x00000"
  1065. }
  1066. ,
  1067. {
  1068. "is_managed" : "false",
  1069. "native_address" : "0x1845230fc",
  1070. "native_offset" : "0x00000"
  1071. }
  1072. ]
  1073. },
  1074. {
  1075. "is_managed" : false,
  1076. "offset_free_hash" : "0x0",
  1077. "offset_rich_hash" : "0x0",
  1078. "crashed" : false,
  1079. "native_thread_id" : "0x43b8cf000",
  1080. "thread_info_addr" : "0x15c283000",
  1081. "thread_name" : "Thread Pool Worker",
  1082. "ctx" : {
  1083. "IP" : "0x1844e6ee8",
  1084. "SP" : "0x43b8cedb0",
  1085. "BP" : "0x43b8cee50"
  1086. },
  1087. "unmanaged_frames" : [
  1088. {
  1089. "is_managed" : "false",
  1090. "native_address" : "0x159081180",
  1091. "native_offset" : "0x00000"
  1092. }
  1093. ,
  1094. {
  1095. "is_managed" : "false",
  1096. "native_address" : "0x1591b84d8",
  1097. "native_offset" : "0x00000"
  1098. }
  1099. ,
  1100. {
  1101. "is_managed" : "false",
  1102. "native_address" : "0x1591b8834",
  1103. "native_offset" : "0x00000"
  1104. }
  1105. ,
  1106. {
  1107. "is_managed" : "false",
  1108. "native_address" : "0x1591b85fc",
  1109. "native_offset" : "0x00000"
  1110. }
  1111. ,
  1112. {
  1113. "is_managed" : "false",
  1114. "native_address" : "0x1590c23b0",
  1115. "native_offset" : "0x00000"
  1116. }
  1117. ,
  1118. {
  1119. "is_managed" : "false",
  1120. "native_address" : "0x18455ee04",
  1121. "native_offset" : "0x00000"
  1122. }
  1123. ,
  1124. {
  1125. "is_managed" : "false",
  1126. "native_address" : "0x159111168",
  1127. "native_offset" : "0x00000"
  1128. }
  1129. ,
  1130. {
  1131. "is_managed" : "false",
  1132. "native_address" : "0x1591b9244",
  1133. "native_offset" : "0x00000"
  1134. }
  1135. ,
  1136. {
  1137. "is_managed" : "false",
  1138. "native_address" : "0x1591b90f0",
  1139. "native_offset" : "0x00000"
  1140. }
  1141. ,
  1142. {
  1143. "is_managed" : "false",
  1144. "native_address" : "0x159238cb8",
  1145. "native_offset" : "0x00000"
  1146. }
  1147. ,
  1148. {
  1149. "is_managed" : "false",
  1150. "native_address" : "0x159238c40",
  1151. "native_offset" : "0x00000"
  1152. }
  1153. ,
  1154. {
  1155. "is_managed" : "false",
  1156. "native_address" : "0x1845282e4",
  1157. "native_offset" : "0x00000"
  1158. }
  1159. ,
  1160. {
  1161. "is_managed" : "false",
  1162. "native_address" : "0x1845230fc",
  1163. "native_offset" : "0x00000"
  1164. }
  1165. ]
  1166. },
  1167. {
  1168. "is_managed" : false,
  1169. "offset_free_hash" : "0x0",
  1170. "offset_rich_hash" : "0x0",
  1171. "crashed" : false,
  1172. "native_thread_id" : "0x43bce7000",
  1173. "thread_info_addr" : "0x3fda3d800",
  1174. "thread_name" : "Thread Pool Worker",
  1175. "ctx" : {
  1176. "IP" : "0x1844e6ee8",
  1177. "SP" : "0x43bce6db0",
  1178. "BP" : "0x43bce6e50"
  1179. },
  1180. "unmanaged_frames" : [
  1181. {
  1182. "is_managed" : "false",
  1183. "native_address" : "0x159081180",
  1184. "native_offset" : "0x00000"
  1185. }
  1186. ,
  1187. {
  1188. "is_managed" : "false",
  1189. "native_address" : "0x1591b84d8",
  1190. "native_offset" : "0x00000"
  1191. }
  1192. ,
  1193. {
  1194. "is_managed" : "false",
  1195. "native_address" : "0x1591b8834",
  1196. "native_offset" : "0x00000"
  1197. }
  1198. ,
  1199. {
  1200. "is_managed" : "false",
  1201. "native_address" : "0x1591b85fc",
  1202. "native_offset" : "0x00000"
  1203. }
  1204. ,
  1205. {
  1206. "is_managed" : "false",
  1207. "native_address" : "0x1590c23b0",
  1208. "native_offset" : "0x00000"
  1209. }
  1210. ,
  1211. {
  1212. "is_managed" : "false",
  1213. "native_address" : "0x18455ee04",
  1214. "native_offset" : "0x00000"
  1215. }
  1216. ,
  1217. {
  1218. "is_managed" : "false",
  1219. "native_address" : "0x159111168",
  1220. "native_offset" : "0x00000"
  1221. }
  1222. ,
  1223. {
  1224. "is_managed" : "false",
  1225. "native_address" : "0x1591b9244",
  1226. "native_offset" : "0x00000"
  1227. }
  1228. ,
  1229. {
  1230. "is_managed" : "false",
  1231. "native_address" : "0x1591b90f0",
  1232. "native_offset" : "0x00000"
  1233. }
  1234. ,
  1235. {
  1236. "is_managed" : "false",
  1237. "native_address" : "0x159238cb8",
  1238. "native_offset" : "0x00000"
  1239. }
  1240. ,
  1241. {
  1242. "is_managed" : "false",
  1243. "native_address" : "0x159238c40",
  1244. "native_offset" : "0x00000"
  1245. }
  1246. ,
  1247. {
  1248. "is_managed" : "false",
  1249. "native_address" : "0x1845282e4",
  1250. "native_offset" : "0x00000"
  1251. }
  1252. ,
  1253. {
  1254. "is_managed" : "false",
  1255. "native_address" : "0x1845230fc",
  1256. "native_offset" : "0x00000"
  1257. }
  1258. ]
  1259. },
  1260. {
  1261. "is_managed" : false,
  1262. "offset_free_hash" : "0x0",
  1263. "offset_rich_hash" : "0x0",
  1264. "crashed" : false,
  1265. "native_thread_id" : "0x439437000",
  1266. "thread_info_addr" : "0x3af724400",
  1267. "thread_name" : "tid_3a7e7",
  1268. "ctx" : {
  1269. "IP" : "0x1844ea6ec",
  1270. "SP" : "0x439436c20",
  1271. "BP" : "0x439436cb0"
  1272. },
  1273. "unmanaged_frames" : [
  1274. {
  1275. "is_managed" : "false",
  1276. "native_address" : "0x159081180",
  1277. "native_offset" : "0x00000"
  1278. }
  1279. ,
  1280. {
  1281. "is_managed" : "false",
  1282. "native_address" : "0x1591b84d8",
  1283. "native_offset" : "0x00000"
  1284. }
  1285. ,
  1286. {
  1287. "is_managed" : "false",
  1288. "native_address" : "0x1591b8834",
  1289. "native_offset" : "0x00000"
  1290. }
  1291. ,
  1292. {
  1293. "is_managed" : "false",
  1294. "native_address" : "0x1591b85fc",
  1295. "native_offset" : "0x00000"
  1296. }
  1297. ,
  1298. {
  1299. "is_managed" : "false",
  1300. "native_address" : "0x1590c23b0",
  1301. "native_offset" : "0x00000"
  1302. }
  1303. ,
  1304. {
  1305. "is_managed" : "false",
  1306. "native_address" : "0x18455ee04",
  1307. "native_offset" : "0x00000"
  1308. }
  1309. ,
  1310. {
  1311. "is_managed" : "false",
  1312. "native_address" : "0x1845288c0",
  1313. "native_offset" : "0x00000"
  1314. }
  1315. ,
  1316. {
  1317. "is_managed" : "false",
  1318. "native_address" : "0x159207d2c",
  1319. "native_offset" : "0x00000"
  1320. }
  1321. ,
  1322. {
  1323. "is_managed" : "false",
  1324. "native_address" : "0x159211a08",
  1325. "native_offset" : "0x00000"
  1326. }
  1327. ,
  1328. {
  1329. "is_managed" : "false",
  1330. "native_address" : "0x159110970",
  1331. "native_offset" : "0x00000"
  1332. }
  1333. ,
  1334. {
  1335. "is_managed" : "false",
  1336. "native_address" : "0x1591b9244",
  1337. "native_offset" : "0x00000"
  1338. }
  1339. ,
  1340. {
  1341. "is_managed" : "false",
  1342. "native_address" : "0x1591b90f0",
  1343. "native_offset" : "0x00000"
  1344. }
  1345. ,
  1346. {
  1347. "is_managed" : "false",
  1348. "native_address" : "0x159238cb8",
  1349. "native_offset" : "0x00000"
  1350. }
  1351. ,
  1352. {
  1353. "is_managed" : "false",
  1354. "native_address" : "0x159238c40",
  1355. "native_offset" : "0x00000"
  1356. }
  1357. ,
  1358. {
  1359. "is_managed" : "false",
  1360. "native_address" : "0x1845282e4",
  1361. "native_offset" : "0x00000"
  1362. }
  1363. ,
  1364. {
  1365. "is_managed" : "false",
  1366. "native_address" : "0x1845230fc",
  1367. "native_offset" : "0x00000"
  1368. }
  1369. ]
  1370. },
  1371. {
  1372. "is_managed" : false,
  1373. "offset_free_hash" : "0x0",
  1374. "offset_rich_hash" : "0x0",
  1375. "crashed" : false,
  1376. "native_thread_id" : "0x35952b000",
  1377. "thread_info_addr" : "0x15b05d000",
  1378. "thread_name" : "Finalizer",
  1379. "ctx" : {
  1380. "IP" : "0x1844e6ed0",
  1381. "SP" : "0x35952add0",
  1382. "BP" : "0x35952ae50"
  1383. },
  1384. "unmanaged_frames" : [
  1385. {
  1386. "is_managed" : "false",
  1387. "native_address" : "0x159081180",
  1388. "native_offset" : "0x00000"
  1389. }
  1390. ,
  1391. {
  1392. "is_managed" : "false",
  1393. "native_address" : "0x1591b84d8",
  1394. "native_offset" : "0x00000"
  1395. }
  1396. ,
  1397. {
  1398. "is_managed" : "false",
  1399. "native_address" : "0x1591b8834",
  1400. "native_offset" : "0x00000"
  1401. }
  1402. ,
  1403. {
  1404. "is_managed" : "false",
  1405. "native_address" : "0x1591b85fc",
  1406. "native_offset" : "0x00000"
  1407. }
  1408. ,
  1409. {
  1410. "is_managed" : "false",
  1411. "native_address" : "0x1590c23b0",
  1412. "native_offset" : "0x00000"
  1413. }
  1414. ,
  1415. {
  1416. "is_managed" : "false",
  1417. "native_address" : "0x18455ee04",
  1418. "native_offset" : "0x00000"
  1419. }
  1420. ,
  1421. {
  1422. "is_managed" : "false",
  1423. "native_address" : "0x1591f212c",
  1424. "native_offset" : "0x00000"
  1425. }
  1426. ,
  1427. {
  1428. "is_managed" : "false",
  1429. "native_address" : "0x1591b9244",
  1430. "native_offset" : "0x00000"
  1431. }
  1432. ,
  1433. {
  1434. "is_managed" : "false",
  1435. "native_address" : "0x1591b90f0",
  1436. "native_offset" : "0x00000"
  1437. }
  1438. ,
  1439. {
  1440. "is_managed" : "false",
  1441. "native_address" : "0x159238cb8",
  1442. "native_offset" : "0x00000"
  1443. }
  1444. ,
  1445. {
  1446. "is_managed" : "false",
  1447. "native_address" : "0x159238c40",
  1448. "native_offset" : "0x00000"
  1449. }
  1450. ,
  1451. {
  1452. "is_managed" : "false",
  1453. "native_address" : "0x1845282e4",
  1454. "native_offset" : "0x00000"
  1455. }
  1456. ,
  1457. {
  1458. "is_managed" : "false",
  1459. "native_address" : "0x1845230fc",
  1460. "native_offset" : "0x00000"
  1461. }
  1462. ]
  1463. },
  1464. {
  1465. "is_managed" : false,
  1466. "offset_free_hash" : "0x0",
  1467. "offset_rich_hash" : "0x0",
  1468. "crashed" : false,
  1469. "native_thread_id" : "0x368207000",
  1470. "thread_info_addr" : "0x15e985c00",
  1471. "thread_name" : "Thread Pool I/O Selector",
  1472. "ctx" : {
  1473. "IP" : "0x1844f1fbc",
  1474. "SP" : "0x368206ae0",
  1475. "BP" : "0x368206ce0"
  1476. },
  1477. "unmanaged_frames" : [
  1478. {
  1479. "is_managed" : "false",
  1480. "native_address" : "0x159081180",
  1481. "native_offset" : "0x00000"
  1482. }
  1483. ,
  1484. {
  1485. "is_managed" : "false",
  1486. "native_address" : "0x1591b84d8",
  1487. "native_offset" : "0x00000"
  1488. }
  1489. ,
  1490. {
  1491. "is_managed" : "false",
  1492. "native_address" : "0x1591b8834",
  1493. "native_offset" : "0x00000"
  1494. }
  1495. ,
  1496. {
  1497. "is_managed" : "false",
  1498. "native_address" : "0x1591b85fc",
  1499. "native_offset" : "0x00000"
  1500. }
  1501. ,
  1502. {
  1503. "is_managed" : "false",
  1504. "native_address" : "0x1590c23b0",
  1505. "native_offset" : "0x00000"
  1506. }
  1507. ,
  1508. {
  1509. "is_managed" : "false",
  1510. "native_address" : "0x18455ee04",
  1511. "native_offset" : "0x00000"
  1512. }
  1513. ,
  1514. {
  1515. "is_managed" : "false",
  1516. "native_address" : "0x15920a7d0",
  1517. "native_offset" : "0x00000"
  1518. }
  1519. ,
  1520. {
  1521. "is_managed" : "false",
  1522. "native_address" : "0x1591bda14",
  1523. "native_offset" : "0x00000"
  1524. }
  1525. ,
  1526. {
  1527. "is_managed" : "false",
  1528. "native_address" : "0x1591bd42c",
  1529. "native_offset" : "0x00000"
  1530. }
  1531. ,
  1532. {
  1533. "is_managed" : "false",
  1534. "native_address" : "0x1591b9244",
  1535. "native_offset" : "0x00000"
  1536. }
  1537. ,
  1538. {
  1539. "is_managed" : "false",
  1540. "native_address" : "0x1591b90f0",
  1541. "native_offset" : "0x00000"
  1542. }
  1543. ,
  1544. {
  1545. "is_managed" : "false",
  1546. "native_address" : "0x159238cb8",
  1547. "native_offset" : "0x00000"
  1548. }
  1549. ,
  1550. {
  1551. "is_managed" : "false",
  1552. "native_address" : "0x159238c40",
  1553. "native_offset" : "0x00000"
  1554. }
  1555. ,
  1556. {
  1557. "is_managed" : "false",
  1558. "native_address" : "0x1845282e4",
  1559. "native_offset" : "0x00000"
  1560. }
  1561. ,
  1562. {
  1563. "is_managed" : "false",
  1564. "native_address" : "0x1845230fc",
  1565. "native_offset" : "0x00000"
  1566. }
  1567. ]
  1568. },
  1569. {
  1570. "is_managed" : false,
  1571. "offset_free_hash" : "0x0",
  1572. "offset_rich_hash" : "0x0",
  1573. "crashed" : false,
  1574. "native_thread_id" : "0x417f77000",
  1575. "thread_info_addr" : "0x407352a00",
  1576. "thread_name" : "Thread Pool Worker",
  1577. "ctx" : {
  1578. "IP" : "0x1844e6ee8",
  1579. "SP" : "0x417f76db0",
  1580. "BP" : "0x417f76e50"
  1581. },
  1582. "unmanaged_frames" : [
  1583. {
  1584. "is_managed" : "false",
  1585. "native_address" : "0x159081180",
  1586. "native_offset" : "0x00000"
  1587. }
  1588. ,
  1589. {
  1590. "is_managed" : "false",
  1591. "native_address" : "0x1591b84d8",
  1592. "native_offset" : "0x00000"
  1593. }
  1594. ,
  1595. {
  1596. "is_managed" : "false",
  1597. "native_address" : "0x1591b8834",
  1598. "native_offset" : "0x00000"
  1599. }
  1600. ,
  1601. {
  1602. "is_managed" : "false",
  1603. "native_address" : "0x1591b85fc",
  1604. "native_offset" : "0x00000"
  1605. }
  1606. ,
  1607. {
  1608. "is_managed" : "false",
  1609. "native_address" : "0x1590c23b0",
  1610. "native_offset" : "0x00000"
  1611. }
  1612. ,
  1613. {
  1614. "is_managed" : "false",
  1615. "native_address" : "0x18455ee04",
  1616. "native_offset" : "0x00000"
  1617. }
  1618. ,
  1619. {
  1620. "is_managed" : "false",
  1621. "native_address" : "0x159111168",
  1622. "native_offset" : "0x00000"
  1623. }
  1624. ,
  1625. {
  1626. "is_managed" : "false",
  1627. "native_address" : "0x1591b9244",
  1628. "native_offset" : "0x00000"
  1629. }
  1630. ,
  1631. {
  1632. "is_managed" : "false",
  1633. "native_address" : "0x1591b90f0",
  1634. "native_offset" : "0x00000"
  1635. }
  1636. ,
  1637. {
  1638. "is_managed" : "false",
  1639. "native_address" : "0x159238cb8",
  1640. "native_offset" : "0x00000"
  1641. }
  1642. ,
  1643. {
  1644. "is_managed" : "false",
  1645. "native_address" : "0x159238c40",
  1646. "native_offset" : "0x00000"
  1647. }
  1648. ,
  1649. {
  1650. "is_managed" : "false",
  1651. "native_address" : "0x1845282e4",
  1652. "native_offset" : "0x00000"
  1653. }
  1654. ,
  1655. {
  1656. "is_managed" : "false",
  1657. "native_address" : "0x1845230fc",
  1658. "native_offset" : "0x00000"
  1659. }
  1660. ]
  1661. },
  1662. {
  1663. "is_managed" : false,
  1664. "offset_free_hash" : "0x0",
  1665. "offset_rich_hash" : "0x0",
  1666. "crashed" : false,
  1667. "native_thread_id" : "0x41aa47000",
  1668. "thread_info_addr" : "0x3fdc43800",
  1669. "thread_name" : "Thread Pool Worker",
  1670. "ctx" : {
  1671. "IP" : "0x1844e6ee8",
  1672. "SP" : "0x41aa46db0",
  1673. "BP" : "0x41aa46e50"
  1674. },
  1675. "unmanaged_frames" : [
  1676. {
  1677. "is_managed" : "false",
  1678. "native_address" : "0x159081180",
  1679. "native_offset" : "0x00000"
  1680. }
  1681. ,
  1682. {
  1683. "is_managed" : "false",
  1684. "native_address" : "0x1591b84d8",
  1685. "native_offset" : "0x00000"
  1686. }
  1687. ,
  1688. {
  1689. "is_managed" : "false",
  1690. "native_address" : "0x1591b8834",
  1691. "native_offset" : "0x00000"
  1692. }
  1693. ,
  1694. {
  1695. "is_managed" : "false",
  1696. "native_address" : "0x1591b85fc",
  1697. "native_offset" : "0x00000"
  1698. }
  1699. ,
  1700. {
  1701. "is_managed" : "false",
  1702. "native_address" : "0x1590c23b0",
  1703. "native_offset" : "0x00000"
  1704. }
  1705. ,
  1706. {
  1707. "is_managed" : "false",
  1708. "native_address" : "0x18455ee04",
  1709. "native_offset" : "0x00000"
  1710. }
  1711. ,
  1712. {
  1713. "is_managed" : "false",
  1714. "native_address" : "0x159111168",
  1715. "native_offset" : "0x00000"
  1716. }
  1717. ,
  1718. {
  1719. "is_managed" : "false",
  1720. "native_address" : "0x1591b9244",
  1721. "native_offset" : "0x00000"
  1722. }
  1723. ,
  1724. {
  1725. "is_managed" : "false",
  1726. "native_address" : "0x1591b90f0",
  1727. "native_offset" : "0x00000"
  1728. }
  1729. ,
  1730. {
  1731. "is_managed" : "false",
  1732. "native_address" : "0x159238cb8",
  1733. "native_offset" : "0x00000"
  1734. }
  1735. ,
  1736. {
  1737. "is_managed" : "false",
  1738. "native_address" : "0x159238c40",
  1739. "native_offset" : "0x00000"
  1740. }
  1741. ,
  1742. {
  1743. "is_managed" : "false",
  1744. "native_address" : "0x1845282e4",
  1745. "native_offset" : "0x00000"
  1746. }
  1747. ,
  1748. {
  1749. "is_managed" : "false",
  1750. "native_address" : "0x1845230fc",
  1751. "native_offset" : "0x00000"
  1752. }
  1753. ]
  1754. },
  1755. {
  1756. "is_managed" : false,
  1757. "offset_free_hash" : "0x0",
  1758. "offset_rich_hash" : "0x0",
  1759. "crashed" : false,
  1760. "native_thread_id" : "0x318087000",
  1761. "thread_info_addr" : "0x14a9fe600",
  1762. "thread_name" : "tid_11803",
  1763. "ctx" : {
  1764. "IP" : "0x1844e6ed0",
  1765. "SP" : "0x318086ce0",
  1766. "BP" : "0x318086cf0"
  1767. },
  1768. "unmanaged_frames" : [
  1769. {
  1770. "is_managed" : "false",
  1771. "native_address" : "0x159081180",
  1772. "native_offset" : "0x00000"
  1773. }
  1774. ,
  1775. {
  1776. "is_managed" : "false",
  1777. "native_address" : "0x1591b84d8",
  1778. "native_offset" : "0x00000"
  1779. }
  1780. ,
  1781. {
  1782. "is_managed" : "false",
  1783. "native_address" : "0x1591b8834",
  1784. "native_offset" : "0x00000"
  1785. }
  1786. ,
  1787. {
  1788. "is_managed" : "false",
  1789. "native_address" : "0x1591b85fc",
  1790. "native_offset" : "0x00000"
  1791. }
  1792. ,
  1793. {
  1794. "is_managed" : "false",
  1795. "native_address" : "0x1590c23b0",
  1796. "native_offset" : "0x00000"
  1797. }
  1798. ,
  1799. {
  1800. "is_managed" : "false",
  1801. "native_address" : "0x18455ee04",
  1802. "native_offset" : "0x00000"
  1803. }
  1804. ,
  1805. {
  1806. "is_managed" : "false",
  1807. "native_address" : "0x184375b50",
  1808. "native_offset" : "0x00000"
  1809. }
  1810. ,
  1811. {
  1812. "is_managed" : "false",
  1813. "native_address" : "0x184376204",
  1814. "native_offset" : "0x00000"
  1815. }
  1816. ,
  1817. {
  1818. "is_managed" : "false",
  1819. "native_address" : "0x103643f88",
  1820. "native_offset" : "0x00000"
  1821. }
  1822. ,
  1823. {
  1824. "is_managed" : "false",
  1825. "native_address" : "0x1012dda10",
  1826. "native_offset" : "0x00000"
  1827. }
  1828. ,
  1829. {
  1830. "is_managed" : "false",
  1831. "native_address" : "0x1012dead4",
  1832. "native_offset" : "0x00000"
  1833. }
  1834. ,
  1835. {
  1836. "is_managed" : "false",
  1837. "native_address" : "0x10154e288",
  1838. "native_offset" : "0x00000"
  1839. }
  1840. ,
  1841. {
  1842. "is_managed" : "false",
  1843. "native_address" : "0x1845282e4",
  1844. "native_offset" : "0x00000"
  1845. }
  1846. ,
  1847. {
  1848. "is_managed" : "false",
  1849. "native_address" : "0x1845230fc",
  1850. "native_offset" : "0x00000"
  1851. }
  1852. ]
  1853. },
  1854. {
  1855. "is_managed" : false,
  1856. "offset_free_hash" : "0x0",
  1857. "offset_rich_hash" : "0x0",
  1858. "crashed" : false,
  1859. "native_thread_id" : "0x318113000",
  1860. "thread_info_addr" : "0x14b0bce00",
  1861. "thread_name" : "tid_11903",
  1862. "ctx" : {
  1863. "IP" : "0x1844e6ed0",
  1864. "SP" : "0x318112ce0",
  1865. "BP" : "0x318112cf0"
  1866. },
  1867. "unmanaged_frames" : [
  1868. {
  1869. "is_managed" : "false",
  1870. "native_address" : "0x159081180",
  1871. "native_offset" : "0x00000"
  1872. }
  1873. ,
  1874. {
  1875. "is_managed" : "false",
  1876. "native_address" : "0x1591b84d8",
  1877. "native_offset" : "0x00000"
  1878. }
  1879. ,
  1880. {
  1881. "is_managed" : "false",
  1882. "native_address" : "0x1591b8834",
  1883. "native_offset" : "0x00000"
  1884. }
  1885. ,
  1886. {
  1887. "is_managed" : "false",
  1888. "native_address" : "0x1591b85fc",
  1889. "native_offset" : "0x00000"
  1890. }
  1891. ,
  1892. {
  1893. "is_managed" : "false",
  1894. "native_address" : "0x1590c23b0",
  1895. "native_offset" : "0x00000"
  1896. }
  1897. ,
  1898. {
  1899. "is_managed" : "false",
  1900. "native_address" : "0x18455ee04",
  1901. "native_offset" : "0x00000"
  1902. }
  1903. ,
  1904. {
  1905. "is_managed" : "false",
  1906. "native_address" : "0x184375b50",
  1907. "native_offset" : "0x00000"
  1908. }
  1909. ,
  1910. {
  1911. "is_managed" : "false",
  1912. "native_address" : "0x184376204",
  1913. "native_offset" : "0x00000"
  1914. }
  1915. ,
  1916. {
  1917. "is_managed" : "false",
  1918. "native_address" : "0x103643f88",
  1919. "native_offset" : "0x00000"
  1920. }
  1921. ,
  1922. {
  1923. "is_managed" : "false",
  1924. "native_address" : "0x1012dda10",
  1925. "native_offset" : "0x00000"
  1926. }
  1927. ,
  1928. {
  1929. "is_managed" : "false",
  1930. "native_address" : "0x1012dead4",
  1931. "native_offset" : "0x00000"
  1932. }
  1933. ,
  1934. {
  1935. "is_managed" : "false",
  1936. "native_address" : "0x10154e288",
  1937. "native_offset" : "0x00000"
  1938. }
  1939. ,
  1940. {
  1941. "is_managed" : "false",
  1942. "native_address" : "0x1845282e4",
  1943. "native_offset" : "0x00000"
  1944. }
  1945. ,
  1946. {
  1947. "is_managed" : "false",
  1948. "native_address" : "0x1845230fc",
  1949. "native_offset" : "0x00000"
  1950. }
  1951. ]
  1952. },
  1953. {
  1954. "is_managed" : false,
  1955. "offset_free_hash" : "0x0",
  1956. "offset_rich_hash" : "0x0",
  1957. "crashed" : false,
  1958. "native_thread_id" : "0x43c13f000",
  1959. "thread_info_addr" : "0x3af619800",
  1960. "thread_name" : "Thread Pool Worker",
  1961. "ctx" : {
  1962. "IP" : "0x1844e6ee8",
  1963. "SP" : "0x43c13edb0",
  1964. "BP" : "0x43c13ee50"
  1965. },
  1966. "unmanaged_frames" : [
  1967. {
  1968. "is_managed" : "false",
  1969. "native_address" : "0x159081180",
  1970. "native_offset" : "0x00000"
  1971. }
  1972. ,
  1973. {
  1974. "is_managed" : "false",
  1975. "native_address" : "0x1591b84d8",
  1976. "native_offset" : "0x00000"
  1977. }
  1978. ,
  1979. {
  1980. "is_managed" : "false",
  1981. "native_address" : "0x1591b8834",
  1982. "native_offset" : "0x00000"
  1983. }
  1984. ,
  1985. {
  1986. "is_managed" : "false",
  1987. "native_address" : "0x1591b85fc",
  1988. "native_offset" : "0x00000"
  1989. }
  1990. ,
  1991. {
  1992. "is_managed" : "false",
  1993. "native_address" : "0x1590c23b0",
  1994. "native_offset" : "0x00000"
  1995. }
  1996. ,
  1997. {
  1998. "is_managed" : "false",
  1999. "native_address" : "0x18455ee04",
  2000. "native_offset" : "0x00000"
  2001. }
  2002. ,
  2003. {
  2004. "is_managed" : "false",
  2005. "native_address" : "0x159111168",
  2006. "native_offset" : "0x00000"
  2007. }
  2008. ,
  2009. {
  2010. "is_managed" : "false",
  2011. "native_address" : "0x1591b9244",
  2012. "native_offset" : "0x00000"
  2013. }
  2014. ,
  2015. {
  2016. "is_managed" : "false",
  2017. "native_address" : "0x1591b90f0",
  2018. "native_offset" : "0x00000"
  2019. }
  2020. ,
  2021. {
  2022. "is_managed" : "false",
  2023. "native_address" : "0x159238cb8",
  2024. "native_offset" : "0x00000"
  2025. }
  2026. ,
  2027. {
  2028. "is_managed" : "false",
  2029. "native_address" : "0x159238c40",
  2030. "native_offset" : "0x00000"
  2031. }
  2032. ,
  2033. {
  2034. "is_managed" : "false",
  2035. "native_address" : "0x1845282e4",
  2036. "native_offset" : "0x00000"
  2037. }
  2038. ,
  2039. {
  2040. "is_managed" : "false",
  2041. "native_address" : "0x1845230fc",
  2042. "native_offset" : "0x00000"
  2043. }
  2044. ]
  2045. },
  2046. {
  2047. "is_managed" : false,
  2048. "offset_free_hash" : "0x0",
  2049. "offset_rich_hash" : "0x0",
  2050. "crashed" : false,
  2051. "native_thread_id" : "0x43c557000",
  2052. "thread_info_addr" : "0x3e7b04a00",
  2053. "thread_name" : "Thread Pool Worker",
  2054. "ctx" : {
  2055. "IP" : "0x1844e6ee8",
  2056. "SP" : "0x43c556db0",
  2057. "BP" : "0x43c556e50"
  2058. },
  2059. "unmanaged_frames" : [
  2060. {
  2061. "is_managed" : "false",
  2062. "native_address" : "0x159081180",
  2063. "native_offset" : "0x00000"
  2064. }
  2065. ,
  2066. {
  2067. "is_managed" : "false",
  2068. "native_address" : "0x1591b84d8",
  2069. "native_offset" : "0x00000"
  2070. }
  2071. ,
  2072. {
  2073. "is_managed" : "false",
  2074. "native_address" : "0x1591b8834",
  2075. "native_offset" : "0x00000"
  2076. }
  2077. ,
  2078. {
  2079. "is_managed" : "false",
  2080. "native_address" : "0x1591b85fc",
  2081. "native_offset" : "0x00000"
  2082. }
  2083. ,
  2084. {
  2085. "is_managed" : "false",
  2086. "native_address" : "0x1590c23b0",
  2087. "native_offset" : "0x00000"
  2088. }
  2089. ,
  2090. {
  2091. "is_managed" : "false",
  2092. "native_address" : "0x18455ee04",
  2093. "native_offset" : "0x00000"
  2094. }
  2095. ,
  2096. {
  2097. "is_managed" : "false",
  2098. "native_address" : "0x159111168",
  2099. "native_offset" : "0x00000"
  2100. }
  2101. ,
  2102. {
  2103. "is_managed" : "false",
  2104. "native_address" : "0x1591b9244",
  2105. "native_offset" : "0x00000"
  2106. }
  2107. ,
  2108. {
  2109. "is_managed" : "false",
  2110. "native_address" : "0x1591b90f0",
  2111. "native_offset" : "0x00000"
  2112. }
  2113. ,
  2114. {
  2115. "is_managed" : "false",
  2116. "native_address" : "0x159238cb8",
  2117. "native_offset" : "0x00000"
  2118. }
  2119. ,
  2120. {
  2121. "is_managed" : "false",
  2122. "native_address" : "0x159238c40",
  2123. "native_offset" : "0x00000"
  2124. }
  2125. ,
  2126. {
  2127. "is_managed" : "false",
  2128. "native_address" : "0x1845282e4",
  2129. "native_offset" : "0x00000"
  2130. }
  2131. ,
  2132. {
  2133. "is_managed" : "false",
  2134. "native_address" : "0x1845230fc",
  2135. "native_offset" : "0x00000"
  2136. }
  2137. ]
  2138. },
  2139. {
  2140. "is_managed" : true,
  2141. "offset_free_hash" : "0x1491dfc51e",
  2142. "offset_rich_hash" : "0x1491dfc8e0",
  2143. "crashed" : false,
  2144. "native_thread_id" : "0x37bd93000",
  2145. "thread_info_addr" : "0x15b25f800",
  2146. "thread_name" : "Burst-CompilerThread-4",
  2147. "ctx" : {
  2148. "IP" : "0x1844ea6ec",
  2149. "SP" : "0x37bd91ad0",
  2150. "BP" : "0x37bd91b60"
  2151. },
  2152. "managed_frames" : [
  2153. {
  2154. "is_managed" : "false",
  2155. "native_address" : "unregistered"
  2156. }
  2157. ,
  2158. {
  2159. "is_managed" : "true",
  2160. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2161. "token" : "0x00000",
  2162. "native_offset" : "0x0",
  2163. "filename" : "mscorlib.dll",
  2164. "sizeofimage" : "0x470000",
  2165. "timestamp" : "0xb608e565",
  2166. "il_offset" : "0xffffffff"
  2167. }
  2168. ,
  2169. {
  2170. "is_managed" : "true",
  2171. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2172. "token" : "0x60020b3",
  2173. "native_offset" : "0x0",
  2174. "filename" : "mscorlib.dll",
  2175. "sizeofimage" : "0x470000",
  2176. "timestamp" : "0xb608e565",
  2177. "il_offset" : "0x000c7"
  2178. }
  2179. ,
  2180. {
  2181. "is_managed" : "true",
  2182. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2183. "token" : "0x60020a5",
  2184. "native_offset" : "0x0",
  2185. "filename" : "mscorlib.dll",
  2186. "sizeofimage" : "0x470000",
  2187. "timestamp" : "0xb608e565",
  2188. "il_offset" : "0x000a1"
  2189. }
  2190. ,
  2191. {
  2192. "is_managed" : "true",
  2193. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2194. "token" : "0x60020a9",
  2195. "native_offset" : "0x0",
  2196. "filename" : "mscorlib.dll",
  2197. "sizeofimage" : "0x470000",
  2198. "timestamp" : "0xb608e565",
  2199. "il_offset" : "0x00000"
  2200. }
  2201. ,
  2202. {
  2203. "is_managed" : "true",
  2204. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  2205. "token" : "0x60026c6",
  2206. "native_offset" : "0x0",
  2207. "filename" : "System.dll",
  2208. "sizeofimage" : "0x29a000",
  2209. "timestamp" : "0xe77c4867",
  2210. "il_offset" : "0x0006e"
  2211. }
  2212. ,
  2213. {
  2214. "is_managed" : "true",
  2215. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  2216. "token" : "0x60026c5",
  2217. "native_offset" : "0x0",
  2218. "filename" : "System.dll",
  2219. "sizeofimage" : "0x29a000",
  2220. "timestamp" : "0xe77c4867",
  2221. "il_offset" : "0x0003c"
  2222. }
  2223. ,
  2224. {
  2225. "is_managed" : "true",
  2226. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  2227. "token" : "0x60026c0",
  2228. "native_offset" : "0x0",
  2229. "filename" : "System.dll",
  2230. "sizeofimage" : "0x29a000",
  2231. "timestamp" : "0xe77c4867",
  2232. "il_offset" : "0x00000"
  2233. }
  2234. ,
  2235. {
  2236. "is_managed" : "true",
  2237. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  2238. "token" : "0x6000b92",
  2239. "native_offset" : "0x0",
  2240. "filename" : "Burst.Compiler.IL.dll",
  2241. "sizeofimage" : "0x1aa000",
  2242. "timestamp" : "0x804eb2a0",
  2243. "il_offset" : "0x00024"
  2244. }
  2245. ,
  2246. {
  2247. "is_managed" : "true",
  2248. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  2249. "token" : "0x6000be4",
  2250. "native_offset" : "0x0",
  2251. "filename" : "Burst.Compiler.IL.dll",
  2252. "sizeofimage" : "0x1aa000",
  2253. "timestamp" : "0x804eb2a0",
  2254. "il_offset" : "0x00070"
  2255. }
  2256. ,
  2257. {
  2258. "is_managed" : "true",
  2259. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2260. "token" : "0x6001f7d",
  2261. "native_offset" : "0x0",
  2262. "filename" : "mscorlib.dll",
  2263. "sizeofimage" : "0x470000",
  2264. "timestamp" : "0xb608e565",
  2265. "il_offset" : "0x00014"
  2266. }
  2267. ,
  2268. {
  2269. "is_managed" : "true",
  2270. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2271. "token" : "0x6001f25",
  2272. "native_offset" : "0x0",
  2273. "filename" : "mscorlib.dll",
  2274. "sizeofimage" : "0x470000",
  2275. "timestamp" : "0xb608e565",
  2276. "il_offset" : "0x00071"
  2277. }
  2278. ,
  2279. {
  2280. "is_managed" : "true",
  2281. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2282. "token" : "0x6001f23",
  2283. "native_offset" : "0x0",
  2284. "filename" : "mscorlib.dll",
  2285. "sizeofimage" : "0x470000",
  2286. "timestamp" : "0xb608e565",
  2287. "il_offset" : "0x00000"
  2288. }
  2289. ,
  2290. {
  2291. "is_managed" : "true",
  2292. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2293. "token" : "0x6001f22",
  2294. "native_offset" : "0x0",
  2295. "filename" : "mscorlib.dll",
  2296. "sizeofimage" : "0x470000",
  2297. "timestamp" : "0xb608e565",
  2298. "il_offset" : "0x0002b"
  2299. }
  2300. ,
  2301. {
  2302. "is_managed" : "true",
  2303. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2304. "token" : "0x6001f7f",
  2305. "native_offset" : "0x0",
  2306. "filename" : "mscorlib.dll",
  2307. "sizeofimage" : "0x470000",
  2308. "timestamp" : "0xb608e565",
  2309. "il_offset" : "0x00008"
  2310. }
  2311. ,
  2312. {
  2313. "is_managed" : "true",
  2314. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2315. "token" : "0x00000",
  2316. "native_offset" : "0x0",
  2317. "filename" : "mscorlib.dll",
  2318. "sizeofimage" : "0x470000",
  2319. "timestamp" : "0xb608e565",
  2320. "il_offset" : "0x00065"
  2321. }
  2322. ],
  2323. "unmanaged_frames" : [
  2324. {
  2325. "is_managed" : "false",
  2326. "native_address" : "0x159081180",
  2327. "native_offset" : "0x00000"
  2328. }
  2329. ,
  2330. {
  2331. "is_managed" : "false",
  2332. "native_address" : "0x1591b84d8",
  2333. "native_offset" : "0x00000"
  2334. }
  2335. ,
  2336. {
  2337. "is_managed" : "false",
  2338. "native_address" : "0x1591b8834",
  2339. "native_offset" : "0x00000"
  2340. }
  2341. ,
  2342. {
  2343. "is_managed" : "false",
  2344. "native_address" : "0x1591b85fc",
  2345. "native_offset" : "0x00000"
  2346. }
  2347. ,
  2348. {
  2349. "is_managed" : "false",
  2350. "native_address" : "0x1590c23b0",
  2351. "native_offset" : "0x00000"
  2352. }
  2353. ,
  2354. {
  2355. "is_managed" : "false",
  2356. "native_address" : "0x18455ee04",
  2357. "native_offset" : "0x00000"
  2358. }
  2359. ,
  2360. {
  2361. "is_managed" : "false",
  2362. "native_address" : "0x184528894",
  2363. "native_offset" : "0x00000"
  2364. }
  2365. ,
  2366. {
  2367. "is_managed" : "false",
  2368. "native_address" : "0x159207d54",
  2369. "native_offset" : "0x00000"
  2370. }
  2371. ,
  2372. {
  2373. "is_managed" : "false",
  2374. "native_address" : "0x1591c4ad0",
  2375. "native_offset" : "0x00000"
  2376. }
  2377. ,
  2378. {
  2379. "is_managed" : "false",
  2380. "native_address" : "0x1591c4748",
  2381. "native_offset" : "0x00000"
  2382. }
  2383. ,
  2384. {
  2385. "is_managed" : "false",
  2386. "native_address" : "0x1591b36a8",
  2387. "native_offset" : "0x00000"
  2388. }
  2389. ,
  2390. {
  2391. "is_managed" : "false",
  2392. "native_address" : "0x15915ddd4",
  2393. "native_offset" : "0x00000"
  2394. }
  2395. ,
  2396. {
  2397. "is_managed" : "true",
  2398. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2399. "token" : "0x00000",
  2400. "native_offset" : "0x0",
  2401. "filename" : "mscorlib.dll",
  2402. "sizeofimage" : "0x470000",
  2403. "timestamp" : "0xb608e565",
  2404. "il_offset" : "0x00000"
  2405. }
  2406. ,
  2407. {
  2408. "is_managed" : "true",
  2409. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2410. "token" : "0x60020b3",
  2411. "native_offset" : "0x0",
  2412. "filename" : "mscorlib.dll",
  2413. "sizeofimage" : "0x470000",
  2414. "timestamp" : "0xb608e565",
  2415. "il_offset" : "0x00000"
  2416. }
  2417. ,
  2418. {
  2419. "is_managed" : "true",
  2420. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2421. "token" : "0x60020a5",
  2422. "native_offset" : "0x0",
  2423. "filename" : "mscorlib.dll",
  2424. "sizeofimage" : "0x470000",
  2425. "timestamp" : "0xb608e565",
  2426. "il_offset" : "0x00000"
  2427. }
  2428. ,
  2429. {
  2430. "is_managed" : "true",
  2431. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2432. "token" : "0x60020a9",
  2433. "native_offset" : "0x0",
  2434. "filename" : "mscorlib.dll",
  2435. "sizeofimage" : "0x470000",
  2436. "timestamp" : "0xb608e565",
  2437. "il_offset" : "0x00000"
  2438. }
  2439. ,
  2440. {
  2441. "is_managed" : "true",
  2442. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  2443. "token" : "0x60026c6",
  2444. "native_offset" : "0x0",
  2445. "filename" : "System.dll",
  2446. "sizeofimage" : "0x29a000",
  2447. "timestamp" : "0xe77c4867",
  2448. "il_offset" : "0x00000"
  2449. }
  2450. ,
  2451. {
  2452. "is_managed" : "true",
  2453. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  2454. "token" : "0x60026c5",
  2455. "native_offset" : "0x0",
  2456. "filename" : "System.dll",
  2457. "sizeofimage" : "0x29a000",
  2458. "timestamp" : "0xe77c4867",
  2459. "il_offset" : "0x00000"
  2460. }
  2461. ,
  2462. {
  2463. "is_managed" : "true",
  2464. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  2465. "token" : "0x60026c0",
  2466. "native_offset" : "0x0",
  2467. "filename" : "System.dll",
  2468. "sizeofimage" : "0x29a000",
  2469. "timestamp" : "0xe77c4867",
  2470. "il_offset" : "0x00000"
  2471. }
  2472. ,
  2473. {
  2474. "is_managed" : "true",
  2475. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  2476. "token" : "0x6000b92",
  2477. "native_offset" : "0x0",
  2478. "filename" : "Burst.Compiler.IL.dll",
  2479. "sizeofimage" : "0x1aa000",
  2480. "timestamp" : "0x804eb2a0",
  2481. "il_offset" : "0x00000"
  2482. }
  2483. ,
  2484. {
  2485. "is_managed" : "true",
  2486. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  2487. "token" : "0x6000be4",
  2488. "native_offset" : "0x0",
  2489. "filename" : "Burst.Compiler.IL.dll",
  2490. "sizeofimage" : "0x1aa000",
  2491. "timestamp" : "0x804eb2a0",
  2492. "il_offset" : "0x00000"
  2493. }
  2494. ,
  2495. {
  2496. "is_managed" : "true",
  2497. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2498. "token" : "0x6001f7d",
  2499. "native_offset" : "0x0",
  2500. "filename" : "mscorlib.dll",
  2501. "sizeofimage" : "0x470000",
  2502. "timestamp" : "0xb608e565",
  2503. "il_offset" : "0x00000"
  2504. }
  2505. ,
  2506. {
  2507. "is_managed" : "true",
  2508. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2509. "token" : "0x6001f25",
  2510. "native_offset" : "0x0",
  2511. "filename" : "mscorlib.dll",
  2512. "sizeofimage" : "0x470000",
  2513. "timestamp" : "0xb608e565",
  2514. "il_offset" : "0x00000"
  2515. }
  2516. ,
  2517. {
  2518. "is_managed" : "true",
  2519. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2520. "token" : "0x6001f23",
  2521. "native_offset" : "0x0",
  2522. "filename" : "mscorlib.dll",
  2523. "sizeofimage" : "0x470000",
  2524. "timestamp" : "0xb608e565",
  2525. "il_offset" : "0x00000"
  2526. }
  2527. ,
  2528. {
  2529. "is_managed" : "true",
  2530. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2531. "token" : "0x6001f22",
  2532. "native_offset" : "0x0",
  2533. "filename" : "mscorlib.dll",
  2534. "sizeofimage" : "0x470000",
  2535. "timestamp" : "0xb608e565",
  2536. "il_offset" : "0x00000"
  2537. }
  2538. ,
  2539. {
  2540. "is_managed" : "true",
  2541. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2542. "token" : "0x6001f7f",
  2543. "native_offset" : "0x0",
  2544. "filename" : "mscorlib.dll",
  2545. "sizeofimage" : "0x470000",
  2546. "timestamp" : "0xb608e565",
  2547. "il_offset" : "0x00000"
  2548. }
  2549. ,
  2550. {
  2551. "is_managed" : "true",
  2552. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2553. "token" : "0x00000",
  2554. "native_offset" : "0x0",
  2555. "filename" : "mscorlib.dll",
  2556. "sizeofimage" : "0x470000",
  2557. "timestamp" : "0xb608e565",
  2558. "il_offset" : "0x00000"
  2559. }
  2560. ,
  2561. {
  2562. "is_managed" : "false",
  2563. "native_address" : "0x159010d34",
  2564. "native_offset" : "0x00000"
  2565. }
  2566. ,
  2567. {
  2568. "is_managed" : "false",
  2569. "native_address" : "0x1591971f4",
  2570. "native_offset" : "0x00000"
  2571. }
  2572. ,
  2573. {
  2574. "is_managed" : "false",
  2575. "native_address" : "0x159198e1c",
  2576. "native_offset" : "0x00000"
  2577. }
  2578. ,
  2579. {
  2580. "is_managed" : "false",
  2581. "native_address" : "0x1591b9338",
  2582. "native_offset" : "0x00000"
  2583. }
  2584. ,
  2585. {
  2586. "is_managed" : "false",
  2587. "native_address" : "0x1591b90f0",
  2588. "native_offset" : "0x00000"
  2589. }
  2590. ,
  2591. {
  2592. "is_managed" : "false",
  2593. "native_address" : "0x159238cb8",
  2594. "native_offset" : "0x00000"
  2595. }
  2596. ,
  2597. {
  2598. "is_managed" : "false",
  2599. "native_address" : "0x159238c40",
  2600. "native_offset" : "0x00000"
  2601. }
  2602. ,
  2603. {
  2604. "is_managed" : "false",
  2605. "native_address" : "0x1845282e4",
  2606. "native_offset" : "0x00000"
  2607. }
  2608. ,
  2609. {
  2610. "is_managed" : "false",
  2611. "native_address" : "0x1845230fc",
  2612. "native_offset" : "0x00000"
  2613. }
  2614. ]
  2615. },
  2616. {
  2617. "is_managed" : true,
  2618. "offset_free_hash" : "0x1491dfc51e",
  2619. "offset_rich_hash" : "0x1491dfc8e0",
  2620. "crashed" : false,
  2621. "native_thread_id" : "0x37c1ab000",
  2622. "thread_info_addr" : "0x15b325200",
  2623. "thread_name" : "Burst-CompilerThread-6",
  2624. "ctx" : {
  2625. "IP" : "0x1844ea6ec",
  2626. "SP" : "0x37c1a9ad0",
  2627. "BP" : "0x37c1a9b60"
  2628. },
  2629. "managed_frames" : [
  2630. {
  2631. "is_managed" : "false",
  2632. "native_address" : "unregistered"
  2633. }
  2634. ,
  2635. {
  2636. "is_managed" : "true",
  2637. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2638. "token" : "0x00000",
  2639. "native_offset" : "0x0",
  2640. "filename" : "mscorlib.dll",
  2641. "sizeofimage" : "0x470000",
  2642. "timestamp" : "0xb608e565",
  2643. "il_offset" : "0xffffffff"
  2644. }
  2645. ,
  2646. {
  2647. "is_managed" : "true",
  2648. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2649. "token" : "0x60020b3",
  2650. "native_offset" : "0x0",
  2651. "filename" : "mscorlib.dll",
  2652. "sizeofimage" : "0x470000",
  2653. "timestamp" : "0xb608e565",
  2654. "il_offset" : "0x000c7"
  2655. }
  2656. ,
  2657. {
  2658. "is_managed" : "true",
  2659. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2660. "token" : "0x60020a5",
  2661. "native_offset" : "0x0",
  2662. "filename" : "mscorlib.dll",
  2663. "sizeofimage" : "0x470000",
  2664. "timestamp" : "0xb608e565",
  2665. "il_offset" : "0x000a1"
  2666. }
  2667. ,
  2668. {
  2669. "is_managed" : "true",
  2670. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2671. "token" : "0x60020a9",
  2672. "native_offset" : "0x0",
  2673. "filename" : "mscorlib.dll",
  2674. "sizeofimage" : "0x470000",
  2675. "timestamp" : "0xb608e565",
  2676. "il_offset" : "0x00000"
  2677. }
  2678. ,
  2679. {
  2680. "is_managed" : "true",
  2681. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  2682. "token" : "0x60026c6",
  2683. "native_offset" : "0x0",
  2684. "filename" : "System.dll",
  2685. "sizeofimage" : "0x29a000",
  2686. "timestamp" : "0xe77c4867",
  2687. "il_offset" : "0x0006e"
  2688. }
  2689. ,
  2690. {
  2691. "is_managed" : "true",
  2692. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  2693. "token" : "0x60026c5",
  2694. "native_offset" : "0x0",
  2695. "filename" : "System.dll",
  2696. "sizeofimage" : "0x29a000",
  2697. "timestamp" : "0xe77c4867",
  2698. "il_offset" : "0x0003c"
  2699. }
  2700. ,
  2701. {
  2702. "is_managed" : "true",
  2703. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  2704. "token" : "0x60026c0",
  2705. "native_offset" : "0x0",
  2706. "filename" : "System.dll",
  2707. "sizeofimage" : "0x29a000",
  2708. "timestamp" : "0xe77c4867",
  2709. "il_offset" : "0x00000"
  2710. }
  2711. ,
  2712. {
  2713. "is_managed" : "true",
  2714. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  2715. "token" : "0x6000b92",
  2716. "native_offset" : "0x0",
  2717. "filename" : "Burst.Compiler.IL.dll",
  2718. "sizeofimage" : "0x1aa000",
  2719. "timestamp" : "0x804eb2a0",
  2720. "il_offset" : "0x00024"
  2721. }
  2722. ,
  2723. {
  2724. "is_managed" : "true",
  2725. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  2726. "token" : "0x6000be4",
  2727. "native_offset" : "0x0",
  2728. "filename" : "Burst.Compiler.IL.dll",
  2729. "sizeofimage" : "0x1aa000",
  2730. "timestamp" : "0x804eb2a0",
  2731. "il_offset" : "0x00070"
  2732. }
  2733. ,
  2734. {
  2735. "is_managed" : "true",
  2736. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2737. "token" : "0x6001f7d",
  2738. "native_offset" : "0x0",
  2739. "filename" : "mscorlib.dll",
  2740. "sizeofimage" : "0x470000",
  2741. "timestamp" : "0xb608e565",
  2742. "il_offset" : "0x00014"
  2743. }
  2744. ,
  2745. {
  2746. "is_managed" : "true",
  2747. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2748. "token" : "0x6001f25",
  2749. "native_offset" : "0x0",
  2750. "filename" : "mscorlib.dll",
  2751. "sizeofimage" : "0x470000",
  2752. "timestamp" : "0xb608e565",
  2753. "il_offset" : "0x00071"
  2754. }
  2755. ,
  2756. {
  2757. "is_managed" : "true",
  2758. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2759. "token" : "0x6001f23",
  2760. "native_offset" : "0x0",
  2761. "filename" : "mscorlib.dll",
  2762. "sizeofimage" : "0x470000",
  2763. "timestamp" : "0xb608e565",
  2764. "il_offset" : "0x00000"
  2765. }
  2766. ,
  2767. {
  2768. "is_managed" : "true",
  2769. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2770. "token" : "0x6001f22",
  2771. "native_offset" : "0x0",
  2772. "filename" : "mscorlib.dll",
  2773. "sizeofimage" : "0x470000",
  2774. "timestamp" : "0xb608e565",
  2775. "il_offset" : "0x0002b"
  2776. }
  2777. ,
  2778. {
  2779. "is_managed" : "true",
  2780. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2781. "token" : "0x6001f7f",
  2782. "native_offset" : "0x0",
  2783. "filename" : "mscorlib.dll",
  2784. "sizeofimage" : "0x470000",
  2785. "timestamp" : "0xb608e565",
  2786. "il_offset" : "0x00008"
  2787. }
  2788. ,
  2789. {
  2790. "is_managed" : "true",
  2791. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2792. "token" : "0x00000",
  2793. "native_offset" : "0x0",
  2794. "filename" : "mscorlib.dll",
  2795. "sizeofimage" : "0x470000",
  2796. "timestamp" : "0xb608e565",
  2797. "il_offset" : "0x00065"
  2798. }
  2799. ],
  2800. "unmanaged_frames" : [
  2801. {
  2802. "is_managed" : "false",
  2803. "native_address" : "0x159081180",
  2804. "native_offset" : "0x00000"
  2805. }
  2806. ,
  2807. {
  2808. "is_managed" : "false",
  2809. "native_address" : "0x1591b84d8",
  2810. "native_offset" : "0x00000"
  2811. }
  2812. ,
  2813. {
  2814. "is_managed" : "false",
  2815. "native_address" : "0x1591b8834",
  2816. "native_offset" : "0x00000"
  2817. }
  2818. ,
  2819. {
  2820. "is_managed" : "false",
  2821. "native_address" : "0x1591b85fc",
  2822. "native_offset" : "0x00000"
  2823. }
  2824. ,
  2825. {
  2826. "is_managed" : "false",
  2827. "native_address" : "0x1590c23b0",
  2828. "native_offset" : "0x00000"
  2829. }
  2830. ,
  2831. {
  2832. "is_managed" : "false",
  2833. "native_address" : "0x18455ee04",
  2834. "native_offset" : "0x00000"
  2835. }
  2836. ,
  2837. {
  2838. "is_managed" : "false",
  2839. "native_address" : "0x184528894",
  2840. "native_offset" : "0x00000"
  2841. }
  2842. ,
  2843. {
  2844. "is_managed" : "false",
  2845. "native_address" : "0x159207d54",
  2846. "native_offset" : "0x00000"
  2847. }
  2848. ,
  2849. {
  2850. "is_managed" : "false",
  2851. "native_address" : "0x1591c4ad0",
  2852. "native_offset" : "0x00000"
  2853. }
  2854. ,
  2855. {
  2856. "is_managed" : "false",
  2857. "native_address" : "0x1591c4748",
  2858. "native_offset" : "0x00000"
  2859. }
  2860. ,
  2861. {
  2862. "is_managed" : "false",
  2863. "native_address" : "0x1591b36a8",
  2864. "native_offset" : "0x00000"
  2865. }
  2866. ,
  2867. {
  2868. "is_managed" : "false",
  2869. "native_address" : "0x15915ddd4",
  2870. "native_offset" : "0x00000"
  2871. }
  2872. ,
  2873. {
  2874. "is_managed" : "true",
  2875. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2876. "token" : "0x00000",
  2877. "native_offset" : "0x0",
  2878. "filename" : "mscorlib.dll",
  2879. "sizeofimage" : "0x470000",
  2880. "timestamp" : "0xb608e565",
  2881. "il_offset" : "0x00000"
  2882. }
  2883. ,
  2884. {
  2885. "is_managed" : "true",
  2886. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2887. "token" : "0x60020b3",
  2888. "native_offset" : "0x0",
  2889. "filename" : "mscorlib.dll",
  2890. "sizeofimage" : "0x470000",
  2891. "timestamp" : "0xb608e565",
  2892. "il_offset" : "0x00000"
  2893. }
  2894. ,
  2895. {
  2896. "is_managed" : "true",
  2897. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2898. "token" : "0x60020a5",
  2899. "native_offset" : "0x0",
  2900. "filename" : "mscorlib.dll",
  2901. "sizeofimage" : "0x470000",
  2902. "timestamp" : "0xb608e565",
  2903. "il_offset" : "0x00000"
  2904. }
  2905. ,
  2906. {
  2907. "is_managed" : "true",
  2908. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2909. "token" : "0x60020a9",
  2910. "native_offset" : "0x0",
  2911. "filename" : "mscorlib.dll",
  2912. "sizeofimage" : "0x470000",
  2913. "timestamp" : "0xb608e565",
  2914. "il_offset" : "0x00000"
  2915. }
  2916. ,
  2917. {
  2918. "is_managed" : "true",
  2919. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  2920. "token" : "0x60026c6",
  2921. "native_offset" : "0x0",
  2922. "filename" : "System.dll",
  2923. "sizeofimage" : "0x29a000",
  2924. "timestamp" : "0xe77c4867",
  2925. "il_offset" : "0x00000"
  2926. }
  2927. ,
  2928. {
  2929. "is_managed" : "true",
  2930. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  2931. "token" : "0x60026c5",
  2932. "native_offset" : "0x0",
  2933. "filename" : "System.dll",
  2934. "sizeofimage" : "0x29a000",
  2935. "timestamp" : "0xe77c4867",
  2936. "il_offset" : "0x00000"
  2937. }
  2938. ,
  2939. {
  2940. "is_managed" : "true",
  2941. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  2942. "token" : "0x60026c0",
  2943. "native_offset" : "0x0",
  2944. "filename" : "System.dll",
  2945. "sizeofimage" : "0x29a000",
  2946. "timestamp" : "0xe77c4867",
  2947. "il_offset" : "0x00000"
  2948. }
  2949. ,
  2950. {
  2951. "is_managed" : "true",
  2952. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  2953. "token" : "0x6000b92",
  2954. "native_offset" : "0x0",
  2955. "filename" : "Burst.Compiler.IL.dll",
  2956. "sizeofimage" : "0x1aa000",
  2957. "timestamp" : "0x804eb2a0",
  2958. "il_offset" : "0x00000"
  2959. }
  2960. ,
  2961. {
  2962. "is_managed" : "true",
  2963. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  2964. "token" : "0x6000be4",
  2965. "native_offset" : "0x0",
  2966. "filename" : "Burst.Compiler.IL.dll",
  2967. "sizeofimage" : "0x1aa000",
  2968. "timestamp" : "0x804eb2a0",
  2969. "il_offset" : "0x00000"
  2970. }
  2971. ,
  2972. {
  2973. "is_managed" : "true",
  2974. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2975. "token" : "0x6001f7d",
  2976. "native_offset" : "0x0",
  2977. "filename" : "mscorlib.dll",
  2978. "sizeofimage" : "0x470000",
  2979. "timestamp" : "0xb608e565",
  2980. "il_offset" : "0x00000"
  2981. }
  2982. ,
  2983. {
  2984. "is_managed" : "true",
  2985. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2986. "token" : "0x6001f25",
  2987. "native_offset" : "0x0",
  2988. "filename" : "mscorlib.dll",
  2989. "sizeofimage" : "0x470000",
  2990. "timestamp" : "0xb608e565",
  2991. "il_offset" : "0x00000"
  2992. }
  2993. ,
  2994. {
  2995. "is_managed" : "true",
  2996. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  2997. "token" : "0x6001f23",
  2998. "native_offset" : "0x0",
  2999. "filename" : "mscorlib.dll",
  3000. "sizeofimage" : "0x470000",
  3001. "timestamp" : "0xb608e565",
  3002. "il_offset" : "0x00000"
  3003. }
  3004. ,
  3005. {
  3006. "is_managed" : "true",
  3007. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3008. "token" : "0x6001f22",
  3009. "native_offset" : "0x0",
  3010. "filename" : "mscorlib.dll",
  3011. "sizeofimage" : "0x470000",
  3012. "timestamp" : "0xb608e565",
  3013. "il_offset" : "0x00000"
  3014. }
  3015. ,
  3016. {
  3017. "is_managed" : "true",
  3018. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3019. "token" : "0x6001f7f",
  3020. "native_offset" : "0x0",
  3021. "filename" : "mscorlib.dll",
  3022. "sizeofimage" : "0x470000",
  3023. "timestamp" : "0xb608e565",
  3024. "il_offset" : "0x00000"
  3025. }
  3026. ,
  3027. {
  3028. "is_managed" : "true",
  3029. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3030. "token" : "0x00000",
  3031. "native_offset" : "0x0",
  3032. "filename" : "mscorlib.dll",
  3033. "sizeofimage" : "0x470000",
  3034. "timestamp" : "0xb608e565",
  3035. "il_offset" : "0x00000"
  3036. }
  3037. ,
  3038. {
  3039. "is_managed" : "false",
  3040. "native_address" : "0x159010d34",
  3041. "native_offset" : "0x00000"
  3042. }
  3043. ,
  3044. {
  3045. "is_managed" : "false",
  3046. "native_address" : "0x1591971f4",
  3047. "native_offset" : "0x00000"
  3048. }
  3049. ,
  3050. {
  3051. "is_managed" : "false",
  3052. "native_address" : "0x159198e1c",
  3053. "native_offset" : "0x00000"
  3054. }
  3055. ,
  3056. {
  3057. "is_managed" : "false",
  3058. "native_address" : "0x1591b9338",
  3059. "native_offset" : "0x00000"
  3060. }
  3061. ,
  3062. {
  3063. "is_managed" : "false",
  3064. "native_address" : "0x1591b90f0",
  3065. "native_offset" : "0x00000"
  3066. }
  3067. ,
  3068. {
  3069. "is_managed" : "false",
  3070. "native_address" : "0x159238cb8",
  3071. "native_offset" : "0x00000"
  3072. }
  3073. ,
  3074. {
  3075. "is_managed" : "false",
  3076. "native_address" : "0x159238c40",
  3077. "native_offset" : "0x00000"
  3078. }
  3079. ,
  3080. {
  3081. "is_managed" : "false",
  3082. "native_address" : "0x1845282e4",
  3083. "native_offset" : "0x00000"
  3084. }
  3085. ,
  3086. {
  3087. "is_managed" : "false",
  3088. "native_address" : "0x1845230fc",
  3089. "native_offset" : "0x00000"
  3090. }
  3091. ]
  3092. },
  3093. {
  3094. "is_managed" : true,
  3095. "offset_free_hash" : "0x1491dfc51e",
  3096. "offset_rich_hash" : "0x1491dfc8e0",
  3097. "crashed" : false,
  3098. "native_thread_id" : "0x36aa07000",
  3099. "thread_info_addr" : "0x14b80bc00",
  3100. "thread_name" : "Burst-CompilerThread-1",
  3101. "ctx" : {
  3102. "IP" : "0x1844ea6ec",
  3103. "SP" : "0x36aa05ad0",
  3104. "BP" : "0x36aa05b60"
  3105. },
  3106. "managed_frames" : [
  3107. {
  3108. "is_managed" : "false",
  3109. "native_address" : "unregistered"
  3110. }
  3111. ,
  3112. {
  3113. "is_managed" : "true",
  3114. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3115. "token" : "0x00000",
  3116. "native_offset" : "0x0",
  3117. "filename" : "mscorlib.dll",
  3118. "sizeofimage" : "0x470000",
  3119. "timestamp" : "0xb608e565",
  3120. "il_offset" : "0xffffffff"
  3121. }
  3122. ,
  3123. {
  3124. "is_managed" : "true",
  3125. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3126. "token" : "0x60020b3",
  3127. "native_offset" : "0x0",
  3128. "filename" : "mscorlib.dll",
  3129. "sizeofimage" : "0x470000",
  3130. "timestamp" : "0xb608e565",
  3131. "il_offset" : "0x000c7"
  3132. }
  3133. ,
  3134. {
  3135. "is_managed" : "true",
  3136. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3137. "token" : "0x60020a5",
  3138. "native_offset" : "0x0",
  3139. "filename" : "mscorlib.dll",
  3140. "sizeofimage" : "0x470000",
  3141. "timestamp" : "0xb608e565",
  3142. "il_offset" : "0x000a1"
  3143. }
  3144. ,
  3145. {
  3146. "is_managed" : "true",
  3147. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3148. "token" : "0x60020a9",
  3149. "native_offset" : "0x0",
  3150. "filename" : "mscorlib.dll",
  3151. "sizeofimage" : "0x470000",
  3152. "timestamp" : "0xb608e565",
  3153. "il_offset" : "0x00000"
  3154. }
  3155. ,
  3156. {
  3157. "is_managed" : "true",
  3158. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  3159. "token" : "0x60026c6",
  3160. "native_offset" : "0x0",
  3161. "filename" : "System.dll",
  3162. "sizeofimage" : "0x29a000",
  3163. "timestamp" : "0xe77c4867",
  3164. "il_offset" : "0x0006e"
  3165. }
  3166. ,
  3167. {
  3168. "is_managed" : "true",
  3169. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  3170. "token" : "0x60026c5",
  3171. "native_offset" : "0x0",
  3172. "filename" : "System.dll",
  3173. "sizeofimage" : "0x29a000",
  3174. "timestamp" : "0xe77c4867",
  3175. "il_offset" : "0x0003c"
  3176. }
  3177. ,
  3178. {
  3179. "is_managed" : "true",
  3180. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  3181. "token" : "0x60026c0",
  3182. "native_offset" : "0x0",
  3183. "filename" : "System.dll",
  3184. "sizeofimage" : "0x29a000",
  3185. "timestamp" : "0xe77c4867",
  3186. "il_offset" : "0x00000"
  3187. }
  3188. ,
  3189. {
  3190. "is_managed" : "true",
  3191. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  3192. "token" : "0x6000b92",
  3193. "native_offset" : "0x0",
  3194. "filename" : "Burst.Compiler.IL.dll",
  3195. "sizeofimage" : "0x1aa000",
  3196. "timestamp" : "0x804eb2a0",
  3197. "il_offset" : "0x00024"
  3198. }
  3199. ,
  3200. {
  3201. "is_managed" : "true",
  3202. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  3203. "token" : "0x6000be4",
  3204. "native_offset" : "0x0",
  3205. "filename" : "Burst.Compiler.IL.dll",
  3206. "sizeofimage" : "0x1aa000",
  3207. "timestamp" : "0x804eb2a0",
  3208. "il_offset" : "0x00070"
  3209. }
  3210. ,
  3211. {
  3212. "is_managed" : "true",
  3213. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3214. "token" : "0x6001f7d",
  3215. "native_offset" : "0x0",
  3216. "filename" : "mscorlib.dll",
  3217. "sizeofimage" : "0x470000",
  3218. "timestamp" : "0xb608e565",
  3219. "il_offset" : "0x00014"
  3220. }
  3221. ,
  3222. {
  3223. "is_managed" : "true",
  3224. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3225. "token" : "0x6001f25",
  3226. "native_offset" : "0x0",
  3227. "filename" : "mscorlib.dll",
  3228. "sizeofimage" : "0x470000",
  3229. "timestamp" : "0xb608e565",
  3230. "il_offset" : "0x00071"
  3231. }
  3232. ,
  3233. {
  3234. "is_managed" : "true",
  3235. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3236. "token" : "0x6001f23",
  3237. "native_offset" : "0x0",
  3238. "filename" : "mscorlib.dll",
  3239. "sizeofimage" : "0x470000",
  3240. "timestamp" : "0xb608e565",
  3241. "il_offset" : "0x00000"
  3242. }
  3243. ,
  3244. {
  3245. "is_managed" : "true",
  3246. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3247. "token" : "0x6001f22",
  3248. "native_offset" : "0x0",
  3249. "filename" : "mscorlib.dll",
  3250. "sizeofimage" : "0x470000",
  3251. "timestamp" : "0xb608e565",
  3252. "il_offset" : "0x0002b"
  3253. }
  3254. ,
  3255. {
  3256. "is_managed" : "true",
  3257. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3258. "token" : "0x6001f7f",
  3259. "native_offset" : "0x0",
  3260. "filename" : "mscorlib.dll",
  3261. "sizeofimage" : "0x470000",
  3262. "timestamp" : "0xb608e565",
  3263. "il_offset" : "0x00008"
  3264. }
  3265. ,
  3266. {
  3267. "is_managed" : "true",
  3268. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3269. "token" : "0x00000",
  3270. "native_offset" : "0x0",
  3271. "filename" : "mscorlib.dll",
  3272. "sizeofimage" : "0x470000",
  3273. "timestamp" : "0xb608e565",
  3274. "il_offset" : "0x00065"
  3275. }
  3276. ],
  3277. "unmanaged_frames" : [
  3278. {
  3279. "is_managed" : "false",
  3280. "native_address" : "0x159081180",
  3281. "native_offset" : "0x00000"
  3282. }
  3283. ,
  3284. {
  3285. "is_managed" : "false",
  3286. "native_address" : "0x1591b84d8",
  3287. "native_offset" : "0x00000"
  3288. }
  3289. ,
  3290. {
  3291. "is_managed" : "false",
  3292. "native_address" : "0x1591b8834",
  3293. "native_offset" : "0x00000"
  3294. }
  3295. ,
  3296. {
  3297. "is_managed" : "false",
  3298. "native_address" : "0x1591b85fc",
  3299. "native_offset" : "0x00000"
  3300. }
  3301. ,
  3302. {
  3303. "is_managed" : "false",
  3304. "native_address" : "0x1590c23b0",
  3305. "native_offset" : "0x00000"
  3306. }
  3307. ,
  3308. {
  3309. "is_managed" : "false",
  3310. "native_address" : "0x18455ee04",
  3311. "native_offset" : "0x00000"
  3312. }
  3313. ,
  3314. {
  3315. "is_managed" : "false",
  3316. "native_address" : "0x184528894",
  3317. "native_offset" : "0x00000"
  3318. }
  3319. ,
  3320. {
  3321. "is_managed" : "false",
  3322. "native_address" : "0x159207d54",
  3323. "native_offset" : "0x00000"
  3324. }
  3325. ,
  3326. {
  3327. "is_managed" : "false",
  3328. "native_address" : "0x1591c4ad0",
  3329. "native_offset" : "0x00000"
  3330. }
  3331. ,
  3332. {
  3333. "is_managed" : "false",
  3334. "native_address" : "0x1591c4748",
  3335. "native_offset" : "0x00000"
  3336. }
  3337. ,
  3338. {
  3339. "is_managed" : "false",
  3340. "native_address" : "0x1591b36a8",
  3341. "native_offset" : "0x00000"
  3342. }
  3343. ,
  3344. {
  3345. "is_managed" : "false",
  3346. "native_address" : "0x15915ddd4",
  3347. "native_offset" : "0x00000"
  3348. }
  3349. ,
  3350. {
  3351. "is_managed" : "true",
  3352. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3353. "token" : "0x00000",
  3354. "native_offset" : "0x0",
  3355. "filename" : "mscorlib.dll",
  3356. "sizeofimage" : "0x470000",
  3357. "timestamp" : "0xb608e565",
  3358. "il_offset" : "0x00000"
  3359. }
  3360. ,
  3361. {
  3362. "is_managed" : "true",
  3363. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3364. "token" : "0x60020b3",
  3365. "native_offset" : "0x0",
  3366. "filename" : "mscorlib.dll",
  3367. "sizeofimage" : "0x470000",
  3368. "timestamp" : "0xb608e565",
  3369. "il_offset" : "0x00000"
  3370. }
  3371. ,
  3372. {
  3373. "is_managed" : "true",
  3374. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3375. "token" : "0x60020a5",
  3376. "native_offset" : "0x0",
  3377. "filename" : "mscorlib.dll",
  3378. "sizeofimage" : "0x470000",
  3379. "timestamp" : "0xb608e565",
  3380. "il_offset" : "0x00000"
  3381. }
  3382. ,
  3383. {
  3384. "is_managed" : "true",
  3385. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3386. "token" : "0x60020a9",
  3387. "native_offset" : "0x0",
  3388. "filename" : "mscorlib.dll",
  3389. "sizeofimage" : "0x470000",
  3390. "timestamp" : "0xb608e565",
  3391. "il_offset" : "0x00000"
  3392. }
  3393. ,
  3394. {
  3395. "is_managed" : "true",
  3396. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  3397. "token" : "0x60026c6",
  3398. "native_offset" : "0x0",
  3399. "filename" : "System.dll",
  3400. "sizeofimage" : "0x29a000",
  3401. "timestamp" : "0xe77c4867",
  3402. "il_offset" : "0x00000"
  3403. }
  3404. ,
  3405. {
  3406. "is_managed" : "true",
  3407. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  3408. "token" : "0x60026c5",
  3409. "native_offset" : "0x0",
  3410. "filename" : "System.dll",
  3411. "sizeofimage" : "0x29a000",
  3412. "timestamp" : "0xe77c4867",
  3413. "il_offset" : "0x00000"
  3414. }
  3415. ,
  3416. {
  3417. "is_managed" : "true",
  3418. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  3419. "token" : "0x60026c0",
  3420. "native_offset" : "0x0",
  3421. "filename" : "System.dll",
  3422. "sizeofimage" : "0x29a000",
  3423. "timestamp" : "0xe77c4867",
  3424. "il_offset" : "0x00000"
  3425. }
  3426. ,
  3427. {
  3428. "is_managed" : "true",
  3429. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  3430. "token" : "0x6000b92",
  3431. "native_offset" : "0x0",
  3432. "filename" : "Burst.Compiler.IL.dll",
  3433. "sizeofimage" : "0x1aa000",
  3434. "timestamp" : "0x804eb2a0",
  3435. "il_offset" : "0x00000"
  3436. }
  3437. ,
  3438. {
  3439. "is_managed" : "true",
  3440. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  3441. "token" : "0x6000be4",
  3442. "native_offset" : "0x0",
  3443. "filename" : "Burst.Compiler.IL.dll",
  3444. "sizeofimage" : "0x1aa000",
  3445. "timestamp" : "0x804eb2a0",
  3446. "il_offset" : "0x00000"
  3447. }
  3448. ,
  3449. {
  3450. "is_managed" : "true",
  3451. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3452. "token" : "0x6001f7d",
  3453. "native_offset" : "0x0",
  3454. "filename" : "mscorlib.dll",
  3455. "sizeofimage" : "0x470000",
  3456. "timestamp" : "0xb608e565",
  3457. "il_offset" : "0x00000"
  3458. }
  3459. ,
  3460. {
  3461. "is_managed" : "true",
  3462. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3463. "token" : "0x6001f25",
  3464. "native_offset" : "0x0",
  3465. "filename" : "mscorlib.dll",
  3466. "sizeofimage" : "0x470000",
  3467. "timestamp" : "0xb608e565",
  3468. "il_offset" : "0x00000"
  3469. }
  3470. ,
  3471. {
  3472. "is_managed" : "true",
  3473. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3474. "token" : "0x6001f23",
  3475. "native_offset" : "0x0",
  3476. "filename" : "mscorlib.dll",
  3477. "sizeofimage" : "0x470000",
  3478. "timestamp" : "0xb608e565",
  3479. "il_offset" : "0x00000"
  3480. }
  3481. ,
  3482. {
  3483. "is_managed" : "true",
  3484. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3485. "token" : "0x6001f22",
  3486. "native_offset" : "0x0",
  3487. "filename" : "mscorlib.dll",
  3488. "sizeofimage" : "0x470000",
  3489. "timestamp" : "0xb608e565",
  3490. "il_offset" : "0x00000"
  3491. }
  3492. ,
  3493. {
  3494. "is_managed" : "true",
  3495. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3496. "token" : "0x6001f7f",
  3497. "native_offset" : "0x0",
  3498. "filename" : "mscorlib.dll",
  3499. "sizeofimage" : "0x470000",
  3500. "timestamp" : "0xb608e565",
  3501. "il_offset" : "0x00000"
  3502. }
  3503. ,
  3504. {
  3505. "is_managed" : "true",
  3506. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3507. "token" : "0x00000",
  3508. "native_offset" : "0x0",
  3509. "filename" : "mscorlib.dll",
  3510. "sizeofimage" : "0x470000",
  3511. "timestamp" : "0xb608e565",
  3512. "il_offset" : "0x00000"
  3513. }
  3514. ,
  3515. {
  3516. "is_managed" : "false",
  3517. "native_address" : "0x159010d34",
  3518. "native_offset" : "0x00000"
  3519. }
  3520. ,
  3521. {
  3522. "is_managed" : "false",
  3523. "native_address" : "0x1591971f4",
  3524. "native_offset" : "0x00000"
  3525. }
  3526. ,
  3527. {
  3528. "is_managed" : "false",
  3529. "native_address" : "0x159198e1c",
  3530. "native_offset" : "0x00000"
  3531. }
  3532. ,
  3533. {
  3534. "is_managed" : "false",
  3535. "native_address" : "0x1591b9338",
  3536. "native_offset" : "0x00000"
  3537. }
  3538. ,
  3539. {
  3540. "is_managed" : "false",
  3541. "native_address" : "0x1591b90f0",
  3542. "native_offset" : "0x00000"
  3543. }
  3544. ,
  3545. {
  3546. "is_managed" : "false",
  3547. "native_address" : "0x159238cb8",
  3548. "native_offset" : "0x00000"
  3549. }
  3550. ,
  3551. {
  3552. "is_managed" : "false",
  3553. "native_address" : "0x159238c40",
  3554. "native_offset" : "0x00000"
  3555. }
  3556. ,
  3557. {
  3558. "is_managed" : "false",
  3559. "native_address" : "0x1845282e4",
  3560. "native_offset" : "0x00000"
  3561. }
  3562. ,
  3563. {
  3564. "is_managed" : "false",
  3565. "native_address" : "0x1845230fc",
  3566. "native_offset" : "0x00000"
  3567. }
  3568. ]
  3569. },
  3570. {
  3571. "is_managed" : true,
  3572. "offset_free_hash" : "0x15de3beb60",
  3573. "offset_rich_hash" : "0x15de3beee5",
  3574. "crashed" : false,
  3575. "native_thread_id" : "0x37c5c3000",
  3576. "thread_info_addr" : "0x14b80a800",
  3577. "thread_name" : "Burst-ProgressReporter",
  3578. "ctx" : {
  3579. "IP" : "0x1844ea6ec",
  3580. "SP" : "0x37c5c2090",
  3581. "BP" : "0x37c5c2120"
  3582. },
  3583. "managed_frames" : [
  3584. {
  3585. "is_managed" : "false",
  3586. "native_address" : "unregistered"
  3587. }
  3588. ,
  3589. {
  3590. "is_managed" : "true",
  3591. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3592. "token" : "0x00000",
  3593. "native_offset" : "0x0",
  3594. "filename" : "mscorlib.dll",
  3595. "sizeofimage" : "0x470000",
  3596. "timestamp" : "0xb608e565",
  3597. "il_offset" : "0xffffffff"
  3598. }
  3599. ,
  3600. {
  3601. "is_managed" : "true",
  3602. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3603. "token" : "0x6001f5d",
  3604. "native_offset" : "0x0",
  3605. "filename" : "mscorlib.dll",
  3606. "sizeofimage" : "0x470000",
  3607. "timestamp" : "0xb608e565",
  3608. "il_offset" : "0x0002f"
  3609. }
  3610. ,
  3611. {
  3612. "is_managed" : "true",
  3613. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3614. "token" : "0x6001f50",
  3615. "native_offset" : "0x0",
  3616. "filename" : "mscorlib.dll",
  3617. "sizeofimage" : "0x470000",
  3618. "timestamp" : "0xb608e565",
  3619. "il_offset" : "0x0000e"
  3620. }
  3621. ,
  3622. {
  3623. "is_managed" : "true",
  3624. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3625. "token" : "0x6001f52",
  3626. "native_offset" : "0x0",
  3627. "filename" : "mscorlib.dll",
  3628. "sizeofimage" : "0x470000",
  3629. "timestamp" : "0xb608e565",
  3630. "il_offset" : "0x00000"
  3631. }
  3632. ,
  3633. {
  3634. "is_managed" : "true",
  3635. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3636. "token" : "0x6001ea2",
  3637. "native_offset" : "0x0",
  3638. "filename" : "mscorlib.dll",
  3639. "sizeofimage" : "0x470000",
  3640. "timestamp" : "0xb608e565",
  3641. "il_offset" : "0x0001d"
  3642. }
  3643. ,
  3644. {
  3645. "is_managed" : "true",
  3646. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3647. "token" : "0x6001ea1",
  3648. "native_offset" : "0x0",
  3649. "filename" : "mscorlib.dll",
  3650. "sizeofimage" : "0x470000",
  3651. "timestamp" : "0xb608e565",
  3652. "il_offset" : "0x000d9"
  3653. }
  3654. ,
  3655. {
  3656. "is_managed" : "true",
  3657. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  3658. "token" : "0x60026b4",
  3659. "native_offset" : "0x0",
  3660. "filename" : "System.dll",
  3661. "sizeofimage" : "0x29a000",
  3662. "timestamp" : "0xe77c4867",
  3663. "il_offset" : "0x00067"
  3664. }
  3665. ,
  3666. {
  3667. "is_managed" : "true",
  3668. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  3669. "token" : "0x60026b3",
  3670. "native_offset" : "0x0",
  3671. "filename" : "System.dll",
  3672. "sizeofimage" : "0x29a000",
  3673. "timestamp" : "0xe77c4867",
  3674. "il_offset" : "0x00006"
  3675. }
  3676. ,
  3677. {
  3678. "is_managed" : "true",
  3679. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  3680. "token" : "0x60026af",
  3681. "native_offset" : "0x0",
  3682. "filename" : "System.dll",
  3683. "sizeofimage" : "0x29a000",
  3684. "timestamp" : "0xe77c4867",
  3685. "il_offset" : "0x00000"
  3686. }
  3687. ,
  3688. {
  3689. "is_managed" : "true",
  3690. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  3691. "token" : "0x6001185",
  3692. "native_offset" : "0x0",
  3693. "filename" : "Burst.Compiler.IL.dll",
  3694. "sizeofimage" : "0x1aa000",
  3695. "timestamp" : "0x804eb2a0",
  3696. "il_offset" : "0x000c9"
  3697. }
  3698. ,
  3699. {
  3700. "is_managed" : "true",
  3701. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3702. "token" : "0x6001f7d",
  3703. "native_offset" : "0x0",
  3704. "filename" : "mscorlib.dll",
  3705. "sizeofimage" : "0x470000",
  3706. "timestamp" : "0xb608e565",
  3707. "il_offset" : "0x00014"
  3708. }
  3709. ,
  3710. {
  3711. "is_managed" : "true",
  3712. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3713. "token" : "0x6001f25",
  3714. "native_offset" : "0x0",
  3715. "filename" : "mscorlib.dll",
  3716. "sizeofimage" : "0x470000",
  3717. "timestamp" : "0xb608e565",
  3718. "il_offset" : "0x00071"
  3719. }
  3720. ,
  3721. {
  3722. "is_managed" : "true",
  3723. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3724. "token" : "0x6001f23",
  3725. "native_offset" : "0x0",
  3726. "filename" : "mscorlib.dll",
  3727. "sizeofimage" : "0x470000",
  3728. "timestamp" : "0xb608e565",
  3729. "il_offset" : "0x00000"
  3730. }
  3731. ,
  3732. {
  3733. "is_managed" : "true",
  3734. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3735. "token" : "0x6001f22",
  3736. "native_offset" : "0x0",
  3737. "filename" : "mscorlib.dll",
  3738. "sizeofimage" : "0x470000",
  3739. "timestamp" : "0xb608e565",
  3740. "il_offset" : "0x0002b"
  3741. }
  3742. ,
  3743. {
  3744. "is_managed" : "true",
  3745. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3746. "token" : "0x6001f7f",
  3747. "native_offset" : "0x0",
  3748. "filename" : "mscorlib.dll",
  3749. "sizeofimage" : "0x470000",
  3750. "timestamp" : "0xb608e565",
  3751. "il_offset" : "0x00008"
  3752. }
  3753. ,
  3754. {
  3755. "is_managed" : "true",
  3756. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3757. "token" : "0x00000",
  3758. "native_offset" : "0x0",
  3759. "filename" : "mscorlib.dll",
  3760. "sizeofimage" : "0x470000",
  3761. "timestamp" : "0xb608e565",
  3762. "il_offset" : "0x00065"
  3763. }
  3764. ],
  3765. "unmanaged_frames" : [
  3766. {
  3767. "is_managed" : "false",
  3768. "native_address" : "0x159081180",
  3769. "native_offset" : "0x00000"
  3770. }
  3771. ,
  3772. {
  3773. "is_managed" : "false",
  3774. "native_address" : "0x1591b84d8",
  3775. "native_offset" : "0x00000"
  3776. }
  3777. ,
  3778. {
  3779. "is_managed" : "false",
  3780. "native_address" : "0x1591b8834",
  3781. "native_offset" : "0x00000"
  3782. }
  3783. ,
  3784. {
  3785. "is_managed" : "false",
  3786. "native_address" : "0x1591b85fc",
  3787. "native_offset" : "0x00000"
  3788. }
  3789. ,
  3790. {
  3791. "is_managed" : "false",
  3792. "native_address" : "0x1590c23b0",
  3793. "native_offset" : "0x00000"
  3794. }
  3795. ,
  3796. {
  3797. "is_managed" : "false",
  3798. "native_address" : "0x18455ee04",
  3799. "native_offset" : "0x00000"
  3800. }
  3801. ,
  3802. {
  3803. "is_managed" : "false",
  3804. "native_address" : "0x184528894",
  3805. "native_offset" : "0x00000"
  3806. }
  3807. ,
  3808. {
  3809. "is_managed" : "false",
  3810. "native_address" : "0x159207d54",
  3811. "native_offset" : "0x00000"
  3812. }
  3813. ,
  3814. {
  3815. "is_managed" : "false",
  3816. "native_address" : "0x1591c4208",
  3817. "native_offset" : "0x00000"
  3818. }
  3819. ,
  3820. {
  3821. "is_managed" : "false",
  3822. "native_address" : "0x1591c403c",
  3823. "native_offset" : "0x00000"
  3824. }
  3825. ,
  3826. {
  3827. "is_managed" : "false",
  3828. "native_address" : "0x1591f347c",
  3829. "native_offset" : "0x00000"
  3830. }
  3831. ,
  3832. {
  3833. "is_managed" : "false",
  3834. "native_address" : "0x15915c6d8",
  3835. "native_offset" : "0x00000"
  3836. }
  3837. ,
  3838. {
  3839. "is_managed" : "true",
  3840. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3841. "token" : "0x00000",
  3842. "native_offset" : "0x0",
  3843. "filename" : "mscorlib.dll",
  3844. "sizeofimage" : "0x470000",
  3845. "timestamp" : "0xb608e565",
  3846. "il_offset" : "0x00000"
  3847. }
  3848. ,
  3849. {
  3850. "is_managed" : "true",
  3851. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3852. "token" : "0x6001f5d",
  3853. "native_offset" : "0x0",
  3854. "filename" : "mscorlib.dll",
  3855. "sizeofimage" : "0x470000",
  3856. "timestamp" : "0xb608e565",
  3857. "il_offset" : "0x00000"
  3858. }
  3859. ,
  3860. {
  3861. "is_managed" : "true",
  3862. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3863. "token" : "0x6001f50",
  3864. "native_offset" : "0x0",
  3865. "filename" : "mscorlib.dll",
  3866. "sizeofimage" : "0x470000",
  3867. "timestamp" : "0xb608e565",
  3868. "il_offset" : "0x00000"
  3869. }
  3870. ,
  3871. {
  3872. "is_managed" : "true",
  3873. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3874. "token" : "0x6001f52",
  3875. "native_offset" : "0x0",
  3876. "filename" : "mscorlib.dll",
  3877. "sizeofimage" : "0x470000",
  3878. "timestamp" : "0xb608e565",
  3879. "il_offset" : "0x00000"
  3880. }
  3881. ,
  3882. {
  3883. "is_managed" : "true",
  3884. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3885. "token" : "0x6001ea2",
  3886. "native_offset" : "0x0",
  3887. "filename" : "mscorlib.dll",
  3888. "sizeofimage" : "0x470000",
  3889. "timestamp" : "0xb608e565",
  3890. "il_offset" : "0x00000"
  3891. }
  3892. ,
  3893. {
  3894. "is_managed" : "true",
  3895. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3896. "token" : "0x6001ea1",
  3897. "native_offset" : "0x0",
  3898. "filename" : "mscorlib.dll",
  3899. "sizeofimage" : "0x470000",
  3900. "timestamp" : "0xb608e565",
  3901. "il_offset" : "0x00000"
  3902. }
  3903. ,
  3904. {
  3905. "is_managed" : "true",
  3906. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  3907. "token" : "0x60026b4",
  3908. "native_offset" : "0x0",
  3909. "filename" : "System.dll",
  3910. "sizeofimage" : "0x29a000",
  3911. "timestamp" : "0xe77c4867",
  3912. "il_offset" : "0x00000"
  3913. }
  3914. ,
  3915. {
  3916. "is_managed" : "true",
  3917. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  3918. "token" : "0x60026b3",
  3919. "native_offset" : "0x0",
  3920. "filename" : "System.dll",
  3921. "sizeofimage" : "0x29a000",
  3922. "timestamp" : "0xe77c4867",
  3923. "il_offset" : "0x00000"
  3924. }
  3925. ,
  3926. {
  3927. "is_managed" : "true",
  3928. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  3929. "token" : "0x60026af",
  3930. "native_offset" : "0x0",
  3931. "filename" : "System.dll",
  3932. "sizeofimage" : "0x29a000",
  3933. "timestamp" : "0xe77c4867",
  3934. "il_offset" : "0x00000"
  3935. }
  3936. ,
  3937. {
  3938. "is_managed" : "true",
  3939. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  3940. "token" : "0x6001185",
  3941. "native_offset" : "0x0",
  3942. "filename" : "Burst.Compiler.IL.dll",
  3943. "sizeofimage" : "0x1aa000",
  3944. "timestamp" : "0x804eb2a0",
  3945. "il_offset" : "0x00000"
  3946. }
  3947. ,
  3948. {
  3949. "is_managed" : "true",
  3950. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3951. "token" : "0x6001f7d",
  3952. "native_offset" : "0x0",
  3953. "filename" : "mscorlib.dll",
  3954. "sizeofimage" : "0x470000",
  3955. "timestamp" : "0xb608e565",
  3956. "il_offset" : "0x00000"
  3957. }
  3958. ,
  3959. {
  3960. "is_managed" : "true",
  3961. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3962. "token" : "0x6001f25",
  3963. "native_offset" : "0x0",
  3964. "filename" : "mscorlib.dll",
  3965. "sizeofimage" : "0x470000",
  3966. "timestamp" : "0xb608e565",
  3967. "il_offset" : "0x00000"
  3968. }
  3969. ,
  3970. {
  3971. "is_managed" : "true",
  3972. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3973. "token" : "0x6001f23",
  3974. "native_offset" : "0x0",
  3975. "filename" : "mscorlib.dll",
  3976. "sizeofimage" : "0x470000",
  3977. "timestamp" : "0xb608e565",
  3978. "il_offset" : "0x00000"
  3979. }
  3980. ,
  3981. {
  3982. "is_managed" : "true",
  3983. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3984. "token" : "0x6001f22",
  3985. "native_offset" : "0x0",
  3986. "filename" : "mscorlib.dll",
  3987. "sizeofimage" : "0x470000",
  3988. "timestamp" : "0xb608e565",
  3989. "il_offset" : "0x00000"
  3990. }
  3991. ,
  3992. {
  3993. "is_managed" : "true",
  3994. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  3995. "token" : "0x6001f7f",
  3996. "native_offset" : "0x0",
  3997. "filename" : "mscorlib.dll",
  3998. "sizeofimage" : "0x470000",
  3999. "timestamp" : "0xb608e565",
  4000. "il_offset" : "0x00000"
  4001. }
  4002. ,
  4003. {
  4004. "is_managed" : "true",
  4005. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  4006. "token" : "0x00000",
  4007. "native_offset" : "0x0",
  4008. "filename" : "mscorlib.dll",
  4009. "sizeofimage" : "0x470000",
  4010. "timestamp" : "0xb608e565",
  4011. "il_offset" : "0x00000"
  4012. }
  4013. ,
  4014. {
  4015. "is_managed" : "false",
  4016. "native_address" : "0x159010d34",
  4017. "native_offset" : "0x00000"
  4018. }
  4019. ,
  4020. {
  4021. "is_managed" : "false",
  4022. "native_address" : "0x1591971f4",
  4023. "native_offset" : "0x00000"
  4024. }
  4025. ,
  4026. {
  4027. "is_managed" : "false",
  4028. "native_address" : "0x159198e1c",
  4029. "native_offset" : "0x00000"
  4030. }
  4031. ,
  4032. {
  4033. "is_managed" : "false",
  4034. "native_address" : "0x1591b9338",
  4035. "native_offset" : "0x00000"
  4036. }
  4037. ,
  4038. {
  4039. "is_managed" : "false",
  4040. "native_address" : "0x1591b90f0",
  4041. "native_offset" : "0x00000"
  4042. }
  4043. ,
  4044. {
  4045. "is_managed" : "false",
  4046. "native_address" : "0x159238cb8",
  4047. "native_offset" : "0x00000"
  4048. }
  4049. ,
  4050. {
  4051. "is_managed" : "false",
  4052. "native_address" : "0x159238c40",
  4053. "native_offset" : "0x00000"
  4054. }
  4055. ,
  4056. {
  4057. "is_managed" : "false",
  4058. "native_address" : "0x1845282e4",
  4059. "native_offset" : "0x00000"
  4060. }
  4061. ,
  4062. {
  4063. "is_managed" : "false",
  4064. "native_address" : "0x1845230fc",
  4065. "native_offset" : "0x00000"
  4066. }
  4067. ]
  4068. },
  4069. {
  4070. "is_managed" : true,
  4071. "offset_free_hash" : "0x188aff70a4",
  4072. "offset_rich_hash" : "0x188aff755c",
  4073. "crashed" : true,
  4074. "native_thread_id" : "0x1ede08240",
  4075. "thread_info_addr" : "0x15a1b0800",
  4076. "thread_name" : "tid_103",
  4077. "ctx" : {
  4078. "IP" : "0x102a97628",
  4079. "SP" : "0x16f40c870",
  4080. "BP" : "0x16f40c890"
  4081. },
  4082. "managed_frames" : [
  4083. {
  4084. "is_managed" : "false",
  4085. "native_address" : "unregistered"
  4086. }
  4087. ,
  4088. {
  4089. "is_managed" : "true",
  4090. "guid" : "AEBF4A71-00F6-4A18-8C45-14AA68F9A379",
  4091. "token" : "0x00000",
  4092. "native_offset" : "0x0",
  4093. "filename" : "UnityEditor.CoreModule.dll",
  4094. "sizeofimage" : "0x964000",
  4095. "timestamp" : "0xf97d72f8",
  4096. "il_offset" : "0xffffffff"
  4097. }
  4098. ,
  4099. {
  4100. "is_managed" : "true",
  4101. "guid" : "AEBF4A71-00F6-4A18-8C45-14AA68F9A379",
  4102. "token" : "0x6001b38",
  4103. "native_offset" : "0x0",
  4104. "filename" : "UnityEditor.CoreModule.dll",
  4105. "sizeofimage" : "0x964000",
  4106. "timestamp" : "0xf97d72f8",
  4107. "il_offset" : "0x001d2"
  4108. }
  4109. ,
  4110. {
  4111. "is_managed" : "true",
  4112. "guid" : "AEBF4A71-00F6-4A18-8C45-14AA68F9A379",
  4113. "token" : "0x6001b30",
  4114. "native_offset" : "0x0",
  4115. "filename" : "UnityEditor.CoreModule.dll",
  4116. "sizeofimage" : "0x964000",
  4117. "timestamp" : "0xf97d72f8",
  4118. "il_offset" : "0x00054"
  4119. }
  4120. ,
  4121. {
  4122. "is_managed" : "true",
  4123. "guid" : "6385A96E-9EDF-4715-9A7A-76B60898DAB5",
  4124. "token" : "0x600064a",
  4125. "native_offset" : "0x0",
  4126. "filename" : "System.Core.dll",
  4127. "sizeofimage" : "0x116000",
  4128. "timestamp" : "0xa24907da",
  4129. "il_offset" : "0x00029"
  4130. }
  4131. ,
  4132. {
  4133. "is_managed" : "true",
  4134. "guid" : "6385A96E-9EDF-4715-9A7A-76B60898DAB5",
  4135. "token" : "0x600084f",
  4136. "native_offset" : "0x0",
  4137. "filename" : "System.Core.dll",
  4138. "sizeofimage" : "0x116000",
  4139. "timestamp" : "0xa24907da",
  4140. "il_offset" : "0x00018"
  4141. }
  4142. ,
  4143. {
  4144. "is_managed" : "true",
  4145. "guid" : "6385A96E-9EDF-4715-9A7A-76B60898DAB5",
  4146. "token" : "0x60005f7",
  4147. "native_offset" : "0x0",
  4148. "filename" : "System.Core.dll",
  4149. "sizeofimage" : "0x116000",
  4150. "timestamp" : "0xa24907da",
  4151. "il_offset" : "0x0000b"
  4152. }
  4153. ,
  4154. {
  4155. "is_managed" : "true",
  4156. "guid" : "6385A96E-9EDF-4715-9A7A-76B60898DAB5",
  4157. "token" : "0x60005f8",
  4158. "native_offset" : "0x0",
  4159. "filename" : "System.Core.dll",
  4160. "sizeofimage" : "0x116000",
  4161. "timestamp" : "0xa24907da",
  4162. "il_offset" : "0x00000"
  4163. }
  4164. ,
  4165. {
  4166. "is_managed" : "true",
  4167. "guid" : "6385A96E-9EDF-4715-9A7A-76B60898DAB5",
  4168. "token" : "0x60005a7",
  4169. "native_offset" : "0x0",
  4170. "filename" : "System.Core.dll",
  4171. "sizeofimage" : "0x116000",
  4172. "timestamp" : "0xa24907da",
  4173. "il_offset" : "0x0001f"
  4174. }
  4175. ,
  4176. {
  4177. "is_managed" : "true",
  4178. "guid" : "AEBF4A71-00F6-4A18-8C45-14AA68F9A379",
  4179. "token" : "0x6001a2b",
  4180. "native_offset" : "0x0",
  4181. "filename" : "UnityEditor.CoreModule.dll",
  4182. "sizeofimage" : "0x964000",
  4183. "timestamp" : "0xf97d72f8",
  4184. "il_offset" : "0x00030"
  4185. }
  4186. ,
  4187. {
  4188. "is_managed" : "true",
  4189. "guid" : "AEBF4A71-00F6-4A18-8C45-14AA68F9A379",
  4190. "token" : "0x6001a2a",
  4191. "native_offset" : "0x0",
  4192. "filename" : "UnityEditor.CoreModule.dll",
  4193. "sizeofimage" : "0x964000",
  4194. "timestamp" : "0xf97d72f8",
  4195. "il_offset" : "0x00038"
  4196. }
  4197. ,
  4198. {
  4199. "is_managed" : "true",
  4200. "guid" : "AEBF4A71-00F6-4A18-8C45-14AA68F9A379",
  4201. "token" : "0x6001a29",
  4202. "native_offset" : "0x0",
  4203. "filename" : "UnityEditor.CoreModule.dll",
  4204. "sizeofimage" : "0x964000",
  4205. "timestamp" : "0xf97d72f8",
  4206. "il_offset" : "0x00001"
  4207. }
  4208. ,
  4209. {
  4210. "is_managed" : "true",
  4211. "guid" : "7B25F89D-A297-436B-AC7B-910A26A1B5AD",
  4212. "token" : "0x6000140",
  4213. "native_offset" : "0x0",
  4214. "filename" : "Google.VersionHandlerImpl.dll",
  4215. "sizeofimage" : "0x24000",
  4216. "timestamp" : "0x615e302b",
  4217. "il_offset" : "0x00085"
  4218. }
  4219. ,
  4220. {
  4221. "is_managed" : "true",
  4222. "guid" : "7B25F89D-A297-436B-AC7B-910A26A1B5AD",
  4223. "token" : "0x6000147",
  4224. "native_offset" : "0x0",
  4225. "filename" : "Google.VersionHandlerImpl.dll",
  4226. "sizeofimage" : "0x24000",
  4227. "timestamp" : "0x615e302b",
  4228. "il_offset" : "0x0000f"
  4229. }
  4230. ,
  4231. {
  4232. "is_managed" : "true",
  4233. "guid" : "7B25F89D-A297-436B-AC7B-910A26A1B5AD",
  4234. "token" : "0x6000146",
  4235. "native_offset" : "0x0",
  4236. "filename" : "Google.VersionHandlerImpl.dll",
  4237. "sizeofimage" : "0x24000",
  4238. "timestamp" : "0x615e302b",
  4239. "il_offset" : "0x00031"
  4240. }
  4241. ,
  4242. {
  4243. "is_managed" : "true",
  4244. "guid" : "7B25F89D-A297-436B-AC7B-910A26A1B5AD",
  4245. "token" : "0x6000207",
  4246. "native_offset" : "0x0",
  4247. "filename" : "Google.VersionHandlerImpl.dll",
  4248. "sizeofimage" : "0x24000",
  4249. "timestamp" : "0x615e302b",
  4250. "il_offset" : "0x00000"
  4251. }
  4252. ,
  4253. {
  4254. "is_managed" : "true",
  4255. "guid" : "7B25F89D-A297-436B-AC7B-910A26A1B5AD",
  4256. "token" : "0x60000fc",
  4257. "native_offset" : "0x0",
  4258. "filename" : "Google.VersionHandlerImpl.dll",
  4259. "sizeofimage" : "0x24000",
  4260. "timestamp" : "0x615e302b",
  4261. "il_offset" : "0x0003d"
  4262. }
  4263. ,
  4264. {
  4265. "is_managed" : "true",
  4266. "guid" : "7B25F89D-A297-436B-AC7B-910A26A1B5AD",
  4267. "token" : "0x6000101",
  4268. "native_offset" : "0x0",
  4269. "filename" : "Google.VersionHandlerImpl.dll",
  4270. "sizeofimage" : "0x24000",
  4271. "timestamp" : "0x615e302b",
  4272. "il_offset" : "0x0001c"
  4273. }
  4274. ,
  4275. {
  4276. "is_managed" : "true",
  4277. "guid" : "7B25F89D-A297-436B-AC7B-910A26A1B5AD",
  4278. "token" : "0x60000f6",
  4279. "native_offset" : "0x0",
  4280. "filename" : "Google.VersionHandlerImpl.dll",
  4281. "sizeofimage" : "0x24000",
  4282. "timestamp" : "0x615e302b",
  4283. "il_offset" : "0x00006"
  4284. }
  4285. ,
  4286. {
  4287. "is_managed" : "true",
  4288. "guid" : "7B25F89D-A297-436B-AC7B-910A26A1B5AD",
  4289. "token" : "0x60000ff",
  4290. "native_offset" : "0x0",
  4291. "filename" : "Google.VersionHandlerImpl.dll",
  4292. "sizeofimage" : "0x24000",
  4293. "timestamp" : "0x615e302b",
  4294. "il_offset" : "0x0003f"
  4295. }
  4296. ,
  4297. {
  4298. "is_managed" : "true",
  4299. "guid" : "7B25F89D-A297-436B-AC7B-910A26A1B5AD",
  4300. "token" : "0x60000fe",
  4301. "native_offset" : "0x0",
  4302. "filename" : "Google.VersionHandlerImpl.dll",
  4303. "sizeofimage" : "0x24000",
  4304. "timestamp" : "0x615e302b",
  4305. "il_offset" : "0x00000"
  4306. }
  4307. ,
  4308. {
  4309. "is_managed" : "true",
  4310. "guid" : "AEBF4A71-00F6-4A18-8C45-14AA68F9A379",
  4311. "token" : "0x600271e",
  4312. "native_offset" : "0x0",
  4313. "filename" : "UnityEditor.CoreModule.dll",
  4314. "sizeofimage" : "0x964000",
  4315. "timestamp" : "0xf97d72f8",
  4316. "il_offset" : "0x00032"
  4317. }
  4318. ,
  4319. {
  4320. "is_managed" : "true",
  4321. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  4322. "token" : "0x00000",
  4323. "native_offset" : "0x0",
  4324. "filename" : "mscorlib.dll",
  4325. "sizeofimage" : "0x470000",
  4326. "timestamp" : "0xb608e565",
  4327. "il_offset" : "0x0002a"
  4328. }
  4329. ],
  4330. "unmanaged_frames" : [
  4331. {
  4332. "is_managed" : "false",
  4333. "native_address" : "0x159081180",
  4334. "native_offset" : "0x00000"
  4335. }
  4336. ,
  4337. {
  4338. "is_managed" : "false",
  4339. "native_address" : "0x1591b84d8",
  4340. "native_offset" : "0x00000"
  4341. }
  4342. ,
  4343. {
  4344. "is_managed" : "false",
  4345. "native_address" : "0x1591b8834",
  4346. "native_offset" : "0x00000"
  4347. }
  4348. ,
  4349. {
  4350. "is_managed" : "false",
  4351. "native_address" : "0x1591b8e24",
  4352. "native_offset" : "0x00000"
  4353. }
  4354. ,
  4355. {
  4356. "is_managed" : "false",
  4357. "native_address" : "0x1590c31fc",
  4358. "native_offset" : "0x00000"
  4359. }
  4360. ,
  4361. {
  4362. "is_managed" : "false",
  4363. "native_address" : "0x159085318",
  4364. "native_offset" : "0x00000"
  4365. }
  4366. ,
  4367. {
  4368. "is_managed" : "false",
  4369. "native_address" : "0x15900da74",
  4370. "native_offset" : "0x00000"
  4371. }
  4372. ,
  4373. {
  4374. "is_managed" : "false",
  4375. "native_address" : "0x18455ee04",
  4376. "native_offset" : "0x00000"
  4377. }
  4378. ,
  4379. {
  4380. "is_managed" : "false",
  4381. "native_address" : "0x102a97628",
  4382. "native_offset" : "0x00000"
  4383. }
  4384. ,
  4385. {
  4386. "is_managed" : "false",
  4387. "native_address" : "0x102a4d934",
  4388. "native_offset" : "0x00000"
  4389. }
  4390. ,
  4391. {
  4392. "is_managed" : "false",
  4393. "native_address" : "0x1026f9714",
  4394. "native_offset" : "0x00000"
  4395. }
  4396. ,
  4397. {
  4398. "is_managed" : "false",
  4399. "native_address" : "0x1026f9cb4",
  4400. "native_offset" : "0x00000"
  4401. }
  4402. ,
  4403. {
  4404. "is_managed" : "false",
  4405. "native_address" : "0x100dcccc4",
  4406. "native_offset" : "0x00000"
  4407. }
  4408. ,
  4409. {
  4410. "is_managed" : "true",
  4411. "guid" : "AEBF4A71-00F6-4A18-8C45-14AA68F9A379",
  4412. "token" : "0x00000",
  4413. "native_offset" : "0x0",
  4414. "filename" : "UnityEditor.CoreModule.dll",
  4415. "sizeofimage" : "0x964000",
  4416. "timestamp" : "0xf97d72f8",
  4417. "il_offset" : "0x00000"
  4418. }
  4419. ,
  4420. {
  4421. "is_managed" : "true",
  4422. "guid" : "AEBF4A71-00F6-4A18-8C45-14AA68F9A379",
  4423. "token" : "0x6001b38",
  4424. "native_offset" : "0x0",
  4425. "filename" : "UnityEditor.CoreModule.dll",
  4426. "sizeofimage" : "0x964000",
  4427. "timestamp" : "0xf97d72f8",
  4428. "il_offset" : "0x00000"
  4429. }
  4430. ,
  4431. {
  4432. "is_managed" : "true",
  4433. "guid" : "AEBF4A71-00F6-4A18-8C45-14AA68F9A379",
  4434. "token" : "0x6001b30",
  4435. "native_offset" : "0x0",
  4436. "filename" : "UnityEditor.CoreModule.dll",
  4437. "sizeofimage" : "0x964000",
  4438. "timestamp" : "0xf97d72f8",
  4439. "il_offset" : "0x00000"
  4440. }
  4441. ,
  4442. {
  4443. "is_managed" : "true",
  4444. "guid" : "6385A96E-9EDF-4715-9A7A-76B60898DAB5",
  4445. "token" : "0x600064a",
  4446. "native_offset" : "0x0",
  4447. "filename" : "System.Core.dll",
  4448. "sizeofimage" : "0x116000",
  4449. "timestamp" : "0xa24907da",
  4450. "il_offset" : "0x00000"
  4451. }
  4452. ,
  4453. {
  4454. "is_managed" : "true",
  4455. "guid" : "6385A96E-9EDF-4715-9A7A-76B60898DAB5",
  4456. "token" : "0x600084f",
  4457. "native_offset" : "0x0",
  4458. "filename" : "System.Core.dll",
  4459. "sizeofimage" : "0x116000",
  4460. "timestamp" : "0xa24907da",
  4461. "il_offset" : "0x00000"
  4462. }
  4463. ,
  4464. {
  4465. "is_managed" : "true",
  4466. "guid" : "6385A96E-9EDF-4715-9A7A-76B60898DAB5",
  4467. "token" : "0x60005f7",
  4468. "native_offset" : "0x0",
  4469. "filename" : "System.Core.dll",
  4470. "sizeofimage" : "0x116000",
  4471. "timestamp" : "0xa24907da",
  4472. "il_offset" : "0x00000"
  4473. }
  4474. ,
  4475. {
  4476. "is_managed" : "true",
  4477. "guid" : "6385A96E-9EDF-4715-9A7A-76B60898DAB5",
  4478. "token" : "0x60005f8",
  4479. "native_offset" : "0x0",
  4480. "filename" : "System.Core.dll",
  4481. "sizeofimage" : "0x116000",
  4482. "timestamp" : "0xa24907da",
  4483. "il_offset" : "0x00000"
  4484. }
  4485. ,
  4486. {
  4487. "is_managed" : "true",
  4488. "guid" : "6385A96E-9EDF-4715-9A7A-76B60898DAB5",
  4489. "token" : "0x60005a7",
  4490. "native_offset" : "0x0",
  4491. "filename" : "System.Core.dll",
  4492. "sizeofimage" : "0x116000",
  4493. "timestamp" : "0xa24907da",
  4494. "il_offset" : "0x00000"
  4495. }
  4496. ,
  4497. {
  4498. "is_managed" : "true",
  4499. "guid" : "AEBF4A71-00F6-4A18-8C45-14AA68F9A379",
  4500. "token" : "0x6001a2b",
  4501. "native_offset" : "0x0",
  4502. "filename" : "UnityEditor.CoreModule.dll",
  4503. "sizeofimage" : "0x964000",
  4504. "timestamp" : "0xf97d72f8",
  4505. "il_offset" : "0x00000"
  4506. }
  4507. ,
  4508. {
  4509. "is_managed" : "true",
  4510. "guid" : "AEBF4A71-00F6-4A18-8C45-14AA68F9A379",
  4511. "token" : "0x6001a2a",
  4512. "native_offset" : "0x0",
  4513. "filename" : "UnityEditor.CoreModule.dll",
  4514. "sizeofimage" : "0x964000",
  4515. "timestamp" : "0xf97d72f8",
  4516. "il_offset" : "0x00000"
  4517. }
  4518. ,
  4519. {
  4520. "is_managed" : "true",
  4521. "guid" : "AEBF4A71-00F6-4A18-8C45-14AA68F9A379",
  4522. "token" : "0x6001a29",
  4523. "native_offset" : "0x0",
  4524. "filename" : "UnityEditor.CoreModule.dll",
  4525. "sizeofimage" : "0x964000",
  4526. "timestamp" : "0xf97d72f8",
  4527. "il_offset" : "0x00000"
  4528. }
  4529. ,
  4530. {
  4531. "is_managed" : "true",
  4532. "guid" : "7B25F89D-A297-436B-AC7B-910A26A1B5AD",
  4533. "token" : "0x6000140",
  4534. "native_offset" : "0x0",
  4535. "filename" : "Google.VersionHandlerImpl.dll",
  4536. "sizeofimage" : "0x24000",
  4537. "timestamp" : "0x615e302b",
  4538. "il_offset" : "0x00000"
  4539. }
  4540. ,
  4541. {
  4542. "is_managed" : "true",
  4543. "guid" : "7B25F89D-A297-436B-AC7B-910A26A1B5AD",
  4544. "token" : "0x6000147",
  4545. "native_offset" : "0x0",
  4546. "filename" : "Google.VersionHandlerImpl.dll",
  4547. "sizeofimage" : "0x24000",
  4548. "timestamp" : "0x615e302b",
  4549. "il_offset" : "0x00000"
  4550. }
  4551. ,
  4552. {
  4553. "is_managed" : "true",
  4554. "guid" : "7B25F89D-A297-436B-AC7B-910A26A1B5AD",
  4555. "token" : "0x6000146",
  4556. "native_offset" : "0x0",
  4557. "filename" : "Google.VersionHandlerImpl.dll",
  4558. "sizeofimage" : "0x24000",
  4559. "timestamp" : "0x615e302b",
  4560. "il_offset" : "0x00000"
  4561. }
  4562. ,
  4563. {
  4564. "is_managed" : "true",
  4565. "guid" : "7B25F89D-A297-436B-AC7B-910A26A1B5AD",
  4566. "token" : "0x6000207",
  4567. "native_offset" : "0x0",
  4568. "filename" : "Google.VersionHandlerImpl.dll",
  4569. "sizeofimage" : "0x24000",
  4570. "timestamp" : "0x615e302b",
  4571. "il_offset" : "0x00000"
  4572. }
  4573. ,
  4574. {
  4575. "is_managed" : "true",
  4576. "guid" : "7B25F89D-A297-436B-AC7B-910A26A1B5AD",
  4577. "token" : "0x60000fc",
  4578. "native_offset" : "0x0",
  4579. "filename" : "Google.VersionHandlerImpl.dll",
  4580. "sizeofimage" : "0x24000",
  4581. "timestamp" : "0x615e302b",
  4582. "il_offset" : "0x00000"
  4583. }
  4584. ,
  4585. {
  4586. "is_managed" : "true",
  4587. "guid" : "7B25F89D-A297-436B-AC7B-910A26A1B5AD",
  4588. "token" : "0x6000101",
  4589. "native_offset" : "0x0",
  4590. "filename" : "Google.VersionHandlerImpl.dll",
  4591. "sizeofimage" : "0x24000",
  4592. "timestamp" : "0x615e302b",
  4593. "il_offset" : "0x00000"
  4594. }
  4595. ,
  4596. {
  4597. "is_managed" : "true",
  4598. "guid" : "7B25F89D-A297-436B-AC7B-910A26A1B5AD",
  4599. "token" : "0x60000f6",
  4600. "native_offset" : "0x0",
  4601. "filename" : "Google.VersionHandlerImpl.dll",
  4602. "sizeofimage" : "0x24000",
  4603. "timestamp" : "0x615e302b",
  4604. "il_offset" : "0x00000"
  4605. }
  4606. ,
  4607. {
  4608. "is_managed" : "true",
  4609. "guid" : "7B25F89D-A297-436B-AC7B-910A26A1B5AD",
  4610. "token" : "0x60000ff",
  4611. "native_offset" : "0x0",
  4612. "filename" : "Google.VersionHandlerImpl.dll",
  4613. "sizeofimage" : "0x24000",
  4614. "timestamp" : "0x615e302b",
  4615. "il_offset" : "0x00000"
  4616. }
  4617. ,
  4618. {
  4619. "is_managed" : "true",
  4620. "guid" : "7B25F89D-A297-436B-AC7B-910A26A1B5AD",
  4621. "token" : "0x60000fe",
  4622. "native_offset" : "0x0",
  4623. "filename" : "Google.VersionHandlerImpl.dll",
  4624. "sizeofimage" : "0x24000",
  4625. "timestamp" : "0x615e302b",
  4626. "il_offset" : "0x00000"
  4627. }
  4628. ,
  4629. {
  4630. "is_managed" : "true",
  4631. "guid" : "AEBF4A71-00F6-4A18-8C45-14AA68F9A379",
  4632. "token" : "0x600271e",
  4633. "native_offset" : "0x0",
  4634. "filename" : "UnityEditor.CoreModule.dll",
  4635. "sizeofimage" : "0x964000",
  4636. "timestamp" : "0xf97d72f8",
  4637. "il_offset" : "0x00000"
  4638. }
  4639. ,
  4640. {
  4641. "is_managed" : "true",
  4642. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  4643. "token" : "0x00000",
  4644. "native_offset" : "0x0",
  4645. "filename" : "mscorlib.dll",
  4646. "sizeofimage" : "0x470000",
  4647. "timestamp" : "0xb608e565",
  4648. "il_offset" : "0x00000"
  4649. }
  4650. ,
  4651. {
  4652. "is_managed" : "false",
  4653. "native_address" : "0x159010d34",
  4654. "native_offset" : "0x00000"
  4655. }
  4656. ,
  4657. {
  4658. "is_managed" : "false",
  4659. "native_address" : "0x1591971f4",
  4660. "native_offset" : "0x00000"
  4661. }
  4662. ,
  4663. {
  4664. "is_managed" : "false",
  4665. "native_address" : "0x159197114",
  4666. "native_offset" : "0x00000"
  4667. }
  4668. ,
  4669. {
  4670. "is_managed" : "false",
  4671. "native_address" : "0x101724964",
  4672. "native_offset" : "0x00000"
  4673. }
  4674. ,
  4675. {
  4676. "is_managed" : "false",
  4677. "native_address" : "0x1016ff2d8",
  4678. "native_offset" : "0x00000"
  4679. }
  4680. ,
  4681. {
  4682. "is_managed" : "false",
  4683. "native_address" : "0x101833d54",
  4684. "native_offset" : "0x00000"
  4685. }
  4686. ,
  4687. {
  4688. "is_managed" : "false",
  4689. "native_address" : "0x10218a970",
  4690. "native_offset" : "0x00000"
  4691. }
  4692. ,
  4693. {
  4694. "is_managed" : "false",
  4695. "native_address" : "0x1022cf848",
  4696. "native_offset" : "0x00000"
  4697. }
  4698. ,
  4699. {
  4700. "is_managed" : "false",
  4701. "native_address" : "0x1035802fc",
  4702. "native_offset" : "0x00000"
  4703. }
  4704. ,
  4705. {
  4706. "is_managed" : "false",
  4707. "native_address" : "0x1858190ec",
  4708. "native_offset" : "0x00000"
  4709. }
  4710. ,
  4711. {
  4712. "is_managed" : "false",
  4713. "native_address" : "0x18462a384",
  4714. "native_offset" : "0x00000"
  4715. }
  4716. ,
  4717. {
  4718. "is_managed" : "false",
  4719. "native_address" : "0x18462a028",
  4720. "native_offset" : "0x00000"
  4721. }
  4722. ,
  4723. {
  4724. "is_managed" : "false",
  4725. "native_address" : "0x184629b38",
  4726. "native_offset" : "0x00000"
  4727. }
  4728. ,
  4729. {
  4730. "is_managed" : "false",
  4731. "native_address" : "0x18460f520",
  4732. "native_offset" : "0x00000"
  4733. }
  4734. ,
  4735. {
  4736. "is_managed" : "false",
  4737. "native_address" : "0x18460e724",
  4738. "native_offset" : "0x00000"
  4739. }
  4740. ,
  4741. {
  4742. "is_managed" : "false",
  4743. "native_address" : "0x18fb66530",
  4744. "native_offset" : "0x00000"
  4745. }
  4746. ,
  4747. {
  4748. "is_managed" : "false",
  4749. "native_address" : "0x18fb6c348",
  4750. "native_offset" : "0x00000"
  4751. }
  4752. ,
  4753. {
  4754. "is_managed" : "false",
  4755. "native_address" : "0x18fb6c508",
  4756. "native_offset" : "0x00000"
  4757. }
  4758. ,
  4759. {
  4760. "is_managed" : "false",
  4761. "native_address" : "0x188179034",
  4762. "native_offset" : "0x00000"
  4763. }
  4764. ,
  4765. {
  4766. "is_managed" : "false",
  4767. "native_address" : "0x188add2d4",
  4768. "native_offset" : "0x00000"
  4769. }
  4770. ,
  4771. {
  4772. "is_managed" : "false",
  4773. "native_address" : "0x18816c060",
  4774. "native_offset" : "0x00000"
  4775. }
  4776. ,
  4777. {
  4778. "is_managed" : "false",
  4779. "native_address" : "0x188142854",
  4780. "native_offset" : "0x00000"
  4781. }
  4782. ,
  4783. {
  4784. "is_managed" : "false",
  4785. "native_address" : "0x103597878",
  4786. "native_offset" : "0x00000"
  4787. }
  4788. ,
  4789. {
  4790. "is_managed" : "false",
  4791. "native_address" : "0x103597ba4",
  4792. "native_offset" : "0x00000"
  4793. }
  4794. ,
  4795. {
  4796. "is_managed" : "false",
  4797. "native_address" : "0x1841a8274",
  4798. "native_offset" : "0x00000"
  4799. }
  4800. ]
  4801. },
  4802. {
  4803. "is_managed" : false,
  4804. "offset_free_hash" : "0x0",
  4805. "offset_rich_hash" : "0x0",
  4806. "crashed" : false,
  4807. "native_thread_id" : "0x43badb000",
  4808. "thread_info_addr" : "0x15c0fae00",
  4809. "thread_name" : "Thread Pool Worker",
  4810. "ctx" : {
  4811. "IP" : "0x1844e6ee8",
  4812. "SP" : "0x43badadb0",
  4813. "BP" : "0x43badae50"
  4814. },
  4815. "unmanaged_frames" : [
  4816. {
  4817. "is_managed" : "false",
  4818. "native_address" : "0x159081180",
  4819. "native_offset" : "0x00000"
  4820. }
  4821. ,
  4822. {
  4823. "is_managed" : "false",
  4824. "native_address" : "0x1591b84d8",
  4825. "native_offset" : "0x00000"
  4826. }
  4827. ,
  4828. {
  4829. "is_managed" : "false",
  4830. "native_address" : "0x1591b8834",
  4831. "native_offset" : "0x00000"
  4832. }
  4833. ,
  4834. {
  4835. "is_managed" : "false",
  4836. "native_address" : "0x1591b85fc",
  4837. "native_offset" : "0x00000"
  4838. }
  4839. ,
  4840. {
  4841. "is_managed" : "false",
  4842. "native_address" : "0x1590c23b0",
  4843. "native_offset" : "0x00000"
  4844. }
  4845. ,
  4846. {
  4847. "is_managed" : "false",
  4848. "native_address" : "0x18455ee04",
  4849. "native_offset" : "0x00000"
  4850. }
  4851. ,
  4852. {
  4853. "is_managed" : "false",
  4854. "native_address" : "0x159111168",
  4855. "native_offset" : "0x00000"
  4856. }
  4857. ,
  4858. {
  4859. "is_managed" : "false",
  4860. "native_address" : "0x1591b9244",
  4861. "native_offset" : "0x00000"
  4862. }
  4863. ,
  4864. {
  4865. "is_managed" : "false",
  4866. "native_address" : "0x1591b90f0",
  4867. "native_offset" : "0x00000"
  4868. }
  4869. ,
  4870. {
  4871. "is_managed" : "false",
  4872. "native_address" : "0x159238cb8",
  4873. "native_offset" : "0x00000"
  4874. }
  4875. ,
  4876. {
  4877. "is_managed" : "false",
  4878. "native_address" : "0x159238c40",
  4879. "native_offset" : "0x00000"
  4880. }
  4881. ,
  4882. {
  4883. "is_managed" : "false",
  4884. "native_address" : "0x1845282e4",
  4885. "native_offset" : "0x00000"
  4886. }
  4887. ,
  4888. {
  4889. "is_managed" : "false",
  4890. "native_address" : "0x1845230fc",
  4891. "native_offset" : "0x00000"
  4892. }
  4893. ]
  4894. },
  4895. {
  4896. "is_managed" : false,
  4897. "offset_free_hash" : "0x0",
  4898. "offset_rich_hash" : "0x0",
  4899. "crashed" : false,
  4900. "native_thread_id" : "0x43c9af000",
  4901. "thread_info_addr" : "0x372ae3000",
  4902. "thread_name" : "Thread Pool Worker",
  4903. "ctx" : {
  4904. "IP" : "0x1844e6ee8",
  4905. "SP" : "0x43c9aedb0",
  4906. "BP" : "0x43c9aee50"
  4907. },
  4908. "unmanaged_frames" : [
  4909. {
  4910. "is_managed" : "false",
  4911. "native_address" : "0x159081180",
  4912. "native_offset" : "0x00000"
  4913. }
  4914. ,
  4915. {
  4916. "is_managed" : "false",
  4917. "native_address" : "0x1591b84d8",
  4918. "native_offset" : "0x00000"
  4919. }
  4920. ,
  4921. {
  4922. "is_managed" : "false",
  4923. "native_address" : "0x1591b8834",
  4924. "native_offset" : "0x00000"
  4925. }
  4926. ,
  4927. {
  4928. "is_managed" : "false",
  4929. "native_address" : "0x1591b85fc",
  4930. "native_offset" : "0x00000"
  4931. }
  4932. ,
  4933. {
  4934. "is_managed" : "false",
  4935. "native_address" : "0x1590c23b0",
  4936. "native_offset" : "0x00000"
  4937. }
  4938. ,
  4939. {
  4940. "is_managed" : "false",
  4941. "native_address" : "0x18455ee04",
  4942. "native_offset" : "0x00000"
  4943. }
  4944. ,
  4945. {
  4946. "is_managed" : "false",
  4947. "native_address" : "0x159111168",
  4948. "native_offset" : "0x00000"
  4949. }
  4950. ,
  4951. {
  4952. "is_managed" : "false",
  4953. "native_address" : "0x1591b9244",
  4954. "native_offset" : "0x00000"
  4955. }
  4956. ,
  4957. {
  4958. "is_managed" : "false",
  4959. "native_address" : "0x1591b90f0",
  4960. "native_offset" : "0x00000"
  4961. }
  4962. ,
  4963. {
  4964. "is_managed" : "false",
  4965. "native_address" : "0x159238cb8",
  4966. "native_offset" : "0x00000"
  4967. }
  4968. ,
  4969. {
  4970. "is_managed" : "false",
  4971. "native_address" : "0x159238c40",
  4972. "native_offset" : "0x00000"
  4973. }
  4974. ,
  4975. {
  4976. "is_managed" : "false",
  4977. "native_address" : "0x1845282e4",
  4978. "native_offset" : "0x00000"
  4979. }
  4980. ,
  4981. {
  4982. "is_managed" : "false",
  4983. "native_address" : "0x1845230fc",
  4984. "native_offset" : "0x00000"
  4985. }
  4986. ]
  4987. },
  4988. {
  4989. "is_managed" : false,
  4990. "offset_free_hash" : "0x0",
  4991. "offset_rich_hash" : "0x0",
  4992. "crashed" : false,
  4993. "native_thread_id" : "0x359737000",
  4994. "thread_info_addr" : "0x15b0ad800",
  4995. "thread_name" : "Debugger agent",
  4996. "ctx" : {
  4997. "IP" : "0x1844ef804",
  4998. "SP" : "0x359736aa0",
  4999. "BP" : "0x359736ae0"
  5000. },
  5001. "unmanaged_frames" : [
  5002. {
  5003. "is_managed" : "false",
  5004. "native_address" : "0x159081180",
  5005. "native_offset" : "0x00000"
  5006. }
  5007. ,
  5008. {
  5009. "is_managed" : "false",
  5010. "native_address" : "0x1591b84d8",
  5011. "native_offset" : "0x00000"
  5012. }
  5013. ,
  5014. {
  5015. "is_managed" : "false",
  5016. "native_address" : "0x1591b8834",
  5017. "native_offset" : "0x00000"
  5018. }
  5019. ,
  5020. {
  5021. "is_managed" : "false",
  5022. "native_address" : "0x1591b85fc",
  5023. "native_offset" : "0x00000"
  5024. }
  5025. ,
  5026. {
  5027. "is_managed" : "false",
  5028. "native_address" : "0x1590c23b0",
  5029. "native_offset" : "0x00000"
  5030. }
  5031. ,
  5032. {
  5033. "is_managed" : "false",
  5034. "native_address" : "0x18455ee04",
  5035. "native_offset" : "0x00000"
  5036. }
  5037. ,
  5038. {
  5039. "is_managed" : "false",
  5040. "native_address" : "0x1590f1540",
  5041. "native_offset" : "0x00000"
  5042. }
  5043. ,
  5044. {
  5045. "is_managed" : "false",
  5046. "native_address" : "0x1590e813c",
  5047. "native_offset" : "0x00000"
  5048. }
  5049. ,
  5050. {
  5051. "is_managed" : "false",
  5052. "native_address" : "0x1591b9244",
  5053. "native_offset" : "0x00000"
  5054. }
  5055. ,
  5056. {
  5057. "is_managed" : "false",
  5058. "native_address" : "0x1591b90f0",
  5059. "native_offset" : "0x00000"
  5060. }
  5061. ,
  5062. {
  5063. "is_managed" : "false",
  5064. "native_address" : "0x159238cb8",
  5065. "native_offset" : "0x00000"
  5066. }
  5067. ,
  5068. {
  5069. "is_managed" : "false",
  5070. "native_address" : "0x159238c40",
  5071. "native_offset" : "0x00000"
  5072. }
  5073. ,
  5074. {
  5075. "is_managed" : "false",
  5076. "native_address" : "0x1845282e4",
  5077. "native_offset" : "0x00000"
  5078. }
  5079. ,
  5080. {
  5081. "is_managed" : "false",
  5082. "native_address" : "0x1845230fc",
  5083. "native_offset" : "0x00000"
  5084. }
  5085. ]
  5086. },
  5087. {
  5088. "is_managed" : false,
  5089. "offset_free_hash" : "0x0",
  5090. "offset_rich_hash" : "0x0",
  5091. "crashed" : false,
  5092. "native_thread_id" : "0x417d6b000",
  5093. "thread_info_addr" : "0x15a872200",
  5094. "thread_name" : "Thread Pool Worker",
  5095. "ctx" : {
  5096. "IP" : "0x1844e6ee8",
  5097. "SP" : "0x417d6adb0",
  5098. "BP" : "0x417d6ae50"
  5099. },
  5100. "unmanaged_frames" : [
  5101. {
  5102. "is_managed" : "false",
  5103. "native_address" : "0x159081180",
  5104. "native_offset" : "0x00000"
  5105. }
  5106. ,
  5107. {
  5108. "is_managed" : "false",
  5109. "native_address" : "0x1591b84d8",
  5110. "native_offset" : "0x00000"
  5111. }
  5112. ,
  5113. {
  5114. "is_managed" : "false",
  5115. "native_address" : "0x1591b8834",
  5116. "native_offset" : "0x00000"
  5117. }
  5118. ,
  5119. {
  5120. "is_managed" : "false",
  5121. "native_address" : "0x1591b85fc",
  5122. "native_offset" : "0x00000"
  5123. }
  5124. ,
  5125. {
  5126. "is_managed" : "false",
  5127. "native_address" : "0x1590c23b0",
  5128. "native_offset" : "0x00000"
  5129. }
  5130. ,
  5131. {
  5132. "is_managed" : "false",
  5133. "native_address" : "0x18455ee04",
  5134. "native_offset" : "0x00000"
  5135. }
  5136. ,
  5137. {
  5138. "is_managed" : "false",
  5139. "native_address" : "0x159111168",
  5140. "native_offset" : "0x00000"
  5141. }
  5142. ,
  5143. {
  5144. "is_managed" : "false",
  5145. "native_address" : "0x1591b9244",
  5146. "native_offset" : "0x00000"
  5147. }
  5148. ,
  5149. {
  5150. "is_managed" : "false",
  5151. "native_address" : "0x1591b90f0",
  5152. "native_offset" : "0x00000"
  5153. }
  5154. ,
  5155. {
  5156. "is_managed" : "false",
  5157. "native_address" : "0x159238cb8",
  5158. "native_offset" : "0x00000"
  5159. }
  5160. ,
  5161. {
  5162. "is_managed" : "false",
  5163. "native_address" : "0x159238c40",
  5164. "native_offset" : "0x00000"
  5165. }
  5166. ,
  5167. {
  5168. "is_managed" : "false",
  5169. "native_address" : "0x1845282e4",
  5170. "native_offset" : "0x00000"
  5171. }
  5172. ,
  5173. {
  5174. "is_managed" : "false",
  5175. "native_address" : "0x1845230fc",
  5176. "native_offset" : "0x00000"
  5177. }
  5178. ]
  5179. },
  5180. {
  5181. "is_managed" : false,
  5182. "offset_free_hash" : "0x0",
  5183. "offset_rich_hash" : "0x0",
  5184. "crashed" : false,
  5185. "native_thread_id" : "0x17ff9f000",
  5186. "thread_info_addr" : "0x15b30e200",
  5187. "thread_name" : "tid_14c07",
  5188. "ctx" : {
  5189. "IP" : "0x1844e6ed0",
  5190. "SP" : "0x17ff9ece0",
  5191. "BP" : "0x17ff9ecf0"
  5192. },
  5193. "unmanaged_frames" : [
  5194. {
  5195. "is_managed" : "false",
  5196. "native_address" : "0x159081180",
  5197. "native_offset" : "0x00000"
  5198. }
  5199. ,
  5200. {
  5201. "is_managed" : "false",
  5202. "native_address" : "0x1591b84d8",
  5203. "native_offset" : "0x00000"
  5204. }
  5205. ,
  5206. {
  5207. "is_managed" : "false",
  5208. "native_address" : "0x1591b8834",
  5209. "native_offset" : "0x00000"
  5210. }
  5211. ,
  5212. {
  5213. "is_managed" : "false",
  5214. "native_address" : "0x1591b85fc",
  5215. "native_offset" : "0x00000"
  5216. }
  5217. ,
  5218. {
  5219. "is_managed" : "false",
  5220. "native_address" : "0x1590c23b0",
  5221. "native_offset" : "0x00000"
  5222. }
  5223. ,
  5224. {
  5225. "is_managed" : "false",
  5226. "native_address" : "0x18455ee04",
  5227. "native_offset" : "0x00000"
  5228. }
  5229. ,
  5230. {
  5231. "is_managed" : "false",
  5232. "native_address" : "0x184375b50",
  5233. "native_offset" : "0x00000"
  5234. }
  5235. ,
  5236. {
  5237. "is_managed" : "false",
  5238. "native_address" : "0x184376204",
  5239. "native_offset" : "0x00000"
  5240. }
  5241. ,
  5242. {
  5243. "is_managed" : "false",
  5244. "native_address" : "0x103643f88",
  5245. "native_offset" : "0x00000"
  5246. }
  5247. ,
  5248. {
  5249. "is_managed" : "false",
  5250. "native_address" : "0x1012dda10",
  5251. "native_offset" : "0x00000"
  5252. }
  5253. ,
  5254. {
  5255. "is_managed" : "false",
  5256. "native_address" : "0x1012dead4",
  5257. "native_offset" : "0x00000"
  5258. }
  5259. ,
  5260. {
  5261. "is_managed" : "false",
  5262. "native_address" : "0x10154e288",
  5263. "native_offset" : "0x00000"
  5264. }
  5265. ,
  5266. {
  5267. "is_managed" : "false",
  5268. "native_address" : "0x1845282e4",
  5269. "native_offset" : "0x00000"
  5270. }
  5271. ,
  5272. {
  5273. "is_managed" : "false",
  5274. "native_address" : "0x1845230fc",
  5275. "native_offset" : "0x00000"
  5276. }
  5277. ]
  5278. },
  5279. {
  5280. "is_managed" : false,
  5281. "offset_free_hash" : "0x0",
  5282. "offset_rich_hash" : "0x0",
  5283. "crashed" : false,
  5284. "native_thread_id" : "0x43c34b000",
  5285. "thread_info_addr" : "0x15c6a4000",
  5286. "thread_name" : "Thread Pool Worker",
  5287. "ctx" : {
  5288. "IP" : "0x1844e6ee8",
  5289. "SP" : "0x43c34adb0",
  5290. "BP" : "0x43c34ae50"
  5291. },
  5292. "unmanaged_frames" : [
  5293. {
  5294. "is_managed" : "false",
  5295. "native_address" : "0x159081180",
  5296. "native_offset" : "0x00000"
  5297. }
  5298. ,
  5299. {
  5300. "is_managed" : "false",
  5301. "native_address" : "0x1591b84d8",
  5302. "native_offset" : "0x00000"
  5303. }
  5304. ,
  5305. {
  5306. "is_managed" : "false",
  5307. "native_address" : "0x1591b8834",
  5308. "native_offset" : "0x00000"
  5309. }
  5310. ,
  5311. {
  5312. "is_managed" : "false",
  5313. "native_address" : "0x1591b85fc",
  5314. "native_offset" : "0x00000"
  5315. }
  5316. ,
  5317. {
  5318. "is_managed" : "false",
  5319. "native_address" : "0x1590c23b0",
  5320. "native_offset" : "0x00000"
  5321. }
  5322. ,
  5323. {
  5324. "is_managed" : "false",
  5325. "native_address" : "0x18455ee04",
  5326. "native_offset" : "0x00000"
  5327. }
  5328. ,
  5329. {
  5330. "is_managed" : "false",
  5331. "native_address" : "0x159111168",
  5332. "native_offset" : "0x00000"
  5333. }
  5334. ,
  5335. {
  5336. "is_managed" : "false",
  5337. "native_address" : "0x1591b9244",
  5338. "native_offset" : "0x00000"
  5339. }
  5340. ,
  5341. {
  5342. "is_managed" : "false",
  5343. "native_address" : "0x1591b90f0",
  5344. "native_offset" : "0x00000"
  5345. }
  5346. ,
  5347. {
  5348. "is_managed" : "false",
  5349. "native_address" : "0x159238cb8",
  5350. "native_offset" : "0x00000"
  5351. }
  5352. ,
  5353. {
  5354. "is_managed" : "false",
  5355. "native_address" : "0x159238c40",
  5356. "native_offset" : "0x00000"
  5357. }
  5358. ,
  5359. {
  5360. "is_managed" : "false",
  5361. "native_address" : "0x1845282e4",
  5362. "native_offset" : "0x00000"
  5363. }
  5364. ,
  5365. {
  5366. "is_managed" : "false",
  5367. "native_address" : "0x1845230fc",
  5368. "native_offset" : "0x00000"
  5369. }
  5370. ]
  5371. },
  5372. {
  5373. "is_managed" : true,
  5374. "offset_free_hash" : "0x1491dfc51e",
  5375. "offset_rich_hash" : "0x1491dfc8e0",
  5376. "crashed" : false,
  5377. "native_thread_id" : "0x37bb87000",
  5378. "thread_info_addr" : "0x37a482c00",
  5379. "thread_name" : "Burst-CompilerThread-3",
  5380. "ctx" : {
  5381. "IP" : "0x1844ea6ec",
  5382. "SP" : "0x37bb85ad0",
  5383. "BP" : "0x37bb85b60"
  5384. },
  5385. "managed_frames" : [
  5386. {
  5387. "is_managed" : "false",
  5388. "native_address" : "unregistered"
  5389. }
  5390. ,
  5391. {
  5392. "is_managed" : "true",
  5393. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5394. "token" : "0x00000",
  5395. "native_offset" : "0x0",
  5396. "filename" : "mscorlib.dll",
  5397. "sizeofimage" : "0x470000",
  5398. "timestamp" : "0xb608e565",
  5399. "il_offset" : "0xffffffff"
  5400. }
  5401. ,
  5402. {
  5403. "is_managed" : "true",
  5404. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5405. "token" : "0x60020b3",
  5406. "native_offset" : "0x0",
  5407. "filename" : "mscorlib.dll",
  5408. "sizeofimage" : "0x470000",
  5409. "timestamp" : "0xb608e565",
  5410. "il_offset" : "0x000c7"
  5411. }
  5412. ,
  5413. {
  5414. "is_managed" : "true",
  5415. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5416. "token" : "0x60020a5",
  5417. "native_offset" : "0x0",
  5418. "filename" : "mscorlib.dll",
  5419. "sizeofimage" : "0x470000",
  5420. "timestamp" : "0xb608e565",
  5421. "il_offset" : "0x000a1"
  5422. }
  5423. ,
  5424. {
  5425. "is_managed" : "true",
  5426. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5427. "token" : "0x60020a9",
  5428. "native_offset" : "0x0",
  5429. "filename" : "mscorlib.dll",
  5430. "sizeofimage" : "0x470000",
  5431. "timestamp" : "0xb608e565",
  5432. "il_offset" : "0x00000"
  5433. }
  5434. ,
  5435. {
  5436. "is_managed" : "true",
  5437. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  5438. "token" : "0x60026c6",
  5439. "native_offset" : "0x0",
  5440. "filename" : "System.dll",
  5441. "sizeofimage" : "0x29a000",
  5442. "timestamp" : "0xe77c4867",
  5443. "il_offset" : "0x0006e"
  5444. }
  5445. ,
  5446. {
  5447. "is_managed" : "true",
  5448. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  5449. "token" : "0x60026c5",
  5450. "native_offset" : "0x0",
  5451. "filename" : "System.dll",
  5452. "sizeofimage" : "0x29a000",
  5453. "timestamp" : "0xe77c4867",
  5454. "il_offset" : "0x0003c"
  5455. }
  5456. ,
  5457. {
  5458. "is_managed" : "true",
  5459. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  5460. "token" : "0x60026c0",
  5461. "native_offset" : "0x0",
  5462. "filename" : "System.dll",
  5463. "sizeofimage" : "0x29a000",
  5464. "timestamp" : "0xe77c4867",
  5465. "il_offset" : "0x00000"
  5466. }
  5467. ,
  5468. {
  5469. "is_managed" : "true",
  5470. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  5471. "token" : "0x6000b92",
  5472. "native_offset" : "0x0",
  5473. "filename" : "Burst.Compiler.IL.dll",
  5474. "sizeofimage" : "0x1aa000",
  5475. "timestamp" : "0x804eb2a0",
  5476. "il_offset" : "0x00024"
  5477. }
  5478. ,
  5479. {
  5480. "is_managed" : "true",
  5481. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  5482. "token" : "0x6000be4",
  5483. "native_offset" : "0x0",
  5484. "filename" : "Burst.Compiler.IL.dll",
  5485. "sizeofimage" : "0x1aa000",
  5486. "timestamp" : "0x804eb2a0",
  5487. "il_offset" : "0x00070"
  5488. }
  5489. ,
  5490. {
  5491. "is_managed" : "true",
  5492. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5493. "token" : "0x6001f7d",
  5494. "native_offset" : "0x0",
  5495. "filename" : "mscorlib.dll",
  5496. "sizeofimage" : "0x470000",
  5497. "timestamp" : "0xb608e565",
  5498. "il_offset" : "0x00014"
  5499. }
  5500. ,
  5501. {
  5502. "is_managed" : "true",
  5503. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5504. "token" : "0x6001f25",
  5505. "native_offset" : "0x0",
  5506. "filename" : "mscorlib.dll",
  5507. "sizeofimage" : "0x470000",
  5508. "timestamp" : "0xb608e565",
  5509. "il_offset" : "0x00071"
  5510. }
  5511. ,
  5512. {
  5513. "is_managed" : "true",
  5514. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5515. "token" : "0x6001f23",
  5516. "native_offset" : "0x0",
  5517. "filename" : "mscorlib.dll",
  5518. "sizeofimage" : "0x470000",
  5519. "timestamp" : "0xb608e565",
  5520. "il_offset" : "0x00000"
  5521. }
  5522. ,
  5523. {
  5524. "is_managed" : "true",
  5525. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5526. "token" : "0x6001f22",
  5527. "native_offset" : "0x0",
  5528. "filename" : "mscorlib.dll",
  5529. "sizeofimage" : "0x470000",
  5530. "timestamp" : "0xb608e565",
  5531. "il_offset" : "0x0002b"
  5532. }
  5533. ,
  5534. {
  5535. "is_managed" : "true",
  5536. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5537. "token" : "0x6001f7f",
  5538. "native_offset" : "0x0",
  5539. "filename" : "mscorlib.dll",
  5540. "sizeofimage" : "0x470000",
  5541. "timestamp" : "0xb608e565",
  5542. "il_offset" : "0x00008"
  5543. }
  5544. ,
  5545. {
  5546. "is_managed" : "true",
  5547. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5548. "token" : "0x00000",
  5549. "native_offset" : "0x0",
  5550. "filename" : "mscorlib.dll",
  5551. "sizeofimage" : "0x470000",
  5552. "timestamp" : "0xb608e565",
  5553. "il_offset" : "0x00065"
  5554. }
  5555. ],
  5556. "unmanaged_frames" : [
  5557. {
  5558. "is_managed" : "false",
  5559. "native_address" : "0x159081180",
  5560. "native_offset" : "0x00000"
  5561. }
  5562. ,
  5563. {
  5564. "is_managed" : "false",
  5565. "native_address" : "0x1591b84d8",
  5566. "native_offset" : "0x00000"
  5567. }
  5568. ,
  5569. {
  5570. "is_managed" : "false",
  5571. "native_address" : "0x1591b8834",
  5572. "native_offset" : "0x00000"
  5573. }
  5574. ,
  5575. {
  5576. "is_managed" : "false",
  5577. "native_address" : "0x1591b85fc",
  5578. "native_offset" : "0x00000"
  5579. }
  5580. ,
  5581. {
  5582. "is_managed" : "false",
  5583. "native_address" : "0x1590c23b0",
  5584. "native_offset" : "0x00000"
  5585. }
  5586. ,
  5587. {
  5588. "is_managed" : "false",
  5589. "native_address" : "0x18455ee04",
  5590. "native_offset" : "0x00000"
  5591. }
  5592. ,
  5593. {
  5594. "is_managed" : "false",
  5595. "native_address" : "0x184528894",
  5596. "native_offset" : "0x00000"
  5597. }
  5598. ,
  5599. {
  5600. "is_managed" : "false",
  5601. "native_address" : "0x159207d54",
  5602. "native_offset" : "0x00000"
  5603. }
  5604. ,
  5605. {
  5606. "is_managed" : "false",
  5607. "native_address" : "0x1591c4ad0",
  5608. "native_offset" : "0x00000"
  5609. }
  5610. ,
  5611. {
  5612. "is_managed" : "false",
  5613. "native_address" : "0x1591c4748",
  5614. "native_offset" : "0x00000"
  5615. }
  5616. ,
  5617. {
  5618. "is_managed" : "false",
  5619. "native_address" : "0x1591b36a8",
  5620. "native_offset" : "0x00000"
  5621. }
  5622. ,
  5623. {
  5624. "is_managed" : "false",
  5625. "native_address" : "0x15915ddd4",
  5626. "native_offset" : "0x00000"
  5627. }
  5628. ,
  5629. {
  5630. "is_managed" : "true",
  5631. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5632. "token" : "0x00000",
  5633. "native_offset" : "0x0",
  5634. "filename" : "mscorlib.dll",
  5635. "sizeofimage" : "0x470000",
  5636. "timestamp" : "0xb608e565",
  5637. "il_offset" : "0x00000"
  5638. }
  5639. ,
  5640. {
  5641. "is_managed" : "true",
  5642. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5643. "token" : "0x60020b3",
  5644. "native_offset" : "0x0",
  5645. "filename" : "mscorlib.dll",
  5646. "sizeofimage" : "0x470000",
  5647. "timestamp" : "0xb608e565",
  5648. "il_offset" : "0x00000"
  5649. }
  5650. ,
  5651. {
  5652. "is_managed" : "true",
  5653. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5654. "token" : "0x60020a5",
  5655. "native_offset" : "0x0",
  5656. "filename" : "mscorlib.dll",
  5657. "sizeofimage" : "0x470000",
  5658. "timestamp" : "0xb608e565",
  5659. "il_offset" : "0x00000"
  5660. }
  5661. ,
  5662. {
  5663. "is_managed" : "true",
  5664. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5665. "token" : "0x60020a9",
  5666. "native_offset" : "0x0",
  5667. "filename" : "mscorlib.dll",
  5668. "sizeofimage" : "0x470000",
  5669. "timestamp" : "0xb608e565",
  5670. "il_offset" : "0x00000"
  5671. }
  5672. ,
  5673. {
  5674. "is_managed" : "true",
  5675. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  5676. "token" : "0x60026c6",
  5677. "native_offset" : "0x0",
  5678. "filename" : "System.dll",
  5679. "sizeofimage" : "0x29a000",
  5680. "timestamp" : "0xe77c4867",
  5681. "il_offset" : "0x00000"
  5682. }
  5683. ,
  5684. {
  5685. "is_managed" : "true",
  5686. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  5687. "token" : "0x60026c5",
  5688. "native_offset" : "0x0",
  5689. "filename" : "System.dll",
  5690. "sizeofimage" : "0x29a000",
  5691. "timestamp" : "0xe77c4867",
  5692. "il_offset" : "0x00000"
  5693. }
  5694. ,
  5695. {
  5696. "is_managed" : "true",
  5697. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  5698. "token" : "0x60026c0",
  5699. "native_offset" : "0x0",
  5700. "filename" : "System.dll",
  5701. "sizeofimage" : "0x29a000",
  5702. "timestamp" : "0xe77c4867",
  5703. "il_offset" : "0x00000"
  5704. }
  5705. ,
  5706. {
  5707. "is_managed" : "true",
  5708. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  5709. "token" : "0x6000b92",
  5710. "native_offset" : "0x0",
  5711. "filename" : "Burst.Compiler.IL.dll",
  5712. "sizeofimage" : "0x1aa000",
  5713. "timestamp" : "0x804eb2a0",
  5714. "il_offset" : "0x00000"
  5715. }
  5716. ,
  5717. {
  5718. "is_managed" : "true",
  5719. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  5720. "token" : "0x6000be4",
  5721. "native_offset" : "0x0",
  5722. "filename" : "Burst.Compiler.IL.dll",
  5723. "sizeofimage" : "0x1aa000",
  5724. "timestamp" : "0x804eb2a0",
  5725. "il_offset" : "0x00000"
  5726. }
  5727. ,
  5728. {
  5729. "is_managed" : "true",
  5730. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5731. "token" : "0x6001f7d",
  5732. "native_offset" : "0x0",
  5733. "filename" : "mscorlib.dll",
  5734. "sizeofimage" : "0x470000",
  5735. "timestamp" : "0xb608e565",
  5736. "il_offset" : "0x00000"
  5737. }
  5738. ,
  5739. {
  5740. "is_managed" : "true",
  5741. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5742. "token" : "0x6001f25",
  5743. "native_offset" : "0x0",
  5744. "filename" : "mscorlib.dll",
  5745. "sizeofimage" : "0x470000",
  5746. "timestamp" : "0xb608e565",
  5747. "il_offset" : "0x00000"
  5748. }
  5749. ,
  5750. {
  5751. "is_managed" : "true",
  5752. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5753. "token" : "0x6001f23",
  5754. "native_offset" : "0x0",
  5755. "filename" : "mscorlib.dll",
  5756. "sizeofimage" : "0x470000",
  5757. "timestamp" : "0xb608e565",
  5758. "il_offset" : "0x00000"
  5759. }
  5760. ,
  5761. {
  5762. "is_managed" : "true",
  5763. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5764. "token" : "0x6001f22",
  5765. "native_offset" : "0x0",
  5766. "filename" : "mscorlib.dll",
  5767. "sizeofimage" : "0x470000",
  5768. "timestamp" : "0xb608e565",
  5769. "il_offset" : "0x00000"
  5770. }
  5771. ,
  5772. {
  5773. "is_managed" : "true",
  5774. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5775. "token" : "0x6001f7f",
  5776. "native_offset" : "0x0",
  5777. "filename" : "mscorlib.dll",
  5778. "sizeofimage" : "0x470000",
  5779. "timestamp" : "0xb608e565",
  5780. "il_offset" : "0x00000"
  5781. }
  5782. ,
  5783. {
  5784. "is_managed" : "true",
  5785. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5786. "token" : "0x00000",
  5787. "native_offset" : "0x0",
  5788. "filename" : "mscorlib.dll",
  5789. "sizeofimage" : "0x470000",
  5790. "timestamp" : "0xb608e565",
  5791. "il_offset" : "0x00000"
  5792. }
  5793. ,
  5794. {
  5795. "is_managed" : "false",
  5796. "native_address" : "0x159010d34",
  5797. "native_offset" : "0x00000"
  5798. }
  5799. ,
  5800. {
  5801. "is_managed" : "false",
  5802. "native_address" : "0x1591971f4",
  5803. "native_offset" : "0x00000"
  5804. }
  5805. ,
  5806. {
  5807. "is_managed" : "false",
  5808. "native_address" : "0x159198e1c",
  5809. "native_offset" : "0x00000"
  5810. }
  5811. ,
  5812. {
  5813. "is_managed" : "false",
  5814. "native_address" : "0x1591b9338",
  5815. "native_offset" : "0x00000"
  5816. }
  5817. ,
  5818. {
  5819. "is_managed" : "false",
  5820. "native_address" : "0x1591b90f0",
  5821. "native_offset" : "0x00000"
  5822. }
  5823. ,
  5824. {
  5825. "is_managed" : "false",
  5826. "native_address" : "0x159238cb8",
  5827. "native_offset" : "0x00000"
  5828. }
  5829. ,
  5830. {
  5831. "is_managed" : "false",
  5832. "native_address" : "0x159238c40",
  5833. "native_offset" : "0x00000"
  5834. }
  5835. ,
  5836. {
  5837. "is_managed" : "false",
  5838. "native_address" : "0x1845282e4",
  5839. "native_offset" : "0x00000"
  5840. }
  5841. ,
  5842. {
  5843. "is_managed" : "false",
  5844. "native_address" : "0x1845230fc",
  5845. "native_offset" : "0x00000"
  5846. }
  5847. ]
  5848. },
  5849. {
  5850. "is_managed" : true,
  5851. "offset_free_hash" : "0x1491dfc51e",
  5852. "offset_rich_hash" : "0x1491dfc8e0",
  5853. "crashed" : false,
  5854. "native_thread_id" : "0x37bf9f000",
  5855. "thread_info_addr" : "0x15b697c00",
  5856. "thread_name" : "Burst-CompilerThread-5",
  5857. "ctx" : {
  5858. "IP" : "0x1844ea6ec",
  5859. "SP" : "0x37bf9dad0",
  5860. "BP" : "0x37bf9db60"
  5861. },
  5862. "managed_frames" : [
  5863. {
  5864. "is_managed" : "false",
  5865. "native_address" : "unregistered"
  5866. }
  5867. ,
  5868. {
  5869. "is_managed" : "true",
  5870. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5871. "token" : "0x00000",
  5872. "native_offset" : "0x0",
  5873. "filename" : "mscorlib.dll",
  5874. "sizeofimage" : "0x470000",
  5875. "timestamp" : "0xb608e565",
  5876. "il_offset" : "0xffffffff"
  5877. }
  5878. ,
  5879. {
  5880. "is_managed" : "true",
  5881. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5882. "token" : "0x60020b3",
  5883. "native_offset" : "0x0",
  5884. "filename" : "mscorlib.dll",
  5885. "sizeofimage" : "0x470000",
  5886. "timestamp" : "0xb608e565",
  5887. "il_offset" : "0x000c7"
  5888. }
  5889. ,
  5890. {
  5891. "is_managed" : "true",
  5892. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5893. "token" : "0x60020a5",
  5894. "native_offset" : "0x0",
  5895. "filename" : "mscorlib.dll",
  5896. "sizeofimage" : "0x470000",
  5897. "timestamp" : "0xb608e565",
  5898. "il_offset" : "0x000a1"
  5899. }
  5900. ,
  5901. {
  5902. "is_managed" : "true",
  5903. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5904. "token" : "0x60020a9",
  5905. "native_offset" : "0x0",
  5906. "filename" : "mscorlib.dll",
  5907. "sizeofimage" : "0x470000",
  5908. "timestamp" : "0xb608e565",
  5909. "il_offset" : "0x00000"
  5910. }
  5911. ,
  5912. {
  5913. "is_managed" : "true",
  5914. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  5915. "token" : "0x60026c6",
  5916. "native_offset" : "0x0",
  5917. "filename" : "System.dll",
  5918. "sizeofimage" : "0x29a000",
  5919. "timestamp" : "0xe77c4867",
  5920. "il_offset" : "0x0006e"
  5921. }
  5922. ,
  5923. {
  5924. "is_managed" : "true",
  5925. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  5926. "token" : "0x60026c5",
  5927. "native_offset" : "0x0",
  5928. "filename" : "System.dll",
  5929. "sizeofimage" : "0x29a000",
  5930. "timestamp" : "0xe77c4867",
  5931. "il_offset" : "0x0003c"
  5932. }
  5933. ,
  5934. {
  5935. "is_managed" : "true",
  5936. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  5937. "token" : "0x60026c0",
  5938. "native_offset" : "0x0",
  5939. "filename" : "System.dll",
  5940. "sizeofimage" : "0x29a000",
  5941. "timestamp" : "0xe77c4867",
  5942. "il_offset" : "0x00000"
  5943. }
  5944. ,
  5945. {
  5946. "is_managed" : "true",
  5947. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  5948. "token" : "0x6000b92",
  5949. "native_offset" : "0x0",
  5950. "filename" : "Burst.Compiler.IL.dll",
  5951. "sizeofimage" : "0x1aa000",
  5952. "timestamp" : "0x804eb2a0",
  5953. "il_offset" : "0x00024"
  5954. }
  5955. ,
  5956. {
  5957. "is_managed" : "true",
  5958. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  5959. "token" : "0x6000be4",
  5960. "native_offset" : "0x0",
  5961. "filename" : "Burst.Compiler.IL.dll",
  5962. "sizeofimage" : "0x1aa000",
  5963. "timestamp" : "0x804eb2a0",
  5964. "il_offset" : "0x00070"
  5965. }
  5966. ,
  5967. {
  5968. "is_managed" : "true",
  5969. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5970. "token" : "0x6001f7d",
  5971. "native_offset" : "0x0",
  5972. "filename" : "mscorlib.dll",
  5973. "sizeofimage" : "0x470000",
  5974. "timestamp" : "0xb608e565",
  5975. "il_offset" : "0x00014"
  5976. }
  5977. ,
  5978. {
  5979. "is_managed" : "true",
  5980. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5981. "token" : "0x6001f25",
  5982. "native_offset" : "0x0",
  5983. "filename" : "mscorlib.dll",
  5984. "sizeofimage" : "0x470000",
  5985. "timestamp" : "0xb608e565",
  5986. "il_offset" : "0x00071"
  5987. }
  5988. ,
  5989. {
  5990. "is_managed" : "true",
  5991. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  5992. "token" : "0x6001f23",
  5993. "native_offset" : "0x0",
  5994. "filename" : "mscorlib.dll",
  5995. "sizeofimage" : "0x470000",
  5996. "timestamp" : "0xb608e565",
  5997. "il_offset" : "0x00000"
  5998. }
  5999. ,
  6000. {
  6001. "is_managed" : "true",
  6002. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  6003. "token" : "0x6001f22",
  6004. "native_offset" : "0x0",
  6005. "filename" : "mscorlib.dll",
  6006. "sizeofimage" : "0x470000",
  6007. "timestamp" : "0xb608e565",
  6008. "il_offset" : "0x0002b"
  6009. }
  6010. ,
  6011. {
  6012. "is_managed" : "true",
  6013. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  6014. "token" : "0x6001f7f",
  6015. "native_offset" : "0x0",
  6016. "filename" : "mscorlib.dll",
  6017. "sizeofimage" : "0x470000",
  6018. "timestamp" : "0xb608e565",
  6019. "il_offset" : "0x00008"
  6020. }
  6021. ,
  6022. {
  6023. "is_managed" : "true",
  6024. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  6025. "token" : "0x00000",
  6026. "native_offset" : "0x0",
  6027. "filename" : "mscorlib.dll",
  6028. "sizeofimage" : "0x470000",
  6029. "timestamp" : "0xb608e565",
  6030. "il_offset" : "0x00065"
  6031. }
  6032. ],
  6033. "unmanaged_frames" : [
  6034. {
  6035. "is_managed" : "false",
  6036. "native_address" : "0x159081180",
  6037. "native_offset" : "0x00000"
  6038. }
  6039. ,
  6040. {
  6041. "is_managed" : "false",
  6042. "native_address" : "0x1591b84d8",
  6043. "native_offset" : "0x00000"
  6044. }
  6045. ,
  6046. {
  6047. "is_managed" : "false",
  6048. "native_address" : "0x1591b8834",
  6049. "native_offset" : "0x00000"
  6050. }
  6051. ,
  6052. {
  6053. "is_managed" : "false",
  6054. "native_address" : "0x1591b85fc",
  6055. "native_offset" : "0x00000"
  6056. }
  6057. ,
  6058. {
  6059. "is_managed" : "false",
  6060. "native_address" : "0x1590c23b0",
  6061. "native_offset" : "0x00000"
  6062. }
  6063. ,
  6064. {
  6065. "is_managed" : "false",
  6066. "native_address" : "0x18455ee04",
  6067. "native_offset" : "0x00000"
  6068. }
  6069. ,
  6070. {
  6071. "is_managed" : "false",
  6072. "native_address" : "0x184528894",
  6073. "native_offset" : "0x00000"
  6074. }
  6075. ,
  6076. {
  6077. "is_managed" : "false",
  6078. "native_address" : "0x159207d54",
  6079. "native_offset" : "0x00000"
  6080. }
  6081. ,
  6082. {
  6083. "is_managed" : "false",
  6084. "native_address" : "0x1591c4ad0",
  6085. "native_offset" : "0x00000"
  6086. }
  6087. ,
  6088. {
  6089. "is_managed" : "false",
  6090. "native_address" : "0x1591c4748",
  6091. "native_offset" : "0x00000"
  6092. }
  6093. ,
  6094. {
  6095. "is_managed" : "false",
  6096. "native_address" : "0x1591b36a8",
  6097. "native_offset" : "0x00000"
  6098. }
  6099. ,
  6100. {
  6101. "is_managed" : "false",
  6102. "native_address" : "0x15915ddd4",
  6103. "native_offset" : "0x00000"
  6104. }
  6105. ,
  6106. {
  6107. "is_managed" : "true",
  6108. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  6109. "token" : "0x00000",
  6110. "native_offset" : "0x0",
  6111. "filename" : "mscorlib.dll",
  6112. "sizeofimage" : "0x470000",
  6113. "timestamp" : "0xb608e565",
  6114. "il_offset" : "0x00000"
  6115. }
  6116. ,
  6117. {
  6118. "is_managed" : "true",
  6119. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  6120. "token" : "0x60020b3",
  6121. "native_offset" : "0x0",
  6122. "filename" : "mscorlib.dll",
  6123. "sizeofimage" : "0x470000",
  6124. "timestamp" : "0xb608e565",
  6125. "il_offset" : "0x00000"
  6126. }
  6127. ,
  6128. {
  6129. "is_managed" : "true",
  6130. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  6131. "token" : "0x60020a5",
  6132. "native_offset" : "0x0",
  6133. "filename" : "mscorlib.dll",
  6134. "sizeofimage" : "0x470000",
  6135. "timestamp" : "0xb608e565",
  6136. "il_offset" : "0x00000"
  6137. }
  6138. ,
  6139. {
  6140. "is_managed" : "true",
  6141. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  6142. "token" : "0x60020a9",
  6143. "native_offset" : "0x0",
  6144. "filename" : "mscorlib.dll",
  6145. "sizeofimage" : "0x470000",
  6146. "timestamp" : "0xb608e565",
  6147. "il_offset" : "0x00000"
  6148. }
  6149. ,
  6150. {
  6151. "is_managed" : "true",
  6152. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  6153. "token" : "0x60026c6",
  6154. "native_offset" : "0x0",
  6155. "filename" : "System.dll",
  6156. "sizeofimage" : "0x29a000",
  6157. "timestamp" : "0xe77c4867",
  6158. "il_offset" : "0x00000"
  6159. }
  6160. ,
  6161. {
  6162. "is_managed" : "true",
  6163. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  6164. "token" : "0x60026c5",
  6165. "native_offset" : "0x0",
  6166. "filename" : "System.dll",
  6167. "sizeofimage" : "0x29a000",
  6168. "timestamp" : "0xe77c4867",
  6169. "il_offset" : "0x00000"
  6170. }
  6171. ,
  6172. {
  6173. "is_managed" : "true",
  6174. "guid" : "F07A79F5-352B-4387-9F99-3550F449F7D7",
  6175. "token" : "0x60026c0",
  6176. "native_offset" : "0x0",
  6177. "filename" : "System.dll",
  6178. "sizeofimage" : "0x29a000",
  6179. "timestamp" : "0xe77c4867",
  6180. "il_offset" : "0x00000"
  6181. }
  6182. ,
  6183. {
  6184. "is_managed" : "true",
  6185. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  6186. "token" : "0x6000b92",
  6187. "native_offset" : "0x0",
  6188. "filename" : "Burst.Compiler.IL.dll",
  6189. "sizeofimage" : "0x1aa000",
  6190. "timestamp" : "0x804eb2a0",
  6191. "il_offset" : "0x00000"
  6192. }
  6193. ,
  6194. {
  6195. "is_managed" : "true",
  6196. "guid" : "69B504CF-34C5-4D68-8310-E60F1CE29D2E",
  6197. "token" : "0x6000be4",
  6198. "native_offset" : "0x0",
  6199. "filename" : "Burst.Compiler.IL.dll",
  6200. "sizeofimage" : "0x1aa000",
  6201. "timestamp" : "0x804eb2a0",
  6202. "il_offset" : "0x00000"
  6203. }
  6204. ,
  6205. {
  6206. "is_managed" : "true",
  6207. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  6208. "token" : "0x6001f7d",
  6209. "native_offset" : "0x0",
  6210. "filename" : "mscorlib.dll",
  6211. "sizeofimage" : "0x470000",
  6212. "timestamp" : "0xb608e565",
  6213. "il_offset" : "0x00000"
  6214. }
  6215. ,
  6216. {
  6217. "is_managed" : "true",
  6218. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  6219. "token" : "0x6001f25",
  6220. "native_offset" : "0x0",
  6221. "filename" : "mscorlib.dll",
  6222. "sizeofimage" : "0x470000",
  6223. "timestamp" : "0xb608e565",
  6224. "il_offset" : "0x00000"
  6225. }
  6226. ,
  6227. {
  6228. "is_managed" : "true",
  6229. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  6230. "token" : "0x6001f23",
  6231. "native_offset" : "0x0",
  6232. "filename" : "mscorlib.dll",
  6233. "sizeofimage" : "0x470000",
  6234. "timestamp" : "0xb608e565",
  6235. "il_offset" : "0x00000"
  6236. }
  6237. ,
  6238. {
  6239. "is_managed" : "true",
  6240. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  6241. "token" : "0x6001f22",
  6242. "native_offset" : "0x0",
  6243. "filename" : "mscorlib.dll",
  6244. "sizeofimage" : "0x470000",
  6245. "timestamp" : "0xb608e565",
  6246. "il_offset" : "0x00000"
  6247. }
  6248. ,
  6249. {
  6250. "is_managed" : "true",
  6251. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  6252. "token" : "0x6001f7f",
  6253. "native_offset" : "0x0",
  6254. "filename" : "mscorlib.dll",
  6255. "sizeofimage" : "0x470000",
  6256. "timestamp" : "0xb608e565",
  6257. "il_offset" : "0x00000"
  6258. }
  6259. ,
  6260. {
  6261. "is_managed" : "true",
  6262. "guid" : "E575A82E-3DAA-4DF1-94B6-599D56EB1A8E",
  6263. "token" : "0x00000",
  6264. "native_offset" : "0x0",
  6265. "filename" : "mscorlib.dll",
  6266. "sizeofimage" : "0x470000",
  6267. "timestamp" : "0xb608e565",
  6268. "il_offset" : "0x00000"
  6269. }
  6270. ,
  6271. {
  6272. "is_managed" : "false",
  6273. "native_address" : "0x159010d34",
  6274. "native_offset" : "0x00000"
  6275. }
  6276. ,
  6277. {
  6278. "is_managed" : "false",
  6279. "native_address" : "0x1591971f4",
  6280. "native_offset" : "0x00000"
  6281. }
  6282. ,
  6283. {
  6284. "is_managed" : "false",
  6285. "native_address" : "0x159198e1c",
  6286. "native_offset" : "0x00000"
  6287. }
  6288. ,
  6289. {
  6290. "is_managed" : "false",
  6291. "native_address" : "0x1591b9338",
  6292. "native_offset" : "0x00000"
  6293. }
  6294. ,
  6295. {
  6296. "is_managed" : "false",
  6297. "native_address" : "0x1591b90f0",
  6298. "native_offset" : "0x00000"
  6299. }
  6300. ,
  6301. {
  6302. "is_managed" : "false",
  6303. "native_address" : "0x159238cb8",
  6304. "native_offset" : "0x00000"
  6305. }
  6306. ,
  6307. {
  6308. "is_managed" : "false",
  6309. "native_address" : "0x159238c40",
  6310. "native_offset" : "0x00000"
  6311. }
  6312. ,
  6313. {
  6314. "is_managed" : "false",
  6315. "native_address" : "0x1845282e4",
  6316. "native_offset" : "0x00000"
  6317. }
  6318. ,
  6319. {
  6320. "is_managed" : "false",
  6321. "native_address" : "0x1845230fc",
  6322. "native_offset" : "0x00000"
  6323. }
  6324. ]
  6325. }
  6326. ]
  6327. }