123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794 |
- {
- "instructions_readme": "1) Open Chrome, 2) go to chrome://tracing, 3) click Load, 4) navigate to this file.",
- "traceEvents":[
- { "pid": 1, "tid": 1, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 1, "ts": 1890.4000520706177, "dur": 154971484.375, "ph": "X", "name": "il2cpp.exe", "args": { "durationMS": 154971.484375, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 608948.6694335938, "dur": 14476989.2578125, "ph": "X", "name": "ConvertAssemblies", "args": { "durationMS": 14476.9892578125, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 692788.0249023438, "dur": 911658.203125, "ph": "X", "name": "InitializePhase", "args": { "durationMS": 911.658203125, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 692789.1235351562, "dur": 907262.6953125, "ph": "X", "name": "Collect assemblies to convert", "args": { "durationMS": 907.2626953125, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1605552.1240234375, "dur": 581762.0239257812, "ph": "X", "name": "SetupPhase", "args": { "durationMS": 581.7620239257812, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1606616.943359375, "dur": 121287.60528564453, "ph": "X", "name": "RegisterCorlib", "args": { "durationMS": 121.28760528564453, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1734532.1044921875, "dur": 57337.60070800781, "ph": "X", "name": "PreProcessIL", "args": { "durationMS": 57.33760070800781, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1734532.470703125, "dur": 32844.79904174805, "ph": "X", "name": "Inject base types and finalizers into COM and Windows Runtime types", "args": { "durationMS": 32.84479904174805, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1735306.0302734375, "dur": 30228.700637817383, "ph": "X", "name": "ModifyCOMAndWindowsRuntimeTypes in assembly", "args": { "durationMS": 30.228700637817383, "detail": "mscorlib" } },
- { "pid": 1, "tid": 1, "ts": 1766344.7265625, "dur": 469.0999984741211, "ph": "X", "name": "ModifyCOMAndWindowsRuntimeTypes in assembly", "args": { "durationMS": 0.4690999984741211, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 1, "ts": 1767377.5634765625, "dur": 24490.90003967285, "ph": "X", "name": "ApplyDefaultMarshalAsAttribute", "args": { "durationMS": 24.49090003967285, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1768220.0927734375, "dur": 17957.901000976562, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 17.957901000976562, "detail": "mscorlib" } },
- { "pid": 1, "tid": 1, "ts": 1786293.212890625, "dur": 510.2999806404114, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 0.5102999806404114, "detail": "System" } },
- { "pid": 1, "tid": 1, "ts": 1786986.6943359375, "dur": 2598.79994392395, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 2.59879994392395, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 1, "ts": 1789807.2509765625, "dur": 641.7999863624573, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 0.6417999863624573, "detail": "UnityEngine.IMGUIModule" } },
- { "pid": 1, "tid": 1, "ts": 1790650.7568359375, "dur": 1057.0000410079956, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 1.0570000410079956, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 1, "ts": 1792369.2626953125, "dur": 16235.000610351562, "ph": "X", "name": "WriteResources", "args": { "durationMS": 16.235000610351562, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1809233.154296875, "dur": 180494.00329589844, "ph": "X", "name": "CopyEtcFolder", "args": { "durationMS": 180.49400329589844, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1992276.3671875, "dur": 193715.30151367188, "ph": "X", "name": "Add Missing rets", "args": { "durationMS": 193.71530151367188, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 2015486.81640625, "dur": 170418.8995361328, "ph": "X", "name": "mscorlib", "args": { "durationMS": 170.4188995361328, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 2185992.431640625, "dur": 1320.7999467849731, "ph": "X", "name": "Build Results", "args": { "durationMS": 1.3207999467849731, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 2190101.806640625, "dur": 1749647.5830078125, "ph": "X", "name": "PrimaryCollectionPhase", "args": { "durationMS": 1749.6475830078125, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 2191988.037109375, "dur": 57744.3962097168, "ph": "X", "name": "Create Scheduler", "args": { "durationMS": 57.7443962097168, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 2207900.87890625, "dur": 29257.10105895996, "ph": "X", "name": "ForkedContextScope.Setup", "args": { "durationMS": 29.25710105895996, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 2249733.642578125, "dur": 125210.09826660156, "ph": "X", "name": "Scheduling", "args": { "durationMS": 125.21009826660156, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 2390795.654296875, "dur": 1488793.212890625, "ph": "X", "name": "PhaseWorkScheduler.WaitForEmptyQueue", "args": { "durationMS": 1488.793212890625, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 3880626.220703125, "dur": 811.6999864578247, "ph": "X", "name": "PhaseWorkScheduler.JoinThreads", "args": { "durationMS": 0.8116999864578247, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 3885716.796875, "dur": 47401.90124511719, "ph": "X", "name": "ForkedContextScope.MergeBack", "args": { "durationMS": 47.40190124511719, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 3907199.70703125, "dur": 2564.800024032593, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 2.5648000240325928, "detail": "Unity.IL2CPP.Contexts.Components.TypeCollector" } },
- { "pid": 1, "tid": 1, "ts": 3910302.490234375, "dur": 22458.40072631836, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 22.45840072631836, "detail": "Unity.IL2CPP.Naming.NamingComponent" } },
- { "pid": 1, "tid": 1, "ts": 3914844.23828125, "dur": 459.89999175071716, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.45989999175071716, "detail": "_typeNameOnlyCache" } },
- { "pid": 1, "tid": 1, "ts": 3915304.931640625, "dur": 2010.699987411499, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.010699987411499, "detail": "_methodNameOnlyCache" } },
- { "pid": 1, "tid": 1, "ts": 3917317.626953125, "dur": 1138.800024986267, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.138800024986267, "detail": "_cleanNamesCache" } },
- { "pid": 1, "tid": 1, "ts": 3918459.228515625, "dur": 1116.4000034332275, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.1164000034332275, "detail": "_typeNameOnlyCache" } },
- { "pid": 1, "tid": 1, "ts": 3919575.927734375, "dur": 4529.799938201904, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 4.529799938201904, "detail": "_methodNameOnlyCache" } },
- { "pid": 1, "tid": 1, "ts": 3924107.666015625, "dur": 1633.2000494003296, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.6332000494003296, "detail": "_cleanNamesCache" } },
- { "pid": 1, "tid": 1, "ts": 3926047.8515625, "dur": 3568.5999393463135, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 3.5685999393463135, "detail": "_methodNameOnlyCache" } },
- { "pid": 1, "tid": 1, "ts": 3929618.896484375, "dur": 3135.9000205993652, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 3.1359000205993652, "detail": "_cleanNamesCache" } },
- { "pid": 1, "tid": 1, "ts": 3933182.373046875, "dur": 6566.299915313721, "ph": "X", "name": "Build Results", "args": { "durationMS": 6.566299915313721, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 3944911.376953125, "dur": 9262843.75, "ph": "X", "name": "PrimaryWritePhase", "args": { "durationMS": 9262.84375, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 3947302.001953125, "dur": 4175.49991607666, "ph": "X", "name": "Create Scheduler", "args": { "durationMS": 4.17549991607666, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 3949131.34765625, "dur": 704.200029373169, "ph": "X", "name": "ForkedContextScope.Setup", "args": { "durationMS": 0.704200029373169, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 3951478.271484375, "dur": 55498.29864501953, "ph": "X", "name": "Scheduling", "args": { "durationMS": 55.49829864501953, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4006996.826171875, "dur": 9004922.8515625, "ph": "X", "name": "PhaseWorkScheduler.WaitForEmptyQueue", "args": { "durationMS": 9004.9228515625, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13011921.875, "dur": 803.600013256073, "ph": "X", "name": "PhaseWorkScheduler.JoinThreads", "args": { "durationMS": 0.803600013256073, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13012735.3515625, "dur": 93207.3974609375, "ph": "X", "name": "ForkedContextScope.MergeBack", "args": { "durationMS": 93.2073974609375, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13013218.75, "dur": 23470.89958190918, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 23.47089958190918, "detail": "Unity.IL2CPP.Contexts.Components.MetadataUsageCollectorComponent" } },
- { "pid": 1, "tid": 1, "ts": 13105988.28125, "dur": 101765.29693603516, "ph": "X", "name": "Build Results", "args": { "durationMS": 101.76529693603516, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13210846.6796875, "dur": 626031.3110351562, "ph": "X", "name": "SecondaryCollectionPhase", "args": { "durationMS": 626.0313110351562, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13210847.65625, "dur": 603585.5712890625, "ph": "X", "name": "Scheduling", "args": { "durationMS": 603.5855712890625, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13212994.140625, "dur": 3538.0001068115234, "ph": "X", "name": "Create Scheduler", "args": { "durationMS": 3.5380001068115234, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13285962.890625, "dur": 524299.6215820312, "ph": "X", "name": "PhaseWorkScheduler.WaitForEmptyQueue", "args": { "durationMS": 524.2996215820312, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13810261.71875, "dur": 461.1000120639801, "ph": "X", "name": "PhaseWorkScheduler.JoinThreads", "args": { "durationMS": 0.4611000120639801, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13810723.6328125, "dur": 3655.400037765503, "ph": "X", "name": "ForkedContextScope.MergeBack", "args": { "durationMS": 3.655400037765503, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13811336.9140625, "dur": 3014.6000385284424, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 3.0146000385284424, "detail": "Unity.IL2CPP.Contexts.Components.TypeCollector" } },
- { "pid": 1, "tid": 1, "ts": 13814433.59375, "dur": 22442.399978637695, "ph": "X", "name": "Build Results", "args": { "durationMS": 22.442399978637695, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13837330.078125, "dur": 825073.1201171875, "ph": "X", "name": "SecondaryWritePhase", "args": { "durationMS": 825.0731201171875, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13838000, "dur": 2882.499933242798, "ph": "X", "name": "Part1", "args": { "durationMS": 2.882499933242798, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13838000, "dur": 660.7999801635742, "ph": "X", "name": "Scheduling", "args": { "durationMS": 0.6607999801635742, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13838660.15625, "dur": 2220.0000286102295, "ph": "X", "name": "Build Results", "args": { "durationMS": 2.2200000286102295, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13841541.015625, "dur": 29097.79930114746, "ph": "X", "name": "Part3", "args": { "durationMS": 29.09779930114746, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13841541.9921875, "dur": 29093.9998626709, "ph": "X", "name": "Scheduling", "args": { "durationMS": 29.0939998626709, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13841816.40625, "dur": 28817.100524902344, "ph": "X", "name": "WriteUnresolvedStubs", "args": { "durationMS": 28.817100524902344, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13843544.921875, "dur": 27086.498260498047, "ph": "X", "name": "UnresolvedVirtualCallStubs.cpp", "args": { "durationMS": 27.086498260498047, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13872695.3125, "dur": 789706.9091796875, "ph": "X", "name": "Part4", "args": { "durationMS": 789.7069091796875, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13872696.2890625, "dur": 789038.8793945312, "ph": "X", "name": "Scheduling", "args": { "durationMS": 789.0388793945312, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13873315.4296875, "dur": 2014.6000385284424, "ph": "X", "name": "Create Scheduler", "args": { "durationMS": 2.0146000385284424, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 13924427.734375, "dur": 735524.1088867188, "ph": "X", "name": "PhaseWorkScheduler.WaitForEmptyQueue", "args": { "durationMS": 735.5241088867188, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14660241.2109375, "dur": 1435.2999925613403, "ph": "X", "name": "ForkedContextScope.MergeBack", "args": { "durationMS": 1.4352999925613403, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14661743.1640625, "dur": 655.3000211715698, "ph": "X", "name": "Build Results", "args": { "durationMS": 0.6553000211715698, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14662845.703125, "dur": 246014.2059326172, "ph": "X", "name": "MetadataWritePhase", "args": { "durationMS": 246.0142059326172, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14677916.015625, "dur": 32000.80108642578, "ph": "X", "name": "StringLiteralWriter", "args": { "durationMS": 32.00080108642578, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14710673.828125, "dur": 4226.600170135498, "ph": "X", "name": "Metadata Strings", "args": { "durationMS": 4.226600170135498, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14714911.1328125, "dur": 5730.500221252441, "ph": "X", "name": "Events", "args": { "durationMS": 5.730500221252441, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14720643.5546875, "dur": 10198.100090026855, "ph": "X", "name": "Properties", "args": { "durationMS": 10.198100090026855, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14730842.7734375, "dur": 46198.699951171875, "ph": "X", "name": "Methods", "args": { "durationMS": 46.198699951171875, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14777043.9453125, "dur": 2748.3999729156494, "ph": "X", "name": "Parameter Default Values", "args": { "durationMS": 2.7483999729156494, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14779794.921875, "dur": 5291.6998863220215, "ph": "X", "name": "Field Default Values", "args": { "durationMS": 5.2916998863220215, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14785088.8671875, "dur": 868.0999875068665, "ph": "X", "name": "Field and Parameter Default Values Data", "args": { "durationMS": 0.8680999875068665, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14785958.984375, "dur": 1104.3000221252441, "ph": "X", "name": "Field Marshaled Sizes", "args": { "durationMS": 1.1043000221252441, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14787064.453125, "dur": 16398.099899291992, "ph": "X", "name": "Parameters", "args": { "durationMS": 16.398099899291992, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14803462.890625, "dur": 9684.499740600586, "ph": "X", "name": "Fields", "args": { "durationMS": 9.684499740600586, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14813149.4140625, "dur": 3600.399971008301, "ph": "X", "name": "Generic Parameters", "args": { "durationMS": 3.600399971008301, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14816751.953125, "dur": 1113.8999462127686, "ph": "X", "name": "Generic Parameter Constraints", "args": { "durationMS": 1.1138999462127686, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14817868.1640625, "dur": 5840.799808502197, "ph": "X", "name": "Generic Containers", "args": { "durationMS": 5.840799808502197, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14823710.9375, "dur": 1723.6000299453735, "ph": "X", "name": "Nested Types", "args": { "durationMS": 1.7236000299453735, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14825437.5, "dur": 1488.1999492645264, "ph": "X", "name": "Interfaces", "args": { "durationMS": 1.4881999492645264, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14826926.7578125, "dur": 8279.000282287598, "ph": "X", "name": "VTables", "args": { "durationMS": 8.279000282287598, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14835207.03125, "dur": 3006.4001083374023, "ph": "X", "name": "Interface Offsets", "args": { "durationMS": 3.0064001083374023, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14838215.8203125, "dur": 38784.000396728516, "ph": "X", "name": "Type Definitions", "args": { "durationMS": 38.784000396728516, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14877619.140625, "dur": 11876.999855041504, "ph": "X", "name": "Images", "args": { "durationMS": 11.876999855041504, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14889497.0703125, "dur": 2677.500009536743, "ph": "X", "name": "Assemblies", "args": { "durationMS": 2.677500009536743, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14892177.734375, "dur": 335.7999920845032, "ph": "X", "name": "Field Refs", "args": { "durationMS": 0.3357999920845032, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14892513.671875, "dur": 629.2999982833862, "ph": "X", "name": "Referenced Assemblies", "args": { "durationMS": 0.6292999982833862, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14893144.53125, "dur": 5802.299976348877, "ph": "X", "name": "Attribute Types Ranges", "args": { "durationMS": 5.802299976348877, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14898949.21875, "dur": 4085.599899291992, "ph": "X", "name": "Attribute Types", "args": { "durationMS": 4.085599899291992, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14903037.109375, "dur": 1547.0999479293823, "ph": "X", "name": "Unresolved Virtual Call Parameter Types", "args": { "durationMS": 1.5470999479293823, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14904583.984375, "dur": 613.2000088691711, "ph": "X", "name": "Unresolved Virtual Call Parameter Ranges", "args": { "durationMS": 0.6132000088691711, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14905203.125, "dur": 562.6999735832214, "ph": "X", "name": "Windows Runtime type names", "args": { "durationMS": 0.5626999735832214, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14905768.5546875, "dur": 379.0000081062317, "ph": "X", "name": "Windows Runtime strings", "args": { "durationMS": 0.3790000081062317, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14906146.484375, "dur": 1500.6999969482422, "ph": "X", "name": "Exported Types", "args": { "durationMS": 1.5006999969482422, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 14909972.65625, "dur": 165618.6981201172, "ph": "X", "name": "CompletionPhase", "args": { "durationMS": 165.6186981201172, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 15074907.2265625, "dur": 683.2000017166138, "ph": "X", "name": "Build Results", "args": { "durationMS": 0.6832000017166138, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 15173858.3984375, "dur": 139797265.625, "ph": "X", "name": "Build", "args": { "durationMS": 139797.265625, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 15190488.28125, "dur": 139779609.375, "ph": "X", "name": "BuildBinary", "args": { "durationMS": 139779.609375, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 15191071.2890625, "dur": 402766.9982910156, "ph": "X", "name": "FindFilesToCompile", "args": { "durationMS": 402.7669982910156, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 15593838.8671875, "dur": 1693273.193359375, "ph": "X", "name": "Calculate header hashes", "args": { "durationMS": 1693.273193359375, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 17287113.28125, "dur": 354891.3879394531, "ph": "X", "name": "Calculate lumped hashes", "args": { "durationMS": 354.8913879394531, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 17642085.9375, "dur": 21143517.578125, "ph": "X", "name": "BuildAllCppFiles", "args": { "durationMS": 21143.517578125, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 17658453.125, "dur": 21127148.4375, "ph": "X", "name": "Compile", "args": { "durationMS": 21127.1484375, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 38785625, "dur": 1293.4999465942383, "ph": "X", "name": "OnBeforeLink Build", "args": { "durationMS": 1.2934999465942383, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 38786320.3125, "dur": 593.1000113487244, "ph": "X", "name": "ProgramBuildDescription OnBeforeLink Build", "args": { "durationMS": 0.5931000113487244, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 38786914.0625, "dur": 115067375, "ph": "X", "name": "Postprocess Object Files", "args": { "durationMS": 115067.375, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 38792195.3125, "dur": 115062109.375, "ph": "X", "name": "Link", "args": { "durationMS": 115062.109375, "detail": "build.bc" } },
- { "pid": 1, "tid": 1, "ts": 38848535.15625, "dur": 684687.4389648438, "ph": "X", "name": "hash linker invocation", "args": { "durationMS": 684.6874389648438, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 39556429.6875, "dur": 114048929.6875, "ph": "X", "name": "ActualLinkerInvocation", "args": { "durationMS": 114048.9296875, "detail": "build.bc" } },
- { "pid": 1, "tid": 1, "ts": 153854296.875, "dur": 846192.5048828125, "ph": "X", "name": "ProgramDescription Finalize Build", "args": { "durationMS": 846.1925048828125, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 154700500, "dur": 269604.6142578125, "ph": "X", "name": "Clean IL2CPP Cache", "args": { "durationMS": 269.6046142578125, "detail": "" } },
- { "pid": 1, "tid": 5, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 5, "ts": 2015383.544921875, "dur": 41624.5002746582, "ph": "X", "name": "UnityEngine.SharedInternalsModule", "args": { "durationMS": 41.6245002746582, "detail": "" } },
- { "pid": 1, "tid": 5, "ts": 2057020.01953125, "dur": 1183.899998664856, "ph": "X", "name": "UnityEngine.InputLegacyModule", "args": { "durationMS": 1.183899998664856, "detail": "" } },
- { "pid": 1, "tid": 5, "ts": 2058249.267578125, "dur": 12819.899559020996, "ph": "X", "name": "UnityEngine.TextRenderingModule", "args": { "durationMS": 12.819899559020996, "detail": "" } },
- { "pid": 1, "tid": 5, "ts": 2071401.611328125, "dur": 2228.1999588012695, "ph": "X", "name": "Assembly-CSharp", "args": { "durationMS": 2.2281999588012695, "detail": "" } },
- { "pid": 1, "tid": 5, "ts": 3907199.70703125, "dur": 809.0000152587891, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.8090000152587891, "detail": "Unity.IL2CPP.Contexts.Components.SharedMethodCollector" } },
- { "pid": 1, "tid": 5, "ts": 3908076.416015625, "dur": 7721.700191497803, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 7.721700191497803, "detail": "Unity.IL2CPP.Metadata.VTableBuilder" } },
- { "pid": 1, "tid": 5, "ts": 3915859.86328125, "dur": 481.00000619888306, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.48100000619888306, "detail": "Unity.IL2CPP.Contexts.Components.CppDeclarationsComponent" } },
- { "pid": 1, "tid": 6, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 6, "ts": 2015436.4013671875, "dur": 36888.40103149414, "ph": "X", "name": "UnityEngine.AudioModule", "args": { "durationMS": 36.88840103149414, "detail": "" } },
- { "pid": 1, "tid": 6, "ts": 2052330.56640625, "dur": 45974.5979309082, "ph": "X", "name": "UnityEngine.UI", "args": { "durationMS": 45.9745979309082, "detail": "" } },
- { "pid": 1, "tid": 6, "ts": 3907220.703125, "dur": 799.0000247955322, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.7990000247955322, "detail": "Unity.IL2CPP.Contexts.Components.MethodCollector" } },
- { "pid": 1, "tid": 6, "ts": 3908070.556640625, "dur": 8372.200012207031, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 8.372200012207031, "detail": "Unity.IL2CPP.Contexts.Components.StatsComponent" } },
- { "pid": 1, "tid": 6, "ts": 13018443.359375, "dur": 1443.0999755859375, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 1.4430999755859375, "detail": "Unity.IL2CPP.Contexts.Components.TypeCollector" } },
- { "pid": 1, "tid": 6, "ts": 13019938.4765625, "dur": 6642.300128936768, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 6.642300128936768, "detail": "Unity.IL2CPP.Metadata.GenericMethodCollectorComponent" } },
- { "pid": 1, "tid": 4, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 4, "ts": 2015471.435546875, "dur": 40607.601165771484, "ph": "X", "name": "UnityEngine.AnimationModule", "args": { "durationMS": 40.607601165771484, "detail": "" } },
- { "pid": 1, "tid": 4, "ts": 2056083.984375, "dur": 19578.19938659668, "ph": "X", "name": "UnityEngine.IMGUIModule", "args": { "durationMS": 19.57819938659668, "detail": "" } },
- { "pid": 1, "tid": 4, "ts": 2075665.283203125, "dur": 337.19998598098755, "ph": "X", "name": "UnityEngine.PhysicsModule", "args": { "durationMS": 0.33719998598098755, "detail": "" } },
- { "pid": 1, "tid": 4, "ts": 3907199.70703125, "dur": 809.0000152587891, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.8090000152587891, "detail": "Unity.IL2CPP.Contexts.Components.MetadataUsageCollectorComponent" } },
- { "pid": 1, "tid": 4, "ts": 13016440.4296875, "dur": 1190.500020980835, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 1.190500020980835, "detail": "Unity.IL2CPP.Symbols.SymbolsCollector" } },
- { "pid": 1, "tid": 4, "ts": 13017674.8046875, "dur": 726.1999845504761, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.7261999845504761, "detail": "Unity.IL2CPP.Contexts.Components.VirtualCallCollector" } },
- { "pid": 1, "tid": 4, "ts": 13018440.4296875, "dur": 6883.900165557861, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 6.883900165557861, "detail": "Unity.IL2CPP.Contexts.Components.SharedMethodCollector" } },
- { "pid": 1, "tid": 4, "ts": 13025606.4453125, "dur": 79130.20324707031, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 79.13020324707031, "detail": "Unity.IL2CPP.Naming.NamingComponent" } },
- { "pid": 1, "tid": 4, "ts": 13025606.4453125, "dur": 6441.400051116943, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 6.441400051116943, "detail": "_typeNameOnlyCache" } },
- { "pid": 1, "tid": 4, "ts": 13032048.828125, "dur": 6487.800121307373, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 6.487800121307373, "detail": "_methodNameOnlyCache" } },
- { "pid": 1, "tid": 4, "ts": 13038738.28125, "dur": 5395.400047302246, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 5.395400047302246, "detail": "_cleanNamesCache" } },
- { "pid": 1, "tid": 4, "ts": 13044136.71875, "dur": 3884.000062942505, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 3.884000062942505, "detail": "_typeNameOnlyCache" } },
- { "pid": 1, "tid": 4, "ts": 13048022.4609375, "dur": 7493.800163269043, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 7.493800163269043, "detail": "_methodNameOnlyCache" } },
- { "pid": 1, "tid": 4, "ts": 13055816.40625, "dur": 4342.599868774414, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 4.342599868774414, "detail": "_cleanNamesCache" } },
- { "pid": 1, "tid": 4, "ts": 13060163.0859375, "dur": 1891.8999433517456, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.8918999433517456, "detail": "_typeNameOnlyCache" } },
- { "pid": 1, "tid": 4, "ts": 13062057.6171875, "dur": 7002.200126647949, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 7.002200126647949, "detail": "_methodNameOnlyCache" } },
- { "pid": 1, "tid": 4, "ts": 13069344.7265625, "dur": 5314.0997886657715, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 5.3140997886657715, "detail": "_cleanNamesCache" } },
- { "pid": 1, "tid": 4, "ts": 13074662.109375, "dur": 1587.7000093460083, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.5877000093460083, "detail": "_typeNameOnlyCache" } },
- { "pid": 1, "tid": 4, "ts": 13076250.9765625, "dur": 7831.699848175049, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 7.831699848175049, "detail": "_methodNameOnlyCache" } },
- { "pid": 1, "tid": 4, "ts": 13084282.2265625, "dur": 4269.800186157227, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 4.269800186157227, "detail": "_cleanNamesCache" } },
- { "pid": 1, "tid": 4, "ts": 13088554.6875, "dur": 1048.5999584197998, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.0485999584197998, "detail": "_typeNameOnlyCache" } },
- { "pid": 1, "tid": 4, "ts": 13089604.4921875, "dur": 8475.99983215332, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 8.47599983215332, "detail": "_methodNameOnlyCache" } },
- { "pid": 1, "tid": 4, "ts": 13098084.9609375, "dur": 6650.000095367432, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 6.650000095367432, "detail": "_cleanNamesCache" } },
- { "pid": 1, "tid": 4, "ts": 13104784.1796875, "dur": 1072.700023651123, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 1.072700023651123, "detail": "Unity.IL2CPP.Contexts.Components.SourceAnnotationWriterComponent" } },
- { "pid": 1, "tid": 4, "ts": 14660679.6875, "dur": 547.2000241279602, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.5472000241279602, "detail": "Unity.IL2CPP.Contexts.Components.SourceAnnotationWriterComponent" } },
- { "pid": 1, "tid": 7, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 7, "ts": 2015598.0224609375, "dur": 36090.80123901367, "ph": "X", "name": "System.Configuration", "args": { "durationMS": 36.09080123901367, "detail": "" } },
- { "pid": 1, "tid": 7, "ts": 2051706.298828125, "dur": 9486.200332641602, "ph": "X", "name": "Mono.Security", "args": { "durationMS": 9.486200332641602, "detail": "" } },
- { "pid": 1, "tid": 7, "ts": 2061503.662109375, "dur": 12690.899848937988, "ph": "X", "name": "System", "args": { "durationMS": 12.690899848937988, "detail": "" } },
- { "pid": 1, "tid": 7, "ts": 2074197.998046875, "dur": 1129.7999620437622, "ph": "X", "name": "System.Core", "args": { "durationMS": 1.1297999620437622, "detail": "" } },
- { "pid": 1, "tid": 7, "ts": 3907221.19140625, "dur": 787.4000072479248, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.7874000072479248, "detail": "Unity.IL2CPP.Symbols.SymbolsCollector" } },
- { "pid": 1, "tid": 7, "ts": 3908063.232421875, "dur": 2879.1000843048096, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 2.8791000843048096, "detail": "Unity.IL2CPP.Metadata.GenericMethodCollectorComponent" } },
- { "pid": 1, "tid": 7, "ts": 13015461.9140625, "dur": 6056.9000244140625, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 6.0569000244140625, "detail": "Unity.IL2CPP.Contexts.Components.MethodCollector" } },
- { "pid": 1, "tid": 7, "ts": 13021621.09375, "dur": 2220.400094985962, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 2.220400094985962, "detail": "Unity.IL2CPP.Contexts.Components.StatsComponent" } },
- { "pid": 1, "tid": 7, "ts": 13023863.28125, "dur": 16127.901077270508, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 16.127901077270508, "detail": "Unity.IL2CPP.Metadata.VTableBuilder" } },
- { "pid": 1, "tid": 7, "ts": 13040017.578125, "dur": 12540.200233459473, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 12.540200233459473, "detail": "Unity.IL2CPP.Contexts.Components.CppDeclarationsComponent" } },
- { "pid": 1, "tid": 8, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 8, "ts": 2015738.037109375, "dur": 64147.300720214844, "ph": "X", "name": "UnityEngine.CoreModule", "args": { "durationMS": 64.14730072021484, "detail": "" } },
- { "pid": 1, "tid": 8, "ts": 3907239.013671875, "dur": 9138.60034942627, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 9.13860034942627, "detail": "Unity.IL2CPP.Contexts.Components.VirtualCallCollector" } },
- { "pid": 1, "tid": 12, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 12, "ts": 2252231.93359375, "dur": 99266.89910888672, "ph": "X", "name": "Idle", "args": { "durationMS": 99.26689910888672, "detail": "" } },
- { "pid": 1, "tid": 12, "ts": 2391892.822265625, "dur": 105813.79699707031, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 105.81379699707031, "detail": "mscorlib" } },
- { "pid": 1, "tid": 12, "ts": 2498452.63671875, "dur": 2044.800043106079, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 2.044800043106079, "detail": "Assembly-CSharp" } },
- { "pid": 1, "tid": 12, "ts": 2501213.623046875, "dur": 808958.1909179688, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 808.9581909179688, "detail": "mscorlib" } },
- { "pid": 1, "tid": 12, "ts": 3319250.244140625, "dur": 1438.099980354309, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 1.438099980354309, "detail": "System.Configuration" } },
- { "pid": 1, "tid": 12, "ts": 3321114.990234375, "dur": 419.09998655319214, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.41909998655319214, "detail": "Mono.Security" } },
- { "pid": 1, "tid": 12, "ts": 3321536.62109375, "dur": 487.8000020980835, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.4878000020980835, "detail": "System.Xml" } },
- { "pid": 1, "tid": 12, "ts": 3322028.564453125, "dur": 9562.999725341797, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 9.562999725341797, "detail": "System" } },
- { "pid": 1, "tid": 12, "ts": 3331598.6328125, "dur": 11113.40045928955, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 11.11340045928955, "detail": "System.Core" } },
- { "pid": 1, "tid": 12, "ts": 3342718.017578125, "dur": 684.3000054359436, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.6843000054359436, "detail": "UnityEngine.SharedInternalsModule" } },
- { "pid": 1, "tid": 12, "ts": 3343405.517578125, "dur": 27392.99774169922, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 27.39299774169922, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 12, "ts": 3370849.365234375, "dur": 480.3999960422516, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.4803999960422516, "detail": "UnityEngine.InputLegacyModule" } },
- { "pid": 1, "tid": 12, "ts": 3371416.748046875, "dur": 1057.5000047683716, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 1.0575000047683716, "detail": "UnityEngine.TextRenderingModule" } },
- { "pid": 1, "tid": 12, "ts": 3372479.736328125, "dur": 929.6000003814697, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.9296000003814697, "detail": "UnityEngine.AnimationModule" } },
- { "pid": 1, "tid": 12, "ts": 3373412.353515625, "dur": 1433.2000017166138, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 1.4332000017166138, "detail": "UnityEngine.IMGUIModule" } },
- { "pid": 1, "tid": 12, "ts": 3374850.09765625, "dur": 446.5000033378601, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.4465000033378601, "detail": "UnityEngine.PhysicsModule" } },
- { "pid": 1, "tid": 12, "ts": 3375393.5546875, "dur": 463.2999897003174, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.4632999897003174, "detail": "UnityEngine.UIModule" } },
- { "pid": 1, "tid": 12, "ts": 3375859.375, "dur": 498.6000061035156, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.4986000061035156, "detail": "UnityEngine.AudioModule" } },
- { "pid": 1, "tid": 12, "ts": 3376360.107421875, "dur": 31240.198135375977, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 31.240198135375977, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 12, "ts": 3407756.8359375, "dur": 473027.587890625, "ph": "X", "name": "Idle", "args": { "durationMS": 473.027587890625, "detail": "" } },
- { "pid": 1, "tid": 10, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 10, "ts": 2252233.88671875, "dur": 99264.60266113281, "ph": "X", "name": "Idle", "args": { "durationMS": 99.26460266113281, "detail": "" } },
- { "pid": 1, "tid": 10, "ts": 2391889.16015625, "dur": 15923.199653625488, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 15.923199653625488, "detail": "System.Configuration" } },
- { "pid": 1, "tid": 10, "ts": 2410849.853515625, "dur": 820.9999799728394, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 0.8209999799728394, "detail": "Mono.Security" } },
- { "pid": 1, "tid": 10, "ts": 2411804.931640625, "dur": 21035.69984436035, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 21.03569984436035, "detail": "System" } },
- { "pid": 1, "tid": 10, "ts": 2432847.16796875, "dur": 1530.5999517440796, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 1.5305999517440796, "detail": "System.Core" } },
- { "pid": 1, "tid": 10, "ts": 2434510.25390625, "dur": 25818.79997253418, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 25.81879997253418, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 10, "ts": 2460998.046875, "dur": 2571.899890899658, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 2.571899890899658, "detail": "UnityEngine.IMGUIModule" } },
- { "pid": 1, "tid": 10, "ts": 2463576.904296875, "dur": 6924.399852752686, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 6.9243998527526855, "detail": "UnityEngine.PhysicsModule" } },
- { "pid": 1, "tid": 10, "ts": 2470762.6953125, "dur": 34796.29898071289, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 34.79629898071289, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 10, "ts": 2515148.681640625, "dur": 2765.199899673462, "ph": "X", "name": "Merging Generic Sharing", "args": { "durationMS": 2.765199899673462, "detail": "" } },
- { "pid": 1, "tid": 10, "ts": 2517923.33984375, "dur": 17640.098571777344, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 17.640098571777344, "detail": "System.Configuration" } },
- { "pid": 1, "tid": 10, "ts": 2535655.517578125, "dur": 1458.899974822998, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 1.458899974822998, "detail": "Mono.Security" } },
- { "pid": 1, "tid": 10, "ts": 2537122.314453125, "dur": 18835.298538208008, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 18.835298538208008, "detail": "System.Xml" } },
- { "pid": 1, "tid": 10, "ts": 2555964.84375, "dur": 45977.79846191406, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 45.97779846191406, "detail": "System" } },
- { "pid": 1, "tid": 10, "ts": 2601949.70703125, "dur": 20017.101287841797, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 20.017101287841797, "detail": "System.Core" } },
- { "pid": 1, "tid": 10, "ts": 2621973.388671875, "dur": 4755.199909210205, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 4.755199909210205, "detail": "UnityEngine.SharedInternalsModule" } },
- { "pid": 1, "tid": 10, "ts": 2626735.83984375, "dur": 170471.09985351562, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 170.47109985351562, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 10, "ts": 2797214.599609375, "dur": 893.2999968528748, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 0.8932999968528748, "detail": "UnityEngine.GridModule" } },
- { "pid": 1, "tid": 10, "ts": 2798114.501953125, "dur": 2482.5000762939453, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 2.4825000762939453, "detail": "UnityEngine.InputLegacyModule" } },
- { "pid": 1, "tid": 10, "ts": 2800603.02734375, "dur": 14390.000343322754, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 14.390000343322754, "detail": "UnityEngine.Physics2DModule" } },
- { "pid": 1, "tid": 10, "ts": 2815000.48828125, "dur": 7987.500190734863, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 7.987500190734863, "detail": "UnityEngine.TextRenderingModule" } },
- { "pid": 1, "tid": 10, "ts": 2822994.140625, "dur": 3937.9000663757324, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 3.9379000663757324, "detail": "UnityEngine.AnimationModule" } },
- { "pid": 1, "tid": 10, "ts": 2826938.232421875, "dur": 15318.599700927734, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 15.318599700927734, "detail": "UnityEngine.IMGUIModule" } },
- { "pid": 1, "tid": 10, "ts": 2842263.18359375, "dur": 12867.400169372559, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 12.867400169372559, "detail": "UnityEngine.PhysicsModule" } },
- { "pid": 1, "tid": 10, "ts": 2855137.20703125, "dur": 501.9000172615051, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 0.5019000172615051, "detail": "UnityEngine.SpriteShapeModule" } },
- { "pid": 1, "tid": 10, "ts": 2855646.484375, "dur": 895.0999975204468, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 0.8950999975204468, "detail": "UnityEngine.TilemapModule" } },
- { "pid": 1, "tid": 10, "ts": 2856546.875, "dur": 13628.199577331543, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 13.628199577331543, "detail": "UnityEngine.UIModule" } },
- { "pid": 1, "tid": 10, "ts": 2870182.12890625, "dur": 2125.200033187866, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 2.125200033187866, "detail": "UnityEngine.AudioModule" } },
- { "pid": 1, "tid": 10, "ts": 2872312.5, "dur": 268116.0888671875, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 268.1160888671875, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 10, "ts": 3140445.80078125, "dur": 1328.2999992370605, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 1.3282999992370605, "detail": "UnityEngine.UnityAnalyticsModule" } },
- { "pid": 1, "tid": 10, "ts": 3141780.517578125, "dur": 643.8999772071838, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 0.6438999772071838, "detail": "UnityEngine.UnityWebRequestModule" } },
- { "pid": 1, "tid": 10, "ts": 3142488.76953125, "dur": 3471.89998626709, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 3.47189998626709, "detail": "Assembly-CSharp" } },
- { "pid": 1, "tid": 10, "ts": 3146254.638671875, "dur": 13124.899864196777, "ph": "X", "name": "Collect Windows Runtime Data", "args": { "durationMS": 13.124899864196777, "detail": "mscorlib" } },
- { "pid": 1, "tid": 10, "ts": 3163113.76953125, "dur": 27237.50114440918, "ph": "X", "name": "Collect CCW Marshaling Functions", "args": { "durationMS": 27.23750114440918, "detail": "mscorlib" } },
- { "pid": 1, "tid": 10, "ts": 3190558.837890625, "dur": 1059.1000318527222, "ph": "X", "name": "Collect CCW Marshaling Functions", "args": { "durationMS": 1.0591000318527222, "detail": "System" } },
- { "pid": 1, "tid": 10, "ts": 3191903.564453125, "dur": 9289.999961853027, "ph": "X", "name": "Collect CCW Marshaling Functions", "args": { "durationMS": 9.289999961853027, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 10, "ts": 3202142.08984375, "dur": 344.0000116825104, "ph": "X", "name": "Collect CCW Marshaling Functions", "args": { "durationMS": 0.3440000116825104, "detail": "UnityEngine.PhysicsModule" } },
- { "pid": 1, "tid": 10, "ts": 3202856.689453125, "dur": 3024.899959564209, "ph": "X", "name": "Collect CCW Marshaling Functions", "args": { "durationMS": 3.024899959564209, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 10, "ts": 3206004.39453125, "dur": 350.6999909877777, "ph": "X", "name": "Collect CCW Marshaling Functions", "args": { "durationMS": 0.3506999909877777, "detail": "Assembly-CSharp" } },
- { "pid": 1, "tid": 10, "ts": 3206543.45703125, "dur": 195942.39807128906, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 195.94239807128906, "detail": "mscorlib" } },
- { "pid": 1, "tid": 10, "ts": 3402506.34765625, "dur": 456.60001039505005, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.45660001039505005, "detail": "UnityEngine.UnityAnalyticsModule" } },
- { "pid": 1, "tid": 10, "ts": 3403038.818359375, "dur": 691.6000247001648, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.6916000247001648, "detail": "Assembly-CSharp" } },
- { "pid": 1, "tid": 10, "ts": 3403879.150390625, "dur": 476946.9909667969, "ph": "X", "name": "Idle", "args": { "durationMS": 476.9469909667969, "detail": "" } },
- { "pid": 1, "tid": 11, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 11, "ts": 2252294.677734375, "dur": 99203.89556884766, "ph": "X", "name": "Idle", "args": { "durationMS": 99.20389556884766, "detail": "" } },
- { "pid": 1, "tid": 11, "ts": 2351769.287109375, "dur": 2638.0999088287354, "ph": "X", "name": "Idle", "args": { "durationMS": 2.6380999088287354, "detail": "" } },
- { "pid": 1, "tid": 11, "ts": 2355437.5, "dur": 1116601.6845703125, "ph": "X", "name": "All Warm up Naming", "args": { "durationMS": 1116.6016845703125, "detail": "" } },
- { "pid": 1, "tid": 11, "ts": 2356252.685546875, "dur": 764858.3374023438, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 764.8583374023438, "detail": "mscorlib" } },
- { "pid": 1, "tid": 11, "ts": 3121112.79296875, "dur": 675.8999824523926, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 0.6758999824523926, "detail": "System.Configuration" } },
- { "pid": 1, "tid": 11, "ts": 3121790.0390625, "dur": 1114.300012588501, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 1.114300012588501, "detail": "Mono.Security" } },
- { "pid": 1, "tid": 11, "ts": 3122906.005859375, "dur": 1328.1999826431274, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 1.3281999826431274, "detail": "System.Xml" } },
- { "pid": 1, "tid": 11, "ts": 3124235.83984375, "dur": 56464.30206298828, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 56.46430206298828, "detail": "System" } },
- { "pid": 1, "tid": 11, "ts": 3180703.857421875, "dur": 5752.600193023682, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 5.752600193023682, "detail": "System.Core" } },
- { "pid": 1, "tid": 11, "ts": 3186458.49609375, "dur": 2393.8000202178955, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 2.3938000202178955, "detail": "UnityEngine.SharedInternalsModule" } },
- { "pid": 1, "tid": 11, "ts": 3188854.4921875, "dur": 100519.50073242188, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 100.51950073242188, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 11, "ts": 3289416.50390625, "dur": 1187.8000497817993, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 1.1878000497817993, "detail": "UnityEngine.InputLegacyModule" } },
- { "pid": 1, "tid": 11, "ts": 3290835.44921875, "dur": 1899.0000486373901, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 1.8990000486373901, "detail": "UnityEngine.TextRenderingModule" } },
- { "pid": 1, "tid": 11, "ts": 3292736.328125, "dur": 10984.399795532227, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 10.984399795532227, "detail": "UnityEngine.AnimationModule" } },
- { "pid": 1, "tid": 11, "ts": 3303723.14453125, "dur": 12487.799644470215, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 12.487799644470215, "detail": "UnityEngine.IMGUIModule" } },
- { "pid": 1, "tid": 11, "ts": 3316213.623046875, "dur": 2840.5001163482666, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 2.8405001163482666, "detail": "UnityEngine.PhysicsModule" } },
- { "pid": 1, "tid": 11, "ts": 3319149.658203125, "dur": 13383.600234985352, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 13.383600234985352, "detail": "UnityEngine.UIModule" } },
- { "pid": 1, "tid": 11, "ts": 3332535.400390625, "dur": 889.9000287055969, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 0.8899000287055969, "detail": "UnityEngine.AudioModule" } },
- { "pid": 1, "tid": 11, "ts": 3333427.001953125, "dur": 123830.10864257812, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 123.83010864257812, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 11, "ts": 3457260.009765625, "dur": 2541.6998863220215, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 2.5416998863220215, "detail": "UnityEngine.UnityAnalyticsModule" } },
- { "pid": 1, "tid": 11, "ts": 3459804.443359375, "dur": 336.1999988555908, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 0.3361999988555908, "detail": "UnityEngine.UnityWebRequestModule" } },
- { "pid": 1, "tid": 11, "ts": 3460170.166015625, "dur": 11860.300064086914, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 11.860300064086914, "detail": "Assembly-CSharp" } },
- { "pid": 1, "tid": 11, "ts": 3472053.466796875, "dur": 408679.9011230469, "ph": "X", "name": "Idle", "args": { "durationMS": 408.6799011230469, "detail": "" } },
- { "pid": 1, "tid": 9, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 9, "ts": 2252341.552734375, "dur": 99156.90612792969, "ph": "X", "name": "Idle", "args": { "durationMS": 99.15690612792969, "detail": "" } },
- { "pid": 1, "tid": 9, "ts": 2354511.23046875, "dur": 1522503.662109375, "ph": "X", "name": "All Generics Collection", "args": { "durationMS": 1522.503662109375, "detail": "" } },
- { "pid": 1, "tid": 9, "ts": 2355451.904296875, "dur": 1467304.19921875, "ph": "X", "name": "GenericsCollector.Collect", "args": { "durationMS": 1467.30419921875, "detail": "" } },
- { "pid": 1, "tid": 9, "ts": 2357269.287109375, "dur": 76999.0005493164, "ph": "X", "name": "GenericCodeFlowGraphCollector.Collect", "args": { "durationMS": 76.9990005493164, "detail": "" } },
- { "pid": 1, "tid": 9, "ts": 2357269.775390625, "dur": 74974.50256347656, "ph": "X", "name": "GenericCodeFlowGraphCollector.GetTypesAndMethodsForAnalysis", "args": { "durationMS": 74.97450256347656, "detail": "" } },
- { "pid": 1, "tid": 9, "ts": 3822757.8125, "dur": 17708.70018005371, "ph": "X", "name": "CollectGenericVirtualMethods.Collect", "args": { "durationMS": 17.70870018005371, "detail": "" } },
- { "pid": 1, "tid": 9, "ts": 3840467.28515625, "dur": 2549.5998859405518, "ph": "X", "name": "AddExtraTypes", "args": { "durationMS": 2.5495998859405518, "detail": "" } },
- { "pid": 1, "tid": 9, "ts": 3871272.94921875, "dur": 2901.9999504089355, "ph": "X", "name": "Add Windows Runtime type names", "args": { "durationMS": 2.9019999504089355, "detail": "" } },
- { "pid": 1, "tid": 9, "ts": 3874303.7109375, "dur": 2708.899974822998, "ph": "X", "name": "Collect Generic CCWMarshallingFunctions", "args": { "durationMS": 2.708899974822998, "detail": "" } },
- { "pid": 1, "tid": 9, "ts": 3877044.677734375, "dur": 3609.299898147583, "ph": "X", "name": "Idle", "args": { "durationMS": 3.609299898147583, "detail": "" } },
- { "pid": 1, "tid": 13, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 13, "ts": 3950958.984375, "dur": 33102.30255126953, "ph": "X", "name": "Idle", "args": { "durationMS": 33.10230255126953, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 3998177.978515625, "dur": 4518.899917602539, "ph": "X", "name": "Write Assembly", "args": { "durationMS": 4.518899917602539, "detail": "mscorlib" } },
- { "pid": 1, "tid": 13, "ts": 4004667.724609375, "dur": 516917.29736328125, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 516.9172973632812, "detail": "Mono.Security" } },
- { "pid": 1, "tid": 13, "ts": 4007026.3671875, "dur": 514557.67822265625, "ph": "X", "name": "Mono.Security_Attr.cpp", "args": { "durationMS": 514.5576782226562, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 4525024.90234375, "dur": 48501.30081176758, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 48.50130081176758, "detail": "UnityEngine.SharedInternalsModule" } },
- { "pid": 1, "tid": 13, "ts": 4525078.61328125, "dur": 48446.3005065918, "ph": "X", "name": "UnityEngine.SharedInternalsModule_Attr.cpp", "args": { "durationMS": 48.4463005065918, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 4573535.64453125, "dur": 129440.10925292969, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 129.4401092529297, "detail": "UnityEngine.IMGUIModule" } },
- { "pid": 1, "tid": 13, "ts": 4573582.03125, "dur": 129393.00537109375, "ph": "X", "name": "UnityEngine.IMGUIModule_Attr.cpp", "args": { "durationMS": 129.39300537109375, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 4702983.88671875, "dur": 13845.000267028809, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 13.845000267028809, "detail": "UnityEngine.TilemapModule" } },
- { "pid": 1, "tid": 13, "ts": 4703020.5078125, "dur": 13806.599617004395, "ph": "X", "name": "UnityEngine.TilemapModule_Attr.cpp", "args": { "durationMS": 13.806599617004395, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 4716835.9375, "dur": 47657.29904174805, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 47.65729904174805, "detail": "UnityEngine.UIModule" } },
- { "pid": 1, "tid": 13, "ts": 4716876.46484375, "dur": 47615.80276489258, "ph": "X", "name": "UnityEngine.UIModule_Attr.cpp", "args": { "durationMS": 47.61580276489258, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 4764502.9296875, "dur": 13164.09969329834, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 13.16409969329834, "detail": "UnityEngine.UnityAnalyticsModule" } },
- { "pid": 1, "tid": 13, "ts": 4764543.45703125, "dur": 13122.599601745605, "ph": "X", "name": "UnityEngine.UnityAnalyticsModule_Attr.cpp", "args": { "durationMS": 13.122599601745605, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 4777678.7109375, "dur": 5595.099925994873, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 5.595099925994873, "detail": "UnityEngine" } },
- { "pid": 1, "tid": 13, "ts": 4777716.796875, "dur": 5556.399822235107, "ph": "X", "name": "UnityEngine_Attr.cpp", "args": { "durationMS": 5.556399822235107, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 4783281.73828125, "dur": 5638.199806213379, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 5.638199806213379, "detail": "Assembly-CSharp" } },
- { "pid": 1, "tid": 13, "ts": 4783315.91796875, "dur": 5603.300094604492, "ph": "X", "name": "Assembly-CSharp_Attr.cpp", "args": { "durationMS": 5.603300094604492, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 4809057.6171875, "dur": 694.100022315979, "ph": "X", "name": "GenericInstanceMethods", "args": { "durationMS": 0.694100022315979, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 4813175.29296875, "dur": 4474.599838256836, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.474599838256836, "detail": "<Module>" } },
- { "pid": 1, "tid": 13, "ts": 4817694.82421875, "dur": 109072.10540771484, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 109.07210540771484, "detail": "System.Xml.DebuggerDisplayXmlNodeProxy" } },
- { "pid": 1, "tid": 13, "ts": 4926768.5546875, "dur": 54389.90020751953, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 54.38990020751953, "detail": "System.Xml.XmlCharType" } },
- { "pid": 1, "tid": 13, "ts": 4981160.64453125, "dur": 4627.500057220459, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.627500057220459, "detail": "System.Xml.XmlConvert" } },
- { "pid": 1, "tid": 13, "ts": 4985791.015625, "dur": 721.0000157356262, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7210000157356262, "detail": "System.Xml.XmlDocumentType" } },
- { "pid": 1, "tid": 13, "ts": 4986578.61328125, "dur": 1189.3999576568604, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1893999576568604, "detail": "System.Xml.XmlNode" } },
- { "pid": 1, "tid": 13, "ts": 4987799.8046875, "dur": 1306.1000108718872, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3061000108718872, "detail": "System.Xml.XmlReader" } },
- { "pid": 1, "tid": 13, "ts": 4989136.23046875, "dur": 2796.2000370025635, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.7962000370025635, "detail": "System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy" } },
- { "pid": 1, "tid": 13, "ts": 4991937.5, "dur": 44184.70001220703, "ph": "X", "name": "System.Xml.cpp", "args": { "durationMS": 44.18470001220703, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 5036204.1015625, "dur": 15993.500709533691, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.993500709533691, "detail": "UnityEngine.CameraRaycastHelper" } },
- { "pid": 1, "tid": 13, "ts": 5052229.00390625, "dur": 21627.500534057617, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 21.627500534057617, "detail": "UnityEngine.Input" } },
- { "pid": 1, "tid": 13, "ts": 5073858.3984375, "dur": 33342.899322509766, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 33.342899322509766, "detail": "UnityEngine.SendMouseEvents" } },
- { "pid": 1, "tid": 13, "ts": 5107203.61328125, "dur": 3171.600103378296, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.171600103378296, "detail": "UnityEngine.Touch" } },
- { "pid": 1, "tid": 13, "ts": 5110420.41015625, "dur": 6750.5998611450195, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.7505998611450195, "detail": "UnityEngine.SendMouseEvents/HitInfo" } },
- { "pid": 1, "tid": 13, "ts": 5117177.24609375, "dur": 21187.5, "ph": "X", "name": "UnityEngine.InputLegacyModule.cpp", "args": { "durationMS": 21.1875, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 5138458.984375, "dur": 438.8999938964844, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4388999938964844, "detail": "UnityEngine.Physics2D" } },
- { "pid": 1, "tid": 13, "ts": 5138899.4140625, "dur": 1627.7999877929688, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6277999877929688, "detail": "UnityEngine.RaycastHit2D" } },
- { "pid": 1, "tid": 13, "ts": 5140565.91796875, "dur": 17788.700103759766, "ph": "X", "name": "UnityEngine.Physics2DModule.cpp", "args": { "durationMS": 17.788700103759766, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 5158704.1015625, "dur": 7280.399799346924, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.280399799346924, "detail": "System.Reflection.CustomAttributeFormatException" } },
- { "pid": 1, "tid": 13, "ts": 5165985.83984375, "dur": 8487.700462341309, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.487700462341309, "detail": "System.Reflection.CustomAttributeNamedArgument" } },
- { "pid": 1, "tid": 13, "ts": 5174475.09765625, "dur": 30096.601486206055, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 30.096601486206055, "detail": "System.Reflection.CustomAttributeTypedArgument" } },
- { "pid": 1, "tid": 13, "ts": 5204755.859375, "dur": 6673.699855804443, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.673699855804443, "detail": "System.DBNull" } },
- { "pid": 1, "tid": 13, "ts": 5211431.15234375, "dur": 23262.09831237793, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 23.26209831237793, "detail": "System.DTSubString" } },
- { "pid": 1, "tid": 13, "ts": 5234718.75, "dur": 156394.30236816406, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 156.39430236816406, "detail": "System.DateTime" } },
- { "pid": 1, "tid": 13, "ts": 5391354.00390625, "dur": 193627.30407714844, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 193.62730407714844, "detail": "System.DateTimeFormat" } },
- { "pid": 1, "tid": 13, "ts": 5585003.41796875, "dur": 137941.89453125, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 137.94189453125, "detail": "System.Globalization.DateTimeFormatInfo" } },
- { "pid": 1, "tid": 13, "ts": 5722947.75390625, "dur": 47132.60269165039, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 47.13260269165039, "detail": "System.Globalization.DateTimeFormatInfoScanner" } },
- { "pid": 1, "tid": 13, "ts": 5770128.41796875, "dur": 296522.9187011719, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 296.5229187011719, "detail": "System.DateTimeParse" } },
- { "pid": 1, "tid": 13, "ts": 6066669.43359375, "dur": 151948.50158691406, "ph": "X", "name": "mscorlib3.cpp", "args": { "durationMS": 151.94850158691406, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 6218645.99609375, "dur": 4052.5999069213867, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.052599906921387, "detail": "System.IO.EndOfStreamException" } },
- { "pid": 1, "tid": 13, "ts": 6222700.68359375, "dur": 970.3999757766724, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9703999757766724, "detail": "System.EntryPointNotFoundException" } },
- { "pid": 1, "tid": 13, "ts": 6223671.875, "dur": 18025.999069213867, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.025999069213867, "detail": "System.Enum" } },
- { "pid": 1, "tid": 13, "ts": 6241699.70703125, "dur": 6781.499862670898, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.781499862670898, "detail": "System.Reflection.Emit.EnumBuilder" } },
- { "pid": 1, "tid": 13, "ts": 6248483.3984375, "dur": 49717.80014038086, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 49.71780014038086, "detail": "System.Environment" } },
- { "pid": 1, "tid": 13, "ts": 6298493.1640625, "dur": 889.4000053405762, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8894000053405762, "detail": "System.Runtime.Remoting.Messaging.EnvoyTerminatorSink" } },
- { "pid": 1, "tid": 13, "ts": 6299383.7890625, "dur": 7588.900089263916, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.588900089263916, "detail": "System.Runtime.CompilerServices.Ephemeron" } },
- { "pid": 1, "tid": 13, "ts": 6306975.09765625, "dur": 726.8000245094299, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7268000245094299, "detail": "System.Globalization.EraInfo" } },
- { "pid": 1, "tid": 13, "ts": 6307703.125, "dur": 1200.2999782562256, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2002999782562256, "detail": "System.Runtime.Remoting.Messaging.ErrorMessage" } },
- { "pid": 1, "tid": 13, "ts": 6309270.01953125, "dur": 789.7999882698059, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7897999882698059, "detail": "System.EventHandler" } },
- { "pid": 1, "tid": 13, "ts": 6310061.03515625, "dur": 5300.7001876831055, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.3007001876831055, "detail": "System.Reflection.EventInfo" } },
- { "pid": 1, "tid": 13, "ts": 6315388.18359375, "dur": 919.6000099182129, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9196000099182129, "detail": "System.Diagnostics.Tracing.EventSource" } },
- { "pid": 1, "tid": 13, "ts": 6316309.08203125, "dur": 2178.999900817871, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.178999900817871, "detail": "System.Threading.EventWaitHandle" } },
- { "pid": 1, "tid": 13, "ts": 6318489.74609375, "dur": 17139.90020751953, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 17.13990020751953, "detail": "System.Security.Policy.Evidence" } },
- { "pid": 1, "tid": 13, "ts": 6335631.34765625, "dur": 27525.999069213867, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 27.525999069213867, "detail": "System.Exception" } },
- { "pid": 1, "tid": 13, "ts": 6363190.4296875, "dur": 1525.6999731063843, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5256999731063843, "detail": "System.Runtime.ExceptionServices.ExceptionDispatchInfo" } },
- { "pid": 1, "tid": 13, "ts": 6364718.26171875, "dur": 2951.4000415802, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.9514000415802, "detail": "System.Reflection.ExceptionHandlingClause" } },
- { "pid": 1, "tid": 13, "ts": 6367708.0078125, "dur": 17599.80010986328, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 17.59980010986328, "detail": "System.Threading.ExecutionContext" } },
- { "pid": 1, "tid": 13, "ts": 6385309.5703125, "dur": 7723.199844360352, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.723199844360352, "detail": "System.Threading.ExecutionContextSwitcher" } },
- { "pid": 1, "tid": 13, "ts": 6393033.69140625, "dur": 2562.999963760376, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.562999963760376, "detail": "System.ExecutionEngineException" } },
- { "pid": 1, "tid": 13, "ts": 6395598.6328125, "dur": 2660.2001190185547, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.6602001190185547, "detail": "Microsoft.Win32.ExpandString" } },
- { "pid": 1, "tid": 13, "ts": 6398393.06640625, "dur": 1864.799976348877, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.864799976348877, "detail": "System.Runtime.InteropServices.ExternalException" } },
- { "pid": 1, "tid": 13, "ts": 6400286.1328125, "dur": 4012.1002197265625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.0121002197265625, "detail": "System.Resources.FastResourceComparer" } },
- { "pid": 1, "tid": 13, "ts": 6404299.8046875, "dur": 886.5000009536743, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8865000009536743, "detail": "System.FieldAccessException" } },
- { "pid": 1, "tid": 13, "ts": 6405213.8671875, "dur": 1856.600046157837, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.856600046157837, "detail": "System.Reflection.Emit.FieldBuilder" } },
- { "pid": 1, "tid": 13, "ts": 6407072.265625, "dur": 6640.799999237061, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.6407999992370605, "detail": "System.Reflection.FieldInfo" } },
- { "pid": 1, "tid": 13, "ts": 6413899.4140625, "dur": 2648.200035095215, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.648200035095215, "detail": "System.IO.File" } },
- { "pid": 1, "tid": 13, "ts": 6416759.765625, "dur": 9244.29988861084, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.24429988861084, "detail": "System.IO.FileLoadException" } },
- { "pid": 1, "tid": 13, "ts": 6426031.25, "dur": 8071.900367736816, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.071900367736816, "detail": "System.IO.FileNotFoundException" } },
- { "pid": 1, "tid": 13, "ts": 6434138.671875, "dur": 84548.30169677734, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 84.54830169677734, "detail": "System.IO.FileStream" } },
- { "pid": 1, "tid": 13, "ts": 6518687.5, "dur": 919.9000000953674, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9199000000953674, "detail": "System.IO.FileStreamAsyncResult" } },
- { "pid": 1, "tid": 13, "ts": 6519608.88671875, "dur": 533.8000059127808, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5338000059127808, "detail": "System.IO.FileSystemEnumerableFactory" } },
- { "pid": 1, "tid": 13, "ts": 6520143.06640625, "dur": 495.0000047683716, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4950000047683716, "detail": "System.IO.FileSystemEnumerableHelpers" } },
- { "pid": 1, "tid": 13, "ts": 6520639.16015625, "dur": 2068.000078201294, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.068000078201294, "detail": "System.IO.FileSystemInfo" } },
- { "pid": 1, "tid": 13, "ts": 6522728.515625, "dur": 391.2999927997589, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3912999927997589, "detail": "System.Runtime.CompilerServices.FixedBufferAttribute" } },
- { "pid": 1, "tid": 13, "ts": 6523323.2421875, "dur": 1117.900013923645, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.117900013923645, "detail": "System.Runtime.Serialization.FixupHolderList" } },
- { "pid": 1, "tid": 13, "ts": 6524584.9609375, "dur": 1025.0999927520752, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0250999927520752, "detail": "System.FormatException" } },
- { "pid": 1, "tid": 13, "ts": 6525629.8828125, "dur": 17123.39973449707, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 17.12339973449707, "detail": "System.Runtime.Serialization.FormatterConverter" } },
- { "pid": 1, "tid": 13, "ts": 6542898.4375, "dur": 29501.901626586914, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 29.501901626586914, "detail": "System.Runtime.Serialization.FormatterServices" } },
- { "pid": 1, "tid": 13, "ts": 6572585.44921875, "dur": 1115.9000396728516, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1159000396728516, "detail": "System.GC" } },
- { "pid": 1, "tid": 13, "ts": 6573702.63671875, "dur": 8451.299667358398, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.451299667358398, "detail": "System.Runtime.InteropServices.GCHandle" } },
- { "pid": 1, "tid": 13, "ts": 6582196.2890625, "dur": 5868.500232696533, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.868500232696533, "detail": "System.Reflection.Emit.GenericTypeParameterBuilder" } },
- { "pid": 1, "tid": 13, "ts": 6588066.89453125, "dur": 31307.5008392334, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 31.3075008392334, "detail": "System.Globalization.GregorianCalendar" } },
- { "pid": 1, "tid": 13, "ts": 6619377.44140625, "dur": 19666.500091552734, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 19.666500091552734, "detail": "System.Globalization.GregorianCalendarHelper" } },
- { "pid": 1, "tid": 13, "ts": 6639068.84765625, "dur": 218165.4052734375, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 218.1654052734375, "detail": "System.Guid" } },
- { "pid": 1, "tid": 13, "ts": 6857248.046875, "dur": 293717.71240234375, "ph": "X", "name": "mscorlib5.cpp", "args": { "durationMS": 293.71771240234375, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 7151146.484375, "dur": 1593.0999517440796, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5930999517440796, "detail": "UnityEngine.Animations.AnimationClipPlayable" } },
- { "pid": 1, "tid": 13, "ts": 7152741.69921875, "dur": 1371.899962425232, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.371899962425232, "detail": "UnityEngine.AnimationEvent" } },
- { "pid": 1, "tid": 13, "ts": 7154168.45703125, "dur": 1929.6000003814697, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9296000003814697, "detail": "UnityEngine.Animations.AnimationLayerMixerPlayable" } },
- { "pid": 1, "tid": 13, "ts": 7156100.09765625, "dur": 45761.79885864258, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 45.76179885864258, "detail": "UnityEngine.Animations.AnimationMixerPlayable" } },
- { "pid": 1, "tid": 13, "ts": 7201864.2578125, "dur": 2671.299934387207, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.671299934387207, "detail": "UnityEngine.Animations.AnimationMotionXToDeltaPlayable" } },
- { "pid": 1, "tid": 13, "ts": 7204537.109375, "dur": 2356.300115585327, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.356300115585327, "detail": "UnityEngine.Animations.AnimationOffsetPlayable" } },
- { "pid": 1, "tid": 13, "ts": 7206940.4296875, "dur": 1854.4000387191772, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8544000387191772, "detail": "UnityEngine.Animations.AnimationPosePlayable" } },
- { "pid": 1, "tid": 13, "ts": 7208796.875, "dur": 7917.099952697754, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.917099952697754, "detail": "UnityEngine.Animations.AnimationRemoveScalePlayable" } },
- { "pid": 1, "tid": 13, "ts": 7216716.30859375, "dur": 1873.4999895095825, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8734999895095825, "detail": "UnityEngine.Animations.AnimationScriptPlayable" } },
- { "pid": 1, "tid": 13, "ts": 7218674.8046875, "dur": 1006.3999891281128, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0063999891281128, "detail": "UnityEngine.Animator" } },
- { "pid": 1, "tid": 13, "ts": 7219719.23828125, "dur": 2532.7000617980957, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.5327000617980957, "detail": "UnityEngine.Animations.AnimatorControllerPlayable" } },
- { "pid": 1, "tid": 13, "ts": 7222254.8828125, "dur": 562.6999735832214, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5626999735832214, "detail": "UnityEngine.AnimatorOverrideController" } },
- { "pid": 1, "tid": 13, "ts": 7222880.859375, "dur": 994.0999746322632, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9940999746322632, "detail": "UnityEngine.AnimatorTransitionInfo" } },
- { "pid": 1, "tid": 13, "ts": 7223875.9765625, "dur": 1215.7000303268433, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2157000303268433, "detail": "UnityEngine.HumanBone" } },
- { "pid": 1, "tid": 13, "ts": 7225239.2578125, "dur": 1153.499960899353, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.153499960899353, "detail": "UnityEngine.SkeletonBone" } },
- { "pid": 1, "tid": 13, "ts": 7226395.01953125, "dur": 5762.199878692627, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.762199878692627, "detail": "UnityEngine.StateMachineBehaviour" } },
- { "pid": 1, "tid": 13, "ts": 7232158.69140625, "dur": 2901.4999866485596, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.9014999866485596, "detail": "UnityEngine.AnimatorOverrideController/OnOverrideControllerDirtyCallback" } },
- { "pid": 1, "tid": 13, "ts": 7235068.84765625, "dur": 88298.8052368164, "ph": "X", "name": "UnityEngine.AnimationModule.cpp", "args": { "durationMS": 88.2988052368164, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 7323462.890625, "dur": 1748.7000226974487, "ph": "X", "name": "UnityEngine.SpriteShapeModule.cpp", "args": { "durationMS": 1.7487000226974487, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 7325247.0703125, "dur": 7285.900115966797, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.285900115966797, "detail": "System.Resources.ResourceSet" } },
- { "pid": 1, "tid": 13, "ts": 7332568.84765625, "dur": 4736.000061035156, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.736000061035156, "detail": "System.Runtime.Remoting.Messaging.ReturnMessage" } },
- { "pid": 1, "tid": 13, "ts": 7337306.640625, "dur": 2027.899980545044, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.027899980545044, "detail": "System.Reflection.RtFieldInfo" } },
- { "pid": 1, "tid": 13, "ts": 7339334.9609375, "dur": 655.3999781608582, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6553999781608582, "detail": "Mono.Runtime" } },
- { "pid": 1, "tid": 13, "ts": 7340025.390625, "dur": 1527.3000001907349, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5273000001907349, "detail": "System.Reflection.RuntimeAssembly" } },
- { "pid": 1, "tid": 13, "ts": 7341554.6875, "dur": 1852.1000146865845, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8521000146865845, "detail": "Mono.RuntimeClassHandle" } },
- { "pid": 1, "tid": 13, "ts": 7343693.84765625, "dur": 3446.5999603271484, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.4465999603271484, "detail": "System.Reflection.RuntimeConstructorInfo" } },
- { "pid": 1, "tid": 13, "ts": 7347142.578125, "dur": 1292.6000356674194, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2926000356674194, "detail": "Mono.RuntimeEventHandle" } },
- { "pid": 1, "tid": 13, "ts": 7348437.01171875, "dur": 3445.8999633789062, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.4458999633789062, "detail": "System.Reflection.RuntimeEventInfo" } },
- { "pid": 1, "tid": 13, "ts": 7351884.27734375, "dur": 39751.20162963867, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 39.75120162963867, "detail": "System.RuntimeFieldHandle" } },
- { "pid": 1, "tid": 13, "ts": 7391636.71875, "dur": 1558.500051498413, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.558500051498413, "detail": "System.Reflection.RuntimeFieldInfo" } },
- { "pid": 1, "tid": 13, "ts": 7393197.265625, "dur": 1331.6999673843384, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3316999673843384, "detail": "Mono.RuntimeGPtrArrayHandle" } },
- { "pid": 1, "tid": 13, "ts": 7394530.76171875, "dur": 4923.900127410889, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.923900127410889, "detail": "Mono.RuntimeGenericParamInfoHandle" } },
- { "pid": 1, "tid": 13, "ts": 7399456.54296875, "dur": 1778.9000272750854, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7789000272750854, "detail": "System.Runtime.CompilerServices.RuntimeHelpers" } },
- { "pid": 1, "tid": 13, "ts": 7401237.79296875, "dur": 2829.7998905181885, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.8297998905181885, "detail": "Mono.RuntimeMarshal" } },
- { "pid": 1, "tid": 13, "ts": 7404068.84765625, "dur": 13238.40045928955, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.23840045928955, "detail": "System.RuntimeMethodHandle" } },
- { "pid": 1, "tid": 13, "ts": 7417309.5703125, "dur": 9680.399894714355, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.680399894714355, "detail": "System.Reflection.RuntimeMethodInfo" } },
- { "pid": 1, "tid": 13, "ts": 7426991.69921875, "dur": 503.8999915122986, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5038999915122986, "detail": "System.Reflection.RuntimeModule" } },
- { "pid": 1, "tid": 13, "ts": 7427628.41796875, "dur": 10272.299766540527, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.272299766540527, "detail": "Mono.RuntimePropertyHandle" } },
- { "pid": 1, "tid": 13, "ts": 7437901.85546875, "dur": 3553.600072860718, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.5536000728607178, "detail": "System.Reflection.RuntimePropertyInfo" } },
- { "pid": 1, "tid": 13, "ts": 7441680.17578125, "dur": 64267.89855957031, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 64.26789855957031, "detail": "System.Resources.RuntimeResourceSet" } },
- { "pid": 1, "tid": 13, "ts": 7505971.6796875, "dur": 215119.90356445312, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 215.11990356445312, "detail": "System.RuntimeType" } },
- { "pid": 1, "tid": 13, "ts": 7721094.23828125, "dur": 62964.19906616211, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 62.96419906616211, "detail": "System.RuntimeTypeHandle" } },
- { "pid": 1, "tid": 13, "ts": 7784059.5703125, "dur": 1963.2999897003174, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9632999897003174, "detail": "System.Runtime.CompilerServices.RuntimeWrappedException" } },
- { "pid": 1, "tid": 13, "ts": 7786024.90234375, "dur": 13328.00006866455, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.32800006866455, "detail": "System.SByte" } },
- { "pid": 1, "tid": 13, "ts": 7799380.37109375, "dur": 348.3000099658966, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3483000099658966, "detail": "System.Security.Cryptography.SHA1" } },
- { "pid": 1, "tid": 13, "ts": 7799728.515625, "dur": 1113.0000352859497, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1130000352859497, "detail": "System.Security.Cryptography.SHA1CryptoServiceProvider" } },
- { "pid": 1, "tid": 13, "ts": 7800843.26171875, "dur": 25696.8994140625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 25.6968994140625, "detail": "System.Security.Cryptography.SHA1Internal" } },
- { "pid": 1, "tid": 13, "ts": 7826542.48046875, "dur": 48443.80187988281, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 48.44380187988281, "detail": "SR" } },
- { "pid": 1, "tid": 13, "ts": 7875139.16015625, "dur": 604.3000221252441, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6043000221252441, "detail": "System.Runtime.InteropServices.SafeBuffer" } },
- { "pid": 1, "tid": 13, "ts": 7875744.62890625, "dur": 377.4000108242035, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3774000108242035, "detail": "Microsoft.Win32.SafeHandles.SafeFileHandle" } },
- { "pid": 1, "tid": 13, "ts": 7876123.046875, "dur": 369.8999881744385, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3698999881744385, "detail": "Microsoft.Win32.SafeHandles.SafeFindHandle" } },
- { "pid": 1, "tid": 13, "ts": 7876494.140625, "dur": 796.0000038146973, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7960000038146973, "detail": "Mono.SafeGPtrArrayHandle" } },
- { "pid": 1, "tid": 13, "ts": 7877291.9921875, "dur": 8910.099983215332, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.910099983215332, "detail": "System.Runtime.InteropServices.SafeHandle" } },
- { "pid": 1, "tid": 13, "ts": 7886203.125, "dur": 630.4000020027161, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6304000020027161, "detail": "Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid" } },
- { "pid": 1, "tid": 13, "ts": 7887108.3984375, "dur": 965.7999873161316, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9657999873161316, "detail": "System.Runtime.Serialization.SafeSerializationEventArgs" } },
- { "pid": 1, "tid": 13, "ts": 7888076.66015625, "dur": 13347.999572753906, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.347999572753906, "detail": "System.Runtime.Serialization.SafeSerializationManager" } },
- { "pid": 1, "tid": 13, "ts": 7901426.26953125, "dur": 2003.2000541687012, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.003200054168701, "detail": "Mono.SafeStringMarshal" } },
- { "pid": 1, "tid": 13, "ts": 7903749.51171875, "dur": 360.70001125335693, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.36070001125335693, "detail": "System.Resources.SatelliteContractVersionAttribute" } },
- { "pid": 1, "tid": 13, "ts": 7904136.23046875, "dur": 374.099999666214, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.374099999666214, "detail": "System.IO.SearchResult" } },
- { "pid": 1, "tid": 13, "ts": 7904510.7421875, "dur": 18665.50064086914, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.66550064086914, "detail": "System.Security.SecurityElement" } },
- { "pid": 1, "tid": 13, "ts": 7923178.7109375, "dur": 2143.1000232696533, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1431000232696533, "detail": "System.Security.SecurityException" } },
- { "pid": 1, "tid": 13, "ts": 7925323.2421875, "dur": 29222.599029541016, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 29.222599029541016, "detail": "System.Security.SecurityManager" } },
- { "pid": 1, "tid": 13, "ts": 7954549.31640625, "dur": 2768.199920654297, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.768199920654297, "detail": "Mono.Xml.SecurityParser" } },
- { "pid": 1, "tid": 13, "ts": 7957381.34765625, "dur": 780.4999947547913, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7804999947547913, "detail": "System.Threading.SemaphoreFullException" } },
- { "pid": 1, "tid": 13, "ts": 7958163.57421875, "dur": 29587.900161743164, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 29.587900161743164, "detail": "System.Threading.SemaphoreSlim" } },
- { "pid": 1, "tid": 13, "ts": 7987753.90625, "dur": 903.1000137329102, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9031000137329102, "detail": "System.Threading.SendOrPostCallback" } },
- { "pid": 1, "tid": 13, "ts": 7988658.203125, "dur": 518.8000202178955, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5188000202178955, "detail": "System.Runtime.Serialization.Formatters.Binary.SerObjectInfoCache" } },
- { "pid": 1, "tid": 13, "ts": 7989178.22265625, "dur": 827.3000121116638, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8273000121116638, "detail": "System.Runtime.Serialization.Formatters.Binary.SerObjectInfoInit" } },
- { "pid": 1, "tid": 13, "ts": 7990008.30078125, "dur": 2096.400022506714, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.096400022506714, "detail": "System.Runtime.Serialization.Formatters.Binary.SerStack" } },
- { "pid": 1, "tid": 13, "ts": 7992578.125, "dur": 856.8000197410583, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8568000197410583, "detail": "System.Runtime.Serialization.SerializationEntry" } },
- { "pid": 1, "tid": 13, "ts": 7993436.5234375, "dur": 10539.600372314453, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.539600372314453, "detail": "System.Runtime.Serialization.SerializationEventHandler" } },
- { "pid": 1, "tid": 13, "ts": 8003978.02734375, "dur": 21034.099578857422, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 21.034099578857422, "detail": "System.Runtime.Serialization.SerializationEvents" } },
- { "pid": 1, "tid": 13, "ts": 8025014.16015625, "dur": 3187.7999305725098, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.1877999305725098, "detail": "System.Runtime.Serialization.SerializationEventsCache" } },
- { "pid": 1, "tid": 13, "ts": 8028204.1015625, "dur": 4024.899959564209, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.024899959564209, "detail": "System.Runtime.Serialization.SerializationException" } },
- { "pid": 1, "tid": 13, "ts": 8032230.46875, "dur": 4311.600208282471, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.311600208282471, "detail": "System.Runtime.Serialization.SerializationFieldInfo" } },
- { "pid": 1, "tid": 13, "ts": 8036543.45703125, "dur": 7232.800006866455, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.232800006866455, "detail": "System.Runtime.Serialization.Formatters.Binary.SerializationHeaderRecord" } },
- { "pid": 1, "tid": 13, "ts": 8043778.80859375, "dur": 31997.99919128418, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 31.99799919128418, "detail": "System.Runtime.Serialization.SerializationInfo" } },
- { "pid": 1, "tid": 13, "ts": 8075798.33984375, "dur": 169926.8035888672, "ph": "X", "name": "mscorlib10.cpp", "args": { "durationMS": 169.9268035888672, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 8245789.0625, "dur": 24911.298751831055, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 24.911298751831055, "detail": "System.Runtime.CompilerServices.TaskAwaiter" } },
- { "pid": 1, "tid": 13, "ts": 8270702.1484375, "dur": 3175.8999824523926, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.1758999824523926, "detail": "System.Threading.Tasks.TaskCanceledException" } },
- { "pid": 1, "tid": 13, "ts": 8273879.8828125, "dur": 957.7999711036682, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9577999711036682, "detail": "System.Threading.Tasks.TaskContinuation" } },
- { "pid": 1, "tid": 13, "ts": 8274888.671875, "dur": 16567.100524902344, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 16.567100524902344, "detail": "System.Threading.Tasks.TaskExceptionHolder" } },
- { "pid": 1, "tid": 13, "ts": 8291457.03125, "dur": 2354.0000915527344, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.3540000915527344, "detail": "System.Threading.Tasks.TaskFactory" } },
- { "pid": 1, "tid": 13, "ts": 8293813.4765625, "dur": 7159.800052642822, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.159800052642822, "detail": "System.Threading.Tasks.TaskScheduler" } },
- { "pid": 1, "tid": 13, "ts": 8300975.5859375, "dur": 2084.0001106262207, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0840001106262207, "detail": "System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation" } },
- { "pid": 1, "tid": 13, "ts": 8303060.546875, "dur": 971.3000059127808, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9713000059127808, "detail": "System.Threading.Tasks.TaskSchedulerException" } },
- { "pid": 1, "tid": 13, "ts": 8304051.7578125, "dur": 65295.799255371094, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 65.2957992553711, "detail": "System.TermInfoDriver" } },
- { "pid": 1, "tid": 13, "ts": 8369374.0234375, "dur": 48708.60290527344, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 48.70860290527344, "detail": "System.TermInfoReader" } },
- { "pid": 1, "tid": 13, "ts": 8418155.2734375, "dur": 25799.400329589844, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 25.799400329589844, "detail": "System.Globalization.TextInfo" } },
- { "pid": 1, "tid": 13, "ts": 8443957.03125, "dur": 6723.199844360352, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.723199844360352, "detail": "System.Globalization.TextInfoToLowerData" } },
- { "pid": 1, "tid": 13, "ts": 8450682.6171875, "dur": 1943.50004196167, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.94350004196167, "detail": "System.Globalization.TextInfoToUpperData" } },
- { "pid": 1, "tid": 13, "ts": 8452627.9296875, "dur": 3526.0000228881836, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.5260000228881836, "detail": "System.IO.TextReader" } },
- { "pid": 1, "tid": 13, "ts": 8456156.25, "dur": 7481.800079345703, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.481800079345703, "detail": "System.IO.TextWriter" } },
- { "pid": 1, "tid": 13, "ts": 8463640.625, "dur": 42190.09780883789, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 42.19009780883789, "detail": "System.Globalization.ThaiBuddhistCalendar" } },
- { "pid": 1, "tid": 13, "ts": 8505832.03125, "dur": 12697.799682617188, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.697799682617188, "detail": "System.Threading.Thread" } },
- { "pid": 1, "tid": 13, "ts": 8518531.25, "dur": 737.3999953269958, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7373999953269958, "detail": "System.Threading.ThreadAbortException" } },
- { "pid": 1, "tid": 13, "ts": 8519270.5078125, "dur": 2026.5998840332031, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.026599884033203, "detail": "System.Threading.ThreadHelper" } },
- { "pid": 1, "tid": 13, "ts": 8521299.8046875, "dur": 626.2999773025513, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6262999773025513, "detail": "System.Threading.ThreadInterruptedException" } },
- { "pid": 1, "tid": 13, "ts": 8521926.7578125, "dur": 7269.100189208984, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.269100189208984, "detail": "System.Threading.ThreadPool" } },
- { "pid": 1, "tid": 13, "ts": 8529198.2421875, "dur": 335.50000190734863, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.33550000190734863, "detail": "System.Threading.ThreadPoolGlobals" } },
- { "pid": 1, "tid": 13, "ts": 8529535.15625, "dur": 2795.2001094818115, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.7952001094818115, "detail": "System.Threading.Tasks.ThreadPoolTaskScheduler" } },
- { "pid": 1, "tid": 13, "ts": 8532333.0078125, "dur": 6965.199947357178, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.965199947357178, "detail": "System.Threading.ThreadPoolWorkQueue" } },
- { "pid": 1, "tid": 13, "ts": 8539299.8046875, "dur": 1602.3999452590942, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6023999452590942, "detail": "System.Threading.ThreadPoolWorkQueueThreadLocals" } },
- { "pid": 1, "tid": 13, "ts": 8540904.296875, "dur": 588.100016117096, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.588100016117096, "detail": "System.Threading.ThreadStart" } },
- { "pid": 1, "tid": 13, "ts": 8541512.6953125, "dur": 44399.29962158203, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 44.39929962158203, "detail": "System.Threading.ThreadStateException" } },
- { "pid": 1, "tid": 13, "ts": 8586066.40625, "dur": 5422.900199890137, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.422900199890137, "detail": "System.ThrowHelper" } },
- { "pid": 1, "tid": 13, "ts": 8591721.6796875, "dur": 15071.999549865723, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.071999549865723, "detail": "System.TimeSpan" } },
- { "pid": 1, "tid": 13, "ts": 8606796.875, "dur": 8680.6001663208, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.6806001663208, "detail": "System.Globalization.TimeSpanFormat" } },
- { "pid": 1, "tid": 13, "ts": 8615478.515625, "dur": 745.199978351593, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.745199978351593, "detail": "System.TimeType" } },
- { "pid": 1, "tid": 13, "ts": 8616528.3203125, "dur": 364412.109375, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 364.412109375, "detail": "System.TimeZoneInfo" } },
- { "pid": 1, "tid": 13, "ts": 8981186.5234375, "dur": 269988.1896972656, "ph": "X", "name": "mscorlib13.cpp", "args": { "durationMS": 269.9881896972656, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 9251243.1640625, "dur": 339.3000066280365, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3393000066280365, "detail": "System.__ComObject" } },
- { "pid": 1, "tid": 13, "ts": 9251583.984375, "dur": 15842.599868774414, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.842599868774414, "detail": "System.__DTString" } },
- { "pid": 1, "tid": 13, "ts": 9267427.734375, "dur": 6329.2999267578125, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.3292999267578125, "detail": "System.IO.__Error" } },
- { "pid": 1, "tid": 13, "ts": 9273759.765625, "dur": 35331.80236816406, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 35.33180236816406, "detail": "System.__Filters" } },
- { "pid": 1, "tid": 13, "ts": 9309092.7734375, "dur": 62996.19674682617, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 62.99619674682617, "detail": "System.__Il2CppComDelegate" } },
- { "pid": 1, "tid": 13, "ts": 9372090.8203125, "dur": 929.0000200271606, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9290000200271606, "detail": "System.__Il2CppComObject" } },
- { "pid": 1, "tid": 13, "ts": 9373506.8359375, "dur": 1349.3000268936157, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3493000268936157, "detail": "System.Array/ArrayEnumerator" } },
- { "pid": 1, "tid": 13, "ts": 9374856.4453125, "dur": 40804.30221557617, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 40.80430221557617, "detail": "System.Array/SorterGenericArray" } },
- { "pid": 1, "tid": 13, "ts": 9415663.0859375, "dur": 9613.800048828125, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.613800048828125, "detail": "System.Array/SorterObjectArray" } },
- { "pid": 1, "tid": 13, "ts": 9425279.296875, "dur": 506.5000057220459, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5065000057220459, "detail": "System.Collections.ArrayList/ArrayListDebugView" } },
- { "pid": 1, "tid": 13, "ts": 9425786.1328125, "dur": 3562.9000663757324, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.5629000663757324, "detail": "System.Collections.ArrayList/ArrayListEnumeratorSimple" } },
- { "pid": 1, "tid": 13, "ts": 9429471.6796875, "dur": 514.8000121116638, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5148000121116638, "detail": "System.Runtime.CompilerServices.AsyncMethodBuilderCore/<>c" } },
- { "pid": 1, "tid": 13, "ts": 9430271.484375, "dur": 340.7000005245209, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3407000005245209, "detail": "System.Runtime.CompilerServices.AsyncMethodBuilderCore/ContinuationWrapper" } },
- { "pid": 1, "tid": 13, "ts": 9430613.28125, "dur": 2070.8000659942627, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0708000659942627, "detail": "System.Runtime.CompilerServices.AsyncMethodBuilderCore/MoveNextRunner" } },
- { "pid": 1, "tid": 13, "ts": 9432686.5234375, "dur": 482.699990272522, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.482699990272522, "detail": "System.Threading.Tasks.AwaitTaskContinuation/<>c" } },
- { "pid": 1, "tid": 13, "ts": 9433615.234375, "dur": 589.6000266075134, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5896000266075134, "detail": "System.Console/InternalCancelHandler" } },
- { "pid": 1, "tid": 13, "ts": 9434206.0546875, "dur": 1131.3999891281128, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1313999891281128, "detail": "System.Console/WindowsConsole" } },
- { "pid": 1, "tid": 13, "ts": 9435339.84375, "dur": 424.699991941452, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.424699991941452, "detail": "System.Runtime.Remoting.Channels.CrossAppDomainSink/ProcessMessageRes" } },
- { "pid": 1, "tid": 13, "ts": 9435766.6015625, "dur": 1459.6999883651733, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4596999883651733, "detail": "System.Runtime.Remoting.Contexts.CrossContextChannel/ContextRestoreSink" } },
- { "pid": 1, "tid": 13, "ts": 9437228.515625, "dur": 692.2000050544739, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6922000050544739, "detail": "System.Globalization.CultureInfo/Data" } },
- { "pid": 1, "tid": 13, "ts": 9438117.1875, "dur": 1842.900037765503, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.842900037765503, "detail": "System.DateTimeParse/MatchNumberDelegate" } },
- { "pid": 1, "tid": 13, "ts": 9439996.09375, "dur": 531.4000248908997, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5314000248908997, "detail": "System.DefaultBinder/<>c" } },
- { "pid": 1, "tid": 13, "ts": 9440840.8203125, "dur": 79405.70068359375, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 79.40570068359375, "detail": "System.DelegateSerializationHolder/DelegateEntry" } },
- { "pid": 1, "tid": 13, "ts": 9520554.6875, "dur": 2305.299997329712, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.305299997329712, "detail": "System.Collections.EmptyReadOnlyDictionaryInternal/NodeEnumerator" } },
- { "pid": 1, "tid": 13, "ts": 9522862.3046875, "dur": 3469.399929046631, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.469399929046631, "detail": "System.Text.Encoding/DefaultDecoder" } },
- { "pid": 1, "tid": 13, "ts": 9526333.0078125, "dur": 5970.600128173828, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.970600128173828, "detail": "System.Text.Encoding/DefaultEncoder" } },
- { "pid": 1, "tid": 13, "ts": 9532306.640625, "dur": 5500.5998611450195, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.5005998611450195, "detail": "System.Text.Encoding/EncodingByteBuffer" } },
- { "pid": 1, "tid": 13, "ts": 9537808.59375, "dur": 2881.5999031066895, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.8815999031066895, "detail": "System.Text.Encoding/EncodingCharBuffer" } },
- { "pid": 1, "tid": 13, "ts": 9540947.265625, "dur": 837.1999859809875, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8371999859809875, "detail": "System.Reflection.EventInfo/AddEventAdapter" } },
- { "pid": 1, "tid": 13, "ts": 9541786.1328125, "dur": 5750.699996948242, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.750699996948242, "detail": "System.Security.Policy.Evidence/EvidenceEnumerator" } },
- { "pid": 1, "tid": 13, "ts": 9547582.03125, "dur": 2673.3999252319336, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.6733999252319336, "detail": "System.Threading.ExecutionContext/Reader" } },
- { "pid": 1, "tid": 13, "ts": 9550256.8359375, "dur": 1304.2000532150269, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3042000532150269, "detail": "System.IO.FileStream/ReadDelegate" } },
- { "pid": 1, "tid": 13, "ts": 9551563.4765625, "dur": 1138.100028038025, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.138100028038025, "detail": "System.IO.FileStream/WriteDelegate" } },
- { "pid": 1, "tid": 13, "ts": 9552703.125, "dur": 825.5000114440918, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8255000114440918, "detail": "System.Runtime.Serialization.FormatterServices/<>c__DisplayClass9_0" } },
- { "pid": 1, "tid": 13, "ts": 9553613.28125, "dur": 2883.1000328063965, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.8831000328063965, "detail": "System.Guid/GuidResult" } },
- { "pid": 1, "tid": 13, "ts": 9556527.34375, "dur": 483.50000381469727, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.48350000381469727, "detail": "System.Collections.Hashtable/HashtableDebugView" } },
- { "pid": 1, "tid": 13, "ts": 9557011.71875, "dur": 2718.100070953369, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.718100070953369, "detail": "System.Collections.Hashtable/HashtableEnumerator" } },
- { "pid": 1, "tid": 13, "ts": 9559733.3984375, "dur": 34750, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 34.75, "detail": "System.Collections.Hashtable/KeyCollection" } },
- { "pid": 1, "tid": 13, "ts": 9594485.3515625, "dur": 14466.09878540039, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.46609878540039, "detail": "System.Collections.Hashtable/SyncHashtable" } },
- { "pid": 1, "tid": 13, "ts": 9608954.1015625, "dur": 699.8000144958496, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6998000144958496, "detail": "System.Collections.Hashtable/bucket" } },
- { "pid": 1, "tid": 13, "ts": 9609877.9296875, "dur": 889.5999789237976, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8895999789237976, "detail": "System.Runtime.Remoting.Lifetime.Lease/RenewalDelegate" } },
- { "pid": 1, "tid": 13, "ts": 9610931.640625, "dur": 5822.500228881836, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.822500228881836, "detail": "System.Collections.ListDictionaryInternal/NodeEnumerator" } },
- { "pid": 1, "tid": 13, "ts": 9616754.8828125, "dur": 1434.2000484466553, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4342000484466553, "detail": "System.Runtime.Remoting.Messaging.LogicalCallContext/Reader" } },
- { "pid": 1, "tid": 13, "ts": 9618192.3828125, "dur": 452.10000872612, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.45210000872612, "detail": "Mono.Globalization.Unicode.MSCompatUnicodeTable/<>c" } },
- { "pid": 1, "tid": 13, "ts": 9618644.53125, "dur": 2542.7000522613525, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.5427000522613525, "detail": "System.Runtime.Remoting.Messaging.MessageDictionary/DictionaryEnumerator" } },
- { "pid": 1, "tid": 13, "ts": 9621224.609375, "dur": 387.4000012874603, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3874000012874603, "detail": "System.MonoCustomAttrs/AttributeInfo" } },
- { "pid": 1, "tid": 13, "ts": 9621614.2578125, "dur": 997.2000122070312, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9972000122070312, "detail": "System.Reflection.MonoProperty/GetterAdapter" } },
- { "pid": 1, "tid": 13, "ts": 9622613.28125, "dur": 1643.4999704360962, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6434999704360962, "detail": "System.Number/NumberBuffer" } },
- { "pid": 1, "tid": 13, "ts": 9624259.765625, "dur": 13669.900894165039, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.669900894165039, "detail": "System.NumberFormatter/CustomInfo" } },
- { "pid": 1, "tid": 13, "ts": 9637931.640625, "dur": 472.69999980926514, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.47269999980926514, "detail": "System.Threading.OSSpecificSynchronizationContext/<>c" } },
- { "pid": 1, "tid": 13, "ts": 9638706.0546875, "dur": 21137.399673461914, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 21.137399673461914, "detail": "System.Threading.OSSpecificSynchronizationContext/InvocationEntryDelegate" } },
- { "pid": 1, "tid": 13, "ts": 9660064.453125, "dur": 8484.600067138672, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.484600067138672, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectReader/TopLevelAssemblyTypeResolver" } },
- { "pid": 1, "tid": 13, "ts": 9668779.296875, "dur": 3037.1999740600586, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.0371999740600586, "detail": "System.ParameterizedStrings/FormatParam" } },
- { "pid": 1, "tid": 13, "ts": 9671820.3125, "dur": 1565.8999681472778, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5658999681472778, "detail": "System.ParameterizedStrings/LowLevelStack" } },
- { "pid": 1, "tid": 13, "ts": 9673387.6953125, "dur": 435.49999594688416, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.43549999594688416, "detail": "System.Collections.Queue/QueueDebugView" } },
- { "pid": 1, "tid": 13, "ts": 9673824.21875, "dur": 1617.4999475479126, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6174999475479126, "detail": "System.Collections.Queue/QueueEnumerator" } },
- { "pid": 1, "tid": 13, "ts": 9676005.859375, "dur": 12301.600456237793, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.301600456237793, "detail": "System.Resources.ResourceReader/ResourceEnumerator" } },
- { "pid": 1, "tid": 13, "ts": 9688486.328125, "dur": 962.3000025749207, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9623000025749207, "detail": "System.Security.SecurityElement/SecurityAttribute" } },
- { "pid": 1, "tid": 13, "ts": 9689449.21875, "dur": 4405.600070953369, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.405600070953369, "detail": "System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31" } },
- { "pid": 1, "tid": 13, "ts": 9693856.4453125, "dur": 6545.599937438965, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.545599937438965, "detail": "System.Threading.SemaphoreSlim/TaskNode" } },
- { "pid": 1, "tid": 13, "ts": 9700403.3203125, "dur": 335.70000529289246, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.33570000529289246, "detail": "Mono.Globalization.Unicode.SimpleCollator/Context" } },
- { "pid": 1, "tid": 13, "ts": 9700741.2109375, "dur": 822.0000267028809, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8220000267028809, "detail": "Mono.Globalization.Unicode.SimpleCollator/Escape" } },
- { "pid": 1, "tid": 13, "ts": 9701845.703125, "dur": 3619.6999549865723, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.6196999549865723, "detail": "Mono.Xml.SmallXmlParser/AttrListImpl" } },
- { "pid": 1, "tid": 13, "ts": 9705467.7734375, "dur": 738.6999726295471, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7386999726295471, "detail": "System.Runtime.Remoting.SoapServices/TypeInfo" } },
- { "pid": 1, "tid": 13, "ts": 9706208.0078125, "dur": 543.2999730110168, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5432999730110168, "detail": "System.Collections.SortedList/SortedListDebugView" } },
- { "pid": 1, "tid": 13, "ts": 9706752.9296875, "dur": 3241.1999702453613, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.2411999702453613, "detail": "System.Collections.SortedList/SortedListEnumerator" } },
- { "pid": 1, "tid": 13, "ts": 9709996.09375, "dur": 4346.30012512207, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.34630012512207, "detail": "System.Threading.SpinLock/SystemThreading_SpinLockDebugView" } },
- { "pid": 1, "tid": 13, "ts": 9714344.7265625, "dur": 434.3999922275543, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4343999922275543, "detail": "System.Collections.Stack/StackDebugView" } },
- { "pid": 1, "tid": 13, "ts": 9714779.296875, "dur": 1781.499981880188, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.781499981880188, "detail": "System.Collections.Stack/StackEnumerator" } },
- { "pid": 1, "tid": 13, "ts": 9716611.328125, "dur": 1878.7000179290771, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8787000179290771, "detail": "System.IO.Stream/<>c" } },
- { "pid": 1, "tid": 13, "ts": 9718491.2109375, "dur": 37460.70098876953, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 37.46070098876953, "detail": "System.IO.Stream/NullStream" } },
- { "pid": 1, "tid": 13, "ts": 9755954.1015625, "dur": 10628.299713134766, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.628299713134766, "detail": "System.IO.Stream/ReadWriteTask" } },
- { "pid": 1, "tid": 13, "ts": 9766583.984375, "dur": 2431.0998916625977, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.4310998916625977, "detail": "System.IO.Stream/SynchronousAsyncResult" } },
- { "pid": 1, "tid": 13, "ts": 9769020.5078125, "dur": 908.29998254776, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.90829998254776, "detail": "System.IO.StreamReader/NullStreamReader" } },
- { "pid": 1, "tid": 13, "ts": 9769930.6640625, "dur": 453.50000262260437, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.45350000262260437, "detail": "System.Threading.Tasks.SynchronizationContextAwaitTaskContinuation/<>c" } },
- { "pid": 1, "tid": 13, "ts": 9770385.7421875, "dur": 1016.1999464035034, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0161999464035034, "detail": "System.Threading.Tasks.Task/<>c" } },
- { "pid": 1, "tid": 13, "ts": 9771403.3203125, "dur": 1944.599986076355, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.944599986076355, "detail": "System.Threading.Tasks.Task/<>c__DisplayClass178_0" } },
- { "pid": 1, "tid": 13, "ts": 9773349.609375, "dur": 661.0000133514404, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6610000133514404, "detail": "System.Threading.Tasks.Task/ContingentProperties" } },
- { "pid": 1, "tid": 13, "ts": 9774011.71875, "dur": 1466.1999940872192, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4661999940872192, "detail": "System.Threading.Tasks.Task/DelayPromise" } },
- { "pid": 1, "tid": 13, "ts": 9775787.109375, "dur": 2204.200029373169, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.204200029373169, "detail": "System.Threading.Tasks.TaskFactory/CompleteOnInvokePromise" } },
- { "pid": 1, "tid": 13, "ts": 9777992.1875, "dur": 3800.600051879883, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.800600051879883, "detail": "System.Threading.Tasks.TaskScheduler/SystemThreadingTasks_TaskSchedulerDebugView" } },
- { "pid": 1, "tid": 13, "ts": 9781795.8984375, "dur": 642.4999833106995, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6424999833106995, "detail": "System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation/<>c" } },
- { "pid": 1, "tid": 13, "ts": 9782439.453125, "dur": 1070.3999996185303, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0703999996185303, "detail": "System.IO.TextReader/<>c" } },
- { "pid": 1, "tid": 13, "ts": 9783511.71875, "dur": 388.9000117778778, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3889000117778778, "detail": "System.IO.TextReader/NullTextReader" } },
- { "pid": 1, "tid": 13, "ts": 9783901.3671875, "dur": 1126.8999576568604, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1268999576568604, "detail": "System.IO.TextReader/SyncTextReader" } },
- { "pid": 1, "tid": 13, "ts": 9785029.296875, "dur": 2806.299924850464, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.806299924850464, "detail": "System.IO.TextWriter/<>c" } },
- { "pid": 1, "tid": 13, "ts": 9787838.8671875, "dur": 615.8000230789185, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6158000230789185, "detail": "System.IO.TextWriter/NullTextWriter" } },
- { "pid": 1, "tid": 13, "ts": 9788455.078125, "dur": 2169.6999073028564, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1696999073028564, "detail": "System.IO.TextWriter/SyncTextWriter" } },
- { "pid": 1, "tid": 13, "ts": 9790627.9296875, "dur": 4197.299957275391, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.197299957275391, "detail": "System.Threading.ThreadPool/<EnumerateQueuedWorkItems>d__21" } },
- { "pid": 1, "tid": 13, "ts": 9794828.125, "dur": 30364.79949951172, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 30.36479949951172, "detail": "System.Threading.Tasks.ThreadPoolTaskScheduler/<FilterTasksFromWorkItems>d__7" } },
- { "pid": 1, "tid": 13, "ts": 9825194.3359375, "dur": 2865.9000396728516, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.8659000396728516, "detail": "System.Threading.ThreadPoolWorkQueue/QueueSegment" } },
- { "pid": 1, "tid": 13, "ts": 9828062.5, "dur": 9615.099906921387, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.615099906921387, "detail": "System.Threading.ThreadPoolWorkQueue/WorkStealingQueue" } },
- { "pid": 1, "tid": 13, "ts": 9837680.6640625, "dur": 5503.799915313721, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.503799915313721, "detail": "System.Globalization.TimeSpanFormat/FormatLiterals" } },
- { "pid": 1, "tid": 13, "ts": 9843210.9375, "dur": 559.0999722480774, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5590999722480774, "detail": "System.TimeZoneInfo/<>c" } },
- { "pid": 1, "tid": 13, "ts": 9843770.5078125, "dur": 11120.400428771973, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.120400428771973, "detail": "System.TimeZoneInfo/AdjustmentRule" } },
- { "pid": 1, "tid": 13, "ts": 9854893.5546875, "dur": 2864.7000789642334, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.8647000789642334, "detail": "System.TimeZoneInfo/DYNAMIC_TIME_ZONE_INFORMATION" } },
- { "pid": 1, "tid": 13, "ts": 9857805.6640625, "dur": 981.9999933242798, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9819999933242798, "detail": "System.TimeZoneInfo/TIME_ZONE_INFORMATION" } },
- { "pid": 1, "tid": 13, "ts": 9858789.0625, "dur": 47296.9970703125, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 47.2969970703125, "detail": "System.TimeZoneInfo/TransitionTime" } },
- { "pid": 1, "tid": 13, "ts": 9906088.8671875, "dur": 13472.399711608887, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.472399711608887, "detail": "System.Threading.Timer/Scheduler" } },
- { "pid": 1, "tid": 13, "ts": 9919580.078125, "dur": 192289.00146484375, "ph": "X", "name": "mscorlib16.cpp", "args": { "durationMS": 192.28900146484375, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 10111913.0859375, "dur": 2551.300048828125, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.551300048828125, "detail": "UnityEngine.Experimental.GlobalIllumination.RectangleLight" } },
- { "pid": 1, "tid": 13, "ts": 10114481.4453125, "dur": 1839.8000001907349, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8398000001907349, "detail": "UnityEngine.ReflectionProbe" } },
- { "pid": 1, "tid": 13, "ts": 10116323.2421875, "dur": 2283.6999893188477, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.2836999893188477, "detail": "UnityEngine.Rendering.RenderPipeline" } },
- { "pid": 1, "tid": 13, "ts": 10118608.3984375, "dur": 4453.800201416016, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.453800201416016, "detail": "UnityEngine.Rendering.RenderPipelineAsset" } },
- { "pid": 1, "tid": 13, "ts": 10123064.453125, "dur": 4647.900104522705, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.647900104522705, "detail": "UnityEngine.Rendering.RenderPipelineManager" } },
- { "pid": 1, "tid": 13, "ts": 10127743.1640625, "dur": 42438.0989074707, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 42.4380989074707, "detail": "UnityEngine.RenderTexture" } },
- { "pid": 1, "tid": 13, "ts": 10170206.0546875, "dur": 5853.099822998047, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.853099822998047, "detail": "UnityEngine.RenderTextureDescriptor" } },
- { "pid": 1, "tid": 13, "ts": 10176097.65625, "dur": 510.90002059936523, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5109000205993652, "detail": "UnityEngine.Renderer" } },
- { "pid": 1, "tid": 13, "ts": 10176917.96875, "dur": 6869.4000244140625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.8694000244140625, "detail": "UnityEngine.Resolution" } },
- { "pid": 1, "tid": 13, "ts": 10183790.0390625, "dur": 1568.6999559402466, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5686999559402466, "detail": "UnityEngine.ResourceRequest" } },
- { "pid": 1, "tid": 13, "ts": 10185359.375, "dur": 1171.3999509811401, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1713999509811401, "detail": "UnityEngine.Resources" } },
- { "pid": 1, "tid": 13, "ts": 10186532.2265625, "dur": 1103.9999723434448, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1039999723434448, "detail": "UnityEngine.ResourcesAPI" } },
- { "pid": 1, "tid": 13, "ts": 10187870.1171875, "dur": 620.2999949455261, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6202999949455261, "detail": "UnityEngine.RuntimeInitializeOnLoadMethodAttribute" } },
- { "pid": 1, "tid": 13, "ts": 10188511.71875, "dur": 1131.700038909912, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.131700038909912, "detail": "UnityEngine.SceneManagement.Scene" } },
- { "pid": 1, "tid": 13, "ts": 10189645.5078125, "dur": 4246.200084686279, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.246200084686279, "detail": "UnityEngine.SceneManagement.SceneManager" } },
- { "pid": 1, "tid": 13, "ts": 10193894.53125, "dur": 5890.600204467773, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.890600204467773, "detail": "UnityEngine.SceneManagement.SceneManagerAPI" } },
- { "pid": 1, "tid": 13, "ts": 10199786.1328125, "dur": 655.3000211715698, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6553000211715698, "detail": "UnityEngine.SceneManagement.SceneManagerAPIInternal" } },
- { "pid": 1, "tid": 13, "ts": 10200747.0703125, "dur": 1760.10000705719, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.76010000705719, "detail": "UnityEngine.ScriptableObject" } },
- { "pid": 1, "tid": 13, "ts": 10202509.765625, "dur": 3262.5999450683594, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.2625999450683594, "detail": "UnityEngine.Rendering.ScriptableRenderContext" } },
- { "pid": 1, "tid": 13, "ts": 10205774.4140625, "dur": 1567.7000284194946, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5677000284194946, "detail": "UnityEngine.Experimental.Rendering.ScriptableRuntimeReflectionSystemSettings" } },
- { "pid": 1, "tid": 13, "ts": 10207343.75, "dur": 1009.5000267028809, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0095000267028809, "detail": "UnityEngine.Experimental.Rendering.ScriptableRuntimeReflectionSystemWrapper" } },
- { "pid": 1, "tid": 13, "ts": 10208354.4921875, "dur": 375.40000677108765, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.37540000677108765, "detail": "UnityEngine.ScriptingUtility" } },
- { "pid": 1, "tid": 13, "ts": 10209089.84375, "dur": 1447.4999904632568, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4474999904632568, "detail": "UnityEngine.SetupCoroutine" } },
- { "pid": 1, "tid": 13, "ts": 10210539.0625, "dur": 338.4999930858612, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3384999930858612, "detail": "UnityEngine.Shader" } },
- { "pid": 1, "tid": 13, "ts": 10210900.390625, "dur": 37290.897369384766, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 37.290897369384766, "detail": "UnityEngine.Rendering.ShaderTagId" } },
- { "pid": 1, "tid": 13, "ts": 10248391.6015625, "dur": 519.599974155426, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.519599974155426, "detail": "UnityEngine.SpaceAttribute" } },
- { "pid": 1, "tid": 13, "ts": 10248913.0859375, "dur": 2859.8999977111816, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.8598999977111816, "detail": "UnityEngine.Experimental.GlobalIllumination.SpotLight" } },
- { "pid": 1, "tid": 13, "ts": 10251775.390625, "dur": 4496.099948883057, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.496099948883057, "detail": "UnityEngine.Sprite" } },
- { "pid": 1, "tid": 13, "ts": 10256472.65625, "dur": 2386.4998817443848, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.3864998817443848, "detail": "UnityEngine.U2D.SpriteAtlasManager" } },
- { "pid": 1, "tid": 13, "ts": 10258861.328125, "dur": 1039.0000343322754, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0390000343322754, "detail": "UnityEngine.U2D.SpriteBone" } },
- { "pid": 1, "tid": 13, "ts": 10260331.0546875, "dur": 21443.500518798828, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 21.443500518798828, "detail": "UnityEngine.StackTraceUtility" } },
- { "pid": 1, "tid": 13, "ts": 10281796.875, "dur": 50347.900390625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 50.347900390625, "detail": "UnityEngine.Rendering.SupportedRenderingFeatures" } },
- { "pid": 1, "tid": 13, "ts": 10332146.484375, "dur": 2115.2000427246094, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1152000427246094, "detail": "UnityEngine.SystemInfo" } },
- { "pid": 1, "tid": 13, "ts": 10334263.671875, "dur": 470.8000123500824, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4708000123500824, "detail": "UnityEngine.TextAreaAttribute" } },
- { "pid": 1, "tid": 13, "ts": 10334735.3515625, "dur": 2738.100051879883, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.738100051879883, "detail": "UnityEngine.TextAsset" } },
- { "pid": 1, "tid": 13, "ts": 10337474.609375, "dur": 3874.7000694274902, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.8747000694274902, "detail": "UnityEngine.Texture" } },
- { "pid": 1, "tid": 13, "ts": 10341351.5625, "dur": 977.9000282287598, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9779000282287598, "detail": "UnityEngine.Texture2D" } },
- { "pid": 1, "tid": 13, "ts": 10342330.078125, "dur": 5796.800136566162, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.796800136566162, "detail": "UnityEngine.Texture2DArray" } },
- { "pid": 1, "tid": 13, "ts": 10348129.8828125, "dur": 5140.799999237061, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.1407999992370605, "detail": "UnityEngine.Texture3D" } },
- { "pid": 1, "tid": 13, "ts": 10353322.265625, "dur": 760.9000205993652, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7609000205993652, "detail": "UnityEngine.Experimental.Playables.TextureMixerPlayable" } },
- { "pid": 1, "tid": 13, "ts": 10354136.71875, "dur": 395.90001106262207, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.39590001106262207, "detail": "UnityEngine.Time" } },
- { "pid": 1, "tid": 13, "ts": 10354739.2578125, "dur": 8489.00032043457, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.48900032043457, "detail": "UnityEngine.TouchScreenKeyboard" } },
- { "pid": 1, "tid": 13, "ts": 10363298.828125, "dur": 413.3000075817108, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4133000075817108, "detail": "UnityEngine.TrackedReference" } },
- { "pid": 1, "tid": 13, "ts": 10363712.890625, "dur": 23199.501037597656, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 23.199501037597656, "detail": "UnityEngine.Transform" } },
- { "pid": 1, "tid": 13, "ts": 10386914.0625, "dur": 906.7000150680542, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9067000150680542, "detail": "UnityEngineInternal.TypeInferenceRuleAttribute" } },
- { "pid": 1, "tid": 13, "ts": 10387836.9140625, "dur": 666.8000221252441, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6668000221252441, "detail": "UnityEngine.UnhandledExceptionHandler" } },
- { "pid": 1, "tid": 13, "ts": 10388504.8828125, "dur": 1213.7000560760498, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2137000560760498, "detail": "UnityEngine.Events.UnityAction" } },
- { "pid": 1, "tid": 13, "ts": 10389720.703125, "dur": 3015.3000354766846, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.0153000354766846, "detail": "UnityEngine.Events.UnityEvent" } },
- { "pid": 1, "tid": 13, "ts": 10392738.28125, "dur": 10792.200088500977, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.792200088500977, "detail": "UnityEngine.Events.UnityEventBase" } },
- { "pid": 1, "tid": 13, "ts": 10403557.6171875, "dur": 1964.1000032424927, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9641000032424927, "detail": "UnityEngine.Events.UnityEventTools" } },
- { "pid": 1, "tid": 13, "ts": 10405523.4375, "dur": 541.4999723434448, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5414999723434448, "detail": "UnityEngine.UnityException" } },
- { "pid": 1, "tid": 13, "ts": 10406066.40625, "dur": 10651.100158691406, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.651100158691406, "detail": "UnityEngine.UnitySynchronizationContext" } },
- { "pid": 1, "tid": 13, "ts": 10416986.328125, "dur": 18766.399383544922, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.766399383544922, "detail": "UnityEngine.Vector2" } },
- { "pid": 1, "tid": 13, "ts": 10435754.8828125, "dur": 3869.6000576019287, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.8696000576019287, "detail": "UnityEngine.Vector2Int" } },
- { "pid": 1, "tid": 13, "ts": 10439625.9765625, "dur": 18184.898376464844, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.184898376464844, "detail": "UnityEngine.Vector3" } },
- { "pid": 1, "tid": 13, "ts": 10457813.4765625, "dur": 9949.399948120117, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.949399948120117, "detail": "UnityEngine.Vector4" } },
- { "pid": 1, "tid": 13, "ts": 10468038.0859375, "dur": 407.20000863075256, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.40720000863075256, "detail": "UnityEngine.WaitForSeconds" } },
- { "pid": 1, "tid": 13, "ts": 10468447.265625, "dur": 18166.799545288086, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.166799545288086, "detail": "UnityEngine.WaitForSecondsRealtime" } },
- { "pid": 1, "tid": 13, "ts": 10487123.046875, "dur": 1123.9999532699585, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1239999532699585, "detail": "UnityEngine.Application/LogCallback" } },
- { "pid": 1, "tid": 13, "ts": 10488248.046875, "dur": 572.0000267028809, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5720000267028809, "detail": "UnityEngine.Application/LowMemoryCallback" } },
- { "pid": 1, "tid": 13, "ts": 10488821.2890625, "dur": 1420.4000234603882, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4204000234603882, "detail": "UnityEngine.Rendering.BatchRendererGroup/OnPerformCulling" } },
- { "pid": 1, "tid": 13, "ts": 10490244.140625, "dur": 569.8999762535095, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5698999762535095, "detail": "UnityEngine.BeforeRenderHelper/OrderBlock" } },
- { "pid": 1, "tid": 13, "ts": 10490816.40625, "dur": 1709.3000411987305, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7093000411987305, "detail": "UnityEngine.Camera/CameraCallback" } },
- { "pid": 1, "tid": 13, "ts": 10492876.953125, "dur": 730.5999994277954, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7305999994277954, "detail": "UnityEngine.CullingGroup/StateChanged" } },
- { "pid": 1, "tid": 13, "ts": 10493608.3984375, "dur": 692.0999884605408, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6920999884605408, "detail": "UnityEngine.Display/DisplaysUpdatedDelegate" } },
- { "pid": 1, "tid": 13, "ts": 10495040.0390625, "dur": 5223.299980163574, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.223299980163574, "detail": "UnityEngine.Experimental.GlobalIllumination.Lightmapping/<>c" } },
- { "pid": 1, "tid": 13, "ts": 10500265.625, "dur": 965.0999903678894, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9650999903678894, "detail": "UnityEngine.Experimental.GlobalIllumination.Lightmapping/RequestLightsDelegate" } },
- { "pid": 1, "tid": 13, "ts": 10501261.71875, "dur": 1117.2000169754028, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1172000169754028, "detail": "UnityEngine.Playables.PlayableBinding/CreateOutputMethod" } },
- { "pid": 1, "tid": 13, "ts": 10502380.859375, "dur": 807.200014591217, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.807200014591217, "detail": "UnityEngine.Networking.PlayerConnection.PlayerConnection/<>c__DisplayClass12_0" } },
- { "pid": 1, "tid": 13, "ts": 10503189.453125, "dur": 442.2000050544739, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4422000050544739, "detail": "UnityEngine.Networking.PlayerConnection.PlayerConnection/<>c__DisplayClass13_0" } },
- { "pid": 1, "tid": 13, "ts": 10503908.203125, "dur": 1135.599970817566, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.135599970817566, "detail": "UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/<>c__DisplayClass6_0" } },
- { "pid": 1, "tid": 13, "ts": 10505045.8984375, "dur": 410.8999967575073, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4108999967575073, "detail": "UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/<>c__DisplayClass7_0" } },
- { "pid": 1, "tid": 13, "ts": 10505458.0078125, "dur": 408.8999927043915, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4088999927043915, "detail": "UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/<>c__DisplayClass8_0" } },
- { "pid": 1, "tid": 13, "ts": 10506277.34375, "dur": 785.1999998092651, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7851999998092651, "detail": "UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers" } },
- { "pid": 1, "tid": 13, "ts": 10507064.453125, "dur": 631.6999793052673, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6316999793052673, "detail": "UnityEngine.LowLevel.PlayerLoopSystem/UpdateFunction" } },
- { "pid": 1, "tid": 13, "ts": 10508726.5625, "dur": 2313.999891281128, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.313999891281128, "detail": "UnityEngine.RectTransform/ReapplyDrivenProperties" } },
- { "pid": 1, "tid": 13, "ts": 10511116.2109375, "dur": 4607.2998046875, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.6072998046875, "detail": "UnityEngine.TextAsset/EncodingUtility" } },
- { "pid": 1, "tid": 13, "ts": 10515767.578125, "dur": 873.6000061035156, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8736000061035156, "detail": "UnityEngine.Transform/Enumerator" } },
- { "pid": 1, "tid": 13, "ts": 10516642.578125, "dur": 602.5999784469604, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6025999784469604, "detail": "UnityEngine.UnhandledExceptionHandler/<>c" } },
- { "pid": 1, "tid": 13, "ts": 10517246.09375, "dur": 1442.199945449829, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.442199945449829, "detail": "UnityEngine.UnitySynchronizationContext/WorkRequest" } },
- { "pid": 1, "tid": 13, "ts": 10518801.7578125, "dur": 203908.203125, "ph": "X", "name": "UnityEngine.CoreModule1.cpp", "args": { "durationMS": 203.908203125, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 10722746.09375, "dur": 68539.19982910156, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 68.53919982910156, "detail": "UnityEngine.UI.Selectable" } },
- { "pid": 1, "tid": 13, "ts": 10791287.109375, "dur": 2527.4999141693115, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.5274999141693115, "detail": "UnityEngine.UI.SetPropertyUtility" } },
- { "pid": 1, "tid": 13, "ts": 10793816.40625, "dur": 8352.700233459473, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.352700233459473, "detail": "UnityEngine.UI.Shadow" } },
- { "pid": 1, "tid": 13, "ts": 10802170.8984375, "dur": 46705.40237426758, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 46.70540237426758, "detail": "UnityEngine.UI.Slider" } },
- { "pid": 1, "tid": 13, "ts": 10848878.90625, "dur": 3740.2000427246094, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.7402000427246094, "detail": "UnityEngine.UI.SpriteState" } },
- { "pid": 1, "tid": 13, "ts": 10852621.09375, "dur": 49728.90090942383, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 49.72890090942383, "detail": "UnityEngine.EventSystems.StandaloneInputModule" } },
- { "pid": 1, "tid": 13, "ts": 10902350.5859375, "dur": 22219.900131225586, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 22.219900131225586, "detail": "UnityEngine.UI.StencilMaterial" } },
- { "pid": 1, "tid": 13, "ts": 10924573.2421875, "dur": 42453.6018371582, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 42.4536018371582, "detail": "UnityEngine.UI.Text" } },
- { "pid": 1, "tid": 13, "ts": 10967028.3203125, "dur": 19244.89974975586, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 19.24489974975586, "detail": "UnityEngine.UI.Toggle" } },
- { "pid": 1, "tid": 13, "ts": 10986276.3671875, "dur": 13055.000305175781, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.055000305175781, "detail": "UnityEngine.UI.ToggleGroup" } },
- { "pid": 1, "tid": 13, "ts": 10999333.0078125, "dur": 17552.99949645996, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 17.55299949645996, "detail": "UnityEngine.EventSystems.TouchInputModule" } },
- { "pid": 1, "tid": 13, "ts": 11016888.671875, "dur": 2264.899969100952, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.264899969100952, "detail": "UnityEngine.EventSystems.UIBehaviour" } },
- { "pid": 1, "tid": 13, "ts": 11019155.2734375, "dur": 32979.29763793945, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 32.97929763793945, "detail": "UnityEngine.UI.VertexHelper" } },
- { "pid": 1, "tid": 13, "ts": 11052136.71875, "dur": 1474.3000268936157, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4743000268936157, "detail": "UnityEngine.UI.VerticalLayoutGroup" } },
- { "pid": 1, "tid": 13, "ts": 11053654.296875, "dur": 69540.69519042969, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 69.54069519042969, "detail": "UnityEngine.UI.Button/<OnFinishSubmit>d__9" } },
- { "pid": 1, "tid": 13, "ts": 11123621.09375, "dur": 3961.4999294281006, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.9614999294281006, "detail": "UnityEngine.UI.DefaultControls/DefaultRuntimeFactory" } },
- { "pid": 1, "tid": 13, "ts": 11127583.984375, "dur": 400.4000127315521, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4004000127315521, "detail": "UnityEngine.UI.DefaultControls/Resources" } },
- { "pid": 1, "tid": 13, "ts": 11127986.328125, "dur": 9752.900123596191, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.752900123596191, "detail": "UnityEngine.UI.Dropdown/<>c__DisplayClass63_0" } },
- { "pid": 1, "tid": 13, "ts": 11137741.2109375, "dur": 1991.0999536514282, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9910999536514282, "detail": "UnityEngine.UI.Dropdown/<DelayedDestroyDropdownList>d__75" } },
- { "pid": 1, "tid": 13, "ts": 11139962.890625, "dur": 2102.9999256134033, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1029999256134033, "detail": "UnityEngine.UI.Dropdown/DropdownItem" } },
- { "pid": 1, "tid": 13, "ts": 11142067.3828125, "dur": 1445.9999799728394, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4459999799728394, "detail": "UnityEngine.UI.Dropdown/OptionData" } },
- { "pid": 1, "tid": 13, "ts": 11143515.625, "dur": 701.200008392334, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.701200008392334, "detail": "UnityEngine.UI.Dropdown/OptionDataList" } },
- { "pid": 1, "tid": 13, "ts": 11144217.7734375, "dur": 2814.5999908447266, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.8145999908447266, "detail": "UnityEngine.EventSystems.EventTrigger/Entry" } },
- { "pid": 1, "tid": 13, "ts": 11147034.1796875, "dur": 540.0000214576721, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5400000214576721, "detail": "UnityEngine.EventSystems.EventTrigger/TriggerEvent" } },
- { "pid": 1, "tid": 13, "ts": 11147576.171875, "dur": 2085.0000381469727, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0850000381469727, "detail": "UnityEngine.EventSystems.ExecuteEvents/<>c" } },
- { "pid": 1, "tid": 13, "ts": 11149896.484375, "dur": 2255.5999755859375, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.2555999755859375, "detail": "UnityEngine.UI.GraphicRaycaster/<>c" } },
- { "pid": 1, "tid": 13, "ts": 11152289.0625, "dur": 22962.600708007812, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 22.962600708007812, "detail": "UnityEngine.UI.InputField/<CaretBlink>d__161" } },
- { "pid": 1, "tid": 13, "ts": 11175252.9296875, "dur": 6458.799839019775, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.458799839019775, "detail": "UnityEngine.UI.InputField/<MouseDragOutsideRect>d__183" } },
- { "pid": 1, "tid": 13, "ts": 11182001.953125, "dur": 1422.7999448776245, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4227999448776245, "detail": "UnityEngine.UI.InputField/OnValidateInput" } },
- { "pid": 1, "tid": 13, "ts": 11183724.609375, "dur": 2953.7999629974365, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.9537999629974365, "detail": "UnityEngine.UI.LayoutGroup/<DelayedSetDirty>d__56" } },
- { "pid": 1, "tid": 13, "ts": 11186679.6875, "dur": 3206.5999507904053, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.2065999507904053, "detail": "UnityEngine.UI.LayoutRebuilder/<>c" } },
- { "pid": 1, "tid": 13, "ts": 11189888.671875, "dur": 3127.300024032593, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.1273000240325928, "detail": "UnityEngine.UI.LayoutUtility/<>c" } },
- { "pid": 1, "tid": 13, "ts": 11193257.8125, "dur": 1982.3999404907227, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9823999404907227, "detail": "UnityEngine.EventSystems.PhysicsRaycaster/RaycastHitComparer" } },
- { "pid": 1, "tid": 13, "ts": 11195278.3203125, "dur": 5485.300064086914, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.485300064086914, "detail": "UnityEngine.EventSystems.PointerInputModule/ButtonState" } },
- { "pid": 1, "tid": 13, "ts": 11200765.625, "dur": 624.3000030517578, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6243000030517578, "detail": "UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData" } },
- { "pid": 1, "tid": 13, "ts": 11201390.625, "dur": 3525.1998901367188, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.5251998901367188, "detail": "UnityEngine.EventSystems.PointerInputModule/MouseState" } },
- { "pid": 1, "tid": 13, "ts": 11204918.9453125, "dur": 4054.800033569336, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.054800033569336, "detail": "UnityEngine.UI.ReflectionMethodsCache/GetRayIntersectionAllCallback" } },
- { "pid": 1, "tid": 13, "ts": 11208975.5859375, "dur": 14063.50040435791, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.06350040435791, "detail": "UnityEngine.UI.ReflectionMethodsCache/GetRayIntersectionAllNonAllocCallback" } },
- { "pid": 1, "tid": 13, "ts": 11223041.015625, "dur": 1969.9000120162964, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9699000120162964, "detail": "UnityEngine.UI.ReflectionMethodsCache/GetRaycastNonAllocCallback" } },
- { "pid": 1, "tid": 13, "ts": 11225012.6953125, "dur": 1740.9000396728516, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7409000396728516, "detail": "UnityEngine.UI.ReflectionMethodsCache/Raycast2DCallback" } },
- { "pid": 1, "tid": 13, "ts": 11226754.8828125, "dur": 13348.699569702148, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.348699569702148, "detail": "UnityEngine.UI.ReflectionMethodsCache/Raycast3DCallback" } },
- { "pid": 1, "tid": 13, "ts": 11240105.46875, "dur": 4947.400093078613, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.947400093078613, "detail": "UnityEngine.UI.ReflectionMethodsCache/RaycastAllCallback" } },
- { "pid": 1, "tid": 13, "ts": 11245387.6953125, "dur": 515.3999924659729, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5153999924659729, "detail": "UnityEngine.UI.ScrollRect/ScrollbarVisibility" } },
- { "pid": 1, "tid": 13, "ts": 11245905.2734375, "dur": 5524.499893188477, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.524499893188477, "detail": "UnityEngine.UI.Scrollbar/<ClickRepeat>d__58" } },
- { "pid": 1, "tid": 13, "ts": 11252144.53125, "dur": 680.2999973297119, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6802999973297119, "detail": "UnityEngine.UI.ToggleGroup/<>c" } },
- { "pid": 1, "tid": 13, "ts": 11252832.03125, "dur": 202874.60327148438, "ph": "X", "name": "UnityEngine.UI3.cpp", "args": { "durationMS": 202.87460327148438, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 11455755.859375, "dur": 2760.999917984009, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.760999917984009, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UI.ColorBlock>" } },
- { "pid": 1, "tid": 13, "ts": 11458520.5078125, "dur": 3048.5000610351562, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.0485000610351562, "detail": "System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>" } },
- { "pid": 1, "tid": 13, "ts": 11461573.2421875, "dur": 5548.900127410889, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.548900127410889, "detail": "System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>" } },
- { "pid": 1, "tid": 13, "ts": 11467127.9296875, "dur": 2778.5000801086426, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.7785000801086426, "detail": "System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>" } },
- { "pid": 1, "tid": 13, "ts": 11469909.1796875, "dur": 2550.6999492645264, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.5506999492645264, "detail": "System.Array/InternalEnumerator`1<System.DateTime>" } },
- { "pid": 1, "tid": 13, "ts": 11472462.890625, "dur": 31528.499603271484, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 31.528499603271484, "detail": "System.Array/InternalEnumerator`1<System.Decimal>" } },
- { "pid": 1, "tid": 13, "ts": 11503993.1640625, "dur": 2982.100009918213, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.982100009918213, "detail": "System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>" } },
- { "pid": 1, "tid": 13, "ts": 11506978.515625, "dur": 3087.5000953674316, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.0875000953674316, "detail": "System.Array/InternalEnumerator`1<System.Double>" } },
- { "pid": 1, "tid": 13, "ts": 11510073.2421875, "dur": 5626.100063323975, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.626100063323975, "detail": "System.Array/InternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>" } },
- { "pid": 1, "tid": 13, "ts": 11515702.1484375, "dur": 2750.7998943328857, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.7507998943328857, "detail": "System.Array/InternalEnumerator`1<System.Int16>" } },
- { "pid": 1, "tid": 13, "ts": 11518455.078125, "dur": 2888.000011444092, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.888000011444092, "detail": "System.Array/InternalEnumerator`1<System.Int32>" } },
- { "pid": 1, "tid": 13, "ts": 11521346.6796875, "dur": 3325.7999420166016, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.3257999420166016, "detail": "System.Array/InternalEnumerator`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 13, "ts": 11524674.8046875, "dur": 7428.899765014648, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.428899765014648, "detail": "System.Array/InternalEnumerator`1<System.Int64>" } },
- { "pid": 1, "tid": 13, "ts": 11532107.421875, "dur": 3614.0999794006348, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.6140999794006348, "detail": "System.Array/InternalEnumerator`1<System.IntPtr>" } },
- { "pid": 1, "tid": 13, "ts": 11535724.609375, "dur": 57774.09744262695, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 57.77409744262695, "detail": "System.Array/InternalEnumerator`1<System.Globalization.InternalCodePageDataItem>" } },
- { "pid": 1, "tid": 13, "ts": 11593501.953125, "dur": 6723.700046539307, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.723700046539307, "detail": "System.Array/InternalEnumerator`1<System.Globalization.InternalEncodingDataItem>" } },
- { "pid": 1, "tid": 13, "ts": 11600228.515625, "dur": 4222.099781036377, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.222099781036377, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Keyframe>" } },
- { "pid": 1, "tid": 13, "ts": 11604455.078125, "dur": 2558.199882507324, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.558199882507324, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>" } },
- { "pid": 1, "tid": 13, "ts": 11607015.625, "dur": 3288.599967956543, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.288599967956543, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UI.Navigation>" } },
- { "pid": 1, "tid": 13, "ts": 11610306.640625, "dur": 9272.500038146973, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 9.272500038146973, "detail": "System.Array/InternalEnumerator`1<System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 11619583.984375, "dur": 2472.8000164031982, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.4728000164031982, "detail": "System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>" } },
- { "pid": 1, "tid": 13, "ts": 11622059.5703125, "dur": 2462.100028991699, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.462100028991699, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Plane>" } },
- { "pid": 1, "tid": 13, "ts": 11624525.390625, "dur": 2694.000005722046, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.694000005722046, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>" } },
- { "pid": 1, "tid": 13, "ts": 11627226.5625, "dur": 7965.400218963623, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.965400218963623, "detail": "System.Array/InternalEnumerator`1<UnityEngine.LowLevel.PlayerLoopSystem>" } },
- { "pid": 1, "tid": 13, "ts": 11635194.3359375, "dur": 2288.8998985290527, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.2888998985290527, "detail": "System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>" } },
- { "pid": 1, "tid": 13, "ts": 11637486.328125, "dur": 3451.200008392334, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.451200008392334, "detail": "System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>" } },
- { "pid": 1, "tid": 13, "ts": 11640941.40625, "dur": 19707.09991455078, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 19.70709991455078, "detail": "System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 13, "ts": 11660651.3671875, "dur": 8100.399971008301, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 8.1003999710083, "detail": "System.Array/InternalEnumerator`1<System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 13, "ts": 11668755.859375, "dur": 3035.0000858306885, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.0350000858306885, "detail": "System.Array/InternalEnumerator`1<System.SByte>" } },
- { "pid": 1, "tid": 13, "ts": 11671794.921875, "dur": 2505.8999061584473, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.5058999061584473, "detail": "System.Array/InternalEnumerator`1<System.Single>" } },
- { "pid": 1, "tid": 13, "ts": 11674303.7109375, "dur": 7737.99991607666, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.73799991607666, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UI.SpriteState>" } },
- { "pid": 1, "tid": 13, "ts": 11682046.875, "dur": 3430.500030517578, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.430500030517578, "detail": "System.Array/InternalEnumerator`1<System.TimeSpan>" } },
- { "pid": 1, "tid": 13, "ts": 11685480.46875, "dur": 2549.2000579833984, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.5492000579833984, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 13, "ts": 11688035.15625, "dur": 2712.899923324585, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.712899923324585, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 13, "ts": 11690750.9765625, "dur": 7822.199821472168, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.822199821472168, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 13, "ts": 11698576.171875, "dur": 2757.699966430664, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.757699966430664, "detail": "System.Array/InternalEnumerator`1<System.UInt16>" } },
- { "pid": 1, "tid": 13, "ts": 11701335.9375, "dur": 2533.6999893188477, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.5336999893188477, "detail": "System.Array/InternalEnumerator`1<System.UInt32>" } },
- { "pid": 1, "tid": 13, "ts": 11703906.25, "dur": 2433.7000846862793, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.4337000846862793, "detail": "System.Array/InternalEnumerator`1<System.UInt64>" } },
- { "pid": 1, "tid": 13, "ts": 11706342.7734375, "dur": 2495.699882507324, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.495699882507324, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Vector2>" } },
- { "pid": 1, "tid": 13, "ts": 11708840.8203125, "dur": 7491.199970245361, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.491199970245361, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 13, "ts": 11716335.9375, "dur": 2891.7999267578125, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.8917999267578125, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 13, "ts": 11719231.4453125, "dur": 2973.099946975708, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.973099946975708, "detail": "System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 13, "ts": 11722208.0078125, "dur": 3304.1999340057373, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.3041999340057373, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 13, "ts": 11725515.625, "dur": 5631.800174713135, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.631800174713135, "detail": "System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>" } },
- { "pid": 1, "tid": 13, "ts": 11731151.3671875, "dur": 2638.000011444092, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.638000011444092, "detail": "System.Array/InternalEnumerator`1<System.Collections.Hashtable/bucket>" } },
- { "pid": 1, "tid": 13, "ts": 11733793.9453125, "dur": 2556.79988861084, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.55679988861084, "detail": "System.Array/InternalEnumerator`1<System.ParameterizedStrings/FormatParam>" } },
- { "pid": 1, "tid": 13, "ts": 11736354.4921875, "dur": 2692.199945449829, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.692199945449829, "detail": "System.Array/InternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>" } },
- { "pid": 1, "tid": 13, "ts": 11739050.78125, "dur": 2924.299955368042, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.924299955368042, "detail": "System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>" } },
- { "pid": 1, "tid": 13, "ts": 11741981.4453125, "dur": 2779.400110244751, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.779400110244751, "detail": "System.Array/InternalEnumerator`1<System.Globalization.UmAlQuraCalendar/DateMapping>" } },
- { "pid": 1, "tid": 13, "ts": 11744763.671875, "dur": 3897.200107574463, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.897200107574463, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 13, "ts": 11748666.9921875, "dur": 5863.59977722168, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.86359977722168, "detail": "UnityEngine.Events.InvokableCall`1<System.Boolean>" } },
- { "pid": 1, "tid": 13, "ts": 11754533.203125, "dur": 17005.50079345703, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 17.00550079345703, "detail": "UnityEngine.Events.InvokableCall`1<UnityEngine.Color>" } },
- { "pid": 1, "tid": 13, "ts": 11771542.96875, "dur": 4460.100173950195, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.460100173950195, "detail": "UnityEngine.Events.InvokableCall`1<System.Int32>" } },
- { "pid": 1, "tid": 13, "ts": 11776005.859375, "dur": 6462.9998207092285, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.4629998207092285, "detail": "UnityEngine.Events.InvokableCall`1<System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 11782471.6796875, "dur": 4600.99983215332, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.60099983215332, "detail": "UnityEngine.Events.InvokableCall`1<System.Single>" } },
- { "pid": 1, "tid": 13, "ts": 11787076.171875, "dur": 5801.799774169922, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.801799774169922, "detail": "UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>" } },
- { "pid": 1, "tid": 13, "ts": 11792879.8828125, "dur": 3987.499952316284, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.987499952316284, "detail": "UnityEngine.Events.InvokableCall`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 11796872.0703125, "dur": 3618.0999279022217, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.6180999279022217, "detail": "UnityEngine.Events.InvokableCall`3<System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 11800494.140625, "dur": 2945.499897003174, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.945499897003174, "detail": "UnityEngine.Events.InvokableCall`4<System.Object,System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 11803442.3828125, "dur": 5647.9997634887695, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.6479997634887695, "detail": "System.Linq.Enumerable/Iterator`1<System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 11809092.7734375, "dur": 7746.9000816345215, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.7469000816345215, "detail": "System.IO.Iterator`1<System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 11817583.984375, "dur": 751.9000172615051, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7519000172615051, "detail": "System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 13, "ts": 11818340.8203125, "dur": 1483.7000370025635, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4837000370025635, "detail": "System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 11819826.171875, "dur": 1369.8999881744385, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3698999881744385, "detail": "System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>" } },
- { "pid": 1, "tid": 13, "ts": 11821199.21875, "dur": 1239.5999431610107, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2395999431610107, "detail": "System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 11822441.40625, "dur": 3579.0998935699463, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.5790998935699463, "detail": "System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>" } },
- { "pid": 1, "tid": 13, "ts": 11826022.4609375, "dur": 4486.800193786621, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.486800193786621, "detail": "System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 11830514.6484375, "dur": 1575.8999586105347, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5758999586105347, "detail": "System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 13, "ts": 11832093.75, "dur": 1297.2999811172485, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2972999811172485, "detail": "System.Collections.Generic.LinkedListNode`1<System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 11833395.5078125, "dur": 43352.10037231445, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 43.35210037231445, "detail": "System.Collections.Generic.LinkedList`1<System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 11876751.953125, "dur": 8775.199890136719, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 8.775199890136719, "detail": "System.RuntimeType/ListBuilder`1<System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 11885531.25, "dur": 3678.2000064849854, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.6782000064849854, "detail": "UnityEngine.UI.ListPool`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 13, "ts": 11889212.890625, "dur": 1922.9999780654907, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9229999780654907, "detail": "UnityEngine.UI.ListPool`1<System.Int32>" } },
- { "pid": 1, "tid": 13, "ts": 11891140.625, "dur": 1579.300045967102, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.579300045967102, "detail": "UnityEngine.UI.ListPool`1<System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 11892722.65625, "dur": 4754.499912261963, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.754499912261963, "detail": "UnityEngine.UI.ListPool`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 13, "ts": 11897497.0703125, "dur": 1411.7000102996826, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4117000102996826, "detail": "UnityEngine.UI.ListPool`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 13, "ts": 11898911.1328125, "dur": 1363.1999492645264, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3631999492645264, "detail": "UnityEngine.UI.ListPool`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 13, "ts": 11900281.25, "dur": 68443.00079345703, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 68.44300079345703, "detail": "System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 13, "ts": 11968727.5390625, "dur": 38692.996978759766, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 38.692996978759766, "detail": "System.Collections.Generic.List`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 13, "ts": 12007422.8515625, "dur": 45782.798767089844, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 45.782798767089844, "detail": "System.Collections.Generic.List`1<System.Int32>" } },
- { "pid": 1, "tid": 13, "ts": 12053208.984375, "dur": 49707.90100097656, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 49.70790100097656, "detail": "System.Collections.Generic.List`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 13, "ts": 12102919.921875, "dur": 34497.798919677734, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 34.497798919677734, "detail": "System.Collections.Generic.List`1<System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 12137420.8984375, "dur": 54853.29818725586, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 54.85329818725586, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 13, "ts": 12192278.3203125, "dur": 152688.70544433594, "ph": "X", "name": "Generics3.cpp", "args": { "durationMS": 152.68870544433594, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 12346771.484375, "dur": 1310.9999895095825, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.3109999895095825, "detail": "System.Comparison`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 13, "ts": 12348214.84375, "dur": 430.400013923645, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.430400013923645, "detail": "System.Comparison`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 13, "ts": 12349008.7890625, "dur": 497.7000057697296, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4977000057697296, "detail": "System.Comparison`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 13, "ts": 12349508.7890625, "dur": 1294.800043106079, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.294800043106079, "detail": "System.Comparison`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 13, "ts": 12350868.1640625, "dur": 371.6000020503998, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3716000020503998, "detail": "System.Comparison`1<System.TimeZoneInfo/AdjustmentRule>" } },
- { "pid": 1, "tid": 13, "ts": 12351496.09375, "dur": 1391.700029373169, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.391700029373169, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2<System.Runtime.Serialization.MemberHolder,System.Reflection.MemberInfo[]>" } },
- { "pid": 1, "tid": 13, "ts": 12352891.6015625, "dur": 1191.100001335144, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.191100001335144, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 12354086.9140625, "dur": 1361.799955368042, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.361799955368042, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2<System.String,System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 12357675.78125, "dur": 1782.1999788284302, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.7821999788284302, "detail": "System.Collections.Generic.Dictionary`2<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>" } },
- { "pid": 1, "tid": 13, "ts": 12359461.9140625, "dur": 3775.1998901367188, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 3.7751998901367188, "detail": "System.Collections.Generic.Dictionary`2<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>" } },
- { "pid": 1, "tid": 13, "ts": 12363247.0703125, "dur": 2142.699956893921, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 2.142699956893921, "detail": "System.Collections.Generic.Dictionary`2<UnityEngine.UI.Graphic,System.Int32>" } },
- { "pid": 1, "tid": 13, "ts": 12365421.875, "dur": 2858.9999675750732, "ph": "X", "name": "Il2CppGenericComDefinitions1.cpp", "args": { "durationMS": 2.8589999675750732, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 12368312.5, "dur": 1317.8000450134277, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.3178000450134277, "detail": "System.Collections.Generic.Dictionary`2<System.Threading.IAsyncLocal,System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 12369636.71875, "dur": 1501.6000270843506, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.5016000270843506, "detail": "System.Collections.Generic.Dictionary`2<UnityEngine.UI.ICanvasElement,System.Int32>" } },
- { "pid": 1, "tid": 13, "ts": 12371141.6015625, "dur": 1521.6000080108643, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.5216000080108643, "detail": "System.Collections.Generic.Dictionary`2<UnityEngine.UI.IClipper,System.Int32>" } },
- { "pid": 1, "tid": 13, "ts": 12372666.9921875, "dur": 1656.2999486923218, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.6562999486923218, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>" } },
- { "pid": 1, "tid": 13, "ts": 12374326.171875, "dur": 1407.9999923706055, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.4079999923706055, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 12375738.28125, "dur": 1333.6000442504883, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.3336000442504883, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>" } },
- { "pid": 1, "tid": 13, "ts": 12377074.21875, "dur": 15865.599632263184, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 15.865599632263184, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,System.String>" } },
- { "pid": 1, "tid": 13, "ts": 12392943.359375, "dur": 6253.399848937988, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 6.253399848937988, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task>" } },
- { "pid": 1, "tid": 13, "ts": 12399201.171875, "dur": 1832.900047302246, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.832900047302246, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType>" } },
- { "pid": 1, "tid": 13, "ts": 12401041.015625, "dur": 2039.2999649047852, "ph": "X", "name": "Il2CppGenericComDefinitions2.cpp", "args": { "durationMS": 2.039299964904785, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 12404670.8984375, "dur": 2579.200029373169, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 2.579200029373169, "detail": "System.Array/EmptyInternalEnumerator`1<System.IComparable`1<System.Int16>>" } },
- { "pid": 1, "tid": 13, "ts": 12407553.7109375, "dur": 733.0999970436096, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7330999970436096, "detail": "System.Array/EmptyInternalEnumerator`1<System.IComparable`1<System.SByte>>" } },
- { "pid": 1, "tid": 13, "ts": 12408582.03125, "dur": 1101.199984550476, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.101199984550476, "detail": "System.Array/EmptyInternalEnumerator`1<System.IComparable`1<System.TimeSpan>>" } },
- { "pid": 1, "tid": 13, "ts": 12410568.359375, "dur": 28356.000900268555, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 28.356000900268555, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.IEnumerable`1<System.Globalization.HebrewNumber/HS>>" } },
- { "pid": 1, "tid": 13, "ts": 12438930.6640625, "dur": 361.299991607666, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.361299991607666, "detail": "System.Array/EmptyInternalEnumerator`1<System.IEquatable`1<System.Boolean>>" } },
- { "pid": 1, "tid": 13, "ts": 12442469.7265625, "dur": 3625.999927520752, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 3.625999927520752, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>" } },
- { "pid": 1, "tid": 13, "ts": 12446357.421875, "dur": 353.1999886035919, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3531999886035919, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>" } },
- { "pid": 1, "tid": 13, "ts": 12451578.125, "dur": 998.199999332428, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.998199999332428, "detail": "System.Array/EmptyInternalEnumerator`1<System.Delegate>" } },
- { "pid": 1, "tid": 13, "ts": 12453475.5859375, "dur": 339.3000066280365, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3393000066280365, "detail": "System.Array/EmptyInternalEnumerator`1<System.Enum>" } },
- { "pid": 1, "tid": 13, "ts": 12458888.671875, "dur": 380.29998540878296, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.38029998540878296, "detail": "System.Array/EmptyInternalEnumerator`1<System.Int64>" } },
- { "pid": 1, "tid": 13, "ts": 12460995.1171875, "dur": 333.40001106262207, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.33340001106262207, "detail": "System.Array/EmptyInternalEnumerator`1<System.LocalDataStoreElement>" } },
- { "pid": 1, "tid": 13, "ts": 12462234.375, "dur": 383.59999656677246, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.38359999656677246, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>" } },
- { "pid": 1, "tid": 13, "ts": 12469022.4609375, "dur": 1436.3000392913818, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.4363000392913818, "detail": "System.Array/EmptyInternalEnumerator`1<System.Threading.WaitHandle>" } },
- { "pid": 1, "tid": 13, "ts": 12471477.5390625, "dur": 49264.49966430664, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 49.26449966430664, "detail": "System.Array/EmptyInternalEnumerator`1<System.Runtime.InteropServices._PropertyInfo>" } },
- { "pid": 1, "tid": 13, "ts": 12522433.59375, "dur": 344.9999988079071, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3449999988079071, "detail": "System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>" } },
- { "pid": 1, "tid": 13, "ts": 12523706.0546875, "dur": 820.6999897956848, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8206999897956848, "detail": "System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 13, "ts": 12525416.015625, "dur": 1258.2000494003296, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.2582000494003296, "detail": "System.Collections.Generic.List`1/Enumerator<System.Runtime.Remoting.Contexts.IContextProperty>" } },
- { "pid": 1, "tid": 13, "ts": 12527007.8125, "dur": 3993.299961090088, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 3.993299961090088, "detail": "Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>" } },
- { "pid": 1, "tid": 13, "ts": 12531438.4765625, "dur": 744.1999912261963, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7441999912261963, "detail": "System.Collections.Generic.LinkedList`1/Enumerator<System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 12535321.2890625, "dur": 336.49998903274536, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.33649998903274536, "detail": "System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>" } },
- { "pid": 1, "tid": 13, "ts": 12536165.0390625, "dur": 375, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.375, "detail": "System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 13, "ts": 12537225.5859375, "dur": 12267.600059509277, "ph": "X", "name": "Il2CppGenericComDefinitions5.cpp", "args": { "durationMS": 12.267600059509277, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 12549530.2734375, "dur": 917.4000024795532, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9174000024795532, "detail": "System.Collections.Generic.HashSet`1<UnityEngine.UI.MaskableGraphic>" } },
- { "pid": 1, "tid": 13, "ts": 12550450.1953125, "dur": 940.5999779701233, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9405999779701233, "detail": "System.Collections.Generic.HashSet`1<System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 12551394.53125, "dur": 983.0999970436096, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9830999970436096, "detail": "System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>" } },
- { "pid": 1, "tid": 13, "ts": 12561302.734375, "dur": 523.5000252723694, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5235000252723694, "detail": "System.Collections.Generic.ICollection`1<System.Array>" } },
- { "pid": 1, "tid": 13, "ts": 12562390.625, "dur": 581.2000036239624, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5812000036239624, "detail": "System.Collections.Generic.ICollection`1<UnityEngine.Rendering.BatchVisibility>" } },
- { "pid": 1, "tid": 13, "ts": 12563371.09375, "dur": 1927.5000095367432, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.9275000095367432, "detail": "System.Collections.Generic.ICollection`1<System.Boolean>" } },
- { "pid": 1, "tid": 13, "ts": 12568563.4765625, "dur": 418.50000619888306, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.41850000619888306, "detail": "System.Collections.Generic.ICollection`1<System.Decimal>" } },
- { "pid": 1, "tid": 13, "ts": 12569437.5, "dur": 21299.999237060547, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 21.299999237060547, "detail": "System.Collections.Generic.ICollection`1<System.Collections.DictionaryEntry>" } },
- { "pid": 1, "tid": 13, "ts": 12591386.71875, "dur": 421.099990606308, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.421099990606308, "detail": "System.Collections.Generic.ICollection`1<System.Enum>" } },
- { "pid": 1, "tid": 13, "ts": 12591810.546875, "dur": 554.4999837875366, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5544999837875366, "detail": "System.Collections.Generic.ICollection`1<System.Runtime.CompilerServices.Ephemeron>" } },
- { "pid": 1, "tid": 13, "ts": 12594310.546875, "dur": 487.199991941452, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.487199991941452, "detail": "System.Collections.Generic.ICollection`1<UnityEngine.UI.Graphic>" } },
- { "pid": 1, "tid": 13, "ts": 12595627.9296875, "dur": 543.6000227928162, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5436000227928162, "detail": "System.Collections.Generic.ICollection`1<System.Runtime.Remoting.Contexts.IContextAttribute>" } },
- { "pid": 1, "tid": 13, "ts": 12596176.7578125, "dur": 584.1000080108643, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5841000080108643, "detail": "System.Collections.Generic.ICollection`1<System.Runtime.Remoting.Contexts.IContextProperty>" } },
- { "pid": 1, "tid": 13, "ts": 12599890.625, "dur": 692.799985408783, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.692799985408783, "detail": "System.Collections.Generic.ICollection`1<System.Globalization.InternalCodePageDataItem>" } },
- { "pid": 1, "tid": 13, "ts": 12600587.890625, "dur": 489.19999599456787, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.48919999599456787, "detail": "System.Collections.Generic.ICollection`1<System.Globalization.InternalEncodingDataItem>" } },
- { "pid": 1, "tid": 13, "ts": 12601673.828125, "dur": 337.5000059604645, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3375000059604645, "detail": "System.Collections.Generic.ICollection`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>" } },
- { "pid": 1, "tid": 13, "ts": 12603441.40625, "dur": 610.1999878883362, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6101999878883362, "detail": "System.Collections.Generic.ICollection`1<UnityEngine.UI.Navigation>" } },
- { "pid": 1, "tid": 13, "ts": 12604160.15625, "dur": 594.0999984741211, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5940999984741211, "detail": "System.Collections.Generic.ICollection`1<UnityEngine.Object>" } },
- { "pid": 1, "tid": 13, "ts": 12605272.4609375, "dur": 1201.9000053405762, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.2019000053405762, "detail": "System.Collections.Generic.ICollection`1<System.Reflection.ParameterModifier>" } },
- { "pid": 1, "tid": 13, "ts": 12606750, "dur": 441.10000133514404, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.44110000133514404, "detail": "System.Collections.Generic.ICollection`1<UnityEngine.Playables.PlayableBinding>" } },
- { "pid": 1, "tid": 13, "ts": 12608558.59375, "dur": 551.1000156402588, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5511000156402588, "detail": "System.Collections.Generic.ICollection`1<System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 13, "ts": 12610191.40625, "dur": 650.7999897003174, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6507999897003174, "detail": "System.Collections.Generic.ICollection`1<UnityEngine.UI.SpriteState>" } },
- { "pid": 1, "tid": 13, "ts": 12611372.0703125, "dur": 495.2999949455261, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4952999949455261, "detail": "System.Collections.Generic.ICollection`1<System.Threading.Tasks.Task>" } },
- { "pid": 1, "tid": 13, "ts": 12613198.2421875, "dur": 472.00000286102295, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.47200000286102295, "detail": "System.Collections.Generic.ICollection`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 13, "ts": 12614073.2421875, "dur": 1269.9999809265137, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.2699999809265137, "detail": "System.Collections.Generic.ICollection`1<System.ValueType>" } },
- { "pid": 1, "tid": 13, "ts": 12615968.75, "dur": 671.1999773979187, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6711999773979187, "detail": "System.Collections.Generic.ICollection`1<System.Threading.WaitHandle>" } },
- { "pid": 1, "tid": 13, "ts": 12618022.4609375, "dur": 781.000018119812, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.781000018119812, "detail": "System.Collections.Generic.ICollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 13, "ts": 12618807.6171875, "dur": 643.0000066757202, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6430000066757202, "detail": "System.Collections.Generic.ICollection`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 13, "ts": 12619705.078125, "dur": 1039.0000343322754, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.0390000343322754, "detail": "System.Collections.Generic.ICollection`1<System.Collections.Hashtable/bucket>" } },
- { "pid": 1, "tid": 13, "ts": 12621094.7265625, "dur": 612.3999953269958, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6123999953269958, "detail": "System.Collections.Generic.ICollection`1<System.ParameterizedStrings/FormatParam>" } },
- { "pid": 1, "tid": 13, "ts": 12621871.09375, "dur": 745.7000017166138, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7457000017166138, "detail": "System.Collections.Generic.ICollection`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>" } },
- { "pid": 1, "tid": 13, "ts": 12627370.1171875, "dur": 22799.2000579834, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 22.7992000579834, "detail": "System.Collections.Generic.IEnumerable`1<System.IComparable`1<System.Single>>" } },
- { "pid": 1, "tid": 13, "ts": 12651343.75, "dur": 798.3999848365784, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7983999848365784, "detail": "System.Collections.Generic.IEnumerable`1<System.Collections.Generic.IReadOnlyList`1<System.Globalization.HebrewNumber/HS>>" } },
- { "pid": 1, "tid": 13, "ts": 12663773.4375, "dur": 1357.3999404907227, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.3573999404907227, "detail": "System.Collections.Generic.IEnumerator`1<System.Globalization.EraInfo>" } },
- { "pid": 1, "tid": 13, "ts": 12667009.765625, "dur": 557.6000213623047, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5576000213623047, "detail": "System.Collections.Generic.IEnumerator`1<System.Int16>" } },
- { "pid": 1, "tid": 13, "ts": 12667677.734375, "dur": 457.39999413490295, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.45739999413490295, "detail": "System.Collections.Generic.IEnumerator`1<System.Int64>" } },
- { "pid": 1, "tid": 13, "ts": 12670314.453125, "dur": 376.800000667572, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.376800000667572, "detail": "System.Collections.Generic.IEnumerator`1<System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 13, "ts": 12674985.3515625, "dur": 677.5000095367432, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6775000095367432, "detail": "System.Collections.Generic.IEqualityComparer`1<System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 13, "ts": 12676295.8984375, "dur": 7455.399990081787, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 7.455399990081787, "detail": "System.Collections.Generic.IEqualityComparer`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 13, "ts": 12683895.5078125, "dur": 367.5999939441681, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3675999939441681, "detail": "System.Collections.Generic.IEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 13, "ts": 12686599.609375, "dur": 508.899986743927, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.508899986743927, "detail": "System.IEquatable`1<UnityEngine.Playables.PlayableOutputHandle>" } },
- { "pid": 1, "tid": 13, "ts": 12693684.5703125, "dur": 374.00001287460327, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.37400001287460327, "detail": "System.Collections.Generic.IList`1<System.IEquatable`1<System.Single>>" } },
- { "pid": 1, "tid": 13, "ts": 12694305.6640625, "dur": 680.2999973297119, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6802999973297119, "detail": "System.Collections.Generic.IList`1<System.IEquatable`1<System.UInt16>>" } },
- { "pid": 1, "tid": 13, "ts": 12695136.71875, "dur": 3817.500114440918, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 3.817500114440918, "detail": "System.Collections.Generic.IList`1<System.IEquatable`1<System.UInt64>>" } },
- { "pid": 1, "tid": 13, "ts": 12699077.1484375, "dur": 398.79998564720154, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.39879998564720154, "detail": "System.Collections.Generic.IList`1<System.IEquatable`1<UnityEngine.Vector3>>" } },
- { "pid": 1, "tid": 13, "ts": 12700274.4140625, "dur": 3230.2000522613525, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 3.2302000522613525, "detail": "System.Collections.Generic.IList`1<System.Collections.Generic.IReadOnlyCollection`1<System.Globalization.HebrewNumber/HS>>" } },
- { "pid": 1, "tid": 13, "ts": 12710067.3828125, "dur": 521.8999981880188, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5218999981880188, "detail": "System.Collections.Generic.IList`1<System.Delegate>" } },
- { "pid": 1, "tid": 13, "ts": 12710592.7734375, "dur": 562.2000098228455, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5622000098228455, "detail": "System.Collections.Generic.IList`1<System.Collections.DictionaryEntry>" } },
- { "pid": 1, "tid": 13, "ts": 12711832.03125, "dur": 444.29999589920044, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.44429999589920044, "detail": "System.Collections.Generic.IList`1<System.Enum>" } },
- { "pid": 1, "tid": 13, "ts": 12712279.296875, "dur": 620.8000183105469, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6208000183105469, "detail": "System.Collections.Generic.IList`1<System.Runtime.CompilerServices.Ephemeron>" } },
- { "pid": 1, "tid": 13, "ts": 12713900.390625, "dur": 2191.4000511169434, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 2.1914000511169434, "detail": "System.Collections.Generic.IList`1<System.Reflection.FieldInfo>" } },
- { "pid": 1, "tid": 13, "ts": 12716331.0546875, "dur": 589.5000100135803, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5895000100135803, "detail": "System.Collections.Generic.IList`1<System.Runtime.Serialization.FixupHolder>" } },
- { "pid": 1, "tid": 13, "ts": 12718216.796875, "dur": 718.1000113487244, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7181000113487244, "detail": "System.Collections.Generic.IList`1<System.Runtime.Remoting.Contexts.IContextProperty>" } },
- { "pid": 1, "tid": 13, "ts": 12722044.921875, "dur": 633.3000063896179, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6333000063896179, "detail": "System.Collections.Generic.IList`1<System.Globalization.InternalCodePageDataItem>" } },
- { "pid": 1, "tid": 13, "ts": 12722680.6640625, "dur": 480.5000126361847, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4805000126361847, "detail": "System.Collections.Generic.IList`1<System.Globalization.InternalEncodingDataItem>" } },
- { "pid": 1, "tid": 13, "ts": 12725037.109375, "dur": 380.40000200271606, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.38040000200271606, "detail": "System.Collections.Generic.IList`1<System.Reflection.Module>" } },
- { "pid": 1, "tid": 13, "ts": 12725642.578125, "dur": 5716.19987487793, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 5.71619987487793, "detail": "System.Collections.Generic.IList`1<UnityEngine.UI.Navigation>" } },
- { "pid": 1, "tid": 13, "ts": 12731364.2578125, "dur": 753.8999915122986, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7538999915122986, "detail": "System.Collections.Generic.IList`1<System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 12732122.0703125, "dur": 505.40000200271606, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5054000020027161, "detail": "System.Collections.Generic.IList`1<UnityEngine.Object>" } },
- { "pid": 1, "tid": 13, "ts": 12732935.546875, "dur": 523.2999920845032, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5232999920845032, "detail": "System.Collections.Generic.IList`1<System.Reflection.ParameterModifier>" } },
- { "pid": 1, "tid": 13, "ts": 12733612.3046875, "dur": 453.50000262260437, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.45350000262260437, "detail": "System.Collections.Generic.IList`1<UnityEngine.Playables.PlayableBinding>" } },
- { "pid": 1, "tid": 13, "ts": 12735494.140625, "dur": 571.9000101089478, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5719000101089478, "detail": "System.Collections.Generic.IList`1<System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 13, "ts": 12739751.953125, "dur": 377.70000100135803, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.37770000100135803, "detail": "System.Collections.Generic.IList`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 13, "ts": 12741395.5078125, "dur": 724.7999906539917, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7247999906539917, "detail": "System.Collections.Generic.IList`1<System.Threading.WaitHandle>" } },
- { "pid": 1, "tid": 13, "ts": 12743481.4453125, "dur": 767.799973487854, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.767799973487854, "detail": "System.Collections.Generic.IList`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 13, "ts": 12744252.9296875, "dur": 2263.2999420166016, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 2.2632999420166016, "detail": "System.Collections.Generic.IList`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 13, "ts": 12746773.4375, "dur": 6929.100036621094, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 6.929100036621094, "detail": "System.Collections.Generic.IList`1<System.Collections.Hashtable/bucket>" } },
- { "pid": 1, "tid": 13, "ts": 12754031.25, "dur": 654.2999744415283, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6542999744415283, "detail": "System.Collections.Generic.IList`1<System.ParameterizedStrings/FormatParam>" } },
- { "pid": 1, "tid": 13, "ts": 12754808.59375, "dur": 1511.199951171875, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.511199951171875, "detail": "System.Collections.Generic.IList`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>" } },
- { "pid": 1, "tid": 13, "ts": 12757038.0859375, "dur": 463.89999985694885, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.46389999985694885, "detail": "System.Collections.Generic.IList`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 13, "ts": 12757506.8359375, "dur": 529.699981212616, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.529699981212616, "detail": "System.Collections.Generic.IReadOnlyCollection`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>" } },
- { "pid": 1, "tid": 13, "ts": 12758265.625, "dur": 526.6000032424927, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5266000032424927, "detail": "System.Collections.Generic.IReadOnlyCollection`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>" } },
- { "pid": 1, "tid": 13, "ts": 12759157.2265625, "dur": 755.2000284194946, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7552000284194946, "detail": "System.Collections.Generic.IReadOnlyCollection`1<System.IComparable`1<System.Byte>>" } },
- { "pid": 1, "tid": 13, "ts": 12763231.4453125, "dur": 404.59999442100525, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.40459999442100525, "detail": "System.Collections.Generic.IReadOnlyCollection`1<Unity.IO.LowLevel.Unsafe.FileReadType>" } },
- { "pid": 1, "tid": 13, "ts": 12773284.1796875, "dur": 901.3000130653381, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9013000130653381, "detail": "System.Collections.Generic.IReadOnlyList`1<UnityEngine.EventSystems.BaseInput>" } },
- { "pid": 1, "tid": 13, "ts": 12776268.5546875, "dur": 9150.699615478516, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 9.150699615478516, "detail": "System.Collections.Generic.IReadOnlyList`1<System.Reflection.ExceptionHandlingClause>" } },
- { "pid": 1, "tid": 13, "ts": 12788668.9453125, "dur": 35524.497985839844, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 35.524497985839844, "detail": "System.Collections.Generic.IReadOnlyList`1<System.Reflection.ParameterModifier>" } },
- { "pid": 1, "tid": 13, "ts": 12824295.8984375, "dur": 447.299987077713, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.447299987077713, "detail": "System.Collections.Generic.IReadOnlyList`1<UnityEngine.Playables.PlayableBinding>" } },
- { "pid": 1, "tid": 13, "ts": 12827066.40625, "dur": 2526.2999534606934, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 2.5262999534606934, "detail": "System.Collections.Generic.IReadOnlyList`1<System.Runtime.InteropServices._ConstructorInfo>" } },
- { "pid": 1, "tid": 13, "ts": 12832061.5234375, "dur": 352.49999165534973, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.35249999165534973, "detail": "UnityEngine.UI.Collections.IndexedSet`1<System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 12834242.1875, "dur": 534.9000096321106, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5349000096321106, "detail": "System.Array/InternalEnumerator`1<System.IComparable`1<System.Int64>>" } },
- { "pid": 1, "tid": 13, "ts": 12838844.7265625, "dur": 411.3999903202057, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4113999903202057, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.IList`1<System.DateTimeParse/DS>>" } },
- { "pid": 1, "tid": 13, "ts": 12845083.0078125, "dur": 1211.6999626159668, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.2116999626159668, "detail": "System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>" } },
- { "pid": 1, "tid": 13, "ts": 12847604.4921875, "dur": 2577.6000022888184, "ph": "X", "name": "Il2CppGenericComDefinitions7.cpp", "args": { "durationMS": 2.5776000022888184, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 12850211.9140625, "dur": 1891.800045967102, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.891800045967102, "detail": "System.Collections.Generic.List`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 13, "ts": 12852106.4453125, "dur": 2294.3999767303467, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 2.2943999767303467, "detail": "System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 13, "ts": 12854405.2734375, "dur": 1261.8999481201172, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.2618999481201172, "detail": "System.Collections.Generic.List`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 13, "ts": 12855669.921875, "dur": 1002.4000406265259, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.0024000406265259, "detail": "System.Collections.Generic.List`1<System.IO.Directory/SearchData>" } },
- { "pid": 1, "tid": 13, "ts": 12856675.78125, "dur": 871.8000054359436, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8718000054359436, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/DropdownItem>" } },
- { "pid": 1, "tid": 13, "ts": 12857548.828125, "dur": 807.699978351593, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.807699978351593, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/OptionData>" } },
- { "pid": 1, "tid": 13, "ts": 12858358.3984375, "dur": 847.8000164031982, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8478000164031982, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger/Entry>" } },
- { "pid": 1, "tid": 13, "ts": 12859208.984375, "dur": 830.5000066757202, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8305000066757202, "detail": "System.Collections.Generic.List`1<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers>" } },
- { "pid": 1, "tid": 13, "ts": 12860041.9921875, "dur": 1600.9999513626099, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.6009999513626099, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.PointerInputModule/ButtonState>" } },
- { "pid": 1, "tid": 13, "ts": 12861646.484375, "dur": 982.5000166893005, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9825000166893005, "detail": "System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>" } },
- { "pid": 1, "tid": 13, "ts": 12862634.765625, "dur": 13110.600471496582, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 13.110600471496582, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.StencilMaterial/MatEntry>" } },
- { "pid": 1, "tid": 13, "ts": 12875749.0234375, "dur": 689.1999840736389, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6891999840736389, "detail": "System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>" } },
- { "pid": 1, "tid": 13, "ts": 12876444.3359375, "dur": 1694.3000555038452, "ph": "X", "name": "Il2CppGenericComDefinitions14.cpp", "args": { "durationMS": 1.6943000555038452, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 12878183.59375, "dur": 2684.7000122070312, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 2.6847000122070312, "detail": "System.Tuple`2<System.Object,System.Char>" } },
- { "pid": 1, "tid": 13, "ts": 12881319.3359375, "dur": 352.8999984264374, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3528999984264374, "detail": "System.Tuple`2<System.IO.TextWriter,System.Char>" } },
- { "pid": 1, "tid": 13, "ts": 12881674.8046875, "dur": 445.89999318122864, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.44589999318122864, "detail": "System.Tuple`2<System.IO.TextWriter,System.String>" } },
- { "pid": 1, "tid": 13, "ts": 12882125, "dur": 1179.3999671936035, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.1793999671936035, "detail": "System.Tuple`3<System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 13, "ts": 12883315.4296875, "dur": 1605.0000190734863, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.6050000190734863, "detail": "System.Tuple`3<System.Threading.Tasks.Task,System.Threading.Tasks.Task,System.Threading.Tasks.TaskContinuation>" } },
- { "pid": 1, "tid": 13, "ts": 12886199.21875, "dur": 633.0999732017517, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6330999732017517, "detail": "UnityEngine.Events.UnityAction`1<System.Collections.Generic.List`1<UnityEngine.UIVertex>>" } },
- { "pid": 1, "tid": 13, "ts": 12886843.75, "dur": 732.9000234603882, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7329000234603882, "detail": "UnityEngine.Events.UnityAction`1<System.Collections.Generic.List`1<UnityEngine.Vector3>>" } },
- { "pid": 1, "tid": 13, "ts": 12892458.984375, "dur": 676.4000058174133, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6764000058174133, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 13, "ts": 12893139.6484375, "dur": 430.7999908924103, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4307999908924103, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection<System.String,UnityEngine.GUIStyle>" } },
- { "pid": 1, "tid": 13, "ts": 12893928.7109375, "dur": 2502.5999546051025, "ph": "X", "name": "Il2CppGenericComDefinitions16.cpp", "args": { "durationMS": 2.5025999546051025, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 12897185.546875, "dur": 115191.29943847656, "ph": "X", "name": "Idle", "args": { "durationMS": 115.19129943847656, "detail": "" } },
- { "pid": 1, "tid": 14, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 14, "ts": 3951149.169921875, "dur": 32911.9987487793, "ph": "X", "name": "Idle", "args": { "durationMS": 32.9119987487793, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 3995890.380859375, "dur": 6901.100158691406, "ph": "X", "name": "Write Assembly", "args": { "durationMS": 6.901100158691406, "detail": "Mono.Security" } },
- { "pid": 1, "tid": 14, "ts": 4004660.888671875, "dur": 518030.8837890625, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 518.0308837890625, "detail": "mscorlib" } },
- { "pid": 1, "tid": 14, "ts": 4007035.64453125, "dur": 515654.72412109375, "ph": "X", "name": "mscorlib_Attr.cpp", "args": { "durationMS": 515.6547241210938, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 4525013.18359375, "dur": 8096.500396728516, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 8.096500396728516, "detail": "System.Core" } },
- { "pid": 1, "tid": 14, "ts": 4525079.1015625, "dur": 8029.70027923584, "ph": "X", "name": "System.Core_Attr.cpp", "args": { "durationMS": 8.02970027923584, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 4533118.1640625, "dur": 21418.60008239746, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 21.41860008239746, "detail": "UnityEngine.GridModule" } },
- { "pid": 1, "tid": 14, "ts": 4533177.734375, "dur": 21357.900619506836, "ph": "X", "name": "UnityEngine.GridModule_Attr.cpp", "args": { "durationMS": 21.357900619506836, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 4554543.9453125, "dur": 17020.898818969727, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 17.020898818969727, "detail": "UnityEngine.Physics2DModule" } },
- { "pid": 1, "tid": 14, "ts": 4554606.93359375, "dur": 16956.701278686523, "ph": "X", "name": "UnityEngine.Physics2DModule_Attr.cpp", "args": { "durationMS": 16.956701278686523, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 4571574.21875, "dur": 160210.4034423828, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 160.2104034423828, "detail": "UnityEngine.AnimationModule" } },
- { "pid": 1, "tid": 14, "ts": 4571613.76953125, "dur": 160169.70825195312, "ph": "X", "name": "UnityEngine.AnimationModule_Attr.cpp", "args": { "durationMS": 160.16970825195312, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 4731794.43359375, "dur": 69037.10174560547, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 69.03710174560547, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 14, "ts": 4731834.9609375, "dur": 68995.49865722656, "ph": "X", "name": "UnityEngine.UI_Attr.cpp", "args": { "durationMS": 68.99549865722656, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 4813212.890625, "dur": 6846.89998626709, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.84689998626709, "detail": "<Module>" } },
- { "pid": 1, "tid": 14, "ts": 4820063.96484375, "dur": 1691.499948501587, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.691499948501587, "detail": "System.Linq.Enumerable" } },
- { "pid": 1, "tid": 14, "ts": 4821757.8125, "dur": 32333.099365234375, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 32.333099365234375, "detail": "System.Linq.Error" } },
- { "pid": 1, "tid": 14, "ts": 4854971.19140625, "dur": 17901.500701904297, "ph": "X", "name": "System.Core.cpp", "args": { "durationMS": 17.901500701904297, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 4875551.7578125, "dur": 9970.800399780273, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.970800399780273, "detail": "System.Configuration.ConfigurationElement" } },
- { "pid": 1, "tid": 14, "ts": 4885783.203125, "dur": 844.3999886512756, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8443999886512756, "detail": "System.Configuration.ConfigurationSection" } },
- { "pid": 1, "tid": 14, "ts": 4886654.296875, "dur": 1182.1999549865723, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1821999549865723, "detail": "System.Configuration.IgnoreSection" } },
- { "pid": 1, "tid": 14, "ts": 4887837.890625, "dur": 861.299991607666, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.861299991607666, "detail": "Unity.ThrowStub" } },
- { "pid": 1, "tid": 14, "ts": 4888722.16796875, "dur": 15407.999992370605, "ph": "X", "name": "System.Configuration.cpp", "args": { "durationMS": 15.407999992370605, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 4904262.6953125, "dur": 2147.900104522705, "ph": "X", "name": "UnityEngine.GridModule.cpp", "args": { "durationMS": 2.147900104522705, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 4906450.68359375, "dur": 88373.59619140625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 88.37359619140625, "detail": "System.IO.BinaryReader" } },
- { "pid": 1, "tid": 14, "ts": 4994855.95703125, "dur": 28548.99787902832, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 28.54899787902832, "detail": "System.IO.BinaryWriter" } },
- { "pid": 1, "tid": 14, "ts": 5023406.73828125, "dur": 1241.8999671936035, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2418999671936035, "detail": "System.Reflection.Binder" } },
- { "pid": 1, "tid": 14, "ts": 5024673.33984375, "dur": 17220.49903869629, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 17.22049903869629, "detail": "System.BitConverter" } },
- { "pid": 1, "tid": 14, "ts": 5041895.99609375, "dur": 5636.000156402588, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.636000156402588, "detail": "Mono.Security.BitConverterLE" } },
- { "pid": 1, "tid": 14, "ts": 5047534.1796875, "dur": 25816.4005279541, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 25.8164005279541, "detail": "System.Boolean" } },
- { "pid": 1, "tid": 14, "ts": 5073352.05078125, "dur": 18223.901748657227, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.223901748657227, "detail": "System.Globalization.Bootstring" } },
- { "pid": 1, "tid": 14, "ts": 5091577.63671875, "dur": 33324.302673339844, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 33.324302673339844, "detail": "System.Buffer" } },
- { "pid": 1, "tid": 14, "ts": 5124904.296875, "dur": 41585.10208129883, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 41.58510208129883, "detail": "System.Byte" } },
- { "pid": 1, "tid": 14, "ts": 5166507.8125, "dur": 7218.999862670898, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.218999862670898, "detail": "System.Collections.Generic.ByteEqualityComparer" } },
- { "pid": 1, "tid": 14, "ts": 5173729.00390625, "dur": 3287.100076675415, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.287100076675415, "detail": "System.ByteMatcher" } },
- { "pid": 1, "tid": 14, "ts": 5177017.578125, "dur": 373.199999332428, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.373199999332428, "detail": "System.Runtime.Remoting.Messaging.CADArgHolder" } },
- { "pid": 1, "tid": 14, "ts": 5177392.08984375, "dur": 30827.899932861328, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 30.827899932861328, "detail": "System.Runtime.Remoting.Messaging.CADMessageBase" } },
- { "pid": 1, "tid": 14, "ts": 5208222.65625, "dur": 28951.101303100586, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 28.951101303100586, "detail": "System.Runtime.Remoting.Messaging.CADMethodCallMessage" } },
- { "pid": 1, "tid": 14, "ts": 5237175.29296875, "dur": 4496.699810028076, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.496699810028076, "detail": "System.Runtime.Remoting.Messaging.CADMethodRef" } },
- { "pid": 1, "tid": 14, "ts": 5241673.828125, "dur": 8390.600204467773, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.390600204467773, "detail": "System.Runtime.Remoting.Messaging.CADMethodReturnMessage" } },
- { "pid": 1, "tid": 14, "ts": 5250348.6328125, "dur": 1746.999979019165, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.746999979019165, "detail": "System.Runtime.Remoting.Channels.CADSerializer" } },
- { "pid": 1, "tid": 14, "ts": 5252097.65625, "dur": 505.8000087738037, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5058000087738037, "detail": "System.Collections.Concurrent.CDSCollectionETWBCLProvider" } },
- { "pid": 1, "tid": 14, "ts": 5252922.8515625, "dur": 2068.3000087738037, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0683000087738037, "detail": "System.Runtime.InteropServices.COMException" } },
- { "pid": 1, "tid": 14, "ts": 5254993.1640625, "dur": 2960.0000381469727, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.9600000381469727, "detail": "System.IO.CStreamReader" } },
- { "pid": 1, "tid": 14, "ts": 5257954.58984375, "dur": 8769.90032196045, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.76990032196045, "detail": "System.IO.CStreamWriter" } },
- { "pid": 1, "tid": 14, "ts": 5266726.07421875, "dur": 7498.4002113342285, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.4984002113342285, "detail": "System.Globalization.Calendar" } },
- { "pid": 1, "tid": 14, "ts": 5274226.07421875, "dur": 74402.39715576172, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 74.40239715576172, "detail": "System.Globalization.CalendarData" } },
- { "pid": 1, "tid": 14, "ts": 5348666.015625, "dur": 601.1000275611877, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6011000275611877, "detail": "System.Runtime.Remoting.Messaging.CallContext" } },
- { "pid": 1, "tid": 14, "ts": 5349269.04296875, "dur": 2618.000030517578, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.618000030517578, "detail": "System.Runtime.Remoting.Messaging.CallContextRemotingData" } },
- { "pid": 1, "tid": 14, "ts": 5351889.6484375, "dur": 601.8999814987183, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6018999814987183, "detail": "System.Runtime.Remoting.Messaging.CallContextSecurityData" } },
- { "pid": 1, "tid": 14, "ts": 5352544.921875, "dur": 669.6000099182129, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6696000099182129, "detail": "System.Threading.CancellationCallbackCoreWorkArguments" } },
- { "pid": 1, "tid": 14, "ts": 5353215.8203125, "dur": 3319.000005722046, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.319000005722046, "detail": "System.Threading.CancellationCallbackInfo" } },
- { "pid": 1, "tid": 14, "ts": 5356538.0859375, "dur": 9544.099807739258, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.544099807739258, "detail": "System.Threading.CancellationToken" } },
- { "pid": 1, "tid": 14, "ts": 5366083.49609375, "dur": 4235.799789428711, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.235799789428711, "detail": "System.Threading.CancellationTokenRegistration" } },
- { "pid": 1, "tid": 14, "ts": 5370320.80078125, "dur": 87524.69635009766, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 87.52469635009766, "detail": "System.Threading.CancellationTokenSource" } },
- { "pid": 1, "tid": 14, "ts": 5457847.65625, "dur": 977.400004863739, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.977400004863739, "detail": "System.CannotUnloadAppDomainException" } },
- { "pid": 1, "tid": 14, "ts": 5458826.66015625, "dur": 1575.600028038025, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.575600028038025, "detail": "System.Collections.CaseInsensitiveComparer" } },
- { "pid": 1, "tid": 14, "ts": 5460403.3203125, "dur": 5311.699867248535, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.311699867248535, "detail": "System.Collections.CaseInsensitiveHashCodeProvider" } },
- { "pid": 1, "tid": 14, "ts": 5465768.5546875, "dur": 62855.40008544922, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 62.85540008544922, "detail": "System.Runtime.Remoting.ChannelData" } },
- { "pid": 1, "tid": 14, "ts": 5528626.46484375, "dur": 1340.8000469207764, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3408000469207764, "detail": "System.Runtime.Remoting.ChannelInfo" } },
- { "pid": 1, "tid": 14, "ts": 5529969.23828125, "dur": 18829.599380493164, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.829599380493164, "detail": "System.Runtime.Remoting.Channels.ChannelServices" } },
- { "pid": 1, "tid": 14, "ts": 5548800.29296875, "dur": 36189.20135498047, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 36.18920135498047, "detail": "System.Char" } },
- { "pid": 1, "tid": 14, "ts": 5584990.72265625, "dur": 2417.29998588562, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.41729998588562, "detail": "System.CharEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 5587428.22265625, "dur": 3684.499979019165, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.684499979019165, "detail": "System.Globalization.CharUnicodeInfo" } },
- { "pid": 1, "tid": 14, "ts": 5591331.0546875, "dur": 2097.100019454956, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.097100019454956, "detail": "System.Runtime.Remoting.ClientActivatedIdentity" } },
- { "pid": 1, "tid": 14, "ts": 5593429.6875, "dur": 785.1999998092651, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7851999998092651, "detail": "System.Runtime.Remoting.Messaging.ClientContextReplySink" } },
- { "pid": 1, "tid": 14, "ts": 5594216.796875, "dur": 3923.7000942230225, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.9237000942230225, "detail": "System.Runtime.Remoting.Messaging.ClientContextTerminatorSink" } },
- { "pid": 1, "tid": 14, "ts": 5598142.08984375, "dur": 1465.1000499725342, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4651000499725342, "detail": "System.Runtime.Remoting.ClientIdentity" } },
- { "pid": 1, "tid": 14, "ts": 5599608.88671875, "dur": 541.700005531311, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.541700005531311, "detail": "System.Globalization.CodePageDataItem" } },
- { "pid": 1, "tid": 14, "ts": 5600151.3671875, "dur": 1949.1000175476074, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9491000175476074, "detail": "Mono.Globalization.Unicode.CodePointIndexer" } },
- { "pid": 1, "tid": 14, "ts": 5602911.1328125, "dur": 52373.10028076172, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 52.37310028076172, "detail": "System.Globalization.CompareInfo" } },
- { "pid": 1, "tid": 14, "ts": 5655305.6640625, "dur": 4688.399791717529, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.688399791717529, "detail": "System.Collections.Comparer" } },
- { "pid": 1, "tid": 14, "ts": 5660018.5546875, "dur": 7070.6000328063965, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.0706000328063965, "detail": "System.Collections.CompatibleComparer" } },
- { "pid": 1, "tid": 14, "ts": 5667116.2109375, "dur": 451.00000500679016, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.45100000500679016, "detail": "System.Runtime.CompilerServices.CompilationRelaxationsAttribute" } },
- { "pid": 1, "tid": 14, "ts": 5667708.984375, "dur": 575.5000114440918, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5755000114440918, "detail": "System.Threading.Tasks.CompletionActionInvoker" } },
- { "pid": 1, "tid": 14, "ts": 5668463.8671875, "dur": 55745.20492553711, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 55.74520492553711, "detail": "System.Runtime.Remoting.ConfigHandler" } },
- { "pid": 1, "tid": 14, "ts": 5724215.33203125, "dur": 395946.5026855469, "ph": "X", "name": "mscorlib1.cpp", "args": { "durationMS": 395.9465026855469, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 6120223.6328125, "dur": 2153.8000106811523, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1538000106811523, "detail": "System.DateTimeRawInfo" } },
- { "pid": 1, "tid": 14, "ts": 6122379.39453125, "dur": 2406.6998958587646, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.4066998958587646, "detail": "System.DateTimeResult" } },
- { "pid": 1, "tid": 14, "ts": 6125052.734375, "dur": 570.900022983551, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.570900022983551, "detail": "System.Diagnostics.Debugger" } },
- { "pid": 1, "tid": 14, "ts": 6125625, "dur": 419.40000653266907, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.41940000653266907, "detail": "System.Diagnostics.DebuggerBrowsableAttribute" } },
- { "pid": 1, "tid": 14, "ts": 6126062.01171875, "dur": 538.2000207901001, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5382000207901001, "detail": "System.Diagnostics.DebuggerDisplayAttribute" } },
- { "pid": 1, "tid": 14, "ts": 6126990.234375, "dur": 344.0999984741211, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3440999984741211, "detail": "System.Diagnostics.DebuggerStepThroughAttribute" } },
- { "pid": 1, "tid": 14, "ts": 6127334.9609375, "dur": 492.39999055862427, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.49239999055862427, "detail": "System.Diagnostics.DebuggerTypeProxyAttribute" } },
- { "pid": 1, "tid": 14, "ts": 6127829.1015625, "dur": 53405.799865722656, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 53.405799865722656, "detail": "System.Decimal" } },
- { "pid": 1, "tid": 14, "ts": 6181236.328125, "dur": 382.099986076355, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.382099986076355, "detail": "System.Runtime.CompilerServices.DecimalConstantAttribute" } },
- { "pid": 1, "tid": 14, "ts": 6181619.62890625, "dur": 32541.59927368164, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 32.54159927368164, "detail": "System.Text.Decoder" } },
- { "pid": 1, "tid": 14, "ts": 6214163.0859375, "dur": 655.2000045776367, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6552000045776367, "detail": "System.Text.DecoderExceptionFallback" } },
- { "pid": 1, "tid": 14, "ts": 6214819.3359375, "dur": 1394.9999809265137, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3949999809265137, "detail": "System.Text.DecoderExceptionFallbackBuffer" } },
- { "pid": 1, "tid": 14, "ts": 6216216.30859375, "dur": 1946.4000463485718, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9464000463485718, "detail": "System.Text.DecoderFallback" } },
- { "pid": 1, "tid": 14, "ts": 6218164.0625, "dur": 5367.8998947143555, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.3678998947143555, "detail": "System.Text.DecoderFallbackBuffer" } },
- { "pid": 1, "tid": 14, "ts": 6223534.1796875, "dur": 1037.8999710083008, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0378999710083008, "detail": "System.Text.DecoderFallbackException" } },
- { "pid": 1, "tid": 14, "ts": 6224573.73046875, "dur": 9877.099990844727, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.877099990844727, "detail": "System.Text.DecoderNLS" } },
- { "pid": 1, "tid": 14, "ts": 6234453.61328125, "dur": 2186.5999698638916, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1865999698638916, "detail": "System.Text.DecoderReplacementFallback" } },
- { "pid": 1, "tid": 14, "ts": 6236641.6015625, "dur": 1150.2000093460083, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1502000093460083, "detail": "System.Text.DecoderReplacementFallbackBuffer" } },
- { "pid": 1, "tid": 14, "ts": 6237793.9453125, "dur": 93711.19689941406, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 93.71119689941406, "detail": "System.DefaultBinder" } },
- { "pid": 1, "tid": 14, "ts": 6331848.14453125, "dur": 404.9000144004822, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4049000144004822, "detail": "System.Reflection.DefaultMemberAttribute" } },
- { "pid": 1, "tid": 14, "ts": 6332254.39453125, "dur": 37012.19940185547, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 37.01219940185547, "detail": "System.Delegate" } },
- { "pid": 1, "tid": 14, "ts": 6369451.66015625, "dur": 3775.0000953674316, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.7750000953674316, "detail": "System.DelegateSerializationHolder" } },
- { "pid": 1, "tid": 14, "ts": 6373229.00390625, "dur": 671.8999743461609, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6718999743461609, "detail": "System.Runtime.Serialization.DeserializationEventHandler" } },
- { "pid": 1, "tid": 14, "ts": 6373901.3671875, "dur": 1268.1000232696533, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2681000232696533, "detail": "System.Collections.DictionaryEntry" } },
- { "pid": 1, "tid": 14, "ts": 6375171.38671875, "dur": 441.79999828338623, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.44179999828338623, "detail": "System.Collections.Generic.DictionaryHashHelpers" } },
- { "pid": 1, "tid": 14, "ts": 6375614.2578125, "dur": 25910.600662231445, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 25.910600662231445, "detail": "System.IO.Directory" } },
- { "pid": 1, "tid": 14, "ts": 6401526.85546875, "dur": 4910.699844360352, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.910699844360352, "detail": "System.IO.DirectoryInfo" } },
- { "pid": 1, "tid": 14, "ts": 6406439.453125, "dur": 867.9999709129333, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8679999709129333, "detail": "System.IO.DirectoryNotFoundException" } },
- { "pid": 1, "tid": 14, "ts": 6407459.47265625, "dur": 695.3999996185303, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6953999996185303, "detail": "System.Runtime.Remoting.DisposerReplySink" } },
- { "pid": 1, "tid": 14, "ts": 6408155.76171875, "dur": 828.499972820282, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.828499972820282, "detail": "System.DivideByZeroException" } },
- { "pid": 1, "tid": 14, "ts": 6408985.83984375, "dur": 3376.800060272217, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.376800060272217, "detail": "System.Runtime.InteropServices.DllImportAttribute" } },
- { "pid": 1, "tid": 14, "ts": 6412389.6484375, "dur": 1037.1999740600586, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0371999740600586, "detail": "System.DllNotFoundException" } },
- { "pid": 1, "tid": 14, "ts": 6413428.22265625, "dur": 13746.499061584473, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.746499061584473, "detail": "System.Double" } },
- { "pid": 1, "tid": 14, "ts": 6427176.7578125, "dur": 3692.3999786376953, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.6923999786376953, "detail": "System.IO.DriveNotFoundException" } },
- { "pid": 1, "tid": 14, "ts": 6430870.1171875, "dur": 1794.9999570846558, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7949999570846558, "detail": "System.Reflection.Emit.DynamicMethod" } },
- { "pid": 1, "tid": 14, "ts": 6432667.48046875, "dur": 3427.0999431610107, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.4270999431610107, "detail": "System.Runtime.Remoting.Contexts.DynamicPropertyCollection" } },
- { "pid": 1, "tid": 14, "ts": 6436096.19140625, "dur": 894.10001039505, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.89410001039505, "detail": "System.Empty" } },
- { "pid": 1, "tid": 14, "ts": 6436991.2109375, "dur": 52074.302673339844, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 52.074302673339844, "detail": "System.Collections.EmptyReadOnlyDictionaryInternal" } },
- { "pid": 1, "tid": 14, "ts": 6489067.3828125, "dur": 4643.3000564575195, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.6433000564575195, "detail": "System.Text.Encoder" } },
- { "pid": 1, "tid": 14, "ts": 6493712.890625, "dur": 1882.5000524520874, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8825000524520874, "detail": "System.Text.EncoderExceptionFallback" } },
- { "pid": 1, "tid": 14, "ts": 6495597.65625, "dur": 1714.400053024292, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.714400053024292, "detail": "System.Text.EncoderExceptionFallbackBuffer" } },
- { "pid": 1, "tid": 14, "ts": 6497313.96484375, "dur": 2299.9000549316406, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.2999000549316406, "detail": "System.Text.EncoderFallback" } },
- { "pid": 1, "tid": 14, "ts": 6499615.72265625, "dur": 2706.700086593628, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.706700086593628, "detail": "System.Text.EncoderFallbackBuffer" } },
- { "pid": 1, "tid": 14, "ts": 6502324.70703125, "dur": 1631.700038909912, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.631700038909912, "detail": "System.Text.EncoderFallbackException" } },
- { "pid": 1, "tid": 14, "ts": 6503957.51953125, "dur": 14114.800453186035, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.114800453186035, "detail": "System.Text.EncoderNLS" } },
- { "pid": 1, "tid": 14, "ts": 6518074.70703125, "dur": 1843.7000513076782, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8437000513076782, "detail": "System.Text.EncoderReplacementFallback" } },
- { "pid": 1, "tid": 14, "ts": 6519919.921875, "dur": 2740.2000427246094, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.7402000427246094, "detail": "System.Text.EncoderReplacementFallbackBuffer" } },
- { "pid": 1, "tid": 14, "ts": 6522661.62109375, "dur": 48054.00085449219, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 48.05400085449219, "detail": "System.Text.Encoding" } },
- { "pid": 1, "tid": 14, "ts": 6570717.7734375, "dur": 5327.7997970581055, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.3277997970581055, "detail": "System.Text.EncodingHelper" } },
- { "pid": 1, "tid": 14, "ts": 6576047.8515625, "dur": 26252.00080871582, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 26.25200080871582, "detail": "System.Text.EncodingNLS" } },
- { "pid": 1, "tid": 14, "ts": 6602301.26953125, "dur": 2295.099973678589, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.295099973678589, "detail": "System.Text.EncodingProvider" } },
- { "pid": 1, "tid": 14, "ts": 6604599.12109375, "dur": 177423.59924316406, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 177.42359924316406, "detail": "System.Globalization.EncodingTable" } },
- { "pid": 1, "tid": 14, "ts": 6782029.296875, "dur": 106454.59747314453, "ph": "X", "name": "mscorlib4.cpp", "args": { "durationMS": 106.45459747314453, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 6888524.90234375, "dur": 11379.400253295898, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.379400253295898, "detail": "System.Globalization.NumberFormatInfo" } },
- { "pid": 1, "tid": 14, "ts": 6899906.25, "dur": 208131.50024414062, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 208.13150024414062, "detail": "System.NumberFormatter" } },
- { "pid": 1, "tid": 14, "ts": 7108055.6640625, "dur": 68868.7973022461, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 68.8687973022461, "detail": "System.Threading.OSSpecificSynchronizationContext" } },
- { "pid": 1, "tid": 14, "ts": 7176926.7578125, "dur": 12850.099563598633, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.850099563598633, "detail": "System.Runtime.Remoting.ObjRef" } },
- { "pid": 1, "tid": 14, "ts": 7189779.296875, "dur": 1685.1999759674072, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6851999759674072, "detail": "System.Runtime.Remoting.Messaging.ObjRefSurrogate" } },
- { "pid": 1, "tid": 14, "ts": 7191465.8203125, "dur": 1609.8999977111816, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6098999977111816, "detail": "System.Object" } },
- { "pid": 1, "tid": 14, "ts": 7193077.1484375, "dur": 10426.799774169922, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.426799774169922, "detail": "System.ObjectDisposedException" } },
- { "pid": 1, "tid": 14, "ts": 7203514.16015625, "dur": 860.3000044822693, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8603000044822693, "detail": "System.Collections.Generic.ObjectEqualityComparer" } },
- { "pid": 1, "tid": 14, "ts": 7204375.9765625, "dur": 16482.59925842285, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 16.48259925842285, "detail": "System.Runtime.Serialization.ObjectHolder" } },
- { "pid": 1, "tid": 14, "ts": 7220859.86328125, "dur": 1695.8999633789062, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6958999633789062, "detail": "System.Runtime.Serialization.ObjectHolderList" } },
- { "pid": 1, "tid": 14, "ts": 7222557.12890625, "dur": 927.9999732971191, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9279999732971191, "detail": "System.Runtime.Serialization.ObjectHolderListEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 7223485.83984375, "dur": 4026.700019836426, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.026700019836426, "detail": "System.Runtime.Serialization.ObjectIDGenerator" } },
- { "pid": 1, "tid": 14, "ts": 7227514.6484375, "dur": 80145.59936523438, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 80.14559936523438, "detail": "System.Runtime.Serialization.ObjectManager" } },
- { "pid": 1, "tid": 14, "ts": 7307663.0859375, "dur": 10314.70012664795, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.31470012664795, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectMap" } },
- { "pid": 1, "tid": 14, "ts": 7317979.00390625, "dur": 4492.300033569336, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.492300033569336, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectMapInfo" } },
- { "pid": 1, "tid": 14, "ts": 7322473.14453125, "dur": 1010.699987411499, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.010699987411499, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectNull" } },
- { "pid": 1, "tid": 14, "ts": 7323484.86328125, "dur": 32660.400390625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 32.660400390625, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectProgress" } },
- { "pid": 1, "tid": 14, "ts": 7356147.4609375, "dur": 42243.99948120117, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 42.24399948120117, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectReader" } },
- { "pid": 1, "tid": 14, "ts": 7398392.578125, "dur": 185632.59887695312, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 185.63259887695312, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectWriter" } },
- { "pid": 1, "tid": 14, "ts": 7584033.203125, "dur": 219015.80810546875, "ph": "X", "name": "mscorlib8.cpp", "args": { "durationMS": 219.01580810546875, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 7803075.1953125, "dur": 12732.600212097168, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.732600212097168, "detail": "System.IO.StreamWriter" } },
- { "pid": 1, "tid": 14, "ts": 7815809.5703125, "dur": 14122.599601745605, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.122599601745605, "detail": "System.Runtime.Serialization.StreamingContext" } },
- { "pid": 1, "tid": 14, "ts": 7829965.33203125, "dur": 305718.994140625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 305.718994140625, "detail": "System.String" } },
- { "pid": 1, "tid": 14, "ts": 8135686.5234375, "dur": 113618.9956665039, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 113.6189956665039, "detail": "System.Text.StringBuilder" } },
- { "pid": 1, "tid": 14, "ts": 8249307.6171875, "dur": 1039.9999618530273, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0399999618530273, "detail": "System.Text.StringBuilderCache" } },
- { "pid": 1, "tid": 14, "ts": 8250349.609375, "dur": 2952.3000717163086, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.9523000717163086, "detail": "System.StringComparer" } },
- { "pid": 1, "tid": 14, "ts": 8253471.6796875, "dur": 12820.300102233887, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.820300102233887, "detail": "System.IO.StringReader" } },
- { "pid": 1, "tid": 14, "ts": 8266292.96875, "dur": 961.1999988555908, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9611999988555908, "detail": "System.IO.StringResultHandler" } },
- { "pid": 1, "tid": 14, "ts": 8267281.25, "dur": 1863.0000352859497, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8630000352859497, "detail": "System.Reflection.StrongNameKeyPair" } },
- { "pid": 1, "tid": 14, "ts": 8269165.0390625, "dur": 1838.9999866485596, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8389999866485596, "detail": "System.Threading.SynchronizationContext" } },
- { "pid": 1, "tid": 14, "ts": 8271004.8828125, "dur": 1917.199969291687, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.917199969291687, "detail": "System.Threading.Tasks.SynchronizationContextAwaitTaskContinuation" } },
- { "pid": 1, "tid": 14, "ts": 8272924.8046875, "dur": 957.5999975204468, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9575999975204468, "detail": "System.Threading.SynchronizationLockException" } },
- { "pid": 1, "tid": 14, "ts": 8273882.8125, "dur": 2535.2001190185547, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.5352001190185547, "detail": "System.SystemException" } },
- { "pid": 1, "tid": 14, "ts": 8276419.921875, "dur": 1240.0000095367432, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2400000095367432, "detail": "System.Threading.Tasks.SystemThreadingTasks_TaskDebugView" } },
- { "pid": 1, "tid": 14, "ts": 8277867.1875, "dur": 8918.499946594238, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.918499946594238, "detail": "System.Globalization.TaiwanCalendar" } },
- { "pid": 1, "tid": 14, "ts": 8286788.0859375, "dur": 4794.000148773193, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.794000148773193, "detail": "System.Reflection.TargetException" } },
- { "pid": 1, "tid": 14, "ts": 8291583.984375, "dur": 39153.7971496582, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 39.1537971496582, "detail": "System.Reflection.TargetInvocationException" } },
- { "pid": 1, "tid": 14, "ts": 8330739.2578125, "dur": 907.800018787384, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.907800018787384, "detail": "System.Reflection.TargetParameterCountException" } },
- { "pid": 1, "tid": 14, "ts": 8331649.4140625, "dur": 85050.89569091797, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 85.05089569091797, "detail": "System.Threading.Tasks.Task" } },
- { "pid": 1, "tid": 14, "ts": 8416708.0078125, "dur": 88283.3023071289, "ph": "X", "name": "mscorlib12.cpp", "args": { "durationMS": 88.2833023071289, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 8505019.53125, "dur": 17631.101608276367, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 17.631101608276367, "detail": "System.Text.RegularExpressions.RegexNode" } },
- { "pid": 1, "tid": 14, "ts": 8522672.8515625, "dur": 134793.10607910156, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 134.79310607910156, "detail": "System.Text.RegularExpressions.RegexParser" } },
- { "pid": 1, "tid": 14, "ts": 8657466.796875, "dur": 1093.7000513076782, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0937000513076782, "detail": "System.Text.RegularExpressions.RegexPrefix" } },
- { "pid": 1, "tid": 14, "ts": 8658597.65625, "dur": 816.3999915122986, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8163999915122986, "detail": "System.Text.RegularExpressions.RegexTree" } },
- { "pid": 1, "tid": 14, "ts": 8659417.96875, "dur": 110515.80047607422, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 110.51580047607422, "detail": "System.Text.RegularExpressions.RegexWriter" } },
- { "pid": 1, "tid": 14, "ts": 8769934.5703125, "dur": 935.8999729156494, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9358999729156494, "detail": "SR" } },
- { "pid": 1, "tid": 14, "ts": 8770873.046875, "dur": 976.0000109672546, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9760000109672546, "detail": "System.Net.Configuration.ServicePointManagerElement" } },
- { "pid": 1, "tid": 14, "ts": 8771850.5859375, "dur": 452.60000228881836, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.45260000228881836, "detail": "System.Net.Configuration.SettingsSection" } },
- { "pid": 1, "tid": 14, "ts": 8772984.375, "dur": 1310.0999593734741, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3100999593734741, "detail": "System.Net.Sockets.SocketException" } },
- { "pid": 1, "tid": 14, "ts": 8774295.8984375, "dur": 1588.5000228881836, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5885000228881836, "detail": "System.Diagnostics.Stopwatch" } },
- { "pid": 1, "tid": 14, "ts": 8776513.671875, "dur": 1382.8999996185303, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3828999996185303, "detail": "System.ComponentModel.TypeConverterAttribute" } },
- { "pid": 1, "tid": 14, "ts": 8777897.4609375, "dur": 3770.400047302246, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.770400047302246, "detail": "System.UncNameHelper" } },
- { "pid": 1, "tid": 14, "ts": 8781696.2890625, "dur": 393672.8210449219, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 393.6728210449219, "detail": "System.Uri" } },
- { "pid": 1, "tid": 14, "ts": 9175378.90625, "dur": 144152.9998779297, "ph": "X", "name": "System1.cpp", "args": { "durationMS": 144.1529998779297, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 9319553.7109375, "dur": 638.4999752044678, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6384999752044678, "detail": "System.Threading.Timer/TimerComparer" } },
- { "pid": 1, "tid": 14, "ts": 9320193.359375, "dur": 599.399983882904, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.599399983882904, "detail": "System.TypeIdentifiers/Display" } },
- { "pid": 1, "tid": 14, "ts": 9320793.9453125, "dur": 5630.499839782715, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.630499839782715, "detail": "System.TypeNames/ATypeName" } },
- { "pid": 1, "tid": 14, "ts": 9326440.4296875, "dur": 4350.699901580811, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.3506999015808105, "detail": "System.Text.UTF32Encoding/UTF32Decoder" } },
- { "pid": 1, "tid": 14, "ts": 9330793.9453125, "dur": 2419.300079345703, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.419300079345703, "detail": "System.Text.UTF7Encoding/Decoder" } },
- { "pid": 1, "tid": 14, "ts": 9333214.84375, "dur": 835.7999920845032, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8357999920845032, "detail": "System.Text.UTF7Encoding/DecoderUTF7Fallback" } },
- { "pid": 1, "tid": 14, "ts": 9334051.7578125, "dur": 1157.1999788284302, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1571999788284302, "detail": "System.Text.UTF7Encoding/DecoderUTF7FallbackBuffer" } },
- { "pid": 1, "tid": 14, "ts": 9335210.9375, "dur": 1974.6999740600586, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9746999740600586, "detail": "System.Text.UTF7Encoding/Encoder" } },
- { "pid": 1, "tid": 14, "ts": 9337187.5, "dur": 3419.3999767303467, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.4193999767303467, "detail": "System.Text.UTF8Encoding/UTF8Decoder" } },
- { "pid": 1, "tid": 14, "ts": 9340608.3984375, "dur": 2795.2001094818115, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.7952001094818115, "detail": "System.Text.UTF8Encoding/UTF8Encoder" } },
- { "pid": 1, "tid": 14, "ts": 9343406.25, "dur": 742.9999709129333, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7429999709129333, "detail": "System.Globalization.UmAlQuraCalendar/DateMapping" } },
- { "pid": 1, "tid": 14, "ts": 9344151.3671875, "dur": 28904.300689697266, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 28.904300689697266, "detail": "System.Text.UnicodeEncoding/Decoder" } },
- { "pid": 1, "tid": 14, "ts": 9373198.2421875, "dur": 824.400007724762, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.824400007724762, "detail": "System.Console/WindowsConsole/WindowsCancelHandler" } },
- { "pid": 1, "tid": 14, "ts": 9374022.4609375, "dur": 539.3000245094299, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5393000245094299, "detail": "System.IO.Stream/SynchronousAsyncResult/<>c" } },
- { "pid": 1, "tid": 14, "ts": 9374568.359375, "dur": 99848.29711914062, "ph": "X", "name": "mscorlib17.cpp", "args": { "durationMS": 99.84829711914062, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 9474508.7890625, "dur": 788.2000207901001, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7882000207901001, "detail": "UnityEngine.AudioClip" } },
- { "pid": 1, "tid": 14, "ts": 9475296.875, "dur": 2722.3000526428223, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.7223000526428223, "detail": "UnityEngine.Audio.AudioClipPlayable" } },
- { "pid": 1, "tid": 14, "ts": 9478055.6640625, "dur": 4265.399932861328, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.265399932861328, "detail": "UnityEngine.Audio.AudioMixerPlayable" } },
- { "pid": 1, "tid": 14, "ts": 9482366.2109375, "dur": 671.8000173568726, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6718000173568726, "detail": "UnityEngine.Experimental.Audio.AudioSampleProvider" } },
- { "pid": 1, "tid": 14, "ts": 9483039.0625, "dur": 924.3000149726868, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9243000149726868, "detail": "UnityEngine.AudioSettings" } },
- { "pid": 1, "tid": 14, "ts": 9484269.53125, "dur": 845.6000089645386, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8456000089645386, "detail": "UnityEngine.AudioClip/PCMReaderCallback" } },
- { "pid": 1, "tid": 14, "ts": 9485116.2109375, "dur": 593.999981880188, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.593999981880188, "detail": "UnityEngine.AudioClip/PCMSetPositionCallback" } },
- { "pid": 1, "tid": 14, "ts": 9485710.9375, "dur": 667.9999828338623, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6679999828338623, "detail": "UnityEngine.Experimental.Audio.AudioSampleProvider/SampleFramesHandler" } },
- { "pid": 1, "tid": 14, "ts": 9486379.8828125, "dur": 689.8000240325928, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6898000240325928, "detail": "UnityEngine.AudioSettings/AudioConfigurationChangeHandler" } },
- { "pid": 1, "tid": 14, "ts": 9487076.171875, "dur": 5794.600009918213, "ph": "X", "name": "UnityEngine.AudioModule.cpp", "args": { "durationMS": 5.794600009918213, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 9492930.6640625, "dur": 2192.1000480651855, "ph": "X", "name": "UnityEngine.cpp", "args": { "durationMS": 2.1921000480651855, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 9495209.9609375, "dur": 1258.2000494003296, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2582000494003296, "detail": "UnityEngine.Networking.CertificateHandler" } },
- { "pid": 1, "tid": 14, "ts": 9496469.7265625, "dur": 1864.6999597549438, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8646999597549438, "detail": "UnityEngine.Networking.DownloadHandler" } },
- { "pid": 1, "tid": 14, "ts": 9498335.9375, "dur": 1464.5999670028687, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4645999670028687, "detail": "UnityEngineInternal.WebRequestUtils" } },
- { "pid": 1, "tid": 14, "ts": 9499808.59375, "dur": 4413.400173187256, "ph": "X", "name": "UnityEngine.UnityWebRequestModule.cpp", "args": { "durationMS": 4.413400173187256, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 9504291.015625, "dur": 5747.399806976318, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.747399806976318, "detail": "UnityEngine.Canvas" } },
- { "pid": 1, "tid": 14, "ts": 9510041.015625, "dur": 45075.09994506836, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 45.07509994506836, "detail": "UnityEngine.CanvasGroup" } },
- { "pid": 1, "tid": 14, "ts": 9555118.1640625, "dur": 5077.600002288818, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.077600002288818, "detail": "UnityEngine.CanvasRenderer" } },
- { "pid": 1, "tid": 14, "ts": 9560196.2890625, "dur": 21415.298461914062, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 21.415298461914062, "detail": "UnityEngine.RectTransformUtility" } },
- { "pid": 1, "tid": 14, "ts": 9581640.625, "dur": 679.099977016449, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.679099977016449, "detail": "UnityEngine.UISystemProfilerApi" } },
- { "pid": 1, "tid": 14, "ts": 9582321.2890625, "dur": 628.0999779701233, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6280999779701233, "detail": "UnityEngine.Canvas/WillRenderCanvases" } },
- { "pid": 1, "tid": 14, "ts": 9582982.421875, "dur": 17998.498916625977, "ph": "X", "name": "UnityEngine.UIModule.cpp", "args": { "durationMS": 17.998498916625977, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 9601308.59375, "dur": 1326.200008392334, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.326200008392334, "detail": "UnityEngine.EventSystems.AbstractEventData" } },
- { "pid": 1, "tid": 14, "ts": 9602639.6484375, "dur": 3260.999917984009, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.260999917984009, "detail": "UnityEngine.UI.AnimationTriggers" } },
- { "pid": 1, "tid": 14, "ts": 9605902.34375, "dur": 42064.89944458008, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 42.06489944458008, "detail": "UnityEngine.UI.AspectRatioFitter" } },
- { "pid": 1, "tid": 14, "ts": 9647969.7265625, "dur": 1671.3999509811401, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6713999509811401, "detail": "UnityEngine.EventSystems.AxisEventData" } },
- { "pid": 1, "tid": 14, "ts": 9649643.5546875, "dur": 2906.100034713745, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.906100034713745, "detail": "UnityEngine.EventSystems.BaseEventData" } },
- { "pid": 1, "tid": 14, "ts": 9652550.78125, "dur": 5382.699966430664, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.382699966430664, "detail": "UnityEngine.EventSystems.BaseInput" } },
- { "pid": 1, "tid": 14, "ts": 9657936.5234375, "dur": 109626.80053710938, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 109.62680053710938, "detail": "UnityEngine.EventSystems.BaseInputModule" } },
- { "pid": 1, "tid": 14, "ts": 9767564.453125, "dur": 3371.4001178741455, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.3714001178741455, "detail": "UnityEngine.UI.BaseMeshEffect" } },
- { "pid": 1, "tid": 14, "ts": 9770937.5, "dur": 4550.300121307373, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.550300121307373, "detail": "UnityEngine.EventSystems.BaseRaycaster" } },
- { "pid": 1, "tid": 14, "ts": 9775666.015625, "dur": 5389.699935913086, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.389699935913086, "detail": "UnityEngine.UI.Button" } },
- { "pid": 1, "tid": 14, "ts": 9781057.6171875, "dur": 16327.899932861328, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 16.327899932861328, "detail": "UnityEngine.UI.CanvasScaler" } },
- { "pid": 1, "tid": 14, "ts": 9797414.0625, "dur": 68764.69421386719, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 68.76469421386719, "detail": "UnityEngine.UI.CanvasUpdateRegistry" } },
- { "pid": 1, "tid": 14, "ts": 9866180.6640625, "dur": 4526.199817657471, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.526199817657471, "detail": "UnityEngine.UI.ClipperRegistry" } },
- { "pid": 1, "tid": 14, "ts": 9870708.984375, "dur": 4661.499977111816, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.661499977111816, "detail": "UnityEngine.UI.Clipping" } },
- { "pid": 1, "tid": 14, "ts": 9875372.0703125, "dur": 16064.899444580078, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 16.064899444580078, "detail": "UnityEngine.UI.ColorBlock" } },
- { "pid": 1, "tid": 14, "ts": 9891440.4296875, "dur": 11275.899887084961, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.275899887084961, "detail": "UnityEngine.UI.CoroutineTween.ColorTween" } },
- { "pid": 1, "tid": 14, "ts": 9902716.796875, "dur": 52995.80001831055, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 52.99580001831055, "detail": "UnityEngine.UI.ContentSizeFitter" } },
- { "pid": 1, "tid": 14, "ts": 9955715.8203125, "dur": 96317.90161132812, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 96.31790161132812, "detail": "UnityEngine.UI.DefaultControls" } },
- { "pid": 1, "tid": 14, "ts": 10052035.15625, "dur": 137016.00646972656, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 137.01600646972656, "detail": "UnityEngine.UI.Dropdown" } },
- { "pid": 1, "tid": 14, "ts": 10189073.2421875, "dur": 33550.201416015625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 33.550201416015625, "detail": "UnityEngine.EventSystems.EventSystem" } },
- { "pid": 1, "tid": 14, "ts": 10222625, "dur": 51242.401123046875, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 51.242401123046875, "detail": "UnityEngine.EventSystems.EventTrigger" } },
- { "pid": 1, "tid": 14, "ts": 10273893.5546875, "dur": 16942.60025024414, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 16.94260025024414, "detail": "UnityEngine.EventSystems.ExecuteEvents" } },
- { "pid": 1, "tid": 14, "ts": 10290838.8671875, "dur": 9493.300437927246, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.493300437927246, "detail": "UnityEngine.UI.CoroutineTween.FloatTween" } },
- { "pid": 1, "tid": 14, "ts": 10300333.0078125, "dur": 5676.199913024902, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.676199913024902, "detail": "UnityEngine.UI.FontData" } },
- { "pid": 1, "tid": 14, "ts": 10306010.7421875, "dur": 4569.900035858154, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.569900035858154, "detail": "UnityEngine.UI.FontUpdateTracker" } },
- { "pid": 1, "tid": 14, "ts": 10310582.03125, "dur": 79890.89965820312, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 79.89089965820312, "detail": "UnityEngine.UI.Graphic" } },
- { "pid": 1, "tid": 14, "ts": 10390481.4453125, "dur": 177709.3048095703, "ph": "X", "name": "UnityEngine.UI.cpp", "args": { "durationMS": 177.7093048095703, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 10568239.2578125, "dur": 43004.10079956055, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 43.00410079956055, "detail": "UnityEngine.UI.LayoutElement" } },
- { "pid": 1, "tid": 14, "ts": 10611246.09375, "dur": 67890.70129394531, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 67.89070129394531, "detail": "UnityEngine.UI.LayoutGroup" } },
- { "pid": 1, "tid": 14, "ts": 10679138.671875, "dur": 65738.70086669922, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 65.73870086669922, "detail": "UnityEngine.UI.LayoutRebuilder" } },
- { "pid": 1, "tid": 14, "ts": 10744879.8828125, "dur": 10679.400444030762, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.679400444030762, "detail": "UnityEngine.UI.LayoutUtility" } },
- { "pid": 1, "tid": 14, "ts": 10755561.5234375, "dur": 11438.300132751465, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.438300132751465, "detail": "UnityEngine.UI.Mask" } },
- { "pid": 1, "tid": 14, "ts": 10767000.9765625, "dur": 30541.101455688477, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 30.541101455688477, "detail": "UnityEngine.UI.MaskUtilities" } },
- { "pid": 1, "tid": 14, "ts": 10797543.9453125, "dur": 13381.999969482422, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.381999969482422, "detail": "UnityEngine.UI.MaskableGraphic" } },
- { "pid": 1, "tid": 14, "ts": 10810928.7109375, "dur": 3427.0999431610107, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.4270999431610107, "detail": "UnityEngine.UI.Misc" } },
- { "pid": 1, "tid": 14, "ts": 10814380.859375, "dur": 4269.199848175049, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.269199848175049, "detail": "UnityEngine.UI.MultipleDisplayUtilities" } },
- { "pid": 1, "tid": 14, "ts": 10818652.34375, "dur": 7185.500144958496, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.185500144958496, "detail": "UnityEngine.UI.Navigation" } },
- { "pid": 1, "tid": 14, "ts": 10825839.84375, "dur": 15330.400466918945, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.330400466918945, "detail": "UnityEngine.UI.Outline" } },
- { "pid": 1, "tid": 14, "ts": 10841172.8515625, "dur": 6319.499969482422, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.319499969482422, "detail": "UnityEngine.EventSystems.Physics2DRaycaster" } },
- { "pid": 1, "tid": 14, "ts": 10847493.1640625, "dur": 8837.400436401367, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.837400436401367, "detail": "UnityEngine.EventSystems.PhysicsRaycaster" } },
- { "pid": 1, "tid": 14, "ts": 10856332.03125, "dur": 16160.80093383789, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 16.16080093383789, "detail": "UnityEngine.EventSystems.PointerEventData" } },
- { "pid": 1, "tid": 14, "ts": 10872494.140625, "dur": 28198.49967956543, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 28.19849967956543, "detail": "UnityEngine.EventSystems.PointerInputModule" } },
- { "pid": 1, "tid": 14, "ts": 10900695.3125, "dur": 1680.6000471115112, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6806000471115112, "detail": "UnityEngine.UI.PositionAsUV1" } },
- { "pid": 1, "tid": 14, "ts": 10902375.9765625, "dur": 8462.699890136719, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.462699890136719, "detail": "UnityEngine.UI.RawImage" } },
- { "pid": 1, "tid": 14, "ts": 10910840.8203125, "dur": 7116.499900817871, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.116499900817871, "detail": "UnityEngine.EventSystems.RaycastResult" } },
- { "pid": 1, "tid": 14, "ts": 10917959.9609375, "dur": 2305.2000999450684, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.3052000999450684, "detail": "UnityEngine.EventSystems.RaycasterManager" } },
- { "pid": 1, "tid": 14, "ts": 10920266.6015625, "dur": 29112.499237060547, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 29.112499237060547, "detail": "UnityEngine.UI.RectMask2D" } },
- { "pid": 1, "tid": 14, "ts": 10949380.859375, "dur": 2314.5999908447266, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.3145999908447266, "detail": "UnityEngine.UI.RectangularVertexClipper" } },
- { "pid": 1, "tid": 14, "ts": 10951697.265625, "dur": 7096.89998626709, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.09689998626709, "detail": "UnityEngine.UI.ReflectionMethodsCache" } },
- { "pid": 1, "tid": 14, "ts": 10958796.875, "dur": 95700.30212402344, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 95.70030212402344, "detail": "UnityEngine.UI.ScrollRect" } },
- { "pid": 1, "tid": 14, "ts": 11054502.9296875, "dur": 56366.004943847656, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 56.366004943847656, "detail": "UnityEngine.UI.Scrollbar" } },
- { "pid": 1, "tid": 14, "ts": 11110876.953125, "dur": 173895.5078125, "ph": "X", "name": "UnityEngine.UI2.cpp", "args": { "durationMS": 173.8955078125, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 11284804.6875, "dur": 4035.900115966797, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.035900115966797, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>" } },
- { "pid": 1, "tid": 14, "ts": 11288847.65625, "dur": 38151.19934082031, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 38.15119934082031, "detail": "System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 14, "ts": 11327003.90625, "dur": 9933.600425720215, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 9.933600425720215, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 14, "ts": 11336947.265625, "dur": 10654.399871826172, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 10.654399871826172, "detail": "System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 14, "ts": 11347608.3984375, "dur": 7590.799808502197, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.590799808502197, "detail": "System.Collections.Generic.EqualityComparer`1<System.Boolean>" } },
- { "pid": 1, "tid": 14, "ts": 11355202.1484375, "dur": 12777.199745178223, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 12.777199745178223, "detail": "System.Collections.Generic.EqualityComparer`1<System.Byte>" } },
- { "pid": 1, "tid": 14, "ts": 11367982.421875, "dur": 18842.80014038086, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 18.84280014038086, "detail": "System.Collections.Generic.EqualityComparer`1<System.Char>" } },
- { "pid": 1, "tid": 14, "ts": 11386829.1015625, "dur": 6635.0998878479, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.6350998878479, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 14, "ts": 11393466.796875, "dur": 8719.200134277344, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 8.719200134277344, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.ColorBlock>" } },
- { "pid": 1, "tid": 14, "ts": 11402189.453125, "dur": 7381.899833679199, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.381899833679199, "detail": "System.Collections.Generic.EqualityComparer`1<System.Int32>" } },
- { "pid": 1, "tid": 14, "ts": 11409575.1953125, "dur": 13028.300285339355, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 13.028300285339355, "detail": "System.Collections.Generic.EqualityComparer`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 14, "ts": 11422606.4453125, "dur": 49272.19772338867, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 49.27219772338867, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Navigation>" } },
- { "pid": 1, "tid": 14, "ts": 11471881.8359375, "dur": 13170.100212097168, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 13.170100212097168, "detail": "System.Collections.Generic.EqualityComparer`1<System.Object>" } },
- { "pid": 1, "tid": 14, "ts": 11485055.6640625, "dur": 7127.299785614014, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.127299785614014, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 14, "ts": 11492185.546875, "dur": 9968.199729919434, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 9.968199729919434, "detail": "System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 14, "ts": 11502157.2265625, "dur": 21269.19937133789, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 21.26919937133789, "detail": "System.Collections.Generic.EqualityComparer`1<System.Single>" } },
- { "pid": 1, "tid": 14, "ts": 11523429.6875, "dur": 33729.09927368164, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 33.72909927368164, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.SpriteState>" } },
- { "pid": 1, "tid": 14, "ts": 11557163.0859375, "dur": 8128.199577331543, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 8.128199577331543, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 14, "ts": 11565293.9453125, "dur": 9908.699989318848, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 9.908699989318848, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 14, "ts": 11575207.03125, "dur": 8949.799537658691, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 8.949799537658691, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 14, "ts": 11584160.15625, "dur": 20369.699478149414, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 20.369699478149414, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 14, "ts": 11604532.2265625, "dur": 10753.499984741211, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 10.753499984741211, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 14, "ts": 11615289.0625, "dur": 8678.500175476074, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 8.678500175476074, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 14, "ts": 11623971.6796875, "dur": 11179.400444030762, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 11.179400444030762, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 14, "ts": 11635153.3203125, "dur": 6825.900077819824, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.825900077819824, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 14, "ts": 11641982.421875, "dur": 1444.3000555038452, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4443000555038452, "detail": "UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<System.Object>" } },
- { "pid": 1, "tid": 14, "ts": 11643429.6875, "dur": 27026.59797668457, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 27.02659797668457, "detail": "System.EventHandler`1<System.Object>" } },
- { "pid": 1, "tid": 14, "ts": 11670459.9609375, "dur": 19512.300491333008, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 19.512300491333008, "detail": "System.IO.FileSystemEnumerableIterator`1<System.Object>" } },
- { "pid": 1, "tid": 14, "ts": 11689974.609375, "dur": 755.4000020027161, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7554000020027161, "detail": "System.Func`1<System.Boolean>" } },
- { "pid": 1, "tid": 14, "ts": 11690732.421875, "dur": 723.1000065803528, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7231000065803528, "detail": "System.Func`1<System.Int32>" } },
- { "pid": 1, "tid": 14, "ts": 11691458.984375, "dur": 855.3000092506409, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8553000092506409, "detail": "System.Func`1<System.Object>" } },
- { "pid": 1, "tid": 14, "ts": 11692317.3828125, "dur": 867.6000237464905, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8676000237464905, "detail": "System.Func`1<System.Threading.Tasks.VoidTaskResult>" } },
- { "pid": 1, "tid": 14, "ts": 11693187.5, "dur": 5892.600059509277, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.892600059509277, "detail": "System.Func`2<System.Object,System.Boolean>" } },
- { "pid": 1, "tid": 14, "ts": 11699082.03125, "dur": 942.7000284194946, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9427000284194946, "detail": "System.Func`2<System.Object,System.Int32>" } },
- { "pid": 1, "tid": 14, "ts": 11700027.34375, "dur": 877.3000240325928, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8773000240325928, "detail": "System.Func`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 14, "ts": 11700908.203125, "dur": 946.2000131607056, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9462000131607056, "detail": "System.Func`2<System.Object,System.Single>" } },
- { "pid": 1, "tid": 14, "ts": 11701857.421875, "dur": 957.0000171661377, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9570000171661377, "detail": "System.Func`2<System.Object,System.Threading.Tasks.VoidTaskResult>" } },
- { "pid": 1, "tid": 14, "ts": 11702816.40625, "dur": 855.0999760627747, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8550999760627747, "detail": "System.Func`3<System.Int32,System.IntPtr,System.Boolean>" } },
- { "pid": 1, "tid": 14, "ts": 11703677.734375, "dur": 1000.2000331878662, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0002000331878662, "detail": "System.Func`3<System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 14, "ts": 11704679.6875, "dur": 1042.199969291687, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.042199969291687, "detail": "System.Func`4<System.Object,System.Object,System.Boolean,System.Object>" } },
- { "pid": 1, "tid": 14, "ts": 11705726.5625, "dur": 1092.7000045776367, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0927000045776367, "detail": "System.Func`4<System.Object,System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 14, "ts": 11706824.21875, "dur": 1100.9000539779663, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.1009000539779663, "detail": "System.Collections.Generic.GenericComparer`1<System.Int32>" } },
- { "pid": 1, "tid": 14, "ts": 11707927.734375, "dur": 1295.799970626831, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.295799970626831, "detail": "System.Collections.Generic.GenericComparer`1<System.Object>" } },
- { "pid": 1, "tid": 14, "ts": 11709229.4921875, "dur": 1444.100022315979, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.444100022315979, "detail": "System.Collections.Generic.GenericComparer`1<System.UInt64>" } },
- { "pid": 1, "tid": 14, "ts": 11710676.7578125, "dur": 12851.200103759766, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 12.851200103759766, "detail": "System.Collections.Generic.GenericEqualityComparer`1<System.Boolean>" } },
- { "pid": 1, "tid": 14, "ts": 11723532.2265625, "dur": 6744.500160217285, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.744500160217285, "detail": "System.Collections.Generic.GenericEqualityComparer`1<System.Byte>" } },
- { "pid": 1, "tid": 14, "ts": 11730279.296875, "dur": 3640.000104904175, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.640000104904175, "detail": "System.Collections.Generic.GenericEqualityComparer`1<System.Char>" } },
- { "pid": 1, "tid": 14, "ts": 11733927.734375, "dur": 4010.0998878479004, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.0100998878479, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.ColorBlock>" } },
- { "pid": 1, "tid": 14, "ts": 11737941.40625, "dur": 3542.2000885009766, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.5422000885009766, "detail": "System.Collections.Generic.GenericEqualityComparer`1<System.Int32>" } },
- { "pid": 1, "tid": 14, "ts": 11741487.3046875, "dur": 5875.29993057251, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.87529993057251, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.Navigation>" } },
- { "pid": 1, "tid": 14, "ts": 11747365.234375, "dur": 5424.399852752686, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.4243998527526855, "detail": "System.Collections.Generic.GenericEqualityComparer`1<System.Object>" } },
- { "pid": 1, "tid": 14, "ts": 11752793.9453125, "dur": 3036.4999771118164, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.0364999771118164, "detail": "System.Collections.Generic.GenericEqualityComparer`1<System.Single>" } },
- { "pid": 1, "tid": 14, "ts": 11755833.0078125, "dur": 10189.800262451172, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 10.189800262451172, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.SpriteState>" } },
- { "pid": 1, "tid": 14, "ts": 11766026.3671875, "dur": 3998.699903488159, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.998699903488159, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 14, "ts": 11770030.2734375, "dur": 16223.699569702148, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 16.22369956970215, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 14, "ts": 11786256.8359375, "dur": 921.1999773979187, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9211999773979187, "detail": "System.Reflection.MonoProperty/Getter`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 14, "ts": 11787182.6171875, "dur": 31433.401107788086, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 31.433401107788086, "detail": "System.Collections.Generic.HashSet`1<System.Object>" } },
- { "pid": 1, "tid": 14, "ts": 11818619.140625, "dur": 958.0000042915344, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9580000042915344, "detail": "System.Collections.Generic.ICollectionDebugView`1<System.Object>" } },
- { "pid": 1, "tid": 14, "ts": 11819581.0546875, "dur": 951.3999819755554, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9513999819755554, "detail": "System.Collections.Generic.ICollectionDebugView`1<System.Object>" } },
- { "pid": 1, "tid": 14, "ts": 11823080.078125, "dur": 1185.8999729156494, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.1858999729156494, "detail": "System.Collections.Concurrent.IDictionaryDebugView`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 14, "ts": 11824273.4375, "dur": 1071.2000131607056, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0712000131607056, "detail": "System.Collections.Generic.IDictionaryDebugView`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 14, "ts": 11826144.53125, "dur": 2368.0999279022217, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.3680999279022217, "detail": "System.Collections.Generic.IEnumerable`1<System.Globalization.UmAlQuraCalendar/DateMapping>" } },
- { "pid": 1, "tid": 14, "ts": 11828621.09375, "dur": 1919.700026512146, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.919700026512146, "detail": "System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>" } },
- { "pid": 1, "tid": 14, "ts": 11831613.28125, "dur": 5480.599880218506, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.480599880218506, "detail": "System.IEquatable`1<UnityEngine.Animations.AnimationMixerPlayable>" } },
- { "pid": 1, "tid": 14, "ts": 11841175.78125, "dur": 25256.999969482422, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 25.256999969482422, "detail": "UnityEngine.UI.Collections.IndexedSet`1<System.Object>" } },
- { "pid": 1, "tid": 14, "ts": 11866436.5234375, "dur": 3335.700035095215, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.335700035095215, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>" } },
- { "pid": 1, "tid": 14, "ts": 11869777.34375, "dur": 2698.6000537872314, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.6986000537872314, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>" } },
- { "pid": 1, "tid": 14, "ts": 11872478.515625, "dur": 2898.0000019073486, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.8980000019073486, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>" } },
- { "pid": 1, "tid": 14, "ts": 11875381.8359375, "dur": 3178.4000396728516, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.1784000396728516, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>" } },
- { "pid": 1, "tid": 14, "ts": 11878564.453125, "dur": 5814.899921417236, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.814899921417236, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 14, "ts": 11884383.7890625, "dur": 8371.000289916992, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 8.371000289916992, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>" } },
- { "pid": 1, "tid": 14, "ts": 11892757.8125, "dur": 6962.600231170654, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.962600231170654, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>" } },
- { "pid": 1, "tid": 14, "ts": 11899723.6328125, "dur": 2759.0999603271484, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.7590999603271484, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>" } },
- { "pid": 1, "tid": 14, "ts": 11902487.3046875, "dur": 2647.200107574463, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.647200107574463, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>" } },
- { "pid": 1, "tid": 14, "ts": 11905139.6484375, "dur": 2569.9000358581543, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.5699000358581543, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>" } },
- { "pid": 1, "tid": 14, "ts": 11907712.890625, "dur": 2804.30006980896, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.80430006980896, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>" } },
- { "pid": 1, "tid": 14, "ts": 11910519.53125, "dur": 11781.800270080566, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 11.781800270080566, "detail": "System.Array/InternalEnumerator`1<System.Boolean>" } },
- { "pid": 1, "tid": 14, "ts": 11922304.6875, "dur": 2992.799997329712, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.992799997329712, "detail": "System.Array/InternalEnumerator`1<System.Byte>" } },
- { "pid": 1, "tid": 14, "ts": 11925301.7578125, "dur": 6349.400043487549, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.349400043487549, "detail": "System.Array/InternalEnumerator`1<System.Threading.CancellationTokenRegistration>" } },
- { "pid": 1, "tid": 14, "ts": 11931653.3203125, "dur": 4671.800136566162, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.671800136566162, "detail": "System.Array/InternalEnumerator`1<System.Char>" } },
- { "pid": 1, "tid": 14, "ts": 11936329.1015625, "dur": 22604.999542236328, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 22.604999542236328, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 14, "ts": 11958940.4296875, "dur": 75707.59582519531, "ph": "X", "name": "Generics2.cpp", "args": { "durationMS": 75.70759582519531, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 12035155.2734375, "dur": 4766.7999267578125, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 4.7667999267578125, "detail": "AwaitUnsafeOnCompleted" } },
- { "pid": 1, "tid": 14, "ts": 12039923.828125, "dur": 1561.4999532699585, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.5614999532699585, "detail": "AwaitUnsafeOnCompleted" } },
- { "pid": 1, "tid": 14, "ts": 12041488.28125, "dur": 839.900016784668, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.839900016784668, "detail": "Start" } },
- { "pid": 1, "tid": 14, "ts": 12042329.1015625, "dur": 1459.4000577926636, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.4594000577926636, "detail": "AwaitUnsafeOnCompleted" } },
- { "pid": 1, "tid": 14, "ts": 12043791.9921875, "dur": 12451.000213623047, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 12.451000213623047, "detail": "Start" } },
- { "pid": 1, "tid": 14, "ts": 12056245.1171875, "dur": 1320.7999467849731, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3207999467849731, "detail": "CreateInstance" } },
- { "pid": 1, "tid": 14, "ts": 12057569.3359375, "dur": 7839.300155639648, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 7.839300155639648, "detail": "AsReadOnly" } },
- { "pid": 1, "tid": 14, "ts": 12065409.1796875, "dur": 520.799994468689, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.520799994468689, "detail": "AsReadOnly" } },
- { "pid": 1, "tid": 14, "ts": 12065931.640625, "dur": 442.09998846054077, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.44209998846054077, "detail": "AsReadOnly" } },
- { "pid": 1, "tid": 14, "ts": 12066376.953125, "dur": 797.6999878883362, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7976999878883362, "detail": "BinarySearch" } },
- { "pid": 1, "tid": 14, "ts": 12067177.734375, "dur": 998.7999796867371, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9987999796867371, "detail": "BinarySearch" } },
- { "pid": 1, "tid": 14, "ts": 12068178.7109375, "dur": 624.1999864578247, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6241999864578247, "detail": "BinarySearch" } },
- { "pid": 1, "tid": 14, "ts": 12068804.6875, "dur": 349.9999940395355, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3499999940395355, "detail": "BinarySearch" } },
- { "pid": 1, "tid": 14, "ts": 12069156.25, "dur": 3539.400100708008, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.539400100708008, "detail": "BinarySearch" } },
- { "pid": 1, "tid": 14, "ts": 12072698.2421875, "dur": 1274.7000455856323, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2747000455856323, "detail": "BinarySearch" } },
- { "pid": 1, "tid": 14, "ts": 12073974.609375, "dur": 1460.0000381469727, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.4600000381469727, "detail": "ConvertAll" } },
- { "pid": 1, "tid": 14, "ts": 12075961.9140625, "dur": 373.199999332428, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.373199999332428, "detail": "Exists" } },
- { "pid": 1, "tid": 14, "ts": 12076336.9140625, "dur": 939.0000104904175, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9390000104904175, "detail": "Fill" } },
- { "pid": 1, "tid": 14, "ts": 12077278.3203125, "dur": 4157.899856567383, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 4.157899856567383, "detail": "Fill" } },
- { "pid": 1, "tid": 14, "ts": 12081438.4765625, "dur": 1098.0000495910645, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0980000495910645, "detail": "Find" } },
- { "pid": 1, "tid": 14, "ts": 12082538.0859375, "dur": 1924.7000217437744, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.9247000217437744, "detail": "FindAll" } },
- { "pid": 1, "tid": 14, "ts": 12084464.84375, "dur": 639.1000151634216, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6391000151634216, "detail": "FindIndex" } },
- { "pid": 1, "tid": 14, "ts": 12085105.46875, "dur": 546.500027179718, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.546500027179718, "detail": "FindIndex" } },
- { "pid": 1, "tid": 14, "ts": 12085653.3203125, "dur": 1567.0000314712524, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.5670000314712524, "detail": "FindIndex" } },
- { "pid": 1, "tid": 14, "ts": 12087222.65625, "dur": 877.9000043869019, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8779000043869019, "detail": "FindLast" } },
- { "pid": 1, "tid": 14, "ts": 12088102.5390625, "dur": 561.6000294685364, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5616000294685364, "detail": "FindLastIndex" } },
- { "pid": 1, "tid": 14, "ts": 12088666.015625, "dur": 575.6999850273132, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5756999850273132, "detail": "FindLastIndex" } },
- { "pid": 1, "tid": 14, "ts": 12089242.1875, "dur": 1425.5000352859497, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.4255000352859497, "detail": "FindLastIndex" } },
- { "pid": 1, "tid": 14, "ts": 12090669.921875, "dur": 725.0999808311462, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7250999808311462, "detail": "ForEach" } },
- { "pid": 1, "tid": 14, "ts": 12091694.3359375, "dur": 503.0999779701233, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5030999779701233, "detail": "IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12092198.2421875, "dur": 548.5000014305115, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5485000014305115, "detail": "IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12092749.0234375, "dur": 1010.4000568389893, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0104000568389893, "detail": "IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12093760.7421875, "dur": 2917.099952697754, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.917099952697754, "detail": "IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12096680.6640625, "dur": 1192.8999423980713, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1928999423980713, "detail": "IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12097875.9765625, "dur": 1033.1000089645386, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0331000089645386, "detail": "IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12098912.109375, "dur": 991.4000034332275, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9914000034332275, "detail": "IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12099906.25, "dur": 962.7000093460083, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9627000093460083, "detail": "IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12100871.09375, "dur": 966.6000008583069, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9666000008583069, "detail": "IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12101840.8203125, "dur": 43119.998931884766, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 43.119998931884766, "detail": "IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12144964.84375, "dur": 1700.600028038025, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.700600028038025, "detail": "IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12146667.96875, "dur": 3640.3000354766846, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.6403000354766846, "detail": "IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12150310.546875, "dur": 1072.9999542236328, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0729999542236328, "detail": "IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12151385.7421875, "dur": 1167.8999662399292, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1678999662399292, "detail": "IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12152555.6640625, "dur": 1279.8999547958374, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2798999547958374, "detail": "IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12153838.8671875, "dur": 1131.3999891281128, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1313999891281128, "detail": "IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12154971.6796875, "dur": 507.3000192642212, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5073000192642212, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 14, "ts": 12155480.46875, "dur": 470.8999991416931, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4708999991416931, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 14, "ts": 12155953.125, "dur": 425.0999987125397, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4250999987125397, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 14, "ts": 12156379.8828125, "dur": 494.3999946117401, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4943999946117401, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 14, "ts": 12156875.9765625, "dur": 447.8999972343445, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4478999972343445, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 14, "ts": 12157324.21875, "dur": 501.6999840736389, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5016999840736389, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 14, "ts": 12157829.1015625, "dur": 448.9000141620636, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4489000141620636, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 14, "ts": 12158279.296875, "dur": 888.4000182151794, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8884000182151794, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 14, "ts": 12159168.9453125, "dur": 472.79998660087585, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.47279998660087585, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 14, "ts": 12159642.578125, "dur": 474.0999937057495, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4740999937057495, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 14, "ts": 12160119.140625, "dur": 446.09999656677246, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.44609999656677246, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 14, "ts": 12160566.40625, "dur": 568.0999755859375, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5680999755859375, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 14, "ts": 12161136.71875, "dur": 2253.2999515533447, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.2532999515533447, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 14, "ts": 12163393.5546875, "dur": 5480.400085449219, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 5.480400085449219, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 14, "ts": 12168875, "dur": 434.3999922275543, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4343999922275543, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 14, "ts": 12169310.546875, "dur": 653.5000205039978, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6535000205039978, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 14, "ts": 12171585.9375, "dur": 333.40001106262207, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.33340001106262207, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 14, "ts": 12172578.125, "dur": 364.89999294281006, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36489999294281006, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 14, "ts": 12173524.4140625, "dur": 337.0000123977661, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3370000123977661, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 14, "ts": 12174448.2421875, "dur": 361.9000017642975, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3619000017642975, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 14, "ts": 12175401.3671875, "dur": 6032.9999923706055, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 6.0329999923706055, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 14, "ts": 12182640.625, "dur": 459.10000801086426, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.45910000801086426, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 14, "ts": 12183396.484375, "dur": 385.5000138282776, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3855000138282776, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 14, "ts": 12186505.859375, "dur": 354.40000891685486, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.35440000891685486, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 14, "ts": 12187477.5390625, "dur": 378.1999945640564, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3781999945640564, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 14, "ts": 12189391.6015625, "dur": 457.7000141143799, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4577000141143799, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 14, "ts": 12189849.609375, "dur": 342.2999978065491, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3422999978065491, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 14, "ts": 12192594.7265625, "dur": 13756.300926208496, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 13.756300926208496, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 14, "ts": 12207303.7109375, "dur": 354.29999232292175, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.35429999232292175, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 14, "ts": 12208609.375, "dur": 341.39999747276306, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34139999747276306, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 14, "ts": 12208952.1484375, "dur": 385.89999079704285, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38589999079704285, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 14, "ts": 12209339.84375, "dur": 366.40000343322754, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36640000343322754, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 14, "ts": 12209708.0078125, "dur": 1120.1000213623047, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1201000213623047, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12210830.078125, "dur": 4586.900234222412, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 4.586900234222412, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12215419.921875, "dur": 1078.7999629974365, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0787999629974365, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12216500.9765625, "dur": 1206.6999673843384, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2066999673843384, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12217709.9609375, "dur": 1413.100004196167, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.413100004196167, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12219125.9765625, "dur": 1356.600046157837, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.356600046157837, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12220484.375, "dur": 1026.4999866485596, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0264999866485596, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12221512.6953125, "dur": 1495.2000379562378, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.4952000379562378, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12223010.7421875, "dur": 1075.600028038025, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.075600028038025, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12224087.890625, "dur": 1044.700026512146, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.044700026512146, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12225135.7421875, "dur": 1051.900029182434, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.051900029182434, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12226190.4296875, "dur": 11001.899719238281, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 11.001899719238281, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12237194.3359375, "dur": 908.5999727249146, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9085999727249146, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12238105.46875, "dur": 1023.8000154495239, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.023800015449524, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12239131.8359375, "dur": 1317.4999952316284, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3174999952316284, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12240451.171875, "dur": 1078.9999961853027, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0789999961853027, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12241531.25, "dur": 1092.4999713897705, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0924999713897705, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12242625, "dur": 955.2000164985657, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9552000164985657, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12243582.03125, "dur": 4950.500011444092, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 4.950500011444092, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12248535.15625, "dur": 1363.4999990463257, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3634999990463257, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12249900.390625, "dur": 892.4999833106995, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8924999833106995, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12250794.921875, "dur": 902.0000100135803, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9020000100135803, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12251699.21875, "dur": 1118.399977684021, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.118399977684021, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12252819.3359375, "dur": 952.7000188827515, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9527000188827515, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12253773.4375, "dur": 1004.7999620437622, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0047999620437622, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12254780.2734375, "dur": 3755.8000087738037, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.7558000087738037, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12258540.0390625, "dur": 973.6999869346619, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9736999869346619, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12259516.6015625, "dur": 1058.3000183105469, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0583000183105469, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12260577.1484375, "dur": 8115.300178527832, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 8.115300178527832, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12268695.3125, "dur": 1144.8999643325806, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1448999643325806, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12269842.7734375, "dur": 1409.8999500274658, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.4098999500274658, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12271254.8828125, "dur": 1790.4000282287598, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.7904000282287598, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12273045.8984375, "dur": 1012.1999979019165, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0121999979019165, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12274060.546875, "dur": 982.9999804496765, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9829999804496765, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12275044.921875, "dur": 967.2999978065491, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9672999978065491, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12276014.6484375, "dur": 972.8000164031982, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9728000164031982, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12276990.234375, "dur": 5301.700115203857, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 5.301700115203857, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12282292.96875, "dur": 1166.599988937378, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.166599988937378, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12283462.890625, "dur": 1028.1000137329102, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0281000137329102, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12284493.1640625, "dur": 1070.9999799728394, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0709999799728394, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12285566.40625, "dur": 932.699978351593, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.932699978351593, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12286500.9765625, "dur": 1057.6000213623047, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0576000213623047, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12287560.546875, "dur": 1254.4000148773193, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2544000148773193, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12288819.3359375, "dur": 1131.00004196167, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.13100004196167, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12289953.125, "dur": 948.5999941825867, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9485999941825867, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12290903.3203125, "dur": 910.3999733924866, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9103999733924866, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12291815.4296875, "dur": 1129.09996509552, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.12909996509552, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12292947.265625, "dur": 14499.100685119629, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 14.499100685119629, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12307448.2421875, "dur": 954.800009727478, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.954800009727478, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12308404.296875, "dur": 1057.8999519348145, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0578999519348145, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12309463.8671875, "dur": 1440.1999711990356, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.4401999711990356, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12310906.25, "dur": 3606.100082397461, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.606100082397461, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12314513.671875, "dur": 931.8000078201294, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9318000078201294, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12315447.265625, "dur": 970.0000286102295, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9700000286102295, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12316418.9453125, "dur": 1015.4999494552612, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0154999494552612, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12317436.5234375, "dur": 845.6000089645386, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8456000089645386, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12318283.203125, "dur": 2000.2999305725098, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.0002999305725098, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12320285.15625, "dur": 948.4999775886536, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9484999775886536, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12321235.3515625, "dur": 3511.899948120117, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.511899948120117, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12324749.0234375, "dur": 7292.799949645996, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 7.292799949645996, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12332044.921875, "dur": 1425.4000186920166, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.4254000186920166, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12333471.6796875, "dur": 2065.000057220459, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.065000057220459, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12335539.0625, "dur": 984.6000075340271, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9846000075340271, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12336524.4140625, "dur": 1022.1999883651733, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0221999883651733, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12337548.828125, "dur": 976.4000177383423, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9764000177383423, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12338526.3671875, "dur": 951.200008392334, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.951200008392334, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 14, "ts": 12339479.4921875, "dur": 495.49999833106995, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.49549999833106995, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12339975.5859375, "dur": 434.8999857902527, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4348999857902527, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12340411.1328125, "dur": 574.6999979019165, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5746999979019165, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12340988.28125, "dur": 442.00000166893005, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.44200000166893005, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12341432.6171875, "dur": 465.60001373291016, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.46560001373291016, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12341899.4140625, "dur": 455.09999990463257, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.45509999990463257, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12342355.46875, "dur": 621.6999888420105, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6216999888420105, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12342978.515625, "dur": 490.5000030994415, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.49050000309944153, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12343471.6796875, "dur": 808.899998664856, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.808899998664856, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12344283.203125, "dur": 4369.29988861084, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 4.36929988861084, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12348654.296875, "dur": 630.6999921798706, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6306999921798706, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12349286.1328125, "dur": 2489.7000789642334, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.4897000789642334, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12351779.296875, "dur": 602.6999950408936, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6026999950408936, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12352383.7890625, "dur": 1063.3000135421753, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0633000135421753, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12353449.21875, "dur": 589.900016784668, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.589900016784668, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12354040.0390625, "dur": 414.29999470710754, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.41429999470710754, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12354456.0546875, "dur": 601.4999747276306, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6014999747276306, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12355058.59375, "dur": 436.89998984336853, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.43689998984336853, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12355498.046875, "dur": 459.69998836517334, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.45969998836517334, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12355958.0078125, "dur": 406.30000829696655, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.40630000829696655, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12356366.2109375, "dur": 475.8000075817108, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4758000075817108, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12356842.7734375, "dur": 405.60001134872437, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.40560001134872437, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12357250, "dur": 420.199990272522, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.420199990272522, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12357671.875, "dur": 399.8999893665314, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.39989998936653137, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12358072.265625, "dur": 406.30000829696655, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.40630000829696655, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12358479.4921875, "dur": 515.9000158309937, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5159000158309937, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12358998.046875, "dur": 413.50001096725464, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.41350001096725464, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12359412.109375, "dur": 523.1999754905701, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5231999754905701, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12359936.5234375, "dur": 415.89999198913574, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.41589999198913574, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12360354.4921875, "dur": 4924.600124359131, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 4.924600124359131, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12365280.2734375, "dur": 658.6999893188477, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6586999893188477, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12365954.1015625, "dur": 1966.1999940872192, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.9661999940872192, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12367922.8515625, "dur": 546.0000038146973, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5460000038146973, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12368470.703125, "dur": 624.8000264167786, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6248000264167786, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12369097.65625, "dur": 964.8000001907349, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9648000001907349, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12370065.4296875, "dur": 442.4000084400177, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4424000084400177, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12370507.8125, "dur": 511.79999113082886, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5117999911308289, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12371021.484375, "dur": 445.30001282691956, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.44530001282691956, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12371468.75, "dur": 455.3000032901764, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4553000032901764, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12371924.8046875, "dur": 413.100004196167, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.413100004196167, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12372338.8671875, "dur": 437.20000982284546, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.43720000982284546, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12372777.34375, "dur": 404.70001101493835, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.40470001101493835, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12373183.59375, "dur": 433.89999866485596, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.43389999866485596, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12373619.140625, "dur": 429.3999969959259, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4293999969959259, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12374050.78125, "dur": 735.80002784729, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.73580002784729, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12374788.0859375, "dur": 435.9000027179718, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4359000027179718, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12375225.5859375, "dur": 417.69999265670776, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.41769999265670776, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12375644.53125, "dur": 408.8999927043915, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4088999927043915, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12376054.6875, "dur": 404.3999910354614, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4043999910354614, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12376460.9375, "dur": 507.3000192642212, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5073000192642212, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12376968.75, "dur": 514.9000287055969, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5149000287055969, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12377486.328125, "dur": 5126.200199127197, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 5.126200199127197, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12382615.234375, "dur": 497.99999594688416, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.49799999594688416, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12383114.2578125, "dur": 9588.800430297852, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 9.588800430297852, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12392705.078125, "dur": 8067.19970703125, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 8.06719970703125, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12400776.3671875, "dur": 584.2000246047974, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5842000246047974, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12401362.3046875, "dur": 559.0000152587891, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5590000152587891, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12401922.8515625, "dur": 537.4000072479248, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5374000072479248, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12402461.9140625, "dur": 1501.0000467300415, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.5010000467300415, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12403964.84375, "dur": 648.4000086784363, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6484000086784363, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12404615.234375, "dur": 604.200005531311, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.604200005531311, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12405219.7265625, "dur": 556.5000176429749, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5565000176429749, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12405778.3203125, "dur": 603.6999821662903, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6036999821662903, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12406383.7890625, "dur": 1056.3000440597534, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0563000440597534, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12407442.3828125, "dur": 617.6000237464905, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6176000237464905, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12408061.5234375, "dur": 558.3000183105469, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5583000183105469, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 14, "ts": 12408621.09375, "dur": 722.100019454956, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.722100019454956, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12409344.7265625, "dur": 439.39998745918274, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.43939998745918274, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12409785.15625, "dur": 436.50001287460327, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.43650001287460327, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12410222.65625, "dur": 25770.000457763672, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 25.770000457763672, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12435995.1171875, "dur": 380.1000118255615, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3801000118255615, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12436376.953125, "dur": 584.5000147819519, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5845000147819519, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12437288.0859375, "dur": 434.5000088214874, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4345000088214874, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12437724.609375, "dur": 395.3000009059906, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3953000009059906, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12438122.0703125, "dur": 378.1999945640564, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3781999945640564, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12438836.9140625, "dur": 341.19999408721924, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34119999408721924, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12441436.5234375, "dur": 343.4000015258789, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3434000015258789, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12442385.7421875, "dur": 507.2000026702881, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5072000026702881, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12442894.53125, "dur": 432.99999833106995, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.43299999833106995, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12443329.1015625, "dur": 3427.2000789642334, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.4272000789642334, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12446759.765625, "dur": 1455.0000429153442, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.4550000429153442, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12448215.8203125, "dur": 356.4000129699707, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3564000129699707, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12448894.53125, "dur": 561.6999864578247, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5616999864578247, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12451648.4375, "dur": 764.2999887466431, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7642999887466431, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12452415.0390625, "dur": 367.5999939441681, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3675999939441681, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12453419.921875, "dur": 346.5999960899353, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3465999960899353, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12457462.890625, "dur": 393.40001344680786, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.39340001344680786, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12457857.421875, "dur": 461.40000224113464, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.46140000224113464, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12458320.3125, "dur": 931.4000010490417, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9314000010490417, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12459254.8828125, "dur": 384.99999046325684, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38499999046325684, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12460273.4375, "dur": 873.3000159263611, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8733000159263611, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12461148.4375, "dur": 1636.7000341415405, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.6367000341415405, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12462787.109375, "dur": 429.89999055862427, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.42989999055862427, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12463219.7265625, "dur": 412.80001401901245, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.41280001401901245, "detail": "InternalArray__ICollection_Remove" } },
- { "pid": 1, "tid": 14, "ts": 12463949.21875, "dur": 640.6000256538391, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6406000256538391, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12464591.796875, "dur": 549.0000247955322, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5490000247955322, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12465142.578125, "dur": 548.799991607666, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.548799991607666, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12465692.3828125, "dur": 486.9000017642975, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4869000017642975, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12466180.6640625, "dur": 483.9000105857849, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4839000105857849, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12466666.9921875, "dur": 529.20001745224, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.52920001745224, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12467196.2890625, "dur": 49953.102111816406, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 49.953102111816406, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12517152.34375, "dur": 553.3000230789185, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5533000230789185, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12517707.03125, "dur": 564.5999908447266, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5645999908447266, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12518273.4375, "dur": 740.1000261306763, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7401000261306763, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12519015.625, "dur": 578.8000226020813, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5788000226020813, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12519596.6796875, "dur": 509.99999046325684, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5099999904632568, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12520108.3984375, "dur": 488.0000054836273, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4880000054836273, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12520597.65625, "dur": 488.09999227523804, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.48809999227523804, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12521086.9140625, "dur": 1646.1999416351318, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.6461999416351318, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12522734.375, "dur": 488.09999227523804, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.48809999227523804, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12523224.609375, "dur": 650.4999995231628, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6504999995231628, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12523876.953125, "dur": 883.5999965667725, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8835999965667725, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12524761.71875, "dur": 531.499981880188, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.531499981880188, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12525293.9453125, "dur": 617.900013923645, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.617900013923645, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12525914.0625, "dur": 642.1999931335449, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6421999931335449, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12526558.59375, "dur": 523.8000154495239, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5238000154495239, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12527083.984375, "dur": 3709.199905395508, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.709199905395508, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12530794.921875, "dur": 542.6999926567078, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5426999926567078, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12531338.8671875, "dur": 542.5999760627747, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5425999760627747, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12531882.8125, "dur": 509.19997692108154, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5091999769210815, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12532392.578125, "dur": 674.6000051498413, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6746000051498413, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12533068.359375, "dur": 582.1999907493591, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5821999907493591, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12533652.34375, "dur": 519.2000269889832, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5192000269889832, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12534172.8515625, "dur": 591.3000106811523, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5913000106811523, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12534765.625, "dur": 530.9000015258789, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5309000015258789, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12535297.8515625, "dur": 518.5999870300293, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5185999870300293, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12535817.3828125, "dur": 524.2000222206116, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5242000222206116, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12536342.7734375, "dur": 546.0000038146973, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5460000038146973, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12536890.625, "dur": 512.3999714851379, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5123999714851379, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12537403.3203125, "dur": 3240.9000396728516, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.2409000396728516, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12540646.484375, "dur": 560.8000159263611, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5608000159263611, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12541209.9609375, "dur": 574.0000009536743, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5740000009536743, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12541785.15625, "dur": 539.0999913215637, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5390999913215637, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12542325.1953125, "dur": 611.1999750137329, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6111999750137329, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12542937.5, "dur": 674.1999983787537, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6741999983787537, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12543613.28125, "dur": 3924.5998859405518, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.9245998859405518, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12547540.0390625, "dur": 974.399983882904, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.974399983882904, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12548516.6015625, "dur": 1319.9000358581543, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3199000358581543, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12549838.8671875, "dur": 698.4000205993652, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6984000205993652, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12550538.0859375, "dur": 543.6999797821045, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5436999797821045, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12551083.984375, "dur": 605.3000092506409, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6053000092506409, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12551691.40625, "dur": 545.7000136375427, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5457000136375427, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12552239.2578125, "dur": 643.4000134468079, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6434000134468079, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12552883.7890625, "dur": 520.2000141143799, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5202000141143799, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12553405.2734375, "dur": 636.0999941825867, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6360999941825867, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12554042.96875, "dur": 540.0000214576721, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5400000214576721, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12554583.984375, "dur": 522.3000049591064, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5223000049591064, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12555108.3984375, "dur": 540.6000018119812, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5406000018119812, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12555649.4140625, "dur": 515.9000158309937, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5159000158309937, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12556167.96875, "dur": 642.799973487854, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.642799973487854, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12556811.5234375, "dur": 514.1000151634216, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5141000151634216, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12557327.1484375, "dur": 562.0999932289124, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5620999932289124, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12557890.625, "dur": 533.9000225067139, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5339000225067139, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12558424.8046875, "dur": 938.7999773025513, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9387999773025513, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12559366.2109375, "dur": 807.6000213623047, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8076000213623047, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12560174.8046875, "dur": 585.6000185012817, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5856000185012817, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12560763.671875, "dur": 607.4000000953674, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6074000000953674, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12561372.0703125, "dur": 29917.299270629883, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 29.917299270629883, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12591291.9921875, "dur": 674.6000051498413, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6746000051498413, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12591967.7734375, "dur": 727.5000214576721, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7275000214576721, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 14, "ts": 12592698.2421875, "dur": 855.400025844574, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.855400025844574, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12593555.6640625, "dur": 1403.2000303268433, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.4032000303268433, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12594962.890625, "dur": 1294.8999404907227, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2948999404907227, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12596259.765625, "dur": 1257.200002670288, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.257200002670288, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12597519.53125, "dur": 1234.2000007629395, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2342000007629395, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12598756.8359375, "dur": 1330.299973487854, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.330299973487854, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12600089.84375, "dur": 778.2999873161316, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7782999873161316, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12600870.1171875, "dur": 667.5000190734863, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6675000190734863, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12601540.0390625, "dur": 748.7999796867371, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7487999796867371, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12602293.9453125, "dur": 1062.8000497817993, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0628000497817993, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12603361.328125, "dur": 835.2000117301941, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8352000117301941, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12604200.1953125, "dur": 1008.1000328063965, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0081000328063965, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12605210.9375, "dur": 1158.1000089645386, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1581000089645386, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12606371.09375, "dur": 903.5999774932861, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9035999774932861, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12607276.3671875, "dur": 757.7000260353088, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7577000260353088, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12608037.109375, "dur": 1677.7000427246094, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.6777000427246094, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12609716.796875, "dur": 819.8999762535095, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8198999762535095, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12610540.0390625, "dur": 859.2000007629395, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8592000007629395, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12611401.3671875, "dur": 920.3000068664551, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9203000068664551, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12612324.21875, "dur": 541.8999791145325, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5418999791145325, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12612867.1875, "dur": 507.4999928474426, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5074999928474426, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12613375.9765625, "dur": 610.80002784729, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.61080002784729, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12613989.2578125, "dur": 1081.9000005722046, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0819000005722046, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12615073.2421875, "dur": 2605.9999465942383, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.6059999465942383, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12617681.640625, "dur": 1379.4000148773193, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3794000148773193, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12619063.4765625, "dur": 583.8000178337097, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5838000178337097, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12619649.4140625, "dur": 514.1000151634216, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5141000151634216, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12620165.0390625, "dur": 565.9999847412109, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5659999847412109, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12620732.421875, "dur": 534.7999930381775, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5347999930381775, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12621268.5546875, "dur": 534.500002861023, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.534500002861023, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12621804.6875, "dur": 540.4000282287598, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5404000282287598, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12622347.65625, "dur": 609.8999977111816, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6098999977111816, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12622958.984375, "dur": 502.6000142097473, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5026000142097473, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12623461.9140625, "dur": 500.5999803543091, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5005999803543091, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12623964.84375, "dur": 504.0000081062317, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5040000081062317, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12624468.75, "dur": 481.4000129699707, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4814000129699707, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12624952.1484375, "dur": 525.3000259399414, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5253000259399414, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12625480.46875, "dur": 509.7000002861023, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5097000002861023, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12625990.234375, "dur": 493.4000074863434, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4934000074863434, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12626485.3515625, "dur": 478.300005197525, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.478300005197525, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12626964.84375, "dur": 517.4999833106995, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5174999833106995, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12627483.3984375, "dur": 515.9000158309937, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5159000158309937, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12628000.9765625, "dur": 1723.5000133514404, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.7235000133514404, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12629726.5625, "dur": 22503.799438476562, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 22.503799438476562, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12652233.3984375, "dur": 739.300012588501, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.739300012588501, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12652973.6328125, "dur": 499.1999864578247, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4991999864578247, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12653475.5859375, "dur": 478.1000018119812, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4781000018119812, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12653955.078125, "dur": 569.2999958992004, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5692999958992004, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12654525.390625, "dur": 484.499990940094, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.484499990940094, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12655011.71875, "dur": 574.1999745368958, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5741999745368958, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12655586.9140625, "dur": 488.40001225471497, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.48840001225471497, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12656076.171875, "dur": 471.7999994754791, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4717999994754791, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12656549.8046875, "dur": 472.6000130176544, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4726000130176544, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12657023.4375, "dur": 505.99998235702515, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5059999823570251, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12657530.2734375, "dur": 501.9000172615051, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5019000172615051, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12658034.1796875, "dur": 533.3999991416931, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5333999991416931, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12658569.3359375, "dur": 481.59998655319214, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.48159998655319214, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12659051.7578125, "dur": 513.1999850273132, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5131999850273132, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12659566.40625, "dur": 476.79999470710754, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.47679999470710754, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12660044.921875, "dur": 584.8000049591064, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5848000049591064, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12660629.8828125, "dur": 592.8999781608582, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5928999781608582, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12661224.609375, "dur": 833.0000042915344, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8330000042915344, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12662058.59375, "dur": 758.4999799728394, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7584999799728394, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12662819.3359375, "dur": 677.5000095367432, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6775000095367432, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12663498.046875, "dur": 2610.300064086914, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.610300064086914, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12666110.3515625, "dur": 5169.1999435424805, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 5.1691999435424805, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12671280.2734375, "dur": 1256.2999725341797, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2562999725341797, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12672539.0625, "dur": 1215.499997138977, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.215499997138977, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12673756.8359375, "dur": 1233.1000566482544, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2331000566482544, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12674990.234375, "dur": 1492.6999807357788, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.4926999807357788, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12676485.3515625, "dur": 1739.5999431610107, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.7395999431610107, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12678227.5390625, "dur": 6306.49995803833, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 6.30649995803833, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12684535.15625, "dur": 1318.50004196167, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.31850004196167, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12685855.46875, "dur": 1413.699984550476, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.413699984550476, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12687271.484375, "dur": 1565.1999711990356, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.5651999711990356, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12688838.8671875, "dur": 1329.800009727478, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.329800009727478, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12690169.921875, "dur": 1352.3000478744507, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3523000478744507, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12691524.4140625, "dur": 1375.9000301361084, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3759000301361084, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12692902.34375, "dur": 1553.5999536514282, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.5535999536514282, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12694456.0546875, "dur": 5673.2001304626465, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 5.6732001304626465, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12700131.8359375, "dur": 3764.699935913086, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.764699935913086, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12703899.4140625, "dur": 1292.5000190734863, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2925000190734863, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12705194.3359375, "dur": 1156.7000150680542, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1567000150680542, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12706352.5390625, "dur": 1199.3000507354736, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1993000507354736, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12707552.734375, "dur": 1119.0999746322632, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1190999746322632, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12708673.828125, "dur": 1231.600046157837, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.231600046157837, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12709907.2265625, "dur": 1777.0999670028687, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.7770999670028687, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12711686.5234375, "dur": 1569.3999528884888, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.5693999528884888, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12713257.8125, "dur": 6745.200157165527, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 6.745200157165527, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12720004.8828125, "dur": 1009.5000267028809, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0095000267028809, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12721015.625, "dur": 1240.9000396728516, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2409000396728516, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12722257.8125, "dur": 1078.8999795913696, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0788999795913696, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12723338.8671875, "dur": 1013.3999586105347, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0133999586105347, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12724352.5390625, "dur": 1204.200029373169, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.204200029373169, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12725559.5703125, "dur": 1342.4999713897705, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3424999713897705, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12726904.296875, "dur": 3404.9999713897705, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.4049999713897705, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12730317.3828125, "dur": 1480.0000190734863, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.4800000190734863, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12731798.828125, "dur": 1370.3999519348145, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3703999519348145, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12733170.8984375, "dur": 1215.6000137329102, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2156000137329102, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12734387.6953125, "dur": 1251.7999410629272, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2517999410629272, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12735641.6015625, "dur": 1196.3000297546387, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1963000297546387, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12736839.84375, "dur": 1207.9999446868896, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2079999446868896, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12738049.8046875, "dur": 1167.6000356674194, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1676000356674194, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12739219.7265625, "dur": 1218.6000347137451, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2186000347137451, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12740439.453125, "dur": 1189.0000104904175, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1890000104904175, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12741629.8828125, "dur": 1210.1000547409058, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2101000547409058, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12742841.796875, "dur": 1268.399953842163, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.268399953842163, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12744111.328125, "dur": 9972.900390625, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 9.972900390625, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12754085.9375, "dur": 1307.2999715805054, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3072999715805054, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12755395.5078125, "dur": 1212.5999927520752, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2125999927520752, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12756609.375, "dur": 2621.799945831299, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.621799945831299, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12759233.3984375, "dur": 3713.900089263916, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.713900089263916, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12762948.2421875, "dur": 3990.499973297119, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.990499973297119, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12766942.3828125, "dur": 1306.3000440597534, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3063000440597534, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12768250, "dur": 2585.099935531616, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.585099935531616, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12770836.9140625, "dur": 2035.099983215332, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.035099983215332, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12772875, "dur": 1312.8000497817993, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3128000497817993, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12774189.453125, "dur": 1132.7999830245972, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1327999830245972, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12775324.21875, "dur": 1225.8000373840332, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2258000373840332, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12776550.78125, "dur": 4087.100028991699, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 4.087100028991699, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12780639.6484375, "dur": 2136.4998817443848, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.1364998817443848, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12782778.3203125, "dur": 1177.8000593185425, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1778000593185425, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12783958.0078125, "dur": 1391.6000127792358, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3916000127792358, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12785350.5859375, "dur": 1222.2000360488892, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2222000360488892, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12786574.21875, "dur": 1187.999963760376, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.187999963760376, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12787764.6484375, "dur": 37499.59945678711, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 37.49959945678711, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12825268.5546875, "dur": 1161.4999771118164, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1614999771118164, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12826431.640625, "dur": 1377.5999546051025, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3775999546051025, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12827810.546875, "dur": 2374.799966812134, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.374799966812134, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12830186.5234375, "dur": 1394.8999643325806, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3948999643325806, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12831583.0078125, "dur": 1265.6999826431274, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2656999826431274, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12832851.5625, "dur": 1220.3999757766724, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2203999757766724, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 14, "ts": 12834073.2421875, "dur": 823.0000138282776, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8230000138282776, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12835207.03125, "dur": 777.3000001907349, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7773000001907349, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12836319.3359375, "dur": 653.4000039100647, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6534000039100647, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12836973.6328125, "dur": 498.4000027179718, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4984000027179718, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12838110.3515625, "dur": 389.29998874664307, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38929998874664307, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12838501.953125, "dur": 339.3000066280365, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3393000066280365, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12838842.7734375, "dur": 487.199991941452, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.487199991941452, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12839634.765625, "dur": 875.9999871253967, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8759999871253967, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12840511.71875, "dur": 427.5999963283539, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4275999963283539, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12840942.3828125, "dur": 340.2000069618225, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3402000069618225, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12843575.1953125, "dur": 1019.0000534057617, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0190000534057617, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12844595.703125, "dur": 1621.0999488830566, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.6210999488830566, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12846219.7265625, "dur": 387.8999948501587, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3878999948501587, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12846609.375, "dur": 538.6000275611877, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5386000275611877, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12847149.4140625, "dur": 378.3999979496002, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3783999979496002, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12847529.296875, "dur": 496.30001187324524, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.49630001187324524, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12848027.34375, "dur": 831.499993801117, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8314999938011169, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12848861.328125, "dur": 521.6000080108643, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5216000080108643, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12849383.7890625, "dur": 341.39999747276306, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34139999747276306, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12850057.6171875, "dur": 481.79998993873596, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.48179998993873596, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12850541.015625, "dur": 1411.3999605178833, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.4113999605178833, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12851955.078125, "dur": 431.30001425743103, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.43130001425743103, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12852387.6953125, "dur": 412.9999876022339, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4129999876022339, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12853101.5625, "dur": 451.9000053405762, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.45190000534057617, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12854183.59375, "dur": 337.19998598098755, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.33719998598098755, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12856045.8984375, "dur": 422.3000109195709, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4223000109195709, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12860149.4140625, "dur": 429.80000376701355, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.42980000376701355, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12861219.7265625, "dur": 469.9000120162964, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4699000120162964, "detail": "InternalArray__Insert" } },
- { "pid": 1, "tid": 14, "ts": 12862269.53125, "dur": 531.499981880188, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.531499981880188, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12862802.734375, "dur": 789.6999716758728, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7896999716758728, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12863594.7265625, "dur": 24951.900482177734, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 24.951900482177734, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12888547.8515625, "dur": 1044.100046157837, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.044100046157837, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12889594.7265625, "dur": 859.7000241279602, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8597000241279602, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12890456.0546875, "dur": 603.1000018119812, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6031000018119812, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12891060.546875, "dur": 617.2999739646912, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6172999739646912, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12891678.7109375, "dur": 452.3000121116638, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4523000121116638, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12892132.8125, "dur": 584.5999717712402, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5845999717712402, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12892719.7265625, "dur": 594.9000120162964, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5949000120162964, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12893315.4296875, "dur": 4002.200126647949, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 4.002200126647949, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12897320.3125, "dur": 504.9999952316284, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5049999952316284, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12897826.171875, "dur": 439.50000405311584, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.43950000405311584, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12898267.578125, "dur": 435.9000027179718, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4359000027179718, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12898704.1015625, "dur": 456.49999380111694, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.45649999380111694, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12899163.0859375, "dur": 472.9999899864197, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4729999899864197, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12899637.6953125, "dur": 497.20001220703125, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.49720001220703125, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12900136.71875, "dur": 631.0999989509583, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6310999989509583, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12900769.53125, "dur": 591.4000272750854, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5914000272750854, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12901362.3046875, "dur": 550.8000254631042, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5508000254631042, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12901914.0625, "dur": 565.4000043869019, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5654000043869019, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12902481.4453125, "dur": 455.1999866962433, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4551999866962433, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12902937.5, "dur": 574.2999911308289, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5742999911308289, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12903513.671875, "dur": 477.49999165534973, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.47749999165534973, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12903992.1875, "dur": 504.800021648407, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.504800021648407, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12904499.0234375, "dur": 440.20000100135803, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.44020000100135803, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12904941.40625, "dur": 458.7000012397766, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4587000012397766, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12905400.390625, "dur": 568.0999755859375, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5680999755859375, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12905969.7265625, "dur": 585.099995136261, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.585099995136261, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12906557.6171875, "dur": 509.5999836921692, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5095999836921692, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 14, "ts": 12907071.2890625, "dur": 104450.59967041016, "ph": "X", "name": "GenericMethods.cpp", "args": { "durationMS": 104.45059967041016, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 13011550.78125, "dur": 508.70001316070557, "ph": "X", "name": "Idle", "args": { "durationMS": 0.5087000131607056, "detail": "" } },
- { "pid": 1, "tid": 15, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 15, "ts": 3951364.990234375, "dur": 32696.399688720703, "ph": "X", "name": "Idle", "args": { "durationMS": 32.6963996887207, "detail": "" } },
- { "pid": 1, "tid": 15, "ts": 4002063.96484375, "dur": 642.4000263214111, "ph": "X", "name": "Write Assembly", "args": { "durationMS": 0.6424000263214111, "detail": "System.Xml" } },
- { "pid": 1, "tid": 15, "ts": 4004672.36328125, "dur": 516533.8134765625, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 516.5338134765625, "detail": "System.Configuration" } },
- { "pid": 1, "tid": 15, "ts": 4007025.390625, "dur": 514179.38232421875, "ph": "X", "name": "System.Configuration_Attr.cpp", "args": { "durationMS": 514.1793823242188, "detail": "" } },
- { "pid": 1, "tid": 15, "ts": 4525368.1640625, "dur": 278874.2980957031, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 278.8742980957031, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 15, "ts": 4525385.7421875, "dur": 278854.91943359375, "ph": "X", "name": "UnityEngine.CoreModule_Attr.cpp", "args": { "durationMS": 278.85491943359375, "detail": "" } },
- { "pid": 1, "tid": 15, "ts": 4815147.94921875, "dur": 2501.8999576568604, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.5018999576568604, "detail": "<Module>" } },
- { "pid": 1, "tid": 15, "ts": 4817651.85546875, "dur": 77744.49920654297, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 77.74449920654297, "detail": "<PrivateImplementationDetails>" } },
- { "pid": 1, "tid": 15, "ts": 4895398.92578125, "dur": 120619.30084228516, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 120.61930084228516, "detail": "System.Text.ASCIIEncoding" } },
- { "pid": 1, "tid": 15, "ts": 5016021.484375, "dur": 9361.300468444824, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.361300468444824, "detail": "System.Threading.AbandonedMutexException" } },
- { "pid": 1, "tid": 15, "ts": 5025384.27734375, "dur": 126402.90832519531, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 126.40290832519531, "detail": "System.Action" } },
- { "pid": 1, "tid": 15, "ts": 5151788.57421875, "dur": 1299.1000413894653, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2991000413894653, "detail": "System.Runtime.Remoting.ActivatedClientTypeEntry" } },
- { "pid": 1, "tid": 15, "ts": 5153089.84375, "dur": 900.3000259399414, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9003000259399414, "detail": "System.Runtime.Remoting.ActivatedServiceTypeEntry" } },
- { "pid": 1, "tid": 15, "ts": 5153991.69921875, "dur": 8310.89973449707, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.31089973449707, "detail": "System.Runtime.Remoting.Activation.ActivationServices" } },
- { "pid": 1, "tid": 15, "ts": 5162305.17578125, "dur": 3663.0001068115234, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.6630001068115234, "detail": "System.Activator" } },
- { "pid": 1, "tid": 15, "ts": 5165969.7265625, "dur": 71960.80017089844, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 71.96080017089844, "detail": "System.AggregateException" } },
- { "pid": 1, "tid": 15, "ts": 5237932.6171875, "dur": 1115.2000427246094, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1152000427246094, "detail": "System.Reflection.AmbiguousMatchException" } },
- { "pid": 1, "tid": 15, "ts": 5239076.66015625, "dur": 16290.899276733398, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 16.2908992767334, "detail": "System.AppDomain" } },
- { "pid": 1, "tid": 15, "ts": 5255369.140625, "dur": 1435.9999895095825, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4359999895095825, "detail": "System.Runtime.Remoting.Activation.AppDomainLevelActivator" } },
- { "pid": 1, "tid": 15, "ts": 5256806.640625, "dur": 1083.799958229065, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.083799958229065, "detail": "System.AppDomainSetup" } },
- { "pid": 1, "tid": 15, "ts": 5257892.578125, "dur": 933.3999752998352, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9333999752998352, "detail": "System.AppDomainUnloadedException" } },
- { "pid": 1, "tid": 15, "ts": 5258828.125, "dur": 1787.999987602234, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7879999876022339, "detail": "System.ApplicationException" } },
- { "pid": 1, "tid": 15, "ts": 5260617.67578125, "dur": 3982.100009918213, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.982100009918213, "detail": "System.Runtime.Remoting.Messaging.ArgInfo" } },
- { "pid": 1, "tid": 15, "ts": 5264624.0234375, "dur": 588.5000228881836, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5885000228881836, "detail": "System.ArgIterator" } },
- { "pid": 1, "tid": 15, "ts": 5265214.35546875, "dur": 2931.2000274658203, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.9312000274658203, "detail": "System.ArgumentException" } },
- { "pid": 1, "tid": 15, "ts": 5268147.4609375, "dur": 1172.7999448776245, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1727999448776245, "detail": "System.ArgumentNullException" } },
- { "pid": 1, "tid": 15, "ts": 5269321.77734375, "dur": 3200.700044631958, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.200700044631958, "detail": "System.ArgumentOutOfRangeException" } },
- { "pid": 1, "tid": 15, "ts": 5272523.92578125, "dur": 1145.6999778747559, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1456999778747559, "detail": "System.ArithmeticException" } },
- { "pid": 1, "tid": 15, "ts": 5273671.38671875, "dur": 186128.40270996094, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 186.12840270996094, "detail": "System.Array" } },
- { "pid": 1, "tid": 15, "ts": 5459801.26953125, "dur": 74853.19519042969, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 74.85319519042969, "detail": "System.Collections.ArrayList" } },
- { "pid": 1, "tid": 15, "ts": 5534656.25, "dur": 1286.2999439239502, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2862999439239502, "detail": "System.ArraySpec" } },
- { "pid": 1, "tid": 15, "ts": 5535944.3359375, "dur": 778.2999873161316, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7782999873161316, "detail": "System.ArrayTypeMismatchException" } },
- { "pid": 1, "tid": 15, "ts": 5536724.12109375, "dur": 9342.599868774414, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.342599868774414, "detail": "System.Reflection.Assembly" } },
- { "pid": 1, "tid": 15, "ts": 5548144.53125, "dur": 811.8000030517578, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8118000030517578, "detail": "System.AssemblyLoadEventHandler" } },
- { "pid": 1, "tid": 15, "ts": 5548958.49609375, "dur": 35849.60174560547, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 35.84960174560547, "detail": "System.Reflection.AssemblyName" } },
- { "pid": 1, "tid": 15, "ts": 5585503.90625, "dur": 772.8999853134155, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7728999853134155, "detail": "System.AsyncCallback" } },
- { "pid": 1, "tid": 15, "ts": 5586297.36328125, "dur": 972.000002861023, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.972000002861023, "detail": "System.Threading.Tasks.AsyncCausalityTracer" } },
- { "pid": 1, "tid": 15, "ts": 5587271.484375, "dur": 6384.300231933594, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.384300231933594, "detail": "System.Runtime.CompilerServices.AsyncMethodBuilderCore" } },
- { "pid": 1, "tid": 15, "ts": 5593657.71484375, "dur": 4146.500110626221, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.146500110626221, "detail": "System.Runtime.Remoting.Channels.AsyncRequest" } },
- { "pid": 1, "tid": 15, "ts": 5597806.640625, "dur": 6970.799922943115, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.970799922943115, "detail": "System.Runtime.Remoting.Messaging.AsyncResult" } },
- { "pid": 1, "tid": 15, "ts": 5604955.56640625, "dur": 939.7000074386597, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9397000074386597, "detail": "System.Runtime.CompilerServices.AsyncTaskCache" } },
- { "pid": 1, "tid": 15, "ts": 5605896.484375, "dur": 14517.000198364258, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.517000198364258, "detail": "System.Attribute" } },
- { "pid": 1, "tid": 15, "ts": 5620442.87109375, "dur": 1194.3000555038452, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1943000555038452, "detail": "System.AttributeUsageAttribute" } },
- { "pid": 1, "tid": 15, "ts": 5621639.16015625, "dur": 32429.698944091797, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 32.4296989440918, "detail": "System.Threading.Tasks.AwaitTaskContinuation" } },
- { "pid": 1, "tid": 15, "ts": 5654108.3984375, "dur": 5089.900016784668, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.089900016784668, "detail": "System.BadImageFormatException" } },
- { "pid": 1, "tid": 15, "ts": 5659233.3984375, "dur": 8882.699966430664, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.882699966430664, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryArray" } },
- { "pid": 1, "tid": 15, "ts": 5668137.6953125, "dur": 787.5000238418579, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7875000238418579, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryAssembly" } },
- { "pid": 1, "tid": 15, "ts": 5668926.7578125, "dur": 983.9000105857849, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9839000105857849, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryAssemblyInfo" } },
- { "pid": 1, "tid": 15, "ts": 5670114.74609375, "dur": 7554.100036621094, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.554100036621094, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryConverter" } },
- { "pid": 1, "tid": 15, "ts": 5677670.8984375, "dur": 2312.700033187866, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.312700033187866, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryCrossAppDomainAssembly" } },
- { "pid": 1, "tid": 15, "ts": 5679985.3515625, "dur": 648.8999724388123, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6488999724388123, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryCrossAppDomainMap" } },
- { "pid": 1, "tid": 15, "ts": 5680637.20703125, "dur": 462.5999927520752, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4625999927520752, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryCrossAppDomainString" } },
- { "pid": 1, "tid": 15, "ts": 5681101.07421875, "dur": 40101.90200805664, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 40.10190200805664, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryFormatter" } },
- { "pid": 1, "tid": 15, "ts": 5721232.91015625, "dur": 1256.100058555603, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.256100058555603, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryMethodCall" } },
- { "pid": 1, "tid": 15, "ts": 5722491.2109375, "dur": 1361.0999584197998, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3610999584197998, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryMethodReturn" } },
- { "pid": 1, "tid": 15, "ts": 5723855.95703125, "dur": 758.0999732017517, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7580999732017517, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryObject" } },
- { "pid": 1, "tid": 15, "ts": 5724615.234375, "dur": 825.2000212669373, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8252000212669373, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryObjectString" } },
- { "pid": 1, "tid": 15, "ts": 5725444.3359375, "dur": 230960.99853515625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 230.96099853515625, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryObjectWithMap" } },
- { "pid": 1, "tid": 15, "ts": 5956411.62109375, "dur": 5920.199871063232, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.920199871063232, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryObjectWithMapTyped" } },
- { "pid": 1, "tid": 15, "ts": 5962349.12109375, "dur": 198041.19873046875, "ph": "X", "name": "mscorlib.cpp", "args": { "durationMS": 198.04119873046875, "detail": "" } },
- { "pid": 1, "tid": 15, "ts": 6160452.1484375, "dur": 6161.600112915039, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.161600112915039, "detail": "UnityEngine.Font" } },
- { "pid": 1, "tid": 15, "ts": 6166679.19921875, "dur": 4096.399784088135, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.096399784088135, "detail": "UnityEngine.TextGenerationSettings" } },
- { "pid": 1, "tid": 15, "ts": 6170777.83203125, "dur": 44532.19985961914, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 44.53219985961914, "detail": "UnityEngine.TextGenerator" } },
- { "pid": 1, "tid": 15, "ts": 6215398.92578125, "dur": 1084.8000049591064, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0848000049591064, "detail": "UnityEngine.UIVertex" } },
- { "pid": 1, "tid": 15, "ts": 6216507.32421875, "dur": 816.5000081062317, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8165000081062317, "detail": "UnityEngine.Font/FontTextureRebuildCallback" } },
- { "pid": 1, "tid": 15, "ts": 6217331.0546875, "dur": 30026.098251342773, "ph": "X", "name": "UnityEngine.TextRenderingModule.cpp", "args": { "durationMS": 30.026098251342773, "detail": "" } },
- { "pid": 1, "tid": 15, "ts": 6247483.88671875, "dur": 648.6999988555908, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6486999988555908, "detail": "UnityEngine.Collider" } },
- { "pid": 1, "tid": 15, "ts": 6248135.25390625, "dur": 500.19997358322144, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5001999735832214, "detail": "UnityEngine.Collision" } },
- { "pid": 1, "tid": 15, "ts": 6248704.58984375, "dur": 360.70001125335693, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.36070001125335693, "detail": "UnityEngine.ControllerColliderHit" } },
- { "pid": 1, "tid": 15, "ts": 6249103.515625, "dur": 77892.7993774414, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 77.8927993774414, "detail": "UnityEngine.Physics" } },
- { "pid": 1, "tid": 15, "ts": 6326998.046875, "dur": 9183.500289916992, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.183500289916992, "detail": "UnityEngine.PhysicsScene" } },
- { "pid": 1, "tid": 15, "ts": 6336202.1484375, "dur": 4220.600128173828, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.220600128173828, "detail": "UnityEngine.RaycastHit" } },
- { "pid": 1, "tid": 15, "ts": 6340711.42578125, "dur": 26341.100692749023, "ph": "X", "name": "UnityEngine.PhysicsModule.cpp", "args": { "durationMS": 26.341100692749023, "detail": "" } },
- { "pid": 1, "tid": 15, "ts": 6367085.44921875, "dur": 2397.200107574463, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.397200107574463, "detail": "System.Resources.ManifestBasedResourceGroveler" } },
- { "pid": 1, "tid": 15, "ts": 6369641.6015625, "dur": 15143.10073852539, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.14310073852539, "detail": "System.Threading.ManualResetEventSlim" } },
- { "pid": 1, "tid": 15, "ts": 6384786.1328125, "dur": 3257.200002670288, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.257200002670288, "detail": "System.Runtime.InteropServices.Marshal" } },
- { "pid": 1, "tid": 15, "ts": 6388045.41015625, "dur": 3594.1998958587646, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.5941998958587646, "detail": "System.Runtime.InteropServices.MarshalAsAttribute" } },
- { "pid": 1, "tid": 15, "ts": 6391642.08984375, "dur": 33383.697509765625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 33.383697509765625, "detail": "System.MarshalByRefObject" } },
- { "pid": 1, "tid": 15, "ts": 6425028.3203125, "dur": 1782.2999954223633, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7822999954223633, "detail": "System.Runtime.InteropServices.MarshalDirectiveException" } },
- { "pid": 1, "tid": 15, "ts": 6426812.01171875, "dur": 5956.7999839782715, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.9567999839782715, "detail": "System.Math" } },
- { "pid": 1, "tid": 15, "ts": 6432770.01953125, "dur": 882.0000290870667, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8820000290870667, "detail": "System.MemberAccessException" } },
- { "pid": 1, "tid": 15, "ts": 6433653.3203125, "dur": 825.6000280380249, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8256000280380249, "detail": "System.Reflection.MemberFilter" } },
- { "pid": 1, "tid": 15, "ts": 6434480.46875, "dur": 1012.6999616622925, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0126999616622925, "detail": "System.Runtime.Serialization.MemberHolder" } },
- { "pid": 1, "tid": 15, "ts": 6435494.140625, "dur": 2889.899969100952, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.889899969100952, "detail": "System.Reflection.MemberInfo" } },
- { "pid": 1, "tid": 15, "ts": 6438386.71875, "dur": 15650.700569152832, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.650700569152832, "detail": "System.Reflection.MemberInfoSerializationHolder" } },
- { "pid": 1, "tid": 15, "ts": 6454039.55078125, "dur": 683.7000250816345, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6837000250816345, "detail": "System.Runtime.Serialization.Formatters.Binary.MemberPrimitiveTyped" } },
- { "pid": 1, "tid": 15, "ts": 6454724.12109375, "dur": 799.3999719619751, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7993999719619751, "detail": "System.Runtime.Serialization.Formatters.Binary.MemberPrimitiveUnTyped" } },
- { "pid": 1, "tid": 15, "ts": 6455525.390625, "dur": 899.9999761581421, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8999999761581421, "detail": "System.Runtime.Serialization.Formatters.Binary.MemberReference" } },
- { "pid": 1, "tid": 15, "ts": 6456452.1484375, "dur": 46890.30075073242, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 46.89030075073242, "detail": "System.IO.MemoryStream" } },
- { "pid": 1, "tid": 15, "ts": 6503344.7265625, "dur": 19805.90057373047, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 19.80590057373047, "detail": "System.Runtime.Remoting.Messaging.MessageDictionary" } },
- { "pid": 1, "tid": 15, "ts": 6523151.85546875, "dur": 533.9999794960022, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5339999794960022, "detail": "System.Runtime.Serialization.Formatters.Binary.MessageEnd" } },
- { "pid": 1, "tid": 15, "ts": 6523709.47265625, "dur": 964.8000001907349, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9648000001907349, "detail": "System.MethodAccessException" } },
- { "pid": 1, "tid": 15, "ts": 6524697.75390625, "dur": 18986.400604248047, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.986400604248047, "detail": "System.Reflection.MethodBase" } },
- { "pid": 1, "tid": 15, "ts": 6543685.546875, "dur": 745.5000281333923, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7455000281333923, "detail": "System.Reflection.MethodBody" } },
- { "pid": 1, "tid": 15, "ts": 6544432.12890625, "dur": 4611.700057983398, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.611700057983398, "detail": "System.Reflection.Emit.MethodBuilder" } },
- { "pid": 1, "tid": 15, "ts": 6549045.8984375, "dur": 27861.7000579834, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 27.8617000579834, "detail": "System.Runtime.Remoting.Messaging.MethodCall" } },
- { "pid": 1, "tid": 15, "ts": 6576934.08203125, "dur": 5262.599945068359, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.262599945068359, "detail": "System.Reflection.MethodInfo" } },
- { "pid": 1, "tid": 15, "ts": 6582197.265625, "dur": 37458.00018310547, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 37.45800018310547, "detail": "System.Runtime.Remoting.Messaging.MethodResponse" } },
- { "pid": 1, "tid": 15, "ts": 6619657.2265625, "dur": 903.5999774932861, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9035999774932861, "detail": "System.Runtime.Remoting.Messaging.MethodReturnDictionary" } },
- { "pid": 1, "tid": 15, "ts": 6620562.01171875, "dur": 860.0000143051147, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8600000143051147, "detail": "System.Reflection.Missing" } },
- { "pid": 1, "tid": 15, "ts": 6621423.828125, "dur": 1877.2000074386597, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8772000074386597, "detail": "System.MissingFieldException" } },
- { "pid": 1, "tid": 15, "ts": 6623302.24609375, "dur": 3079.400062561035, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.079400062561035, "detail": "System.MissingMemberException" } },
- { "pid": 1, "tid": 15, "ts": 6626383.30078125, "dur": 2185.1000785827637, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1851000785827637, "detail": "System.MissingMethodException" } },
- { "pid": 1, "tid": 15, "ts": 6628570.80078125, "dur": 12184.100151062012, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.184100151062012, "detail": "System.Reflection.Module" } },
- { "pid": 1, "tid": 15, "ts": 6640785.64453125, "dur": 5200.600147247314, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.2006001472473145, "detail": "System.Threading.Monitor" } },
- { "pid": 1, "tid": 15, "ts": 6645988.76953125, "dur": 4041.9998168945312, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.041999816894531, "detail": "System.Reflection.MonoAssembly" } },
- { "pid": 1, "tid": 15, "ts": 6650098.6328125, "dur": 973.3999967575073, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9733999967575073, "detail": "System.MonoAsyncCall" } },
- { "pid": 1, "tid": 15, "ts": 6651073.2421875, "dur": 160185.69946289062, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 160.18569946289062, "detail": "System.Reflection.MonoCMethod" } },
- { "pid": 1, "tid": 15, "ts": 6811261.71875, "dur": 29749.20082092285, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 29.74920082092285, "detail": "System.MonoCustomAttrs" } },
- { "pid": 1, "tid": 15, "ts": 6841012.6953125, "dur": 2719.7999954223633, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.7197999954223633, "detail": "System.Reflection.MonoEvent" } },
- { "pid": 1, "tid": 15, "ts": 6843735.3515625, "dur": 3659.10005569458, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.65910005569458, "detail": "System.Reflection.MonoEventInfo" } },
- { "pid": 1, "tid": 15, "ts": 6847396.484375, "dur": 6674.699783325195, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.674699783325195, "detail": "System.Reflection.MonoField" } },
- { "pid": 1, "tid": 15, "ts": 6854092.7734375, "dur": 35594.29931640625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 35.59429931640625, "detail": "System.IO.MonoIO" } },
- { "pid": 1, "tid": 15, "ts": 6889912.59765625, "dur": 11126.799583435059, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.126799583435059, "detail": "System.Reflection.MonoMethod" } },
- { "pid": 1, "tid": 15, "ts": 6901041.50390625, "dur": 1998.900055885315, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.998900055885315, "detail": "System.Reflection.MonoMethodInfo" } },
- { "pid": 1, "tid": 15, "ts": 6903041.9921875, "dur": 55462.59689331055, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 55.46259689331055, "detail": "System.Runtime.Remoting.Messaging.MonoMethodMessage" } },
- { "pid": 1, "tid": 15, "ts": 6958506.8359375, "dur": 2494.6000576019287, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.4946000576019287, "detail": "System.Reflection.MonoModule" } },
- { "pid": 1, "tid": 15, "ts": 6961002.9296875, "dur": 5154.900074005127, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.154900074005127, "detail": "System.Reflection.MonoParameterInfo" } },
- { "pid": 1, "tid": 15, "ts": 6966159.66796875, "dur": 10237.899780273438, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.237899780273438, "detail": "System.Reflection.MonoProperty" } },
- { "pid": 1, "tid": 15, "ts": 6976399.90234375, "dur": 27255.298614501953, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 27.255298614501953, "detail": "System.Reflection.MonoPropertyInfo" } },
- { "pid": 1, "tid": 15, "ts": 7003659.66796875, "dur": 409.39998626708984, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.40939998626708984, "detail": "System.MonoTODOAttribute" } },
- { "pid": 1, "tid": 15, "ts": 7004439.94140625, "dur": 14186.0990524292, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.1860990524292, "detail": "System.MulticastDelegate" } },
- { "pid": 1, "tid": 15, "ts": 7018627.9296875, "dur": 1363.4999990463257, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3634999990463257, "detail": "System.MulticastNotSupportedException" } },
- { "pid": 1, "tid": 15, "ts": 7020034.66796875, "dur": 1264.7000551223755, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2647000551223755, "detail": "System.Runtime.Serialization.Formatters.Binary.NameCache" } },
- { "pid": 1, "tid": 15, "ts": 7021300.78125, "dur": 1649.0999460220337, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6490999460220337, "detail": "System.Runtime.Serialization.Formatters.Binary.NameInfo" } },
- { "pid": 1, "tid": 15, "ts": 7022951.66015625, "dur": 1457.4999809265137, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4574999809265137, "detail": "System.Threading.NativeEventCalls" } },
- { "pid": 1, "tid": 15, "ts": 7024456.54296875, "dur": 811.8000030517578, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8118000030517578, "detail": "System.Resources.NeutralResourcesLanguageAttribute" } },
- { "pid": 1, "tid": 15, "ts": 7025270.99609375, "dur": 592.8000211715698, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5928000211715698, "detail": "System.Collections.Generic.NonRandomizedStringEqualityComparer" } },
- { "pid": 1, "tid": 15, "ts": 7026035.15625, "dur": 76589.10369873047, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 76.58910369873047, "detail": "System.Text.Normalization" } },
- { "pid": 1, "tid": 15, "ts": 7102664.55078125, "dur": 2146.5001106262207, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1465001106262207, "detail": "Mono.Globalization.Unicode.NormalizationTableUtil" } },
- { "pid": 1, "tid": 15, "ts": 7104813.4765625, "dur": 1214.400053024292, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.214400053024292, "detail": "System.NotImplementedException" } },
- { "pid": 1, "tid": 15, "ts": 7106030.76171875, "dur": 844.7999954223633, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8447999954223633, "detail": "System.NotSupportedException" } },
- { "pid": 1, "tid": 15, "ts": 7106876.953125, "dur": 942.0999884605408, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9420999884605408, "detail": "System.NullConsoleDriver" } },
- { "pid": 1, "tid": 15, "ts": 7107820.80078125, "dur": 940.1999711990356, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9401999711990356, "detail": "System.NullReferenceException" } },
- { "pid": 1, "tid": 15, "ts": 7108762.6953125, "dur": 785.4999899864197, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7854999899864197, "detail": "System.Nullable" } },
- { "pid": 1, "tid": 15, "ts": 7109549.31640625, "dur": 83008.79669189453, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 83.00879669189453, "detail": "System.Number" } },
- { "pid": 1, "tid": 15, "ts": 7192566.40625, "dur": 144189.19372558594, "ph": "X", "name": "mscorlib7.cpp", "args": { "durationMS": 144.18919372558594, "detail": "" } },
- { "pid": 1, "tid": 15, "ts": 7336870.60546875, "dur": 2222.399950027466, "ph": "X", "name": "UnityEngine.TilemapModule.cpp", "args": { "durationMS": 2.222399950027466, "detail": "" } },
- { "pid": 1, "tid": 15, "ts": 7339125, "dur": 2457.4999809265137, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.4574999809265137, "detail": "System.Runtime.Serialization.SerializationInfoEnumerator" } },
- { "pid": 1, "tid": 15, "ts": 7341584.47265625, "dur": 11694.000244140625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.694000244140625, "detail": "System.Runtime.Serialization.SerializationObjectManager" } },
- { "pid": 1, "tid": 15, "ts": 7353280.2734375, "dur": 781.5999984741211, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7815999984741211, "detail": "System.Runtime.Remoting.Messaging.ServerContextTerminatorSink" } },
- { "pid": 1, "tid": 15, "ts": 7354063.4765625, "dur": 6272.200107574463, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.272200107574463, "detail": "System.Runtime.Remoting.ServerIdentity" } },
- { "pid": 1, "tid": 15, "ts": 7360337.40234375, "dur": 1378.8000345230103, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3788000345230103, "detail": "System.Runtime.Remoting.Messaging.ServerObjectReplySink" } },
- { "pid": 1, "tid": 15, "ts": 7361718.75, "dur": 2798.3999252319336, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.7983999252319336, "detail": "System.Runtime.Remoting.Messaging.ServerObjectTerminatorSink" } },
- { "pid": 1, "tid": 15, "ts": 7364544.921875, "dur": 221906.6162109375, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 221.9066162109375, "detail": "Mono.Globalization.Unicode.SimpleCollator" } },
- { "pid": 1, "tid": 15, "ts": 7586454.1015625, "dur": 12292.699813842773, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.292699813842773, "detail": "System.Single" } },
- { "pid": 1, "tid": 15, "ts": 7598748.53515625, "dur": 1651.0000228881836, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6510000228881836, "detail": "System.Runtime.Remoting.SingleCallIdentity" } },
- { "pid": 1, "tid": 15, "ts": 7600401.85546875, "dur": 2228.300094604492, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.228300094604492, "detail": "System.Runtime.Remoting.SingletonIdentity" } },
- { "pid": 1, "tid": 15, "ts": 7602632.32421875, "dur": 1284.000039100647, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.284000039100647, "detail": "System.Runtime.Remoting.Channels.SinkProviderData" } },
- { "pid": 1, "tid": 15, "ts": 7603918.45703125, "dur": 3173.799991607666, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.173799991607666, "detail": "System.Runtime.Serialization.Formatters.Binary.SizedArray" } },
- { "pid": 1, "tid": 15, "ts": 7607137.6953125, "dur": 68509.3002319336, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 68.5093002319336, "detail": "Mono.Xml.SmallXmlParser" } },
- { "pid": 1, "tid": 15, "ts": 7675648.4375, "dur": 387.60000467300415, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.38760000467300415, "detail": "Mono.Xml.SmallXmlParserException" } },
- { "pid": 1, "tid": 15, "ts": 7676036.62109375, "dur": 453.99999618530273, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.45399999618530273, "detail": "System.Runtime.Remoting.Metadata.SoapAttribute" } },
- { "pid": 1, "tid": 15, "ts": 7676493.1640625, "dur": 578.2999992370605, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5782999992370605, "detail": "System.Runtime.Remoting.Metadata.SoapFieldAttribute" } },
- { "pid": 1, "tid": 15, "ts": 7677073.2421875, "dur": 5726.900100708008, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.726900100708008, "detail": "System.Runtime.Remoting.Metadata.SoapMethodAttribute" } },
- { "pid": 1, "tid": 15, "ts": 7682976.07421875, "dur": 8343.999862670898, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.343999862670898, "detail": "System.Runtime.Remoting.SoapServices" } },
- { "pid": 1, "tid": 15, "ts": 7691322.75390625, "dur": 1779.6000242233276, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7796000242233276, "detail": "System.Runtime.Remoting.Metadata.SoapTypeAttribute" } },
- { "pid": 1, "tid": 15, "ts": 7693104.00390625, "dur": 9960.30044555664, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.96030044555664, "detail": "System.Globalization.SortKey" } },
- { "pid": 1, "tid": 15, "ts": 7703066.40625, "dur": 70591.20178222656, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 70.59120178222656, "detail": "Mono.Globalization.Unicode.SortKeyBuffer" } },
- { "pid": 1, "tid": 15, "ts": 7773686.03515625, "dur": 14287.799835205078, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.287799835205078, "detail": "System.Collections.SortedList" } },
- { "pid": 1, "tid": 15, "ts": 7787978.02734375, "dur": 12062.100410461426, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.062100410461426, "detail": "System.Threading.SpinLock" } },
- { "pid": 1, "tid": 15, "ts": 7800041.50390625, "dur": 965.6999707221985, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9656999707221985, "detail": "System.Threading.SpinWait" } },
- { "pid": 1, "tid": 15, "ts": 7801008.7890625, "dur": 5883.999824523926, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.883999824523926, "detail": "System.Collections.Stack" } },
- { "pid": 1, "tid": 15, "ts": 7806894.04296875, "dur": 8754.300117492676, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.754300117492676, "detail": "System.Runtime.Remoting.Messaging.StackBuilderSink" } },
- { "pid": 1, "tid": 15, "ts": 7815675.29296875, "dur": 17494.89974975586, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 17.49489974975586, "detail": "System.Diagnostics.StackFrame" } },
- { "pid": 1, "tid": 15, "ts": 7833172.36328125, "dur": 629.1000247001648, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6291000247001648, "detail": "System.Threading.Tasks.StackGuard" } },
- { "pid": 1, "tid": 15, "ts": 7833802.24609375, "dur": 823.4999775886536, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8234999775886536, "detail": "System.StackOverflowException" } },
- { "pid": 1, "tid": 15, "ts": 7834627.44140625, "dur": 14753.600120544434, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.753600120544434, "detail": "System.Diagnostics.StackTrace" } },
- { "pid": 1, "tid": 15, "ts": 7849383.30078125, "dur": 1916.599988937378, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.916599988937378, "detail": "System.Threading.Tasks.StandardTaskContinuation" } },
- { "pid": 1, "tid": 15, "ts": 7851595.21484375, "dur": 18380.599975585938, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.380599975585938, "detail": "System.IO.Stream" } },
- { "pid": 1, "tid": 15, "ts": 7869977.5390625, "dur": 45574.69940185547, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 45.57469940185547, "detail": "System.IO.StreamReader" } },
- { "pid": 1, "tid": 15, "ts": 7915558.59375, "dur": 74908.59985351562, "ph": "X", "name": "mscorlib11.cpp", "args": { "durationMS": 74.90859985351562, "detail": "" } },
- { "pid": 1, "tid": 15, "ts": 7990570.80078125, "dur": 514.9999856948853, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5149999856948853, "detail": "<PrivateImplementationDetails>" } },
- { "pid": 1, "tid": 15, "ts": 7991261.71875, "dur": 13315.699577331543, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.315699577331543, "detail": "System.Security.Cryptography.AsnEncodedData" } },
- { "pid": 1, "tid": 15, "ts": 8005041.9921875, "dur": 59828.6018371582, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 59.8286018371582, "detail": "System.Security.Cryptography.CAPI" } },
- { "pid": 1, "tid": 15, "ts": 8064872.55859375, "dur": 1269.6000337600708, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2696000337600708, "detail": "System.Text.RegularExpressions.CachedCodeEntry" } },
- { "pid": 1, "tid": 15, "ts": 8066575.68359375, "dur": 469.70000863075256, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.46970000863075256, "detail": "System.Net.Configuration.ConnectionManagementSection" } },
- { "pid": 1, "tid": 15, "ts": 8067186.5234375, "dur": 595.7000255584717, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5957000255584717, "detail": "System.Net.Configuration.DefaultProxySection" } },
- { "pid": 1, "tid": 15, "ts": 8067783.69140625, "dur": 478.1999886035919, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4781999886035919, "detail": "System.Diagnostics.DiagnosticsConfigurationHandler" } },
- { "pid": 1, "tid": 15, "ts": 8068275.390625, "dur": 19614.898681640625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 19.614898681640625, "detail": "System.DomainNameHelper" } },
- { "pid": 1, "tid": 15, "ts": 8088039.55078125, "dur": 641.2000060081482, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6412000060081482, "detail": "System.ComponentModel.EditorBrowsableAttribute" } },
- { "pid": 1, "tid": 15, "ts": 8089491.2109375, "dur": 922.9999780654907, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9229999780654907, "detail": "System.IOAsyncCallback" } },
- { "pid": 1, "tid": 15, "ts": 8091047.36328125, "dur": 58361.202239990234, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 58.361202239990234, "detail": "System.Net.IPAddress" } },
- { "pid": 1, "tid": 15, "ts": 8149411.62109375, "dur": 7288.300037384033, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.288300037384033, "detail": "System.IPv4AddressHelper" } },
- { "pid": 1, "tid": 15, "ts": 8156701.66015625, "dur": 5740.600109100342, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.740600109100342, "detail": "System.Net.IPv6AddressFormatter" } },
- { "pid": 1, "tid": 15, "ts": 8162444.82421875, "dur": 14642.701148986816, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.642701148986816, "detail": "System.IPv6AddressHelper" } },
- { "pid": 1, "tid": 15, "ts": 8177089.84375, "dur": 572.8999972343445, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5728999972343445, "detail": "System.ComponentModel.Int16Converter" } },
- { "pid": 1, "tid": 15, "ts": 8178259.765625, "dur": 78525.49743652344, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 78.52549743652344, "detail": "System.IriHelper" } },
- { "pid": 1, "tid": 15, "ts": 8257029.296875, "dur": 1871.000051498413, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.871000051498413, "detail": "System.Security.Cryptography.Oid" } },
- { "pid": 1, "tid": 15, "ts": 8258901.3671875, "dur": 7867.700099945068, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.867700099945068, "detail": "System.Security.Cryptography.OidCollection" } },
- { "pid": 1, "tid": 15, "ts": 8266770.5078125, "dur": 1086.7999792099, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0867999792099, "detail": "System.Security.Cryptography.OidEnumerator" } },
- { "pid": 1, "tid": 15, "ts": 8267924.8046875, "dur": 337.5000059604645, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3375000059604645, "detail": "System.Net.Configuration.PerformanceCountersElement" } },
- { "pid": 1, "tid": 15, "ts": 8268555.6640625, "dur": 532.9999923706055, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5329999923706055, "detail": "System.Security.Cryptography.X509Certificates.PublicKey" } },
- { "pid": 1, "tid": 15, "ts": 8269089.84375, "dur": 22614.099502563477, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 22.614099502563477, "detail": "System.Text.RegularExpressions.Regex" } },
- { "pid": 1, "tid": 15, "ts": 8291706.0546875, "dur": 41386.00158691406, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 41.38600158691406, "detail": "System.Text.RegularExpressions.RegexBoyerMoore" } },
- { "pid": 1, "tid": 15, "ts": 8333093.75, "dur": 95298.69842529297, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 95.29869842529297, "detail": "System.Text.RegularExpressions.RegexCharClass" } },
- { "pid": 1, "tid": 15, "ts": 8428394.53125, "dur": 1343.400001525879, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.343400001525879, "detail": "System.Text.RegularExpressions.RegexCode" } },
- { "pid": 1, "tid": 15, "ts": 8429740.234375, "dur": 37650.39825439453, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 37.65039825439453, "detail": "System.Text.RegularExpressions.RegexFC" } },
- { "pid": 1, "tid": 15, "ts": 8467392.578125, "dur": 18575.199127197266, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.575199127197266, "detail": "System.Text.RegularExpressions.RegexFCD" } },
- { "pid": 1, "tid": 15, "ts": 8485974.609375, "dur": 100182.29675292969, "ph": "X", "name": "System.cpp", "args": { "durationMS": 100.18229675292969, "detail": "" } },
- { "pid": 1, "tid": 15, "ts": 8586220.703125, "dur": 1299.6000051498413, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2996000051498413, "detail": "System.UriFormatException" } },
- { "pid": 1, "tid": 15, "ts": 8587522.4609375, "dur": 37310.39810180664, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 37.31039810180664, "detail": "System.UriHelper" } },
- { "pid": 1, "tid": 15, "ts": 8624874.0234375, "dur": 19631.399154663086, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 19.631399154663086, "detail": "System.UriParser" } },
- { "pid": 1, "tid": 15, "ts": 8644507.8125, "dur": 347.9999899864197, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3479999899864197, "detail": "System.UriSyntaxFlags" } },
- { "pid": 1, "tid": 15, "ts": 8644858.3984375, "dur": 1085.8999490737915, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0858999490737915, "detail": "System.UriTypeConverter" } },
- { "pid": 1, "tid": 15, "ts": 8645946.2890625, "dur": 365.00000953674316, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.36500000953674316, "detail": "System.Net.Configuration.WebProxyScriptElement" } },
- { "pid": 1, "tid": 15, "ts": 8646491.2109375, "dur": 724.0999937057495, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7240999937057495, "detail": "System.Net.Configuration.WebRequestModulesSection" } },
- { "pid": 1, "tid": 15, "ts": 8647217.7734375, "dur": 96203.69720458984, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 96.20369720458984, "detail": "System.ComponentModel.Win32Exception" } },
- { "pid": 1, "tid": 15, "ts": 8743422.8515625, "dur": 38268.39828491211, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 38.26839828491211, "detail": "System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension" } },
- { "pid": 1, "tid": 15, "ts": 8781693.359375, "dur": 5058.499813079834, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.058499813079834, "detail": "System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension" } },
- { "pid": 1, "tid": 15, "ts": 8786753.90625, "dur": 1542.8999662399292, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5428999662399292, "detail": "System.Security.Cryptography.X509Certificates.X509Extension" } },
- { "pid": 1, "tid": 15, "ts": 8788298.828125, "dur": 17979.501724243164, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 17.979501724243164, "detail": "System.Security.Cryptography.X509Certificates.X509KeyUsageExtension" } },
- { "pid": 1, "tid": 15, "ts": 8806305.6640625, "dur": 57247.09701538086, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 57.24709701538086, "detail": "System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension" } },
- { "pid": 1, "tid": 15, "ts": 8863581.0546875, "dur": 2530.600070953369, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.530600070953369, "detail": "System.Security.Cryptography.X509Certificates.X509Utils" } },
- { "pid": 1, "tid": 15, "ts": 8866147.4609375, "dur": 832.0000171661377, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8320000171661377, "detail": "System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping" } },
- { "pid": 1, "tid": 15, "ts": 8867288.0859375, "dur": 501.29997730255127, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5012999773025513, "detail": "System.Text.RegularExpressions.RegexCharClass/SingleRangeComparer" } },
- { "pid": 1, "tid": 15, "ts": 8868539.0625, "dur": 29439.298629760742, "ph": "X", "name": "System2.cpp", "args": { "durationMS": 29.439298629760742, "detail": "" } },
- { "pid": 1, "tid": 15, "ts": 8898061.5234375, "dur": 2149.199962615967, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.149199962615967, "detail": "System.IO.UnexceptionalStreamWriter" } },
- { "pid": 1, "tid": 15, "ts": 8900211.9140625, "dur": 430.2999973297119, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4302999973297119, "detail": "System.UnhandledExceptionEventArgs" } },
- { "pid": 1, "tid": 15, "ts": 8900643.5546875, "dur": 849.5000004768372, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8495000004768372, "detail": "System.UnhandledExceptionEventHandler" } },
- { "pid": 1, "tid": 15, "ts": 8901519.53125, "dur": 138714.99633789062, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 138.71499633789062, "detail": "System.Text.UnicodeEncoding" } },
- { "pid": 1, "tid": 15, "ts": 9040236.328125, "dur": 14306.899070739746, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.306899070739746, "detail": "System.UnitySerializationHolder" } },
- { "pid": 1, "tid": 15, "ts": 9054545.8984375, "dur": 3667.2000885009766, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.6672000885009766, "detail": "Microsoft.Win32.UnixRegistryApi" } },
- { "pid": 1, "tid": 15, "ts": 9058391.6015625, "dur": 17116.300582885742, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 17.116300582885742, "detail": "System.IO.UnmanagedMemoryStream" } },
- { "pid": 1, "tid": 15, "ts": 9075947.265625, "dur": 3467.4999713897705, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.4674999713897705, "detail": "System.Runtime.Serialization.Formatters.Binary.ValueFixup" } },
- { "pid": 1, "tid": 15, "ts": 9079508.7890625, "dur": 35506.59942626953, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 35.50659942626953, "detail": "System.ValueType" } },
- { "pid": 1, "tid": 15, "ts": 9115017.578125, "dur": 1316.4000511169434, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3164000511169434, "detail": "System.Runtime.Serialization.ValueTypeFixupInfo" } },
- { "pid": 1, "tid": 15, "ts": 9116357.421875, "dur": 592.7000045776367, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5927000045776367, "detail": "System.Variant" } },
- { "pid": 1, "tid": 15, "ts": 9116952.1484375, "dur": 7885.200023651123, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.885200023651123, "detail": "System.Version" } },
- { "pid": 1, "tid": 15, "ts": 9125195.3125, "dur": 882.6000094413757, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8826000094413757, "detail": "System.Threading.WaitCallback" } },
- { "pid": 1, "tid": 15, "ts": 9126079.1015625, "dur": 27952.499389648438, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 27.952499389648438, "detail": "System.Threading.WaitHandle" } },
- { "pid": 1, "tid": 15, "ts": 9154033.203125, "dur": 1504.699945449829, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.504699945449829, "detail": "System.Threading.WaitHandleCannotBeOpenedException" } },
- { "pid": 1, "tid": 15, "ts": 9155541.015625, "dur": 741.9999837875366, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7419999837875366, "detail": "System.Threading.WaitOrTimerCallback" } },
- { "pid": 1, "tid": 15, "ts": 9156283.203125, "dur": 73666.19873046875, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 73.66619873046875, "detail": "System.WeakReference" } },
- { "pid": 1, "tid": 15, "ts": 9229952.1484375, "dur": 2338.399887084961, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.338399887084961, "detail": "System.Runtime.Remoting.WellKnownClientTypeEntry" } },
- { "pid": 1, "tid": 15, "ts": 9232314.453125, "dur": 6011.199951171875, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.011199951171875, "detail": "System.Runtime.Remoting.WellKnownServiceTypeEntry" } },
- { "pid": 1, "tid": 15, "ts": 9238327.1484375, "dur": 373.10001254081726, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.37310001254081726, "detail": "Microsoft.Win32.Win32Native" } },
- { "pid": 1, "tid": 15, "ts": 9238701.171875, "dur": 27847.900390625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 27.847900390625, "detail": "Microsoft.Win32.Win32RegistryApi" } },
- { "pid": 1, "tid": 15, "ts": 9266550.78125, "dur": 6049.300193786621, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.049300193786621, "detail": "System.WindowsConsoleDriver" } },
- { "pid": 1, "tid": 15, "ts": 9272603.515625, "dur": 53268.2991027832, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 53.2682991027832, "detail": "System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo" } },
- { "pid": 1, "tid": 15, "ts": 9325874.0234375, "dur": 930.1999807357788, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9301999807357788, "detail": "System.Security.XmlSyntaxException" } },
- { "pid": 1, "tid": 15, "ts": 9326981.4453125, "dur": 162581.89392089844, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 162.58189392089844, "detail": "System.Runtime.Serialization.Formatters.Binary.__BinaryParser" } },
- { "pid": 1, "tid": 15, "ts": 9489564.453125, "dur": 74488.99841308594, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 74.48899841308594, "detail": "System.Runtime.Serialization.Formatters.Binary.__BinaryWriter" } },
- { "pid": 1, "tid": 15, "ts": 9564060.546875, "dur": 153603.98864746094, "ph": "X", "name": "mscorlib15.cpp", "args": { "durationMS": 153.60398864746094, "detail": "" } },
- { "pid": 1, "tid": 15, "ts": 9717723.6328125, "dur": 4201.600074768066, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.201600074768066, "detail": "UnityEngine._Scripting.APIUpdating.APIUpdaterRuntimeHelpers" } },
- { "pid": 1, "tid": 15, "ts": 9721927.734375, "dur": 623.3000159263611, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6233000159263611, "detail": "UnityEngine.AddComponentMenu" } },
- { "pid": 1, "tid": 15, "ts": 9722583.984375, "dur": 3316.4000511169434, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.3164000511169434, "detail": "UnityEngine.AnimationCurve" } },
- { "pid": 1, "tid": 15, "ts": 9725902.34375, "dur": 10880.000114440918, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.880000114440918, "detail": "UnityEngine.Application" } },
- { "pid": 1, "tid": 15, "ts": 9736785.15625, "dur": 1969.2000150680542, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9692000150680542, "detail": "UnityEngine.Events.ArgumentCache" } },
- { "pid": 1, "tid": 15, "ts": 9738803.7109375, "dur": 14578.498840332031, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.578498840332031, "detail": "UnityEngine.AsyncOperation" } },
- { "pid": 1, "tid": 15, "ts": 9753384.765625, "dur": 3213.70005607605, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.21370005607605, "detail": "Unity.IO.LowLevel.Unsafe.AsyncReadManagerMetricsFilters" } },
- { "pid": 1, "tid": 15, "ts": 9756600.5859375, "dur": 9598.999977111816, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.598999977111816, "detail": "Unity.IO.LowLevel.Unsafe.AsyncReadManagerRequestMetric" } },
- { "pid": 1, "tid": 15, "ts": 9766202.1484375, "dur": 37706.00128173828, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 37.70600128173828, "detail": "UnityEngine.AttributeHelperEngine" } },
- { "pid": 1, "tid": 15, "ts": 9803910.15625, "dur": 3969.7999954223633, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.9697999954223633, "detail": "UnityEngine.Events.BaseInvokableCall" } },
- { "pid": 1, "tid": 15, "ts": 9807882.8125, "dur": 877.2000074386597, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8772000074386597, "detail": "UnityEngine.Rendering.BatchCullingContext" } },
- { "pid": 1, "tid": 15, "ts": 9808903.3203125, "dur": 4923.500061035156, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.923500061035156, "detail": "UnityEngine.Rendering.BatchRendererGroup" } },
- { "pid": 1, "tid": 15, "ts": 9813922.8515625, "dur": 1896.399974822998, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.896399974822998, "detail": "UnityEngine.BeforeRenderHelper" } },
- { "pid": 1, "tid": 15, "ts": 9815820.3125, "dur": 468.10001134872437, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.46810001134872437, "detail": "UnityEngine.Behaviour" } },
- { "pid": 1, "tid": 15, "ts": 9816289.0625, "dur": 1118.0000305175781, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1180000305175781, "detail": "UnityEngine.BootConfigData" } },
- { "pid": 1, "tid": 15, "ts": 9817410.15625, "dur": 9220.70026397705, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.22070026397705, "detail": "UnityEngine.Bounds" } },
- { "pid": 1, "tid": 15, "ts": 9826632.8125, "dur": 5692.699909210205, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.692699909210205, "detail": "UnityEngine.Experimental.Rendering.BuiltinRuntimeReflectionSystem" } },
- { "pid": 1, "tid": 15, "ts": 9832327.1484375, "dur": 6469.900131225586, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.469900131225586, "detail": "UnityEngine.Camera" } },
- { "pid": 1, "tid": 15, "ts": 9838828.125, "dur": 1010.4000568389893, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0104000568389893, "detail": "UnityEngine.Experimental.Playables.CameraPlayable" } },
- { "pid": 1, "tid": 15, "ts": 9840131.8359375, "dur": 51999.59945678711, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 51.99959945678711, "detail": "UnityEngine.Color" } },
- { "pid": 1, "tid": 15, "ts": 9892132.8125, "dur": 6177.599906921387, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.177599906921387, "detail": "UnityEngine.Color32" } },
- { "pid": 1, "tid": 15, "ts": 9898366.2109375, "dur": 1827.3999691009521, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8273999691009521, "detail": "UnityEngine.Component" } },
- { "pid": 1, "tid": 15, "ts": 9900400.390625, "dur": 1732.699990272522, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.732699990272522, "detail": "UnityEngine.Coroutine" } },
- { "pid": 1, "tid": 15, "ts": 9902134.765625, "dur": 4459.099769592285, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.459099769592285, "detail": "UnityEngine.Cubemap" } },
- { "pid": 1, "tid": 15, "ts": 9906596.6796875, "dur": 4361.999988555908, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.361999988555908, "detail": "UnityEngine.CubemapArray" } },
- { "pid": 1, "tid": 15, "ts": 9910959.9609375, "dur": 5367.099761962891, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.367099761962891, "detail": "UnityEngine.CullingGroup" } },
- { "pid": 1, "tid": 15, "ts": 9916525.390625, "dur": 903.9999842643738, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9039999842643738, "detail": "UnityEngine.CustomRenderTextureManager" } },
- { "pid": 1, "tid": 15, "ts": 9917429.6875, "dur": 1075.2999782562256, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0752999782562256, "detail": "UnityEngine.CustomYieldInstruction" } },
- { "pid": 1, "tid": 15, "ts": 9918506.8359375, "dur": 1791.100025177002, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.791100025177002, "detail": "UnityEngine.Sprites.DataUtility" } },
- { "pid": 1, "tid": 15, "ts": 9920328.125, "dur": 48821.40350341797, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 48.82140350341797, "detail": "UnityEngine.Debug" } },
- { "pid": 1, "tid": 15, "ts": 9969152.34375, "dur": 1718.400001525879, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.718400001525879, "detail": "UnityEngine.DebugLogHandler" } },
- { "pid": 1, "tid": 15, "ts": 9970872.0703125, "dur": 1213.1999731063843, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2131999731063843, "detail": "UnityEngine.Profiling.Experimental.DebugScreenCapture" } },
- { "pid": 1, "tid": 15, "ts": 9972297.8515625, "dur": 1603.600025177002, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.603600025177002, "detail": "UnityEngine.Internal.DefaultValueAttribute" } },
- { "pid": 1, "tid": 15, "ts": 9973902.34375, "dur": 1971.8999862670898, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9718999862670898, "detail": "UnityEngine.Experimental.GlobalIllumination.DirectionalLight" } },
- { "pid": 1, "tid": 15, "ts": 9976025.390625, "dur": 5362.800121307373, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.362800121307373, "detail": "UnityEngine.Experimental.GlobalIllumination.DiscLight" } },
- { "pid": 1, "tid": 15, "ts": 9981389.6484375, "dur": 7257.400035858154, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.257400035858154, "detail": "UnityEngine.Display" } },
- { "pid": 1, "tid": 15, "ts": 9988649.4140625, "dur": 708.1999778747559, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7081999778747559, "detail": "UnityEngine.DrivenRectTransformTracker" } },
- { "pid": 1, "tid": 15, "ts": 9990520.5078125, "dur": 510.10000705718994, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5101000070571899, "detail": "UnityEngine.FailedToLoadScriptObject" } },
- { "pid": 1, "tid": 15, "ts": 9991343.75, "dur": 363.20000886917114, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.36320000886917114, "detail": "UnityEngine.Serialization.FormerlySerializedAsAttribute" } },
- { "pid": 1, "tid": 15, "ts": 9991790.0390625, "dur": 8015.999794006348, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.015999794006348, "detail": "UnityEngine.GameObject" } },
- { "pid": 1, "tid": 15, "ts": 9999960.9375, "dur": 3236.3998889923096, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.2363998889923096, "detail": "UnityEngine.Gradient" } },
- { "pid": 1, "tid": 15, "ts": 10003230.46875, "dur": 2309.4000816345215, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.3094000816345215, "detail": "UnityEngine.Experimental.Rendering.GraphicsFormatUtility" } },
- { "pid": 1, "tid": 15, "ts": 10005984.375, "dur": 360.79999804496765, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.36079999804496765, "detail": "UnityEngine.HideInInspector" } },
- { "pid": 1, "tid": 15, "ts": 10006345.703125, "dur": 377.79998779296875, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.37779998779296875, "detail": "Unity.IL2CPP.CompilerServices.Il2CppEagerStaticClassConstructionAttribute" } },
- { "pid": 1, "tid": 15, "ts": 10006759.765625, "dur": 9376.500129699707, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.376500129699707, "detail": "UnityEngine.Events.InvokableCall" } },
- { "pid": 1, "tid": 15, "ts": 10016137.6953125, "dur": 44363.101959228516, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 44.363101959228516, "detail": "UnityEngine.Events.InvokableCallList" } },
- { "pid": 1, "tid": 15, "ts": 10060981.4453125, "dur": 5380.799770355225, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.380799770355225, "detail": "UnityEngine.Rendering.LODParameters" } },
- { "pid": 1, "tid": 15, "ts": 10066364.2578125, "dur": 1515.1000022888184, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5151000022888184, "detail": "UnityEngine.LayerMask" } },
- { "pid": 1, "tid": 15, "ts": 10067881.8359375, "dur": 5714.799880981445, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.714799880981445, "detail": "UnityEngine.Light" } },
- { "pid": 1, "tid": 15, "ts": 10073598.6328125, "dur": 1218.999981880188, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.218999981880188, "detail": "UnityEngine.LightBakingOutput" } },
- { "pid": 1, "tid": 15, "ts": 10074820.3125, "dur": 15883.501052856445, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.883501052856445, "detail": "UnityEngine.Experimental.GlobalIllumination.LightDataGI" } },
- { "pid": 1, "tid": 15, "ts": 10090726.5625, "dur": 1876.7999410629272, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8767999410629272, "detail": "UnityEngine.LightProbes" } },
- { "pid": 1, "tid": 15, "ts": 10092865.234375, "dur": 55978.702545166016, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 55.978702545166016, "detail": "UnityEngine.Experimental.GlobalIllumination.LightmapperUtils" } },
- { "pid": 1, "tid": 15, "ts": 10148845.703125, "dur": 1576.300024986267, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.576300024986267, "detail": "UnityEngine.Experimental.GlobalIllumination.Lightmapping" } },
- { "pid": 1, "tid": 15, "ts": 10150446.2890625, "dur": 6101.29976272583, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.10129976272583, "detail": "UnityEngine.Experimental.GlobalIllumination.LinearColor" } },
- { "pid": 1, "tid": 15, "ts": 10156572.265625, "dur": 398.6999988555908, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3986999988555908, "detail": "UnityEngine.SceneManagement.LoadSceneParameters" } },
- { "pid": 1, "tid": 15, "ts": 10157011.71875, "dur": 9962.200164794922, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.962200164794922, "detail": "UnityEngine.Logger" } },
- { "pid": 1, "tid": 15, "ts": 10166976.5625, "dur": 432.20001459121704, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.43220001459121704, "detail": "UnityEngine.LowerResBlitTexture" } },
- { "pid": 1, "tid": 15, "ts": 10167411.1328125, "dur": 2836.1001014709473, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.8361001014709473, "detail": "UnityEngine.ManagedStreamHelpers" } },
- { "pid": 1, "tid": 15, "ts": 10170248.046875, "dur": 5783.599853515625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.783599853515625, "detail": "UnityEngine.Material" } },
- { "pid": 1, "tid": 15, "ts": 10176033.203125, "dur": 747.9000091552734, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7479000091552734, "detail": "UnityEngine.Experimental.Playables.MaterialEffectPlayable" } },
- { "pid": 1, "tid": 15, "ts": 10176782.2265625, "dur": 31346.799850463867, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 31.346799850463867, "detail": "UnityEngine.Mathf" } },
- { "pid": 1, "tid": 15, "ts": 10208130.859375, "dur": 369.3000078201294, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3693000078201294, "detail": "UnityEngineInternal.MathfInternal" } },
- { "pid": 1, "tid": 15, "ts": 10208500.9765625, "dur": 14903.400421142578, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.903400421142578, "detail": "UnityEngine.Matrix4x4" } },
- { "pid": 1, "tid": 15, "ts": 10223406.25, "dur": 12387.499809265137, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.387499809265137, "detail": "UnityEngine.Profiling.Memory.Experimental.MemoryProfiler" } },
- { "pid": 1, "tid": 15, "ts": 10235794.921875, "dur": 68527.50396728516, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 68.52750396728516, "detail": "UnityEngine.Mesh" } },
- { "pid": 1, "tid": 15, "ts": 10304324.21875, "dur": 392.59999990463257, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.39259999990463257, "detail": "UnityEngine.MeshFilter" } },
- { "pid": 1, "tid": 15, "ts": 10305292.96875, "dur": 11540.900230407715, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.540900230407715, "detail": "UnityEngine.MonoBehaviour" } },
- { "pid": 1, "tid": 15, "ts": 10316835.9375, "dur": 531.5999984741211, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5315999984741211, "detail": "UnityEngine.Scripting.APIUpdating.MovedFromAttribute" } },
- { "pid": 1, "tid": 15, "ts": 10317368.1640625, "dur": 1668.4999465942383, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6684999465942383, "detail": "UnityEngine.Scripting.APIUpdating.MovedFromAttributeData" } },
- { "pid": 1, "tid": 15, "ts": 10319130.859375, "dur": 379.0000081062317, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3790000081062317, "detail": "Unity.Collections.LowLevel.Unsafe.NativeContainerAttribute" } },
- { "pid": 1, "tid": 15, "ts": 10319567.3828125, "dur": 921.2999939918518, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9212999939918518, "detail": "Unity.Collections.LowLevel.Unsafe.NativeContainerSupportsDeallocateOnJobCompletionAttribute" } },
- { "pid": 1, "tid": 15, "ts": 10321489.2578125, "dur": 596.5999960899353, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5965999960899353, "detail": "Unity.Collections.NativeLeakDetection" } },
- { "pid": 1, "tid": 15, "ts": 10322400.390625, "dur": 14185.298919677734, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.185298919677734, "detail": "UnityEngine.Object" } },
- { "pid": 1, "tid": 15, "ts": 10336586.9140625, "dur": 721.5999960899353, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7215999960899353, "detail": "UnityEngine.Rendering.OnDemandRendering" } },
- { "pid": 1, "tid": 15, "ts": 10337331.0546875, "dur": 35875.90026855469, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 35.87590026855469, "detail": "UnityEngine.Events.PersistentCall" } },
- { "pid": 1, "tid": 15, "ts": 10373208.0078125, "dur": 1557.1000576019287, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5571000576019287, "detail": "UnityEngine.Events.PersistentCallGroup" } },
- { "pid": 1, "tid": 15, "ts": 10374790.0390625, "dur": 3344.399929046631, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.344399929046631, "detail": "UnityEngine.Plane" } },
- { "pid": 1, "tid": 15, "ts": 10378139.6484375, "dur": 5655.300140380859, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.655300140380859, "detail": "UnityEngine.Playables.Playable" } },
- { "pid": 1, "tid": 15, "ts": 10383796.875, "dur": 1743.1999444961548, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7431999444961548, "detail": "UnityEngine.Playables.PlayableAsset" } },
- { "pid": 1, "tid": 15, "ts": 10385541.9921875, "dur": 1302.0000457763672, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3020000457763672, "detail": "UnityEngine.Playables.PlayableBehaviour" } },
- { "pid": 1, "tid": 15, "ts": 10386845.703125, "dur": 780.7000279426575, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7807000279426575, "detail": "UnityEngine.Playables.PlayableBinding" } },
- { "pid": 1, "tid": 15, "ts": 10387657.2265625, "dur": 2907.2999954223633, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.9072999954223633, "detail": "UnityEngine.Playables.PlayableHandle" } },
- { "pid": 1, "tid": 15, "ts": 10390566.40625, "dur": 1453.6000490188599, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4536000490188599, "detail": "UnityEngine.Playables.PlayableOutput" } },
- { "pid": 1, "tid": 15, "ts": 10392022.4609375, "dur": 9248.299598693848, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.248299598693848, "detail": "UnityEngine.Playables.PlayableOutputHandle" } },
- { "pid": 1, "tid": 15, "ts": 10401272.4609375, "dur": 26048.00033569336, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 26.04800033569336, "detail": "UnityEngine.Networking.PlayerConnection.PlayerConnection" } },
- { "pid": 1, "tid": 15, "ts": 10427323.2421875, "dur": 10506.500244140625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.506500244140625, "detail": "UnityEngine.PlayerConnectionInternal" } },
- { "pid": 1, "tid": 15, "ts": 10437832.03125, "dur": 4475.200176239014, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.475200176239014, "detail": "UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents" } },
- { "pid": 1, "tid": 15, "ts": 10442308.59375, "dur": 732.5999736785889, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7325999736785889, "detail": "UnityEngine.LowLevel.PlayerLoopSystem" } },
- { "pid": 1, "tid": 15, "ts": 10443311.5234375, "dur": 5433.899879455566, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.433899879455566, "detail": "UnityEngine.Experimental.GlobalIllumination.PointLight" } },
- { "pid": 1, "tid": 15, "ts": 10449079.1015625, "dur": 1291.700005531311, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.291700005531311, "detail": "UnityEngine.Profiling.Profiler" } },
- { "pid": 1, "tid": 15, "ts": 10450641.6015625, "dur": 15777.400016784668, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.777400016784668, "detail": "UnityEngine.Quaternion" } },
- { "pid": 1, "tid": 15, "ts": 10466876.953125, "dur": 652.0000100135803, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6520000100135803, "detail": "UnityEngine.RangeInt" } },
- { "pid": 1, "tid": 15, "ts": 10467529.296875, "dur": 2142.6000595092773, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1426000595092773, "detail": "UnityEngine.Ray" } },
- { "pid": 1, "tid": 15, "ts": 10469697.265625, "dur": 51101.69982910156, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 51.10169982910156, "detail": "UnityEngine.Rect" } },
- { "pid": 1, "tid": 15, "ts": 10520799.8046875, "dur": 5200.399875640869, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.200399875640869, "detail": "UnityEngine.RectOffset" } },
- { "pid": 1, "tid": 15, "ts": 10526002.9296875, "dur": 11830.499649047852, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.830499649047852, "detail": "UnityEngine.RectTransform" } },
- { "pid": 1, "tid": 15, "ts": 10537841.796875, "dur": 217997.89428710938, "ph": "X", "name": "UnityEngine.CoreModule.cpp", "args": { "durationMS": 217.99789428710938, "detail": "" } },
- { "pid": 1, "tid": 15, "ts": 10786765.625, "dur": 22203.800201416016, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 22.203800201416016, "detail": "System.Threading.Tasks.Task`1/<>c<System.Boolean>" } },
- { "pid": 1, "tid": 15, "ts": 10808997.0703125, "dur": 1016.6000127792358, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0166000127792358, "detail": "System.Threading.Tasks.Task`1/<>c<System.Int32>" } },
- { "pid": 1, "tid": 15, "ts": 10810016.6015625, "dur": 988.9000058174133, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9889000058174133, "detail": "System.Threading.Tasks.Task`1/<>c<System.Object>" } },
- { "pid": 1, "tid": 15, "ts": 10811008.7890625, "dur": 769.8000073432922, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7698000073432922, "detail": "System.Threading.Tasks.Task`1/<>c<System.Threading.Tasks.VoidTaskResult>" } },
- { "pid": 1, "tid": 15, "ts": 10811783.203125, "dur": 1002.5999546051025, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0025999546051025, "detail": "System.Linq.Enumerable/<>c__DisplayClass6_0`1<System.Object>" } },
- { "pid": 1, "tid": 15, "ts": 10812849.609375, "dur": 4930.200099945068, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.930200099945068, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2/<GetEnumerator>d__32<System.Object,System.Object>" } },
- { "pid": 1, "tid": 15, "ts": 10817783.203125, "dur": 5896.999835968018, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.896999835968018, "detail": "UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>d__2<UnityEngine.UI.CoroutineTween.ColorTween>" } },
- { "pid": 1, "tid": 15, "ts": 10823684.5703125, "dur": 3009.500026702881, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.009500026702881, "detail": "UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>d__2<UnityEngine.UI.CoroutineTween.FloatTween>" } },
- { "pid": 1, "tid": 15, "ts": 10826698.2421875, "dur": 1451.200008392334, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.451200008392334, "detail": "System.Action`1<System.Boolean>" } },
- { "pid": 1, "tid": 15, "ts": 10828152.34375, "dur": 1238.800048828125, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.238800048828125, "detail": "System.Action`1<System.Object>" } },
- { "pid": 1, "tid": 15, "ts": 10829397.4609375, "dur": 1136.8999481201172, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.1368999481201172, "detail": "System.Action`2<System.Object,System.Boolean>" } },
- { "pid": 1, "tid": 15, "ts": 10830537.109375, "dur": 1093.1999683380127, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0931999683380127, "detail": "System.Action`2<System.Object,System.Int32Enum>" } },
- { "pid": 1, "tid": 15, "ts": 10831634.765625, "dur": 8195.699691772461, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 8.195699691772461, "detail": "System.Action`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 15, "ts": 10839833.984375, "dur": 922.1000075340271, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9221000075340271, "detail": "System.Action`3<System.Boolean,System.Boolean,System.Int32>" } },
- { "pid": 1, "tid": 15, "ts": 10840760.7421875, "dur": 1040.3000116348267, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0403000116348267, "detail": "System.Action`3<System.Object,System.Boolean,UnityEngine.Profiling.Experimental.DebugScreenCapture>" } },
- { "pid": 1, "tid": 15, "ts": 10841803.7109375, "dur": 1114.1999959945679, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.1141999959945679, "detail": "System.Action`3<System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 15, "ts": 10842924.8046875, "dur": 13999.50122833252, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 13.99950122833252, "detail": "System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 15, "ts": 10856927.734375, "dur": 14775.199890136719, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 14.775199890136719, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 15, "ts": 10871707.03125, "dur": 21691.299438476562, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 21.691299438476562, "detail": "System.Collections.Generic.ArraySortHelper`1<System.Int32>" } },
- { "pid": 1, "tid": 15, "ts": 10893402.34375, "dur": 12215.999603271484, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 12.215999603271484, "detail": "System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 15, "ts": 10905622.0703125, "dur": 15458.800315856934, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 15.458800315856934, "detail": "System.Collections.Generic.ArraySortHelper`1<System.Object>" } },
- { "pid": 1, "tid": 15, "ts": 10921084.9609375, "dur": 20072.200775146484, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 20.072200775146484, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.RaycastHit>" } },
- { "pid": 1, "tid": 15, "ts": 10941161.1328125, "dur": 18277.698516845703, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 18.277698516845703, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 15, "ts": 10959442.3828125, "dur": 13554.499626159668, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 13.554499626159668, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 15, "ts": 10973000.9765625, "dur": 25882.200241088867, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 25.882200241088867, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 15, "ts": 10998887.6953125, "dur": 12305.800437927246, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 12.305800437927246, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 15, "ts": 11011200.1953125, "dur": 12403.69987487793, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 12.40369987487793, "detail": "System.Collections.Generic.ArraySortHelper`1<System.UInt64>" } },
- { "pid": 1, "tid": 15, "ts": 11023607.421875, "dur": 70431.70166015625, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 70.43170166015625, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 15, "ts": 11094042.96875, "dur": 11917.099952697754, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 11.917099952697754, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 15, "ts": 11105965.8203125, "dur": 12347.399711608887, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 12.347399711608887, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 15, "ts": 11118316.40625, "dur": 20981.10008239746, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 20.98110008239746, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 15, "ts": 11139301.7578125, "dur": 13347.999572753906, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 13.347999572753906, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 15, "ts": 11152655.2734375, "dur": 25487.600326538086, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 25.487600326538086, "detail": "System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 15, "ts": 11178147.4609375, "dur": 25362.300872802734, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 25.362300872802734, "detail": "System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>" } },
- { "pid": 1, "tid": 15, "ts": 11203525.390625, "dur": 14988.800048828125, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 14.988800048828125, "detail": "System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>" } },
- { "pid": 1, "tid": 15, "ts": 11218517.578125, "dur": 9942.099571228027, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 9.942099571228027, "detail": "System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>" } },
- { "pid": 1, "tid": 15, "ts": 11228462.890625, "dur": 27316.499710083008, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 27.316499710083008, "detail": "UnityEngine.Events.CachedInvokableCall`1<System.Boolean>" } },
- { "pid": 1, "tid": 15, "ts": 11255783.203125, "dur": 2232.1999073028564, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.2321999073028564, "detail": "UnityEngine.Events.CachedInvokableCall`1<System.Int32>" } },
- { "pid": 1, "tid": 15, "ts": 11258018.5546875, "dur": 1154.8999547958374, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.1548999547958374, "detail": "UnityEngine.Events.CachedInvokableCall`1<System.Object>" } },
- { "pid": 1, "tid": 15, "ts": 11259175.78125, "dur": 1008.1000328063965, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0081000328063965, "detail": "UnityEngine.Events.CachedInvokableCall`1<System.Single>" } },
- { "pid": 1, "tid": 15, "ts": 11260194.3359375, "dur": 6428.599834442139, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.428599834442139, "detail": "System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 15, "ts": 11266625.9765625, "dur": 3487.6999855041504, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.4876999855041504, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 15, "ts": 11270118.1640625, "dur": 2897.0000743865967, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.8970000743865967, "detail": "System.Collections.Generic.Comparer`1<System.Int32>" } },
- { "pid": 1, "tid": 15, "ts": 11273016.6015625, "dur": 3076.4999389648438, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.0764999389648438, "detail": "System.Collections.Generic.Comparer`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 15, "ts": 11276096.6796875, "dur": 8362.40005493164, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 8.36240005493164, "detail": "System.Collections.Generic.Comparer`1<System.Object>" } },
- { "pid": 1, "tid": 15, "ts": 11284465.8203125, "dur": 7347.799777984619, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.347799777984619, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit>" } },
- { "pid": 1, "tid": 15, "ts": 11291818.359375, "dur": 5894.899845123291, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.894899845123291, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 15, "ts": 11297716.796875, "dur": 3127.7999877929688, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.1277999877929688, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 15, "ts": 11300847.65625, "dur": 3812.000036239624, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.812000036239624, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 15, "ts": 11304663.0859375, "dur": 28257.999420166016, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 28.257999420166016, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 15, "ts": 11332923.828125, "dur": 6190.199851989746, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.190199851989746, "detail": "System.Collections.Generic.Comparer`1<System.UInt64>" } },
- { "pid": 1, "tid": 15, "ts": 11339118.1640625, "dur": 3103.300094604492, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.103300094604492, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 15, "ts": 11342225.5859375, "dur": 7733.500003814697, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.733500003814697, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 15, "ts": 11349964.84375, "dur": 3107.0001125335693, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.1070001125335693, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 15, "ts": 11353076.171875, "dur": 4390.2997970581055, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.3902997970581055, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 15, "ts": 11357470.703125, "dur": 3085.099935531616, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.085099935531616, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 15, "ts": 11360600.5859375, "dur": 5630.70011138916, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.63070011138916, "detail": "System.Comparison`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 15, "ts": 11366235.3515625, "dur": 1535.099983215332, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.535099983215332, "detail": "System.Comparison`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 15, "ts": 11367773.4375, "dur": 882.7999830245972, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8827999830245972, "detail": "System.Comparison`1<System.Int32>" } },
- { "pid": 1, "tid": 15, "ts": 11368658.203125, "dur": 1356.4000129699707, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3564000129699707, "detail": "System.Comparison`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 15, "ts": 11370017.578125, "dur": 1134.9999904632568, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.1349999904632568, "detail": "System.Comparison`1<System.Object>" } },
- { "pid": 1, "tid": 15, "ts": 11371155.2734375, "dur": 849.5000004768372, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8495000004768372, "detail": "System.Comparison`1<UnityEngine.RaycastHit>" } },
- { "pid": 1, "tid": 15, "ts": 11372008.7890625, "dur": 962.0000123977661, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9620000123977661, "detail": "System.Comparison`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 15, "ts": 11372979.4921875, "dur": 842.5999879837036, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8425999879837036, "detail": "System.Comparison`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 15, "ts": 11373824.21875, "dur": 714.6000266075134, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7146000266075134, "detail": "System.Comparison`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 15, "ts": 11374541.015625, "dur": 16084.400177001953, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 16.084400177001953, "detail": "System.Comparison`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 15, "ts": 11390629.8828125, "dur": 1043.9000129699707, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0439000129699707, "detail": "System.Comparison`1<System.UInt64>" } },
- { "pid": 1, "tid": 15, "ts": 11391675.78125, "dur": 1050.6999492645264, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0506999492645264, "detail": "System.Comparison`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 15, "ts": 11392729.4921875, "dur": 1346.500039100647, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.346500039100647, "detail": "System.Comparison`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 15, "ts": 11394077.1484375, "dur": 2451.2999057769775, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.4512999057769775, "detail": "System.Comparison`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 15, "ts": 11396533.203125, "dur": 1463.2999897003174, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4632999897003174, "detail": "System.Comparison`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 15, "ts": 11398000, "dur": 905.6000113487244, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9056000113487244, "detail": "System.Comparison`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 15, "ts": 11398909.1796875, "dur": 92638.39721679688, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 92.63839721679688, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 15, "ts": 11491593.75, "dur": 72173.90441894531, "ph": "X", "name": "Generics.cpp", "args": { "durationMS": 72.17390441894531, "detail": "" } },
- { "pid": 1, "tid": 15, "ts": 11563803.7109375, "dur": 30230.40008544922, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 30.23040008544922, "detail": "System.Collections.Generic.List`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 15, "ts": 11594036.1328125, "dur": 43449.60021972656, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 43.44960021972656, "detail": "System.Collections.Generic.List`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 15, "ts": 11637487.3046875, "dur": 47890.201568603516, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 47.890201568603516, "detail": "System.Collections.Generic.List`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 15, "ts": 11685382.8125, "dur": 54191.898345947266, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 54.191898345947266, "detail": "System.Collections.Generic.List`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 15, "ts": 11739576.171875, "dur": 63413.1965637207, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 63.4131965637207, "detail": "System.Collections.Generic.List`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 15, "ts": 11802992.1875, "dur": 37102.699279785156, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 37.102699279785156, "detail": "System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 15, "ts": 11840097.65625, "dur": 50379.398345947266, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 50.379398345947266, "detail": "System.Collections.Generic.List`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 15, "ts": 11890481.4453125, "dur": 134033.0047607422, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 134.0330047607422, "detail": "System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 15, "ts": 12024517.578125, "dur": 850.600004196167, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.850600004196167, "detail": "System.Collections.Generic.Mscorlib_CollectionDebugView`1<System.Object>" } },
- { "pid": 1, "tid": 15, "ts": 12025372.0703125, "dur": 11043.299674987793, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 11.043299674987793, "detail": "Unity.Collections.NativeArray`1<UnityEngine.Rendering.BatchVisibility>" } },
- { "pid": 1, "tid": 15, "ts": 12036419.921875, "dur": 16926.799774169922, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 16.926799774169922, "detail": "Unity.Collections.NativeArray`1<System.Byte>" } },
- { "pid": 1, "tid": 15, "ts": 12053348.6328125, "dur": 14404.701232910156, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 14.404701232910156, "detail": "Unity.Collections.NativeArray`1<System.Int32>" } },
- { "pid": 1, "tid": 15, "ts": 12067756.8359375, "dur": 16150.60043334961, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 16.15060043334961, "detail": "Unity.Collections.NativeArray`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>" } },
- { "pid": 1, "tid": 15, "ts": 12083911.1328125, "dur": 8389.599800109863, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 8.389599800109863, "detail": "Unity.Collections.NativeArray`1<UnityEngine.Plane>" } },
- { "pid": 1, "tid": 15, "ts": 12092303.7109375, "dur": 364.300012588501, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.364300012588501, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2/Node<System.Object,System.Object>" } },
- { "pid": 1, "tid": 15, "ts": 12092671.875, "dur": 16934.200286865234, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 16.934200286865234, "detail": "System.Nullable`1<System.Boolean>" } },
- { "pid": 1, "tid": 15, "ts": 12109607.421875, "dur": 4683.4001541137695, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.6834001541137695, "detail": "System.Nullable`1<System.Int32>" } },
- { "pid": 1, "tid": 15, "ts": 12114295.8984375, "dur": 1581.0999870300293, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5810999870300293, "detail": "System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 15, "ts": 12115880.859375, "dur": 3784.899950027466, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.784899950027466, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 15, "ts": 12119668.9453125, "dur": 1383.8000297546387, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3838000297546387, "detail": "System.Collections.Generic.ObjectComparer`1<System.Int32>" } },
- { "pid": 1, "tid": 15, "ts": 12121056.640625, "dur": 1960.7000350952148, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9607000350952148, "detail": "System.Collections.Generic.ObjectComparer`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 15, "ts": 12123019.53125, "dur": 1075.0999450683594, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0750999450683594, "detail": "System.Collections.Generic.ObjectComparer`1<System.Object>" } },
- { "pid": 1, "tid": 15, "ts": 12124098.6328125, "dur": 1127.7999877929688, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.1277999877929688, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit>" } },
- { "pid": 1, "tid": 15, "ts": 12125230.46875, "dur": 1131.700038909912, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.131700038909912, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 15, "ts": 12126364.2578125, "dur": 1233.9999675750732, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2339999675750732, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 15, "ts": 12127601.5625, "dur": 3116.100072860718, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.1161000728607178, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 15, "ts": 12130721.6796875, "dur": 1353.5000085830688, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3535000085830688, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 15, "ts": 12132079.1015625, "dur": 2109.8999977111816, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.1098999977111816, "detail": "System.Collections.Generic.ObjectComparer`1<System.UInt64>" } },
- { "pid": 1, "tid": 15, "ts": 12134192.3828125, "dur": 1118.1000471115112, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.1181000471115112, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 15, "ts": 12135315.4296875, "dur": 1083.0999612808228, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0830999612808228, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 15, "ts": 12136401.3671875, "dur": 1401.1000394821167, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4011000394821167, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 15, "ts": 12137805.6640625, "dur": 1065.000057220459, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.065000057220459, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 15, "ts": 12138875, "dur": 1217.0000076293945, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2170000076293945, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 15, "ts": 12140097.65625, "dur": 16486.099243164062, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 16.486099243164062, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 15, "ts": 12156588.8671875, "dur": 3480.9999465942383, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.4809999465942383, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>" } },
- { "pid": 1, "tid": 15, "ts": 12160095.703125, "dur": 10707.599639892578, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 10.707599639892578, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>" } },
- { "pid": 1, "tid": 15, "ts": 12170808.59375, "dur": 3201.6000747680664, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.2016000747680664, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Char>" } },
- { "pid": 1, "tid": 15, "ts": 12174013.671875, "dur": 6306.79988861084, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.30679988861084, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 15, "ts": 12180328.125, "dur": 3645.900011062622, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.645900011062622, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>" } },
- { "pid": 1, "tid": 15, "ts": 12183977.5390625, "dur": 2903.1999111175537, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.9031999111175537, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>" } },
- { "pid": 1, "tid": 15, "ts": 12186887.6953125, "dur": 3981.800079345703, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.981800079345703, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 15, "ts": 12190873.046875, "dur": 10873.600006103516, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 10.873600006103516, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.Navigation>" } },
- { "pid": 1, "tid": 15, "ts": 12201750.9765625, "dur": 5822.500228881836, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.822500228881836, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Object>" } },
- { "pid": 1, "tid": 15, "ts": 12207577.1484375, "dur": 4977.700233459473, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.977700233459473, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 15, "ts": 12212559.5703125, "dur": 5385.300159454346, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.385300159454346, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 15, "ts": 12217947.265625, "dur": 2803.499937057495, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.803499937057495, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Single>" } },
- { "pid": 1, "tid": 15, "ts": 12220754.8828125, "dur": 3716.900110244751, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.716900110244751, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.SpriteState>" } },
- { "pid": 1, "tid": 15, "ts": 12224477.5390625, "dur": 74115.6997680664, "ph": "X", "name": "Generics4.cpp", "args": { "durationMS": 74.1156997680664, "detail": "" } },
- { "pid": 1, "tid": 15, "ts": 12298642.578125, "dur": 1577.9000520706177, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.5779000520706177, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12300223.6328125, "dur": 684.7000122070312, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6847000122070312, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12300910.15625, "dur": 568.4999823570251, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5684999823570251, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12301481.4453125, "dur": 568.8999891281128, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5688999891281128, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12302052.734375, "dur": 492.5000071525574, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4925000071525574, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12302546.875, "dur": 505.50001859664917, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5055000185966492, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12303054.6875, "dur": 509.1000199317932, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5091000199317932, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12303565.4296875, "dur": 567.6000118255615, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5676000118255615, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12304134.765625, "dur": 500.6999969482422, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5006999969482422, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12304637.6953125, "dur": 503.4000277519226, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5034000277519226, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12305142.578125, "dur": 533.29998254776, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.53329998254776, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12305677.734375, "dur": 537.1000170707703, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5371000170707703, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12306215.8203125, "dur": 491.40000343322754, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.49140000343322754, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12306710.9375, "dur": 487.1000051498413, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4871000051498413, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12307199.21875, "dur": 477.2000014781952, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4772000014781952, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12307676.7578125, "dur": 458.29999446868896, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.45829999446868896, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12308136.71875, "dur": 500.6999969482422, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5006999969482422, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12308638.671875, "dur": 500.8000135421753, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5008000135421753, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12309141.6015625, "dur": 480.80000281333923, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.48080000281333923, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12309624.0234375, "dur": 472.6000130176544, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4726000130176544, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12310097.65625, "dur": 507.60000944137573, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5076000094413757, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12310607.421875, "dur": 537.5000238418579, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5375000238418579, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12311146.484375, "dur": 1211.400032043457, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.211400032043457, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12312360.3515625, "dur": 850.4999876022339, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8504999876022339, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12313212.890625, "dur": 1089.2000198364258, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0892000198364258, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12314305.6640625, "dur": 529.1000008583069, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5291000008583069, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12314836.9140625, "dur": 478.8999855518341, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4788999855518341, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12315317.3828125, "dur": 544.6000099182129, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5446000099182129, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12315864.2578125, "dur": 468.4999883174896, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4684999883174896, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12316334.9609375, "dur": 503.49998474121094, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5034999847412109, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12316839.84375, "dur": 485.90001463890076, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.48590001463890076, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12317327.1484375, "dur": 520.2000141143799, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5202000141143799, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12317849.609375, "dur": 489.19999599456787, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.48919999599456787, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12318338.8671875, "dur": 519.2999839782715, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5192999839782715, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12318861.328125, "dur": 578.8999795913696, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5788999795913696, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12319441.40625, "dur": 549.7999787330627, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5497999787330627, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 15, "ts": 12319995.1171875, "dur": 669.4999933242798, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6694999933242798, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12320665.0390625, "dur": 660.099983215332, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.660099983215332, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12321327.1484375, "dur": 10713.99974822998, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 10.71399974822998, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12332043.9453125, "dur": 1018.8000202178955, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0188000202178955, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12333064.453125, "dur": 823.0000138282776, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8230000138282776, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12333888.671875, "dur": 757.7000260353088, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7577000260353088, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12334647.4609375, "dur": 742.1000003814697, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7421000003814697, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12335391.6015625, "dur": 615.1000261306763, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6151000261306763, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12336007.8125, "dur": 688.8999938964844, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6888999938964844, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12336697.265625, "dur": 670.4999804496765, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6704999804496765, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12337371.09375, "dur": 837.8000259399414, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8378000259399414, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12338209.9609375, "dur": 951.3999819755554, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9513999819755554, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12339163.0859375, "dur": 593.6999917030334, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5936999917030334, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12339758.7890625, "dur": 590.6000137329102, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5906000137329102, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12340350.5859375, "dur": 708.1000208854675, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7081000208854675, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12341060.546875, "dur": 618.4999942779541, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6184999942779541, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12341678.7109375, "dur": 591.0000205039978, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5910000205039978, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12342272.4609375, "dur": 606.000006198883, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6060000061988831, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12342878.90625, "dur": 633.3000063896179, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6333000063896179, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12343514.6484375, "dur": 10818.900108337402, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 10.818900108337402, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12354335.9375, "dur": 883.0000162124634, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8830000162124634, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12355220.703125, "dur": 623.0000257492065, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6230000257492065, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12355844.7265625, "dur": 593.2999849319458, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5932999849319458, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12356440.4296875, "dur": 669.6000099182129, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6696000099182129, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12357110.3515625, "dur": 611.6999983787537, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6116999983787537, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12357723.6328125, "dur": 589.6999835968018, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5896999835968018, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12358315.4296875, "dur": 588.8000130653381, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5888000130653381, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12358906.25, "dur": 617.2999739646912, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6172999739646912, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12359524.4140625, "dur": 585.6999754905701, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5856999754905701, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12360111.328125, "dur": 597.100019454956, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.597100019454956, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12360709.9609375, "dur": 637.3999714851379, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6373999714851379, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12361348.6328125, "dur": 3652.400016784668, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.652400016784668, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12365002.9296875, "dur": 4098.299980163574, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 4.098299980163574, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12369102.5390625, "dur": 811.5000128746033, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8115000128746033, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12369916.015625, "dur": 814.8999810218811, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8148999810218811, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12370732.421875, "dur": 582.4999809265137, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5824999809265137, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12371316.40625, "dur": 736.0000014305115, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7360000014305115, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12372053.7109375, "dur": 608.6000204086304, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6086000204086304, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12372665.0390625, "dur": 597.599983215332, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.597599983215332, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12373263.671875, "dur": 663.2000207901001, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6632000207901001, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12373928.7109375, "dur": 1284.999966621399, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.284999966621399, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12375214.84375, "dur": 609.7999811172485, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6097999811172485, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12375826.171875, "dur": 609.8999977111816, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6098999977111816, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12376437.5, "dur": 6766.69979095459, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 6.76669979095459, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12383207.03125, "dur": 1004.9999952316284, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0049999952316284, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12384213.8671875, "dur": 643.1000232696533, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6431000232696533, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12384858.3984375, "dur": 599.399983882904, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.599399983882904, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12385459.9609375, "dur": 846.3000059127808, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8463000059127808, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12386307.6171875, "dur": 1177.9999732971191, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1779999732971191, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12387487.3046875, "dur": 862.8000020980835, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8628000020980835, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12388352.5390625, "dur": 11288.299560546875, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 11.288299560546875, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12399643.5546875, "dur": 1210.0000381469727, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2100000381469727, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12400855.46875, "dur": 1326.200008392334, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.326200008392334, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12402183.59375, "dur": 1023.1000185012817, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0231000185012817, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12403208.0078125, "dur": 896.3000178337097, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8963000178337097, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12404105.46875, "dur": 779.3999910354614, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7793999910354614, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12404886.71875, "dur": 774.399995803833, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.774399995803833, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12405662.109375, "dur": 827.7000188827515, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8277000188827515, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12406492.1875, "dur": 952.4000287055969, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9524000287055969, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12407446.2890625, "dur": 898.9999890327454, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8989999890327454, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12408346.6796875, "dur": 1398.5999822616577, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3985999822616577, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12409747.0703125, "dur": 21499.000549316406, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 21.499000549316406, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12431249.0234375, "dur": 1757.7999830245972, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.7577999830245972, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12433009.765625, "dur": 787.5000238418579, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7875000238418579, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12433800.78125, "dur": 670.7000136375427, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6707000136375427, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12434472.65625, "dur": 790.4000282287598, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7904000282287598, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 15, "ts": 12435265.625, "dur": 81355.80444335938, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 81.35580444335938, "detail": "LastIndexOf" } },
- { "pid": 1, "tid": 15, "ts": 12516624.0234375, "dur": 953.8999795913696, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9538999795913696, "detail": "LastIndexOf" } },
- { "pid": 1, "tid": 15, "ts": 12517580.078125, "dur": 1383.7000131607056, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3837000131607056, "detail": "LastIndexOf" } },
- { "pid": 1, "tid": 15, "ts": 12518964.84375, "dur": 750, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.75, "detail": "LastIndexOfImpl" } },
- { "pid": 1, "tid": 15, "ts": 12519716.796875, "dur": 1071.9000101089478, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0719000101089478, "detail": "Resize" } },
- { "pid": 1, "tid": 15, "ts": 12520790.0390625, "dur": 1533.8000059127808, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.5338000059127808, "detail": "Resize" } },
- { "pid": 1, "tid": 15, "ts": 12522326.171875, "dur": 580.5000066757202, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5805000066757202, "detail": "Reverse" } },
- { "pid": 1, "tid": 15, "ts": 12522909.1796875, "dur": 425.59999227523804, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.42559999227523804, "detail": "Reverse" } },
- { "pid": 1, "tid": 15, "ts": 12523334.9609375, "dur": 1868.399977684021, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.868399977684021, "detail": "Reverse" } },
- { "pid": 1, "tid": 15, "ts": 12525206.0546875, "dur": 1210.7000350952148, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2107000350952148, "detail": "Reverse" } },
- { "pid": 1, "tid": 15, "ts": 12526417.96875, "dur": 4179.699897766113, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 4.179699897766113, "detail": "Reverse" } },
- { "pid": 1, "tid": 15, "ts": 12530601.5625, "dur": 1174.1000413894653, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1741000413894653, "detail": "Reverse" } },
- { "pid": 1, "tid": 15, "ts": 12531777.34375, "dur": 1047.3999977111816, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0473999977111816, "detail": "Reverse" } },
- { "pid": 1, "tid": 15, "ts": 12532826.171875, "dur": 1086.0999822616577, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0860999822616577, "detail": "Reverse" } },
- { "pid": 1, "tid": 15, "ts": 12533914.0625, "dur": 1194.9000358581543, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1949000358581543, "detail": "Reverse" } },
- { "pid": 1, "tid": 15, "ts": 12535111.328125, "dur": 1110.0000143051147, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1100000143051147, "detail": "Reverse" } },
- { "pid": 1, "tid": 15, "ts": 12536222.65625, "dur": 1121.000051498413, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.121000051498413, "detail": "Reverse" } },
- { "pid": 1, "tid": 15, "ts": 12537345.703125, "dur": 3118.4000968933105, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.1184000968933105, "detail": "Reverse" } },
- { "pid": 1, "tid": 15, "ts": 12540467.7734375, "dur": 1215.6000137329102, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2156000137329102, "detail": "Reverse" } },
- { "pid": 1, "tid": 15, "ts": 12541684.5703125, "dur": 1643.1000232696533, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.6431000232696533, "detail": "Reverse" } },
- { "pid": 1, "tid": 15, "ts": 12543330.078125, "dur": 5339.700222015381, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 5.339700222015381, "detail": "Reverse" } },
- { "pid": 1, "tid": 15, "ts": 12548670.8984375, "dur": 2870.8999156951904, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.8708999156951904, "detail": "Reverse" } },
- { "pid": 1, "tid": 15, "ts": 12551543.9453125, "dur": 1172.8999614715576, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1728999614715576, "detail": "Reverse" } },
- { "pid": 1, "tid": 15, "ts": 12553015.625, "dur": 549.3999719619751, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5493999719619751, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12553566.40625, "dur": 481.4999997615814, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4814999997615814, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12554048.828125, "dur": 449.6999979019165, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4496999979019165, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12554500, "dur": 675.000011920929, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.675000011920929, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12555176.7578125, "dur": 537.8999710083008, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5378999710083008, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12555715.8203125, "dur": 346.5999960899353, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3465999960899353, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12556064.453125, "dur": 635.5999708175659, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6355999708175659, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12556701.171875, "dur": 569.4000124931335, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5694000124931335, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12557271.484375, "dur": 1108.1000566482544, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1081000566482544, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12558381.8359375, "dur": 18151.500701904297, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 18.151500701904297, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12626053.7109375, "dur": 1501.3999938964844, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.5013999938964844, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12627556.640625, "dur": 3110.1999282836914, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.1101999282836914, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12630668.9453125, "dur": 1595.7000255584717, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.5957000255584717, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12632266.6015625, "dur": 1867.6999807357788, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.8676999807357788, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12634609.375, "dur": 2518.399953842163, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.518399953842163, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12637129.8828125, "dur": 1391.4999961853027, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3914999961853027, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12638523.4375, "dur": 1084.4000577926636, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0844000577926636, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12639609.375, "dur": 1071.5999603271484, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0715999603271484, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12640682.6171875, "dur": 1058.899998664856, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.058899998664856, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12641744.140625, "dur": 1134.8999738693237, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1348999738693237, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12642880.859375, "dur": 1330.8000564575195, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3308000564575195, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12644214.84375, "dur": 2981.100082397461, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.981100082397461, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12647198.2421875, "dur": 2031.5001010894775, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.0315001010894775, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12649232.421875, "dur": 1213.0000591278076, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2130000591278076, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12650447.265625, "dur": 441.5999948978424, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4415999948978424, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12650889.6484375, "dur": 2126.199960708618, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.126199960708618, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12653018.5546875, "dur": 1425.6000518798828, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.4256000518798828, "detail": "Sort" } },
- { "pid": 1, "tid": 15, "ts": 12654445.3125, "dur": 808.7000250816345, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8087000250816345, "detail": "TrueForAll" } },
- { "pid": 1, "tid": 15, "ts": 12655255.859375, "dur": 436.30000948905945, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.43630000948905945, "detail": "UnsafeLoad" } },
- { "pid": 1, "tid": 15, "ts": 12656694.3359375, "dur": 1950.1999616622925, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.9501999616622925, "detail": "UnsafeLoad" } },
- { "pid": 1, "tid": 15, "ts": 12659172.8515625, "dur": 499.9000132083893, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4999000132083893, "detail": "UnsafeLoad" } },
- { "pid": 1, "tid": 15, "ts": 12660192.3828125, "dur": 3143.5000896453857, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.1435000896453857, "detail": "UnsafeLoad" } },
- { "pid": 1, "tid": 15, "ts": 12663651.3671875, "dur": 1843.000054359436, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.843000054359436, "detail": "UnsafeLoad" } },
- { "pid": 1, "tid": 15, "ts": 12666220.703125, "dur": 750.1999735832214, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7501999735832214, "detail": "CreateCacheableTask" } },
- { "pid": 1, "tid": 15, "ts": 12666972.65625, "dur": 1982.9000234603882, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.9829000234603882, "detail": "CreateCacheableTask" } },
- { "pid": 1, "tid": 15, "ts": 12668958.0078125, "dur": 714.1000032424927, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7141000032424927, "detail": "CreateCacheableTask" } },
- { "pid": 1, "tid": 15, "ts": 12669673.828125, "dur": 1583.6999416351318, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.5836999416351318, "detail": "GetCustomAttributeOfType" } },
- { "pid": 1, "tid": 15, "ts": 12671260.7421875, "dur": 990.8999800682068, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9908999800682068, "detail": "ThrowOnInvalidArg" } },
- { "pid": 1, "tid": 15, "ts": 12672253.90625, "dur": 1002.7999877929688, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0027999877929688, "detail": "ThrowOnInvalidArg" } },
- { "pid": 1, "tid": 15, "ts": 12673257.8125, "dur": 924.3000149726868, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9243000149726868, "detail": "ThrowOnInvalidArg" } },
- { "pid": 1, "tid": 15, "ts": 12674183.59375, "dur": 15857.699394226074, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 15.857699394226074, "detail": "ThrowOnInvalidArg" } },
- { "pid": 1, "tid": 15, "ts": 12690043.9453125, "dur": 905.3000211715698, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9053000211715698, "detail": "ThrowOnInvalidArg" } },
- { "pid": 1, "tid": 15, "ts": 12690951.171875, "dur": 1028.2000303268433, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0282000303268433, "detail": "ThrowOnInvalidArg" } },
- { "pid": 1, "tid": 15, "ts": 12691981.4453125, "dur": 910.7000231742859, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9107000231742859, "detail": "GetValueOrDefault" } },
- { "pid": 1, "tid": 15, "ts": 12692894.53125, "dur": 670.7000136375427, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6707000136375427, "detail": "GetValueOrDefault" } },
- { "pid": 1, "tid": 15, "ts": 12693566.40625, "dur": 626.5000104904175, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6265000104904175, "detail": "GetComponent" } },
- { "pid": 1, "tid": 15, "ts": 12694195.3125, "dur": 6555.799961090088, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 6.555799961090088, "detail": "GetComponentInChildren" } },
- { "pid": 1, "tid": 15, "ts": 12700752.9296875, "dur": 468.69999170303345, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.46869999170303345, "detail": "GetComponentInParent" } },
- { "pid": 1, "tid": 15, "ts": 12701223.6328125, "dur": 398.20000529289246, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.39820000529289246, "detail": "GetComponents" } },
- { "pid": 1, "tid": 15, "ts": 12701623.046875, "dur": 959.5999717712402, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9595999717712402, "detail": "GetComponents" } },
- { "pid": 1, "tid": 15, "ts": 12702585.9375, "dur": 638.8999819755554, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6388999819755554, "detail": "GetComponentsInChildren" } },
- { "pid": 1, "tid": 15, "ts": 12703226.5625, "dur": 987.6000285148621, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9876000285148621, "detail": "GetComponentsInChildren" } },
- { "pid": 1, "tid": 15, "ts": 12704215.8203125, "dur": 352.9999852180481, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3529999852180481, "detail": "GetComponentsInParent" } },
- { "pid": 1, "tid": 15, "ts": 12704570.3125, "dur": 385.5000138282776, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3855000138282776, "detail": "GetComponentsInParent" } },
- { "pid": 1, "tid": 15, "ts": 12704956.0546875, "dur": 363.7000024318695, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3637000024318695, "detail": "GetComponentsInParent" } },
- { "pid": 1, "tid": 15, "ts": 12705322.265625, "dur": 1272.4000215530396, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2724000215530396, "detail": "ForAll" } },
- { "pid": 1, "tid": 15, "ts": 12706596.6796875, "dur": 456.9999873638153, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4569999873638153, "detail": "UnboxValues" } },
- { "pid": 1, "tid": 15, "ts": 12707055.6640625, "dur": 489.6000027656555, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4896000027656555, "detail": "UnboxValues" } },
- { "pid": 1, "tid": 15, "ts": 12707545.8984375, "dur": 425.79999566078186, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.42579999566078186, "detail": "UnboxValues" } },
- { "pid": 1, "tid": 15, "ts": 12707972.65625, "dur": 344.59999203681946, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34459999203681946, "detail": "GetCustomAttribute" } },
- { "pid": 1, "tid": 15, "ts": 12708319.3359375, "dur": 11474.699974060059, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 11.474699974060059, "detail": "GetOrAddComponent" } },
- { "pid": 1, "tid": 15, "ts": 12719795.8984375, "dur": 926.1999726295471, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9261999726295471, "detail": "Any" } },
- { "pid": 1, "tid": 15, "ts": 12720723.6328125, "dur": 1377.3000240325928, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3773000240325928, "detail": "Any" } },
- { "pid": 1, "tid": 15, "ts": 12722103.515625, "dur": 1164.0000343322754, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1640000343322754, "detail": "CombinePredicates" } },
- { "pid": 1, "tid": 15, "ts": 12723268.5546875, "dur": 1358.0000400543213, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3580000400543213, "detail": "Count" } },
- { "pid": 1, "tid": 15, "ts": 12724628.90625, "dur": 2981.1999797821045, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.9811999797821045, "detail": "First" } },
- { "pid": 1, "tid": 15, "ts": 12727611.328125, "dur": 5271.100044250488, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 5.271100044250488, "detail": "SingleOrDefault" } },
- { "pid": 1, "tid": 15, "ts": 12732884.765625, "dur": 1466.5000438690186, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.4665000438690186, "detail": "Where" } },
- { "pid": 1, "tid": 15, "ts": 12734352.5390625, "dur": 5539.700031280518, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 5.539700031280518, "detail": "CanHandleEvent" } },
- { "pid": 1, "tid": 15, "ts": 12739894.53125, "dur": 3289.4999980926514, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.2894999980926514, "detail": "Execute" } },
- { "pid": 1, "tid": 15, "ts": 12743185.546875, "dur": 10741.000175476074, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 10.741000175476074, "detail": "ExecuteHierarchy" } },
- { "pid": 1, "tid": 15, "ts": 12753928.7109375, "dur": 1301.1000156402588, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3011000156402588, "detail": "GetEventHandler" } },
- { "pid": 1, "tid": 15, "ts": 12755231.4453125, "dur": 15334.199905395508, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 15.334199905395508, "detail": "GetEventList" } },
- { "pid": 1, "tid": 15, "ts": 12770567.3828125, "dur": 830.6999802589417, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8306999802589417, "detail": "ShouldSendToComponent" } },
- { "pid": 1, "tid": 15, "ts": 12771400.390625, "dur": 1540.0999784469604, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.5400999784469604, "detail": "ValidateEventData" } },
- { "pid": 1, "tid": 15, "ts": 12772941.40625, "dur": 765.999972820282, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.765999972820282, "detail": "AddComponent" } },
- { "pid": 1, "tid": 15, "ts": 12773708.984375, "dur": 459.80000495910645, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.45980000495910645, "detail": "GetComponent" } },
- { "pid": 1, "tid": 15, "ts": 12774170.8984375, "dur": 372.79999256134033, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37279999256134033, "detail": "GetComponentInChildren" } },
- { "pid": 1, "tid": 15, "ts": 12774543.9453125, "dur": 466.6999876499176, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4666999876499176, "detail": "GetComponentInChildren" } },
- { "pid": 1, "tid": 15, "ts": 12775011.71875, "dur": 505.1000118255615, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5051000118255615, "detail": "GetComponents" } },
- { "pid": 1, "tid": 15, "ts": 12775518.5546875, "dur": 445.10000944137573, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.44510000944137573, "detail": "GetComponents" } },
- { "pid": 1, "tid": 15, "ts": 12775964.84375, "dur": 576.3000249862671, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5763000249862671, "detail": "GetComponentsInChildren" } },
- { "pid": 1, "tid": 15, "ts": 12776541.9921875, "dur": 545.4000234603882, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5454000234603882, "detail": "GetComponentsInParent" } },
- { "pid": 1, "tid": 15, "ts": 12777089.84375, "dur": 3172.499895095825, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.172499895095825, "detail": "GetComponentsInParent" } },
- { "pid": 1, "tid": 15, "ts": 12780264.6484375, "dur": 1823.8999843597412, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.8238999843597412, "detail": "TryGetComponent" } },
- { "pid": 1, "tid": 15, "ts": 12782131.8359375, "dur": 383.1999897956848, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3831999897956848, "detail": "UnsafeCast" } },
- { "pid": 1, "tid": 15, "ts": 12782780.2734375, "dur": 2564.8999214172363, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.5648999214172363, "detail": "SetProperty" } },
- { "pid": 1, "tid": 15, "ts": 12785347.65625, "dur": 697.8999972343445, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6978999972343445, "detail": "SetProperty" } },
- { "pid": 1, "tid": 15, "ts": 12786047.8515625, "dur": 757.099986076355, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.757099986076355, "detail": "SetProperty" } },
- { "pid": 1, "tid": 15, "ts": 12786806.640625, "dur": 845.8999991416931, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8458999991416931, "detail": "SetProperty" } },
- { "pid": 1, "tid": 15, "ts": 12787654.296875, "dur": 760.9999775886536, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7609999775886536, "detail": "SetProperty" } },
- { "pid": 1, "tid": 15, "ts": 12788416.015625, "dur": 38361.900329589844, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 38.361900329589844, "detail": "SetProperty" } },
- { "pid": 1, "tid": 15, "ts": 12826779.296875, "dur": 880.4000020027161, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8804000020027161, "detail": "EnsureInitialized" } },
- { "pid": 1, "tid": 15, "ts": 12827663.0859375, "dur": 1740.399956703186, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.740399956703186, "detail": "EnsureInitializedCore" } },
- { "pid": 1, "tid": 15, "ts": 12829406.25, "dur": 488.40001225471497, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.48840001225471497, "detail": "GetFunctionPointerForDelegate" } },
- { "pid": 1, "tid": 15, "ts": 12830177.734375, "dur": 457.19999074935913, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.45719999074935913, "detail": "GetAllocArrayFromChannel" } },
- { "pid": 1, "tid": 15, "ts": 12830635.7421875, "dur": 378.80000472068787, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37880000472068787, "detail": "GetAllocArrayFromChannel" } },
- { "pid": 1, "tid": 15, "ts": 12831015.625, "dur": 389.89999890327454, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38989999890327454, "detail": "GetAllocArrayFromChannel" } },
- { "pid": 1, "tid": 15, "ts": 12831408.203125, "dur": 678.9000034332275, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6789000034332275, "detail": "GetAllocArrayFromChannel" } },
- { "pid": 1, "tid": 15, "ts": 12832088.8671875, "dur": 678.3000230789185, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6783000230789185, "detail": "GetAllocArrayFromChannel" } },
- { "pid": 1, "tid": 15, "ts": 12832768.5546875, "dur": 718.500018119812, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.718500018119812, "detail": "GetAllocArrayFromChannel" } },
- { "pid": 1, "tid": 15, "ts": 12833489.2578125, "dur": 665.8999919891357, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6658999919891357, "detail": "GetAllocArrayFromChannel" } },
- { "pid": 1, "tid": 15, "ts": 12834155.2734375, "dur": 531.0999751091003, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5310999751091003, "detail": "GetListForChannel" } },
- { "pid": 1, "tid": 15, "ts": 12834688.4765625, "dur": 416.09999537467957, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.41609999537467957, "detail": "GetListForChannel" } },
- { "pid": 1, "tid": 15, "ts": 12835106.4453125, "dur": 976.8999814987183, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9768999814987183, "detail": "GetListForChannel" } },
- { "pid": 1, "tid": 15, "ts": 12836083.984375, "dur": 923.6999750137329, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9236999750137329, "detail": "GetListForChannel" } },
- { "pid": 1, "tid": 15, "ts": 12837009.765625, "dur": 1087.8000259399414, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0878000259399414, "detail": "GetUVsImpl" } },
- { "pid": 1, "tid": 15, "ts": 12838098.6328125, "dur": 1021.8000411987305, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0218000411987305, "detail": "GetUVsImpl" } },
- { "pid": 1, "tid": 15, "ts": 12839122.0703125, "dur": 620.0000047683716, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6200000047683716, "detail": "SetListForChannel" } },
- { "pid": 1, "tid": 15, "ts": 12839744.140625, "dur": 603.2999753952026, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6032999753952026, "detail": "SetListForChannel" } },
- { "pid": 1, "tid": 15, "ts": 12840348.6328125, "dur": 566.3999915122986, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5663999915122986, "detail": "SetListForChannel" } },
- { "pid": 1, "tid": 15, "ts": 12840916.9921875, "dur": 492.5999939441681, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4925999939441681, "detail": "SetListForChannel" } },
- { "pid": 1, "tid": 15, "ts": 12841411.1328125, "dur": 544.7999835014343, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5447999835014343, "detail": "SetListForChannel" } },
- { "pid": 1, "tid": 15, "ts": 12841957.03125, "dur": 537.5000238418579, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5375000238418579, "detail": "SetListForChannel" } },
- { "pid": 1, "tid": 15, "ts": 12842496.09375, "dur": 840.7999873161316, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8407999873161316, "detail": "SetUvsImpl" } },
- { "pid": 1, "tid": 15, "ts": 12843337.890625, "dur": 781.8999886512756, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7818999886512756, "detail": "SetUvsImpl" } },
- { "pid": 1, "tid": 15, "ts": 12844121.09375, "dur": 405.0999879837036, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4050999879837036, "detail": "GetterAdapterFrame" } },
- { "pid": 1, "tid": 15, "ts": 12844823.2421875, "dur": 1455.6000232696533, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.4556000232696533, "detail": "ConvertExistingDataToNativeArray" } },
- { "pid": 1, "tid": 15, "ts": 12846280.2734375, "dur": 453.900009393692, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.453900009393692, "detail": "ConvertExistingDataToNativeArray" } },
- { "pid": 1, "tid": 15, "ts": 12846737.3046875, "dur": 417.80000925064087, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.41780000925064087, "detail": "ConvertExistingDataToNativeArray" } },
- { "pid": 1, "tid": 15, "ts": 12847155.2734375, "dur": 506.5000057220459, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5065000057220459, "detail": "ConvertExistingDataToNativeArray" } },
- { "pid": 1, "tid": 15, "ts": 12847664.0625, "dur": 649.6999859809875, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6496999859809875, "detail": "ConvertExistingDataToNativeArray" } },
- { "pid": 1, "tid": 15, "ts": 12848315.4296875, "dur": 1460.9999656677246, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.4609999656677246, "detail": "EnsureListElemCount" } },
- { "pid": 1, "tid": 15, "ts": 12849778.3203125, "dur": 1028.8000106811523, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0288000106811523, "detail": "EnsureListElemCount" } },
- { "pid": 1, "tid": 15, "ts": 12850808.59375, "dur": 2775.7999897003174, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.7757999897003174, "detail": "ResizeList" } },
- { "pid": 1, "tid": 15, "ts": 12853585.9375, "dur": 1088.1999731063843, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0881999731063843, "detail": "ResizeList" } },
- { "pid": 1, "tid": 15, "ts": 12854675.78125, "dur": 434.3000054359436, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4343000054359436, "detail": "SafeLength" } },
- { "pid": 1, "tid": 15, "ts": 12855111.328125, "dur": 409.50000286102295, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.40950000286102295, "detail": "SafeLength" } },
- { "pid": 1, "tid": 15, "ts": 12855522.4609375, "dur": 441.90001487731934, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.44190001487731934, "detail": "SafeLength" } },
- { "pid": 1, "tid": 15, "ts": 12855965.8203125, "dur": 507.60000944137573, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5076000094413757, "detail": "SafeLength" } },
- { "pid": 1, "tid": 15, "ts": 12856474.609375, "dur": 401.1000096797943, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4011000096797943, "detail": "SafeLength" } },
- { "pid": 1, "tid": 15, "ts": 12856877.9296875, "dur": 775.4999995231628, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7754999995231628, "detail": "Instantiate" } },
- { "pid": 1, "tid": 15, "ts": 12857654.296875, "dur": 437.2999966144562, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4372999966144562, "detail": "Instantiate" } },
- { "pid": 1, "tid": 15, "ts": 12858092.7734375, "dur": 445.6999897956848, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4456999897956848, "detail": "Instantiate" } },
- { "pid": 1, "tid": 15, "ts": 12858540.0390625, "dur": 449.20000433921814, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.44920000433921814, "detail": "Instantiate" } },
- { "pid": 1, "tid": 15, "ts": 12858991.2109375, "dur": 564.9999976158142, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5649999976158142, "detail": "IsPlayableOfType" } },
- { "pid": 1, "tid": 15, "ts": 12859557.6171875, "dur": 492.5000071525574, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4925000071525574, "detail": "IsPlayableOfType" } },
- { "pid": 1, "tid": 15, "ts": 12860051.7578125, "dur": 513.8000249862671, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5138000249862671, "detail": "IsPlayableOfType" } },
- { "pid": 1, "tid": 15, "ts": 12860566.40625, "dur": 465.49999713897705, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.46549999713897705, "detail": "IsPlayableOfType" } },
- { "pid": 1, "tid": 15, "ts": 12861033.203125, "dur": 602.400004863739, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.602400004863739, "detail": "IsPlayableOfType" } },
- { "pid": 1, "tid": 15, "ts": 12861636.71875, "dur": 512.0999813079834, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5120999813079834, "detail": "IsPlayableOfType" } },
- { "pid": 1, "tid": 15, "ts": 12862150.390625, "dur": 510.80000400543213, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5108000040054321, "detail": "IsPlayableOfType" } },
- { "pid": 1, "tid": 15, "ts": 12862662.109375, "dur": 5731.100082397461, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 5.731100082397461, "detail": "IsPlayableOfType" } },
- { "pid": 1, "tid": 15, "ts": 12868394.53125, "dur": 888.5999917984009, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8885999917984009, "detail": "IsPlayableOfType" } },
- { "pid": 1, "tid": 15, "ts": 12869285.15625, "dur": 670.799970626831, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.670799970626831, "detail": "GetBuiltinResource" } },
- { "pid": 1, "tid": 15, "ts": 12869957.03125, "dur": 501.10000371932983, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5011000037193298, "detail": "IsReferenceOrContainsReferences" } },
- { "pid": 1, "tid": 15, "ts": 12870460.9375, "dur": 573.8000273704529, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5738000273704529, "detail": "CreateInstance" } },
- { "pid": 1, "tid": 15, "ts": 12871036.1328125, "dur": 1610.80002784729, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.61080002784729, "detail": "SetClass" } },
- { "pid": 1, "tid": 15, "ts": 12872649.4140625, "dur": 565.4000043869019, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5654000043869019, "detail": "SetStruct" } },
- { "pid": 1, "tid": 15, "ts": 12873215.8203125, "dur": 509.29999351501465, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5092999935150146, "detail": "SetStruct" } },
- { "pid": 1, "tid": 15, "ts": 12873727.5390625, "dur": 1044.0000295639038, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0440000295639038, "detail": "SetStruct" } },
- { "pid": 1, "tid": 15, "ts": 12874773.4375, "dur": 662.1000170707703, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6621000170707703, "detail": "SetStruct" } },
- { "pid": 1, "tid": 15, "ts": 12875437.5, "dur": 601.4999747276306, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6014999747276306, "detail": "SetStruct" } },
- { "pid": 1, "tid": 15, "ts": 12876041.015625, "dur": 556.5999746322632, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5565999746322632, "detail": "SetStruct" } },
- { "pid": 1, "tid": 15, "ts": 12876599.609375, "dur": 821.5000033378601, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8215000033378601, "detail": "SetStruct" } },
- { "pid": 1, "tid": 15, "ts": 12877422.8515625, "dur": 11234.700202941895, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 11.234700202941895, "detail": "SetStruct" } },
- { "pid": 1, "tid": 15, "ts": 12888659.1796875, "dur": 1904.3999910354614, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.9043999910354614, "detail": "FromCancellation" } },
- { "pid": 1, "tid": 15, "ts": 12890565.4296875, "dur": 552.6999831199646, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5526999831199646, "detail": "FromCancellation" } },
- { "pid": 1, "tid": 15, "ts": 12891119.140625, "dur": 531.000018119812, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.531000018119812, "detail": "IfNullAndNullsAreIllegalThenThrow" } },
- { "pid": 1, "tid": 15, "ts": 12891960.9375, "dur": 344.59999203681946, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34459999203681946, "detail": "IfNullAndNullsAreIllegalThenThrow" } },
- { "pid": 1, "tid": 15, "ts": 12893147.4609375, "dur": 362.30000853538513, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36230000853538513, "detail": "IfNullAndNullsAreIllegalThenThrow" } },
- { "pid": 1, "tid": 15, "ts": 12893510.7421875, "dur": 3850.100040435791, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.850100040435791, "detail": "IfNullAndNullsAreIllegalThenThrow" } },
- { "pid": 1, "tid": 15, "ts": 12897363.28125, "dur": 346.19998931884766, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34619998931884766, "detail": "IfNullAndNullsAreIllegalThenThrow" } },
- { "pid": 1, "tid": 15, "ts": 12897709.9609375, "dur": 445.10000944137573, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.44510000944137573, "detail": "IfNullAndNullsAreIllegalThenThrow" } },
- { "pid": 1, "tid": 15, "ts": 12899062.5, "dur": 367.7999973297119, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3677999973297119, "detail": "IfNullAndNullsAreIllegalThenThrow" } },
- { "pid": 1, "tid": 15, "ts": 12899687.5, "dur": 580.2000164985657, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5802000164985657, "detail": "ReadArrayElement" } },
- { "pid": 1, "tid": 15, "ts": 12901182.6171875, "dur": 393.20001006126404, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.39320001006126404, "detail": "ReadArrayElement" } },
- { "pid": 1, "tid": 15, "ts": 12903203.125, "dur": 393.09999346733093, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.39309999346733093, "detail": "WriteArrayElement" } },
- { "pid": 1, "tid": 15, "ts": 12903873.046875, "dur": 386.59998774528503, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38659998774528503, "detail": "WriteArrayElement" } },
- { "pid": 1, "tid": 15, "ts": 12905171.875, "dur": 45579.90264892578, "ph": "X", "name": "GenericMethods1.cpp", "args": { "durationMS": 45.57990264892578, "detail": "" } },
- { "pid": 1, "tid": 15, "ts": 12950780.2734375, "dur": 61479.896545410156, "ph": "X", "name": "Idle", "args": { "durationMS": 61.479896545410156, "detail": "" } },
- { "pid": 1, "tid": 16, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 16, "ts": 3951523.4375, "dur": 32537.799835205078, "ph": "X", "name": "Idle", "args": { "durationMS": 32.53779983520508, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 3995872.55859375, "dur": 6918.799877166748, "ph": "X", "name": "Write Assembly", "args": { "durationMS": 6.918799877166748, "detail": "System.Configuration" } },
- { "pid": 1, "tid": 16, "ts": 4002793.45703125, "dur": 342.99999475479126, "ph": "X", "name": "Write Assembly", "args": { "durationMS": 0.34299999475479126, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 16, "ts": 4004654.78515625, "dur": 516107.11669921875, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 516.1071166992188, "detail": "System.Xml" } },
- { "pid": 1, "tid": 16, "ts": 4007033.69140625, "dur": 513726.74560546875, "ph": "X", "name": "System.Xml_Attr.cpp", "args": { "durationMS": 513.7267456054688, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 4525013.18359375, "dur": 12404.999732971191, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 12.404999732971191, "detail": "System" } },
- { "pid": 1, "tid": 16, "ts": 4525079.1015625, "dur": 12337.599754333496, "ph": "X", "name": "System_Attr.cpp", "args": { "durationMS": 12.337599754333496, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 4537428.7109375, "dur": 20528.099060058594, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 20.528099060058594, "detail": "UnityEngine.InputLegacyModule" } },
- { "pid": 1, "tid": 16, "ts": 4537468.26171875, "dur": 20487.600326538086, "ph": "X", "name": "UnityEngine.InputLegacyModule_Attr.cpp", "args": { "durationMS": 20.487600326538086, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 4557965.8203125, "dur": 31951.2996673584, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 31.9512996673584, "detail": "UnityEngine.TextRenderingModule" } },
- { "pid": 1, "tid": 16, "ts": 4558006.8359375, "dur": 31908.80012512207, "ph": "X", "name": "UnityEngine.TextRenderingModule_Attr.cpp", "args": { "durationMS": 31.90880012512207, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 4589926.26953125, "dur": 103543.39599609375, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 103.54339599609375, "detail": "UnityEngine.PhysicsModule" } },
- { "pid": 1, "tid": 16, "ts": 4589965.8203125, "dur": 103502.60162353516, "ph": "X", "name": "UnityEngine.PhysicsModule_Attr.cpp", "args": { "durationMS": 103.50260162353516, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 4693477.5390625, "dur": 33556.70166015625, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 33.55670166015625, "detail": "UnityEngine.SpriteShapeModule" } },
- { "pid": 1, "tid": 16, "ts": 4693516.6015625, "dur": 33516.197204589844, "ph": "X", "name": "UnityEngine.SpriteShapeModule_Attr.cpp", "args": { "durationMS": 33.516197204589844, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 4727041.015625, "dur": 44262.10021972656, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 44.26210021972656, "detail": "UnityEngine.AudioModule" } },
- { "pid": 1, "tid": 16, "ts": 4727077.1484375, "dur": 44224.80010986328, "ph": "X", "name": "UnityEngine.AudioModule_Attr.cpp", "args": { "durationMS": 44.22480010986328, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 4771312.98828125, "dur": 29317.298889160156, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 29.317298889160156, "detail": "UnityEngine.UnityWebRequestModule" } },
- { "pid": 1, "tid": 16, "ts": 4771458.49609375, "dur": 29168.99871826172, "ph": "X", "name": "UnityEngine.UnityWebRequestModule_Attr.cpp", "args": { "durationMS": 29.16899871826172, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 4809205.078125, "dur": 546.999990940094, "ph": "X", "name": "GenericInstanceTypes", "args": { "durationMS": 0.546999990940094, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 4810097.65625, "dur": 9446.000099182129, "ph": "X", "name": "Write Windows Runtime Factories", "args": { "durationMS": 9.446000099182129, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 4819610.3515625, "dur": 172391.09802246094, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 172.39109802246094, "detail": "Mono.Security.ASN1" } },
- { "pid": 1, "tid": 16, "ts": 4992004.8828125, "dur": 5550.49991607666, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.55049991607666, "detail": "Mono.Security.ASN1Convert" } },
- { "pid": 1, "tid": 16, "ts": 4997556.640625, "dur": 893.0000066757202, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8930000066757202, "detail": "Mono.Security.BitConverterLE" } },
- { "pid": 1, "tid": 16, "ts": 4998451.171875, "dur": 963.100016117096, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.963100016117096, "detail": "Mono.Security.Cryptography.CryptoConvert" } },
- { "pid": 1, "tid": 16, "ts": 4999419.921875, "dur": 54346.50421142578, "ph": "X", "name": "Mono.Security.cpp", "args": { "durationMS": 54.34650421142578, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 5053849.12109375, "dur": 701.3000249862671, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7013000249862671, "detail": "UnityEngine.AssetFileNameExtensionAttribute" } },
- { "pid": 1, "tid": 16, "ts": 5054646.484375, "dur": 672.1000075340271, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6721000075340271, "detail": "UnityEngine.Bindings.FreeFunctionAttribute" } },
- { "pid": 1, "tid": 16, "ts": 5055824.70703125, "dur": 1484.8999977111816, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4848999977111816, "detail": "UnityEngine.NativeClassAttribute" } },
- { "pid": 1, "tid": 16, "ts": 5057311.5234375, "dur": 653.5000205039978, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6535000205039978, "detail": "UnityEngine.Bindings.NativeConditionalAttribute" } },
- { "pid": 1, "tid": 16, "ts": 5057966.30859375, "dur": 1042.2999858856201, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0422999858856201, "detail": "UnityEngine.Bindings.NativeHeaderAttribute" } },
- { "pid": 1, "tid": 16, "ts": 5059011.23046875, "dur": 4871.500015258789, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.871500015258789, "detail": "UnityEngine.Bindings.NativeMethodAttribute" } },
- { "pid": 1, "tid": 16, "ts": 5063885.7421875, "dur": 1030.900001525879, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.030900001525879, "detail": "UnityEngine.Bindings.NativeNameAttribute" } },
- { "pid": 1, "tid": 16, "ts": 5064919.43359375, "dur": 741.599977016449, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.741599977016449, "detail": "UnityEngine.Bindings.NativePropertyAttribute" } },
- { "pid": 1, "tid": 16, "ts": 5065663.57421875, "dur": 377.9999911785126, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3779999911785126, "detail": "UnityEngine.Bindings.NativeThrowsAttribute" } },
- { "pid": 1, "tid": 16, "ts": 5066042.96875, "dur": 3674.799919128418, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.674799919128418, "detail": "UnityEngine.Bindings.NativeTypeAttribute" } },
- { "pid": 1, "tid": 16, "ts": 5069725.09765625, "dur": 556.1000108718872, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5561000108718872, "detail": "UnityEngine.Bindings.NotNullAttribute" } },
- { "pid": 1, "tid": 16, "ts": 5070487.3046875, "dur": 820.2000260353088, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8202000260353088, "detail": "UnityEngine.Scripting.RequiredByNativeCodeAttribute" } },
- { "pid": 1, "tid": 16, "ts": 5071309.5703125, "dur": 934.1999888420105, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9341999888420105, "detail": "UnityEngine.Bindings.StaticAccessorAttribute" } },
- { "pid": 1, "tid": 16, "ts": 5072866.69921875, "dur": 794.9000000953674, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7949000000953674, "detail": "UnityEngine.UnityString" } },
- { "pid": 1, "tid": 16, "ts": 5073861.328125, "dur": 364.80000615119934, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.36480000615119934, "detail": "UnityEngine.Bindings.VisibleToOtherModulesAttribute" } },
- { "pid": 1, "tid": 16, "ts": 5074396.97265625, "dur": 58554.100036621094, "ph": "X", "name": "UnityEngine.SharedInternalsModule.cpp", "args": { "durationMS": 58.554100036621094, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 5133035.15625, "dur": 9368.599891662598, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.368599891662598, "detail": "System.Console" } },
- { "pid": 1, "tid": 16, "ts": 5142405.76171875, "dur": 566.7999982833862, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5667999982833862, "detail": "System.ConsoleCancelEventArgs" } },
- { "pid": 1, "tid": 16, "ts": 5142973.6328125, "dur": 8806.599617004395, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.806599617004395, "detail": "System.ConsoleCancelEventHandler" } },
- { "pid": 1, "tid": 16, "ts": 5151815.91796875, "dur": 3284.39998626709, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.28439998626709, "detail": "System.ConsoleDriver" } },
- { "pid": 1, "tid": 16, "ts": 5155143.5546875, "dur": 87938.40026855469, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 87.93840026855469, "detail": "System.ConsoleKeyInfo" } },
- { "pid": 1, "tid": 16, "ts": 5243188.96484375, "dur": 9611.200332641602, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.611200332641602, "detail": "System.Runtime.Remoting.Messaging.ConstructionCall" } },
- { "pid": 1, "tid": 16, "ts": 5252801.7578125, "dur": 2772.900104522705, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.772900104522705, "detail": "System.Runtime.Remoting.Messaging.ConstructionCallDictionary" } },
- { "pid": 1, "tid": 16, "ts": 5255576.171875, "dur": 557.6000213623047, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5576000213623047, "detail": "System.Runtime.Remoting.Activation.ConstructionLevelActivator" } },
- { "pid": 1, "tid": 16, "ts": 5256134.27734375, "dur": 1083.899974822998, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.083899974822998, "detail": "System.Runtime.Remoting.Messaging.ConstructionResponse" } },
- { "pid": 1, "tid": 16, "ts": 5257220.21484375, "dur": 6647.799968719482, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.647799968719482, "detail": "System.Reflection.Emit.ConstructorBuilder" } },
- { "pid": 1, "tid": 16, "ts": 5263869.62890625, "dur": 2554.3999671936035, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.5543999671936035, "detail": "System.Reflection.ConstructorInfo" } },
- { "pid": 1, "tid": 16, "ts": 5266425.78125, "dur": 99243.69812011719, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 99.24369812011719, "detail": "System.Runtime.Remoting.Contexts.Context" } },
- { "pid": 1, "tid": 16, "ts": 5365854.00390625, "dur": 840.6000137329102, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8406000137329102, "detail": "System.Threading.ContextCallback" } },
- { "pid": 1, "tid": 16, "ts": 5367027.34375, "dur": 1437.1999502182007, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4371999502182007, "detail": "System.Runtime.Remoting.Activation.ContextLevelActivator" } },
- { "pid": 1, "tid": 16, "ts": 5368638.18359375, "dur": 1675.6000518798828, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6756000518798828, "detail": "System.Threading.Tasks.ContinuationTaskFromTask" } },
- { "pid": 1, "tid": 16, "ts": 5370635.25390625, "dur": 1185.1999759674072, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1851999759674072, "detail": "Mono.Globalization.Unicode.ContractionComparer" } },
- { "pid": 1, "tid": 16, "ts": 5371822.265625, "dur": 244542.49572753906, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 244.54249572753906, "detail": "System.Convert" } },
- { "pid": 1, "tid": 16, "ts": 5616366.69921875, "dur": 23041.000366210938, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 23.041000366210938, "detail": "System.Runtime.Serialization.Formatters.Binary.Converter" } },
- { "pid": 1, "tid": 16, "ts": 5639453.61328125, "dur": 507.4999928474426, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5074999928474426, "detail": "System.Runtime.ConstrainedExecution.CriticalFinalizerObject" } },
- { "pid": 1, "tid": 16, "ts": 5639962.40234375, "dur": 41579.90264892578, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 41.57990264892578, "detail": "System.Runtime.Remoting.Channels.CrossAppDomainChannel" } },
- { "pid": 1, "tid": 16, "ts": 5681543.9453125, "dur": 651.199996471405, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.651199996471405, "detail": "System.Runtime.Remoting.Channels.CrossAppDomainData" } },
- { "pid": 1, "tid": 16, "ts": 5682196.77734375, "dur": 6161.6997718811035, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.1616997718811035, "detail": "System.Runtime.Remoting.Channels.CrossAppDomainSink" } },
- { "pid": 1, "tid": 16, "ts": 5688360.3515625, "dur": 3288.1999015808105, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.2881999015808105, "detail": "System.Runtime.Remoting.Contexts.CrossContextChannel" } },
- { "pid": 1, "tid": 16, "ts": 5691650.390625, "dur": 825.6000280380249, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8256000280380249, "detail": "System.Runtime.Remoting.Contexts.CrossContextDelegate" } },
- { "pid": 1, "tid": 16, "ts": 5692477.5390625, "dur": 9153.900146484375, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.153900146484375, "detail": "System.Security.Cryptography.CryptoConfig" } },
- { "pid": 1, "tid": 16, "ts": 5701633.30078125, "dur": 1243.299961090088, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.243299961090088, "detail": "System.Security.Cryptography.CryptographicException" } },
- { "pid": 1, "tid": 16, "ts": 5702878.41796875, "dur": 841.7999744415283, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8417999744415283, "detail": "System.Security.Cryptography.CryptographicUnexpectedOperationException" } },
- { "pid": 1, "tid": 16, "ts": 5703721.6796875, "dur": 2895.1001167297363, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.8951001167297363, "detail": "System.CultureAwareComparer" } },
- { "pid": 1, "tid": 16, "ts": 5706619.140625, "dur": 49388.999938964844, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 49.388999938964844, "detail": "System.Globalization.CultureData" } },
- { "pid": 1, "tid": 16, "ts": 5756012.6953125, "dur": 245966.69006347656, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 245.96669006347656, "detail": "System.Globalization.CultureInfo" } },
- { "pid": 1, "tid": 16, "ts": 6001982.91015625, "dur": 41227.80227661133, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 41.22780227661133, "detail": "System.Globalization.CultureNotFoundException" } },
- { "pid": 1, "tid": 16, "ts": 6043214.84375, "dur": 477.60000824928284, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.47760000824928284, "detail": "System.CurrentSystemTimeZone" } },
- { "pid": 1, "tid": 16, "ts": 6043715.8203125, "dur": 25847.10121154785, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 25.84710121154785, "detail": "System.Reflection.CustomAttributeData" } },
- { "pid": 1, "tid": 16, "ts": 6069590.8203125, "dur": 174483.30688476562, "ph": "X", "name": "mscorlib2.cpp", "args": { "durationMS": 174.48330688476562, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 6244456.0546875, "dur": 1291.9000387191772, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2919000387191772, "detail": "System.Security.Cryptography.HashAlgorithm" } },
- { "pid": 1, "tid": 16, "ts": 6245749.51171875, "dur": 2402.1999835968018, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.4021999835968018, "detail": "System.Collections.HashHelpers" } },
- { "pid": 1, "tid": 16, "ts": 6248153.3203125, "dur": 70202.49938964844, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 70.20249938964844, "detail": "System.Collections.Hashtable" } },
- { "pid": 1, "tid": 16, "ts": 6318385.25390625, "dur": 721.1999893188477, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7211999893188477, "detail": "System.Runtime.Remoting.Messaging.HeaderHandler" } },
- { "pid": 1, "tid": 16, "ts": 6319107.91015625, "dur": 50900.60043334961, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 50.90060043334961, "detail": "System.Globalization.HebrewNumber" } },
- { "pid": 1, "tid": 16, "ts": 6370243.1640625, "dur": 22114.500045776367, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 22.114500045776367, "detail": "System.Globalization.HijriCalendar" } },
- { "pid": 1, "tid": 16, "ts": 6392381.34765625, "dur": 1425.1999855041504, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4251999855041504, "detail": "System.IO.IOException" } },
- { "pid": 1, "tid": 16, "ts": 6393809.08203125, "dur": 1933.0999851226807, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9330999851226807, "detail": "System.Runtime.Serialization.Formatters.Binary.IOUtil" } },
- { "pid": 1, "tid": 16, "ts": 6395743.1640625, "dur": 1926.200032234192, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.926200032234192, "detail": "System.Runtime.Remoting.Identity" } },
- { "pid": 1, "tid": 16, "ts": 6397671.875, "dur": 10108.499526977539, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.108499526977539, "detail": "System.Globalization.IdnMapping" } },
- { "pid": 1, "tid": 16, "ts": 6407782.2265625, "dur": 1466.7999744415283, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4667999744415283, "detail": "System.Runtime.Remoting.Messaging.IllogicalCallContext" } },
- { "pid": 1, "tid": 16, "ts": 6409390.625, "dur": 32332.30209350586, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 32.33230209350586, "detail": "System.IndexOutOfRangeException" } },
- { "pid": 1, "tid": 16, "ts": 6441725.09765625, "dur": 865.7000064849854, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8657000064849854, "detail": "System.InputRecord" } },
- { "pid": 1, "tid": 16, "ts": 6442612.3046875, "dur": 12467.20027923584, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.46720027923584, "detail": "System.Int16" } },
- { "pid": 1, "tid": 16, "ts": 6455095.21484375, "dur": 9460.200309753418, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.460200309753418, "detail": "System.Int32" } },
- { "pid": 1, "tid": 16, "ts": 6464581.0546875, "dur": 7003.200054168701, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.003200054168701, "detail": "System.Int64" } },
- { "pid": 1, "tid": 16, "ts": 6471608.88671875, "dur": 9964.699745178223, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.964699745178223, "detail": "System.IntPtr" } },
- { "pid": 1, "tid": 16, "ts": 6481574.70703125, "dur": 37483.3984375, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 37.4833984375, "detail": "System.Runtime.Serialization.Formatters.Binary.IntSizedArray" } },
- { "pid": 1, "tid": 16, "ts": 6519228.02734375, "dur": 2003.0999183654785, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0030999183654785, "detail": "System.Threading.Interlocked" } },
- { "pid": 1, "tid": 16, "ts": 6521251.46484375, "dur": 819.9999928474426, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8199999928474426, "detail": "System.Globalization.InternalCodePageDataItem" } },
- { "pid": 1, "tid": 16, "ts": 6522072.75390625, "dur": 903.6999940872192, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9036999940872192, "detail": "System.Text.InternalDecoderBestFitFallback" } },
- { "pid": 1, "tid": 16, "ts": 6522977.5390625, "dur": 3068.700075149536, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.068700075149536, "detail": "System.Text.InternalDecoderBestFitFallbackBuffer" } },
- { "pid": 1, "tid": 16, "ts": 6526047.8515625, "dur": 7326.600074768066, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.326600074768066, "detail": "System.Text.InternalEncoderBestFitFallback" } },
- { "pid": 1, "tid": 16, "ts": 6533376.953125, "dur": 5981.599807739258, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.981599807739258, "detail": "System.Text.InternalEncoderBestFitFallbackBuffer" } },
- { "pid": 1, "tid": 16, "ts": 6539360.83984375, "dur": 579.4000029563904, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5794000029563904, "detail": "System.Globalization.InternalEncodingDataItem" } },
- { "pid": 1, "tid": 16, "ts": 6540150.390625, "dur": 1902.1999835968018, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9021999835968018, "detail": "System.Runtime.Remoting.InternalRemotingServices" } },
- { "pid": 1, "tid": 16, "ts": 6542078.61328125, "dur": 1161.5999937057495, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1615999937057495, "detail": "System.Collections.Generic.InternalStringComparer" } },
- { "pid": 1, "tid": 16, "ts": 6543260.7421875, "dur": 742.5000071525574, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7425000071525574, "detail": "System.Threading.InternalThread" } },
- { "pid": 1, "tid": 16, "ts": 6544004.8828125, "dur": 473.3000099658966, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4733000099658966, "detail": "System.Runtime.CompilerServices.InternalsVisibleToAttribute" } },
- { "pid": 1, "tid": 16, "ts": 6544479.00390625, "dur": 2485.80002784729, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.48580002784729, "detail": "System.Collections.Generic.IntrospectiveSortUtilities" } },
- { "pid": 1, "tid": 16, "ts": 6546966.796875, "dur": 2373.699903488159, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.373699903488159, "detail": "System.InvalidCastException" } },
- { "pid": 1, "tid": 16, "ts": 6549342.28515625, "dur": 881.2999725341797, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8812999725341797, "detail": "System.Reflection.InvalidFilterCriteriaException" } },
- { "pid": 1, "tid": 16, "ts": 6550225.09765625, "dur": 1060.0999593734741, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0600999593734741, "detail": "System.InvalidOperationException" } },
- { "pid": 1, "tid": 16, "ts": 6551286.62109375, "dur": 854.7000288963318, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8547000288963318, "detail": "System.InvalidProgramException" } },
- { "pid": 1, "tid": 16, "ts": 6552141.6015625, "dur": 1074.3999481201172, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0743999481201172, "detail": "System.InvalidTimeZoneException" } },
- { "pid": 1, "tid": 16, "ts": 6553399.4140625, "dur": 13707.500457763672, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.707500457763672, "detail": "System.Globalization.JapaneseCalendar" } },
- { "pid": 1, "tid": 16, "ts": 6567136.23046875, "dur": 74626.1978149414, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 74.6261978149414, "detail": "Microsoft.Win32.KeyHandler" } },
- { "pid": 1, "tid": 16, "ts": 6641764.16015625, "dur": 921.7000007629395, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9217000007629395, "detail": "System.Collections.Generic.KeyNotFoundException" } },
- { "pid": 1, "tid": 16, "ts": 6642687.01171875, "dur": 516.4999961853027, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5164999961853027, "detail": "System.Collections.Generic.KeyValuePair" } },
- { "pid": 1, "tid": 16, "ts": 6643402.34375, "dur": 705.299973487854, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.705299973487854, "detail": "System.KnownTerminals" } },
- { "pid": 1, "tid": 16, "ts": 6644109.375, "dur": 129914.48974609375, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 129.91448974609375, "detail": "System.Text.Latin1Encoding" } },
- { "pid": 1, "tid": 16, "ts": 6774052.734375, "dur": 8173.500061035156, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.173500061035156, "detail": "System.Runtime.Remoting.Lifetime.Lease" } },
- { "pid": 1, "tid": 16, "ts": 6782227.05078125, "dur": 4569.900035858154, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.569900035858154, "detail": "System.Runtime.Remoting.Lifetime.LeaseManager" } },
- { "pid": 1, "tid": 16, "ts": 6786799.8046875, "dur": 1410.8999967575073, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4108999967575073, "detail": "System.Runtime.Remoting.Lifetime.LeaseSink" } },
- { "pid": 1, "tid": 16, "ts": 6788475.09765625, "dur": 2365.4000759124756, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.3654000759124756, "detail": "System.Runtime.Remoting.Lifetime.LifetimeServices" } },
- { "pid": 1, "tid": 16, "ts": 6790843.26171875, "dur": 6220.399856567383, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.220399856567383, "detail": "System.Collections.ListDictionaryInternal" } },
- { "pid": 1, "tid": 16, "ts": 6797253.41796875, "dur": 982.4000000953674, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9824000000953674, "detail": "System.Reflection.Emit.LocalBuilder" } },
- { "pid": 1, "tid": 16, "ts": 6798238.28125, "dur": 3708.199977874756, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.708199977874756, "detail": "System.LocalDataStore" } },
- { "pid": 1, "tid": 16, "ts": 6801947.75390625, "dur": 533.5000157356262, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5335000157356262, "detail": "System.LocalDataStoreElement" } },
- { "pid": 1, "tid": 16, "ts": 6802483.3984375, "dur": 543.9000129699707, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5439000129699707, "detail": "System.LocalDataStoreHolder" } },
- { "pid": 1, "tid": 16, "ts": 6803028.80859375, "dur": 50385.101318359375, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 50.385101318359375, "detail": "System.LocalDataStoreMgr" } },
- { "pid": 1, "tid": 16, "ts": 6853416.015625, "dur": 1057.1999549865723, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0571999549865723, "detail": "System.LocalDataStoreSlot" } },
- { "pid": 1, "tid": 16, "ts": 6854474.609375, "dur": 711.6000056266785, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7116000056266785, "detail": "System.Reflection.LocalVariableInfo" } },
- { "pid": 1, "tid": 16, "ts": 6855451.171875, "dur": 912.8000140190125, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9128000140190125, "detail": "System.Threading.LockRecursionException" } },
- { "pid": 1, "tid": 16, "ts": 6856365.72265625, "dur": 85448.30322265625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 85.44830322265625, "detail": "System.Runtime.Remoting.Messaging.LogicalCallContext" } },
- { "pid": 1, "tid": 16, "ts": 6941816.40625, "dur": 9194.600105285645, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.194600105285645, "detail": "System.Runtime.Serialization.LongList" } },
- { "pid": 1, "tid": 16, "ts": 6951013.671875, "dur": 1506.1999559402466, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5061999559402466, "detail": "System.Collections.LowLevelComparer" } },
- { "pid": 1, "tid": 16, "ts": 6952522.4609375, "dur": 722.100019454956, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.722100019454956, "detail": "System.Runtime.Remoting.Messaging.MCMDictionary" } },
- { "pid": 1, "tid": 16, "ts": 6953246.58203125, "dur": 103846.79412841797, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 103.84679412841797, "detail": "Mono.Globalization.Unicode.MSCompatUnicodeTable" } },
- { "pid": 1, "tid": 16, "ts": 7057095.21484375, "dur": 2016.4999961853027, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0164999961853027, "detail": "Mono.Globalization.Unicode.MSCompatUnicodeTableUtil" } },
- { "pid": 1, "tid": 16, "ts": 7059120.1171875, "dur": 194630.9051513672, "ph": "X", "name": "mscorlib6.cpp", "args": { "durationMS": 194.6309051513672, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 7253782.71484375, "dur": 609.7999811172485, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6097999811172485, "detail": "System.ObsoleteAttribute" } },
- { "pid": 1, "tid": 16, "ts": 7254828.61328125, "dur": 10765.299797058105, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.765299797058105, "detail": "System.OperatingSystem" } },
- { "pid": 1, "tid": 16, "ts": 7265596.19140625, "dur": 1662.500023841858, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.662500023841858, "detail": "System.OperationCanceledException" } },
- { "pid": 1, "tid": 16, "ts": 7267394.53125, "dur": 421.2999939918518, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4212999939918518, "detail": "System.Runtime.Serialization.OptionalFieldAttribute" } },
- { "pid": 1, "tid": 16, "ts": 7267816.89453125, "dur": 1886.1000537872314, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8861000537872314, "detail": "System.OrdinalComparer" } },
- { "pid": 1, "tid": 16, "ts": 7269842.28515625, "dur": 851.7000079154968, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8517000079154968, "detail": "System.OutOfMemoryException" } },
- { "pid": 1, "tid": 16, "ts": 7270695.80078125, "dur": 1011.5000009536743, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0115000009536743, "detail": "System.OverflowException" } },
- { "pid": 1, "tid": 16, "ts": 7271914.0625, "dur": 12701.899528503418, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.701899528503418, "detail": "System.Reflection.ParameterInfo" } },
- { "pid": 1, "tid": 16, "ts": 7284618.1640625, "dur": 71186.69891357422, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 71.18669891357422, "detail": "System.Reflection.ParameterModifier" } },
- { "pid": 1, "tid": 16, "ts": 7355807.12890625, "dur": 120317.59643554688, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 120.31759643554688, "detail": "System.ParameterizedStrings" } },
- { "pid": 1, "tid": 16, "ts": 7476127.44140625, "dur": 8932.900428771973, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.932900428771973, "detail": "System.Threading.ParameterizedThreadStart" } },
- { "pid": 1, "tid": 16, "ts": 7485062.5, "dur": 2666.300058364868, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.666300058364868, "detail": "System.ParamsArray" } },
- { "pid": 1, "tid": 16, "ts": 7487762.20703125, "dur": 15629.900932312012, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.629900932312012, "detail": "System.ParseNumbers" } },
- { "pid": 1, "tid": 16, "ts": 7503393.5546875, "dur": 723.5000133514404, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7235000133514404, "detail": "System.Runtime.Serialization.Formatters.Binary.ParseRecord" } },
- { "pid": 1, "tid": 16, "ts": 7504118.65234375, "dur": 116398.60534667969, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 116.39860534667969, "detail": "System.IO.Path" } },
- { "pid": 1, "tid": 16, "ts": 7620519.53125, "dur": 415.89999198913574, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.41589999198913574, "detail": "System.IO.PathInternal" } },
- { "pid": 1, "tid": 16, "ts": 7620936.5234375, "dur": 1141.6000127792358, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1416000127792358, "detail": "System.IO.PathTooLongException" } },
- { "pid": 1, "tid": 16, "ts": 7622080.078125, "dur": 36737.10250854492, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 36.73710250854492, "detail": "System.IO.PinnedBufferMemoryStream" } },
- { "pid": 1, "tid": 16, "ts": 7658819.82421875, "dur": 879.1000247001648, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8791000247001648, "detail": "System.Threading.PlatformHelper" } },
- { "pid": 1, "tid": 16, "ts": 7659721.6796875, "dur": 1057.2999715805054, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0572999715805054, "detail": "System.PlatformNotSupportedException" } },
- { "pid": 1, "tid": 16, "ts": 7660780.76171875, "dur": 9342.20027923584, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.34220027923584, "detail": "System.Reflection.Pointer" } },
- { "pid": 1, "tid": 16, "ts": 7670124.51171875, "dur": 1112.8000020980835, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1128000020980835, "detail": "System.PointerSpec" } },
- { "pid": 1, "tid": 16, "ts": 7671379.39453125, "dur": 3145.6000804901123, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.1456000804901123, "detail": "System.Runtime.Serialization.Formatters.Binary.PrimitiveArray" } },
- { "pid": 1, "tid": 16, "ts": 7674559.08203125, "dur": 2582.70001411438, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.58270001411438, "detail": "System.Reflection.Emit.PropertyBuilder" } },
- { "pid": 1, "tid": 16, "ts": 7677142.578125, "dur": 10261.799812316895, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.261799812316895, "detail": "System.Reflection.PropertyInfo" } },
- { "pid": 1, "tid": 16, "ts": 7687406.25, "dur": 1993.399977684021, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.993399977684021, "detail": "System.Runtime.Remoting.ProviderData" } },
- { "pid": 1, "tid": 16, "ts": 7689401.85546875, "dur": 678.7999868392944, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6787999868392944, "detail": "System.Runtime.Remoting.Proxies.ProxyAttribute" } },
- { "pid": 1, "tid": 16, "ts": 7690275.390625, "dur": 14218.89877319336, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.21889877319336, "detail": "System.Collections.Queue" } },
- { "pid": 1, "tid": 16, "ts": 7704495.60546875, "dur": 1771.399974822998, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.771399974822998, "detail": "System.Threading.QueueUserWorkItemCallback" } },
- { "pid": 1, "tid": 16, "ts": 7706268.5546875, "dur": 2760.999917984009, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.760999917984009, "detail": "System.Security.Cryptography.RNGCryptoServiceProvider" } },
- { "pid": 1, "tid": 16, "ts": 7709031.73828125, "dur": 47969.50149536133, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 47.96950149536133, "detail": "System.Random" } },
- { "pid": 1, "tid": 16, "ts": 7757004.8828125, "dur": 9966.699600219727, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.966699600219727, "detail": "System.Security.Cryptography.RandomNumberGenerator" } },
- { "pid": 1, "tid": 16, "ts": 7766976.07421875, "dur": 886.7999911308289, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8867999911308289, "detail": "System.RankException" } },
- { "pid": 1, "tid": 16, "ts": 7767864.2578125, "dur": 17982.099533081055, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 17.982099533081055, "detail": "System.Runtime.Serialization.Formatters.Binary.ReadObjectInfo" } },
- { "pid": 1, "tid": 16, "ts": 7785848.14453125, "dur": 15767.900466918945, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.767900466918945, "detail": "System.Runtime.Remoting.Proxies.RealProxy" } },
- { "pid": 1, "tid": 16, "ts": 7801617.67578125, "dur": 1247.2000122070312, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2472000122070312, "detail": "System.ReflectionOnlyType" } },
- { "pid": 1, "tid": 16, "ts": 7802866.2109375, "dur": 2239.9001121520996, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.2399001121520996, "detail": "System.Reflection.ReflectionTypeLoadException" } },
- { "pid": 1, "tid": 16, "ts": 7805108.88671875, "dur": 28159.101486206055, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 28.159101486206055, "detail": "System.Globalization.RegionInfo" } },
- { "pid": 1, "tid": 16, "ts": 7833269.04296875, "dur": 4166.6998863220215, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.1666998863220215, "detail": "System.Threading.RegisteredWaitHandle" } },
- { "pid": 1, "tid": 16, "ts": 7837437.01171875, "dur": 546.5999841690063, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5465999841690063, "detail": "Microsoft.Win32.Registry" } },
- { "pid": 1, "tid": 16, "ts": 7838007.32421875, "dur": 10551.300048828125, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.551300048828125, "detail": "Microsoft.Win32.RegistryKey" } },
- { "pid": 1, "tid": 16, "ts": 7848560.05859375, "dur": 951.200008392334, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.951200008392334, "detail": "Microsoft.Win32.RegistryKeyComparer" } },
- { "pid": 1, "tid": 16, "ts": 7849751.953125, "dur": 20796.199798583984, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 20.796199798583984, "detail": "System.Runtime.Remoting.RemotingConfiguration" } },
- { "pid": 1, "tid": 16, "ts": 7870549.31640625, "dur": 914.2000079154968, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9142000079154968, "detail": "System.Runtime.Remoting.RemotingException" } },
- { "pid": 1, "tid": 16, "ts": 7871465.8203125, "dur": 34274.497985839844, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 34.274497985839844, "detail": "System.Runtime.Remoting.Proxies.RemotingProxy" } },
- { "pid": 1, "tid": 16, "ts": 7905741.2109375, "dur": 36223.80065917969, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 36.22380065917969, "detail": "System.Runtime.Remoting.RemotingServices" } },
- { "pid": 1, "tid": 16, "ts": 7941967.28515625, "dur": 18390.80047607422, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.39080047607422, "detail": "System.Runtime.Remoting.Messaging.RemotingSurrogate" } },
- { "pid": 1, "tid": 16, "ts": 7960359.86328125, "dur": 5284.800052642822, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.284800052642822, "detail": "System.Runtime.Remoting.Messaging.RemotingSurrogateSelector" } },
- { "pid": 1, "tid": 16, "ts": 7965646.97265625, "dur": 444.0000057220459, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4440000057220459, "detail": "System.ResolveEventArgs" } },
- { "pid": 1, "tid": 16, "ts": 7966091.796875, "dur": 1056.1000108718872, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0561000108718872, "detail": "System.ResolveEventHandler" } },
- { "pid": 1, "tid": 16, "ts": 7967149.90234375, "dur": 3203.200101852417, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.203200101852417, "detail": "System.Resources.ResourceLocator" } },
- { "pid": 1, "tid": 16, "ts": 7970355.46875, "dur": 5428.599834442139, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.428599834442139, "detail": "System.Resources.ResourceManager" } },
- { "pid": 1, "tid": 16, "ts": 7975785.15625, "dur": 124671.29516601562, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 124.67129516601562, "detail": "System.Resources.ResourceReader" } },
- { "pid": 1, "tid": 16, "ts": 8100464.35546875, "dur": 175753.31115722656, "ph": "X", "name": "mscorlib9.cpp", "args": { "durationMS": 175.75331115722656, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 8276283.203125, "dur": 15999.799728393555, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.999799728393555, "detail": "System.TimeZoneNotFoundException" } },
- { "pid": 1, "tid": 16, "ts": 8292499.0234375, "dur": 444.9999928474426, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4449999928474426, "detail": "System.Threading.TimeoutHelper" } },
- { "pid": 1, "tid": 16, "ts": 8292946.2890625, "dur": 4022.7999687194824, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.022799968719482, "detail": "System.Threading.Timer" } },
- { "pid": 1, "tid": 16, "ts": 8296971.6796875, "dur": 795.4999804496765, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7954999804496765, "detail": "System.Threading.TimerCallback" } },
- { "pid": 1, "tid": 16, "ts": 8298111.328125, "dur": 4087.900161743164, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.087900161743164, "detail": "System.Runtime.Remoting.Services.TrackingServices" } },
- { "pid": 1, "tid": 16, "ts": 8302201.171875, "dur": 4356.299877166748, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.356299877166748, "detail": "System.Runtime.Remoting.Proxies.TransparentProxy" } },
- { "pid": 1, "tid": 16, "ts": 8306559.5703125, "dur": 372.79999256134033, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.37279999256134033, "detail": "System.Tuple" } },
- { "pid": 1, "tid": 16, "ts": 8306933.59375, "dur": 107077.40020751953, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 107.07740020751953, "detail": "System.Type" } },
- { "pid": 1, "tid": 16, "ts": 8414037.109375, "dur": 5546.800136566162, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.546800136566162, "detail": "System.Reflection.Emit.TypeBuilder" } },
- { "pid": 1, "tid": 16, "ts": 8420148.4375, "dur": 5011.099815368652, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.011099815368652, "detail": "System.Runtime.Remoting.TypeEntry" } },
- { "pid": 1, "tid": 16, "ts": 8425161.1328125, "dur": 768.5999870300293, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7685999870300293, "detail": "System.Reflection.TypeFilter" } },
- { "pid": 1, "tid": 16, "ts": 8425949.21875, "dur": 436.599999666214, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.436599999666214, "detail": "System.Runtime.CompilerServices.TypeForwardedFromAttribute" } },
- { "pid": 1, "tid": 16, "ts": 8426775.390625, "dur": 8922.100067138672, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.922100067138672, "detail": "System.Runtime.Remoting.TypeInfo" } },
- { "pid": 1, "tid": 16, "ts": 8435699.21875, "dur": 32066.497802734375, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 32.066497802734375, "detail": "System.Runtime.Serialization.Formatters.Binary.TypeInformation" } },
- { "pid": 1, "tid": 16, "ts": 8467767.578125, "dur": 1849.0999937057495, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8490999937057495, "detail": "System.TypeInitializationException" } },
- { "pid": 1, "tid": 16, "ts": 8469619.140625, "dur": 3868.99995803833, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.86899995803833, "detail": "System.TypeLoadException" } },
- { "pid": 1, "tid": 16, "ts": 8474094.7265625, "dur": 29367.399215698242, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 29.367399215698242, "detail": "System.TypeSpec" } },
- { "pid": 1, "tid": 16, "ts": 8503464.84375, "dur": 9707.799911499023, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.707799911499023, "detail": "System.TypedReference" } },
- { "pid": 1, "tid": 16, "ts": 8513174.8046875, "dur": 37410.80093383789, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 37.41080093383789, "detail": "System.UInt16" } },
- { "pid": 1, "tid": 16, "ts": 8550674.8046875, "dur": 7786.799907684326, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.786799907684326, "detail": "System.UInt32" } },
- { "pid": 1, "tid": 16, "ts": 8558484.375, "dur": 11249.300003051758, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.249300003051758, "detail": "System.UInt64" } },
- { "pid": 1, "tid": 16, "ts": 8569755.859375, "dur": 6024.700164794922, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.024700164794922, "detail": "System.UIntPtr" } },
- { "pid": 1, "tid": 16, "ts": 8575783.203125, "dur": 44163.902282714844, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 44.163902282714844, "detail": "System.Text.UTF32Encoding" } },
- { "pid": 1, "tid": 16, "ts": 8619948.2421875, "dur": 49509.9983215332, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 49.5099983215332, "detail": "System.Text.UTF7Encoding" } },
- { "pid": 1, "tid": 16, "ts": 8669460.9375, "dur": 134104.88891601562, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 134.10488891601562, "detail": "System.Text.UTF8Encoding" } },
- { "pid": 1, "tid": 16, "ts": 8803587.890625, "dur": 14394.000053405762, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.394000053405762, "detail": "System.Globalization.UmAlQuraCalendar" } },
- { "pid": 1, "tid": 16, "ts": 8817984.375, "dur": 22080.49964904785, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 22.08049964904785, "detail": "System.UnSafeCharBuffer" } },
- { "pid": 1, "tid": 16, "ts": 8840066.40625, "dur": 850.1999974250793, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8501999974250793, "detail": "System.UnauthorizedAccessException" } },
- { "pid": 1, "tid": 16, "ts": 8840918.9453125, "dur": 7437.099933624268, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.437099933624268, "detail": "System.IO.UnexceptionalStreamReader" } },
- { "pid": 1, "tid": 16, "ts": 8848363.28125, "dur": 75971.30584716797, "ph": "X", "name": "mscorlib14.cpp", "args": { "durationMS": 75.97130584716797, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 8924577.1484375, "dur": 15951.800346374512, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.951800346374512, "detail": "UnityEngine.Event" } },
- { "pid": 1, "tid": 16, "ts": 8940597.65625, "dur": 15409.799575805664, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.409799575805664, "detail": "UnityEngine.GUI" } },
- { "pid": 1, "tid": 16, "ts": 8956011.71875, "dur": 67075.50048828125, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 67.07550048828125, "detail": "UnityEngine.GUIContent" } },
- { "pid": 1, "tid": 16, "ts": 9023088.8671875, "dur": 1559.399962425232, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.559399962425232, "detail": "UnityEngine.GUILayout" } },
- { "pid": 1, "tid": 16, "ts": 9024650.390625, "dur": 16120.399475097656, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 16.120399475097656, "detail": "UnityEngine.GUILayoutEntry" } },
- { "pid": 1, "tid": 16, "ts": 9040772.4609375, "dur": 85298.29406738281, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 85.29829406738281, "detail": "UnityEngine.GUILayoutGroup" } },
- { "pid": 1, "tid": 16, "ts": 9126072.265625, "dur": 442.69999861717224, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.44269999861717224, "detail": "UnityEngine.GUILayoutOption" } },
- { "pid": 1, "tid": 16, "ts": 9126517.578125, "dur": 59604.6028137207, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 59.6046028137207, "detail": "UnityEngine.GUILayoutUtility" } },
- { "pid": 1, "tid": 16, "ts": 9186123.046875, "dur": 19597.900390625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 19.597900390625, "detail": "UnityEngine.GUIScrollGroup" } },
- { "pid": 1, "tid": 16, "ts": 9205722.65625, "dur": 598.2999801635742, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5982999801635742, "detail": "UnityEngine.GUISettings" } },
- { "pid": 1, "tid": 16, "ts": 9206323.2421875, "dur": 105132.00378417969, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 105.13200378417969, "detail": "UnityEngine.GUISkin" } },
- { "pid": 1, "tid": 16, "ts": 9311456.0546875, "dur": 14949.000358581543, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.949000358581543, "detail": "UnityEngine.GUIStyle" } },
- { "pid": 1, "tid": 16, "ts": 9326406.25, "dur": 4947.199821472168, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.947199821472168, "detail": "UnityEngine.GUIStyleState" } },
- { "pid": 1, "tid": 16, "ts": 9331355.46875, "dur": 1584.4999551773071, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5844999551773071, "detail": "UnityEngine.GUITargetAttribute" } },
- { "pid": 1, "tid": 16, "ts": 9332942.3828125, "dur": 10476.300239562988, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.476300239562988, "detail": "UnityEngine.GUIUtility" } },
- { "pid": 1, "tid": 16, "ts": 9343418.9453125, "dur": 6340.000152587891, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.340000152587891, "detail": "UnityEngine.GUIWordWrapSizer" } },
- { "pid": 1, "tid": 16, "ts": 9350536.1328125, "dur": 1088.9999866485596, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0889999866485596, "detail": "UnityEngine.TextEditor" } },
- { "pid": 1, "tid": 16, "ts": 9351626.953125, "dur": 1993.1999444961548, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9931999444961548, "detail": "UnityEngine.GUI/WindowFunction" } },
- { "pid": 1, "tid": 16, "ts": 9353644.53125, "dur": 21362.899780273438, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 21.362899780273438, "detail": "UnityEngine.GUILayoutUtility/LayoutCache" } },
- { "pid": 1, "tid": 16, "ts": 9375008.7890625, "dur": 31553.699493408203, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 31.553699493408203, "detail": "UnityEngine.GUILayoutUtility/LayoutCacheState" } },
- { "pid": 1, "tid": 16, "ts": 9406564.453125, "dur": 811.8000030517578, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8118000030517578, "detail": "UnityEngine.GUISkin/SkinChangedDelegate" } },
- { "pid": 1, "tid": 16, "ts": 9407406.25, "dur": 111535.20965576172, "ph": "X", "name": "UnityEngine.IMGUIModule.cpp", "args": { "durationMS": 111.53520965576172, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 9519040.0390625, "dur": 875.5000233650208, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8755000233650208, "detail": "UnityEngine.Analytics.AnalyticsSessionInfo" } },
- { "pid": 1, "tid": 16, "ts": 9519958.0078125, "dur": 2720.9999561309814, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.7209999561309814, "detail": "UnityEngine.RemoteConfigSettings" } },
- { "pid": 1, "tid": 16, "ts": 9522703.125, "dur": 1051.200032234192, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.051200032234192, "detail": "UnityEngine.RemoteSettings" } },
- { "pid": 1, "tid": 16, "ts": 9523755.859375, "dur": 963.100016117096, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.963100016117096, "detail": "UnityEngine.Analytics.AnalyticsSessionInfo/IdentityTokenChanged" } },
- { "pid": 1, "tid": 16, "ts": 9524720.703125, "dur": 1069.000005722046, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.069000005722046, "detail": "UnityEngine.Analytics.AnalyticsSessionInfo/SessionStateChanged" } },
- { "pid": 1, "tid": 16, "ts": 9525818.359375, "dur": 624.1999864578247, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6241999864578247, "detail": "UnityEngine.RemoteSettings/UpdatedEventHandler" } },
- { "pid": 1, "tid": 16, "ts": 9526450.1953125, "dur": 9122.099876403809, "ph": "X", "name": "UnityEngine.UnityAnalyticsModule.cpp", "args": { "durationMS": 9.122099876403809, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 9535627.9296875, "dur": 5695.499897003174, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.695499897003174, "detail": "AutoA" } },
- { "pid": 1, "tid": 16, "ts": 9541325.1953125, "dur": 7616.8999671936035, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.6168999671936035, "detail": "CameraMove" } },
- { "pid": 1, "tid": 16, "ts": 9548943.359375, "dur": 6690.199851989746, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.690199851989746, "detail": "CollisionDetector" } },
- { "pid": 1, "tid": 16, "ts": 9555787.109375, "dur": 1507.599949836731, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.507599949836731, "detail": "Goto" } },
- { "pid": 1, "tid": 16, "ts": 9557295.8984375, "dur": 2652.2998809814453, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.6522998809814453, "detail": "Menu_Buttons" } },
- { "pid": 1, "tid": 16, "ts": 9559949.21875, "dur": 38966.70150756836, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 38.96670150756836, "detail": "MeshCreatorData" } },
- { "pid": 1, "tid": 16, "ts": 9598918.9453125, "dur": 87480.49926757812, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 87.48049926757812, "detail": "MoveCurtains" } },
- { "pid": 1, "tid": 16, "ts": 9686401.3671875, "dur": 102079.49829101562, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 102.07949829101562, "detail": "MoveDoor" } },
- { "pid": 1, "tid": 16, "ts": 9788481.4453125, "dur": 85863.5025024414, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 85.8635025024414, "detail": "MoveNecklace" } },
- { "pid": 1, "tid": 16, "ts": 9874346.6796875, "dur": 28001.699447631836, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 28.001699447631836, "detail": "MovePay" } },
- { "pid": 1, "tid": 16, "ts": 9902349.609375, "dur": 67107.00225830078, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 67.10700225830078, "detail": "MovePolice" } },
- { "pid": 1, "tid": 16, "ts": 9969458.0078125, "dur": 4208.600044250488, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.208600044250488, "detail": "NewBehaviourScript" } },
- { "pid": 1, "tid": 16, "ts": 9973667.96875, "dur": 944.1999793052673, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9441999793052673, "detail": "ScenesArgs" } },
- { "pid": 1, "tid": 16, "ts": 9974613.28125, "dur": 15492.898941040039, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.492898941040039, "detail": "Wallcollision" } },
- { "pid": 1, "tid": 16, "ts": 9990107.421875, "dur": 2891.4999961853027, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.8914999961853027, "detail": "click" } },
- { "pid": 1, "tid": 16, "ts": 9993000.9765625, "dur": 9199.899673461914, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.199899673461914, "detail": "cube" } },
- { "pid": 1, "tid": 16, "ts": 10002202.1484375, "dur": 2319.6001052856445, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.3196001052856445, "detail": "cubeController" } },
- { "pid": 1, "tid": 16, "ts": 10004524.4140625, "dur": 1494.0999746322632, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4940999746322632, "detail": "dragPicture" } },
- { "pid": 1, "tid": 16, "ts": 10006019.53125, "dur": 54535.9992980957, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 54.5359992980957, "detail": "move" } },
- { "pid": 1, "tid": 16, "ts": 10060555.6640625, "dur": 5090.000152587891, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.090000152587891, "detail": "task" } },
- { "pid": 1, "tid": 16, "ts": 10065648.4375, "dur": 1335.9999656677246, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3359999656677246, "detail": "testMove" } },
- { "pid": 1, "tid": 16, "ts": 10066985.3515625, "dur": 7334.000110626221, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.334000110626221, "detail": "testMove/<OnMouseDown>d__7" } },
- { "pid": 1, "tid": 16, "ts": 10074341.796875, "dur": 83318.09997558594, "ph": "X", "name": "Assembly-CSharp.cpp", "args": { "durationMS": 83.31809997558594, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 10157689.453125, "dur": 27375.200271606445, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 27.375200271606445, "detail": "UnityEngine.UI.GraphicRaycaster" } },
- { "pid": 1, "tid": 16, "ts": 10185067.3828125, "dur": 42807.899475097656, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 42.807899475097656, "detail": "UnityEngine.UI.GraphicRegistry" } },
- { "pid": 1, "tid": 16, "ts": 10227877.9296875, "dur": 21498.199462890625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 21.498199462890625, "detail": "UnityEngine.UI.GridLayoutGroup" } },
- { "pid": 1, "tid": 16, "ts": 10249377.9296875, "dur": 1309.9000453948975, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3099000453948975, "detail": "UnityEngine.UI.HorizontalLayoutGroup" } },
- { "pid": 1, "tid": 16, "ts": 10250689.453125, "dur": 37695.899963378906, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 37.695899963378906, "detail": "UnityEngine.UI.HorizontalOrVerticalLayoutGroup" } },
- { "pid": 1, "tid": 16, "ts": 10288386.71875, "dur": 199790.19165039062, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 199.79019165039062, "detail": "UnityEngine.UI.Image" } },
- { "pid": 1, "tid": 16, "ts": 10488178.7109375, "dur": 294389.404296875, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 294.389404296875, "detail": "UnityEngine.UI.InputField" } },
- { "pid": 1, "tid": 16, "ts": 10782576.171875, "dur": 137372.10083007812, "ph": "X", "name": "UnityEngine.UI1.cpp", "args": { "durationMS": 137.37210083007812, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 10920029.296875, "dur": 12824.700355529785, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 12.824700355529785, "detail": "System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 10932857.421875, "dur": 744.4999814033508, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7444999814033508, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>" } },
- { "pid": 1, "tid": 16, "ts": 10933608.3984375, "dur": 770.799994468689, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.770799994468689, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 10934382.8125, "dur": 796.2999939918518, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7962999939918518, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 10935180.6640625, "dur": 795.0999736785889, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7950999736785889, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>" } },
- { "pid": 1, "tid": 16, "ts": 10935978.515625, "dur": 1306.1000108718872, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3061000108718872, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>" } },
- { "pid": 1, "tid": 16, "ts": 10937287.109375, "dur": 1338.7999534606934, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3387999534606934, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 10938628.90625, "dur": 1491.7999505996704, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4917999505996704, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 10940124.0234375, "dur": 1348.5000133514404, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3485000133514404, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>" } },
- { "pid": 1, "tid": 16, "ts": 10941475.5859375, "dur": 955.2000164985657, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9552000164985657, "detail": "System.Converter`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 10942433.59375, "dur": 911.300003528595, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.911300003528595, "detail": "System.Runtime.CompilerServices.ConditionalWeakTable`2/CreateValueCallback<System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 10943346.6796875, "dur": 4542.300224304199, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.542300224304199, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 10947892.578125, "dur": 1661.3999605178833, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6613999605178833, "detail": "System.Collections.Generic.DictionaryKeyCollectionDebugView`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 10949559.5703125, "dur": 913.5000109672546, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9135000109672546, "detail": "System.Collections.Generic.DictionaryValueCollectionDebugView`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 10950476.5625, "dur": 63625.701904296875, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 63.625701904296875, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11014105.46875, "dur": 75921.50115966797, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 75.92150115966797, "detail": "System.Collections.Generic.Dictionary`2<System.Object,System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 11090030.2734375, "dur": 75564.99481201172, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 75.56499481201172, "detail": "System.Collections.Generic.Dictionary`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11165604.4921875, "dur": 58072.39532470703, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 58.07239532470703, "detail": "System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 16, "ts": 11224911.1328125, "dur": 1583.1999778747559, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5831999778747559, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>" } },
- { "pid": 1, "tid": 16, "ts": 11226498.046875, "dur": 2767.6000595092773, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.7676000595092773, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>" } },
- { "pid": 1, "tid": 16, "ts": 11229407.2265625, "dur": 1546.4999675750732, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5464999675750732, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>" } },
- { "pid": 1, "tid": 16, "ts": 11230960.9375, "dur": 2019.399881362915, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.019399881362915, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>" } },
- { "pid": 1, "tid": 16, "ts": 11233016.6015625, "dur": 5620.699882507324, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.620699882507324, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 16, "ts": 11238643.5546875, "dur": 2325.999975204468, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.3259999752044678, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>" } },
- { "pid": 1, "tid": 16, "ts": 11240973.6328125, "dur": 1792.2999858856201, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7922999858856201, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>" } },
- { "pid": 1, "tid": 16, "ts": 11242770.5078125, "dur": 1729.7999858856201, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7297999858856201, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>" } },
- { "pid": 1, "tid": 16, "ts": 11244505.859375, "dur": 1942.6000118255615, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9426000118255615, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>" } },
- { "pid": 1, "tid": 16, "ts": 11246452.1484375, "dur": 1601.099967956543, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.601099967956543, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>" } },
- { "pid": 1, "tid": 16, "ts": 11248056.640625, "dur": 1454.5999765396118, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4545999765396118, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>" } },
- { "pid": 1, "tid": 16, "ts": 11249515.625, "dur": 1365.3000593185425, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3653000593185425, "detail": "System.Array/EmptyInternalEnumerator`1<System.Boolean>" } },
- { "pid": 1, "tid": 16, "ts": 11250884.765625, "dur": 1310.7000589370728, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3107000589370728, "detail": "System.Array/EmptyInternalEnumerator`1<System.Byte>" } },
- { "pid": 1, "tid": 16, "ts": 11252198.2421875, "dur": 1435.2999925613403, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4352999925613403, "detail": "System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>" } },
- { "pid": 1, "tid": 16, "ts": 11253640.625, "dur": 2042.099952697754, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.042099952697754, "detail": "System.Array/EmptyInternalEnumerator`1<System.Char>" } },
- { "pid": 1, "tid": 16, "ts": 11255685.546875, "dur": 1676.3999462127686, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6763999462127686, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 16, "ts": 11257365.234375, "dur": 11931.400299072266, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 11.931400299072266, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>" } },
- { "pid": 1, "tid": 16, "ts": 11269299.8046875, "dur": 1550.1999855041504, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5501999855041504, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>" } },
- { "pid": 1, "tid": 16, "ts": 11270856.4453125, "dur": 1429.2000532150269, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4292000532150269, "detail": "System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>" } },
- { "pid": 1, "tid": 16, "ts": 11272289.0625, "dur": 1569.100022315979, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.569100022315979, "detail": "System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>" } },
- { "pid": 1, "tid": 16, "ts": 11273860.3515625, "dur": 1358.5000038146973, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3585000038146973, "detail": "System.Array/EmptyInternalEnumerator`1<System.DateTime>" } },
- { "pid": 1, "tid": 16, "ts": 11275222.65625, "dur": 1349.2000102996826, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3492000102996826, "detail": "System.Array/EmptyInternalEnumerator`1<System.Decimal>" } },
- { "pid": 1, "tid": 16, "ts": 11276575.1953125, "dur": 2529.599905014038, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.529599905014038, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>" } },
- { "pid": 1, "tid": 16, "ts": 11279115.234375, "dur": 3569.9000358581543, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.5699000358581543, "detail": "System.Array/EmptyInternalEnumerator`1<System.Double>" } },
- { "pid": 1, "tid": 16, "ts": 11282688.4765625, "dur": 9517.499923706055, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 9.517499923706055, "detail": "System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>" } },
- { "pid": 1, "tid": 16, "ts": 11292208.984375, "dur": 2350.399971008301, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.350399971008301, "detail": "System.Array/EmptyInternalEnumerator`1<System.Int16>" } },
- { "pid": 1, "tid": 16, "ts": 11294562.5, "dur": 1800.0999689102173, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8000999689102173, "detail": "System.Array/EmptyInternalEnumerator`1<System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 11296366.2109375, "dur": 1782.099962234497, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.782099962234497, "detail": "System.Array/EmptyInternalEnumerator`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 16, "ts": 11298150.390625, "dur": 1541.700005531311, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.541700005531311, "detail": "System.Array/EmptyInternalEnumerator`1<System.Int64>" } },
- { "pid": 1, "tid": 16, "ts": 11299699.21875, "dur": 1381.8999528884888, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3818999528884888, "detail": "System.Array/EmptyInternalEnumerator`1<System.IntPtr>" } },
- { "pid": 1, "tid": 16, "ts": 11301083.984375, "dur": 1559.7000122070312, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5597000122070312, "detail": "System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>" } },
- { "pid": 1, "tid": 16, "ts": 11302647.4609375, "dur": 1898.1000185012817, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8981000185012817, "detail": "System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>" } },
- { "pid": 1, "tid": 16, "ts": 11304549.8046875, "dur": 1480.1000356674194, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4801000356674194, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>" } },
- { "pid": 1, "tid": 16, "ts": 11306034.1796875, "dur": 1534.600019454956, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.534600019454956, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>" } },
- { "pid": 1, "tid": 16, "ts": 11307571.2890625, "dur": 2191.200017929077, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.191200017929077, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>" } },
- { "pid": 1, "tid": 16, "ts": 11309767.578125, "dur": 5152.200222015381, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.152200222015381, "detail": "System.Array/EmptyInternalEnumerator`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11314926.7578125, "dur": 1678.7999868392944, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6787999868392944, "detail": "System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>" } },
- { "pid": 1, "tid": 16, "ts": 11316612.3046875, "dur": 36499.000549316406, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 36.499000549316406, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>" } },
- { "pid": 1, "tid": 16, "ts": 11353113.28125, "dur": 6629.600048065186, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.6296000480651855, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>" } },
- { "pid": 1, "tid": 16, "ts": 11359747.0703125, "dur": 1940.500020980835, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.940500020980835, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.LowLevel.PlayerLoopSystem>" } },
- { "pid": 1, "tid": 16, "ts": 11361691.40625, "dur": 2068.000078201294, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.068000078201294, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>" } },
- { "pid": 1, "tid": 16, "ts": 11363762.6953125, "dur": 2241.8999671936035, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.2418999671936035, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>" } },
- { "pid": 1, "tid": 16, "ts": 11366010.7421875, "dur": 1780.0999879837036, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7800999879837036, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 16, "ts": 11367793.9453125, "dur": 1415.3000116348267, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4153000116348267, "detail": "System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 16, "ts": 11369211.9140625, "dur": 1992.900013923645, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.992900013923645, "detail": "System.Array/EmptyInternalEnumerator`1<System.SByte>" } },
- { "pid": 1, "tid": 16, "ts": 11371206.0546875, "dur": 1396.9999551773071, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3969999551773071, "detail": "System.Array/EmptyInternalEnumerator`1<System.Single>" } },
- { "pid": 1, "tid": 16, "ts": 11372606.4453125, "dur": 1284.2999696731567, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2842999696731567, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>" } },
- { "pid": 1, "tid": 16, "ts": 11373893.5546875, "dur": 1258.2000494003296, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2582000494003296, "detail": "System.Array/EmptyInternalEnumerator`1<System.TimeSpan>" } },
- { "pid": 1, "tid": 16, "ts": 11375155.2734375, "dur": 1387.7999782562256, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3877999782562256, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 16, "ts": 11376545.8984375, "dur": 2305.9000968933105, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.3059000968933105, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 16, "ts": 11378856.4453125, "dur": 2334.8000049591064, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.3348000049591064, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 16, "ts": 11381194.3359375, "dur": 3712.8000259399414, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.7128000259399414, "detail": "System.Array/EmptyInternalEnumerator`1<System.UInt16>" } },
- { "pid": 1, "tid": 16, "ts": 11384910.15625, "dur": 1330.899953842163, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.330899953842163, "detail": "System.Array/EmptyInternalEnumerator`1<System.UInt32>" } },
- { "pid": 1, "tid": 16, "ts": 11386245.1171875, "dur": 1459.4000577926636, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4594000577926636, "detail": "System.Array/EmptyInternalEnumerator`1<System.UInt64>" } },
- { "pid": 1, "tid": 16, "ts": 11387707.03125, "dur": 1800.6999492645264, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8006999492645264, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>" } },
- { "pid": 1, "tid": 16, "ts": 11389511.71875, "dur": 1325.8999586105347, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3258999586105347, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 16, "ts": 11390839.84375, "dur": 1562.1999502182007, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5621999502182007, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 16, "ts": 11392405.2734375, "dur": 1346.4000225067139, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3464000225067139, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 16, "ts": 11393754.8828125, "dur": 16421.69952392578, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 16.42169952392578, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 16, "ts": 11410177.734375, "dur": 7433.800220489502, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.433800220489502, "detail": "System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>" } },
- { "pid": 1, "tid": 16, "ts": 11417616.2109375, "dur": 1839.400053024292, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.839400053024292, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>" } },
- { "pid": 1, "tid": 16, "ts": 11419461.9140625, "dur": 1496.7000484466553, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4967000484466553, "detail": "System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>" } },
- { "pid": 1, "tid": 16, "ts": 11420962.890625, "dur": 1525.3000259399414, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5253000259399414, "detail": "System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>" } },
- { "pid": 1, "tid": 16, "ts": 11422491.2109375, "dur": 1352.9000282287598, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3529000282287598, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>" } },
- { "pid": 1, "tid": 16, "ts": 11423847.65625, "dur": 1479.4000387191772, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4794000387191772, "detail": "System.Array/EmptyInternalEnumerator`1<System.Globalization.UmAlQuraCalendar/DateMapping>" } },
- { "pid": 1, "tid": 16, "ts": 11425332.03125, "dur": 1349.9000072479248, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3499000072479248, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 16, "ts": 11426711.9140625, "dur": 12807.999610900879, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 12.807999610900879, "detail": "System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 16, "ts": 11439525.390625, "dur": 3710.5000019073486, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.7105000019073486, "detail": "System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 16, "ts": 11443240.234375, "dur": 14283.299446105957, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 14.283299446105957, "detail": "Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>" } },
- { "pid": 1, "tid": 16, "ts": 11457526.3671875, "dur": 2270.20001411438, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.27020001411438, "detail": "Unity.Collections.NativeArray`1/Enumerator<System.Byte>" } },
- { "pid": 1, "tid": 16, "ts": 11459803.7109375, "dur": 6063.700199127197, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.063700199127197, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 16, "ts": 11465870.1171875, "dur": 2863.6999130249023, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.8636999130249023, "detail": "System.Collections.Generic.List`1/Enumerator<System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 11468736.328125, "dur": 2018.899917602539, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.018899917602539, "detail": "Unity.Collections.NativeArray`1/Enumerator<System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 11470760.7421875, "dur": 30619.199752807617, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 30.619199752807617, "detail": "System.Collections.Generic.List`1/Enumerator<System.Int32Enum>" } },
- { "pid": 1, "tid": 16, "ts": 11501384.765625, "dur": 2232.300043106079, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.232300043106079, "detail": "Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>" } },
- { "pid": 1, "tid": 16, "ts": 11503621.09375, "dur": 5289.1998291015625, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.2891998291015625, "detail": "System.Collections.Generic.HashSet`1/Enumerator<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11508915.0390625, "dur": 7451.300144195557, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.451300144195557, "detail": "System.Collections.Generic.LinkedList`1/Enumerator<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11516367.1875, "dur": 3770.1001167297363, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.7701001167297363, "detail": "System.Collections.Generic.List`1/Enumerator<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11520142.578125, "dur": 4945.899963378906, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.945899963378906, "detail": "System.Collections.Generic.Stack`1/Enumerator<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11525092.7734375, "dur": 6297.299861907959, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.297299861907959, "detail": "Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Plane>" } },
- { "pid": 1, "tid": 16, "ts": 11531392.578125, "dur": 27296.300888061523, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 27.296300888061523, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 16, "ts": 11558692.3828125, "dur": 4307.700157165527, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.307700157165527, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 16, "ts": 11563002.9296875, "dur": 4204.800128936768, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.204800128936768, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 16, "ts": 11567211.9140625, "dur": 6509.699821472168, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.509699821472168, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 16, "ts": 11573725.5859375, "dur": 3350.600004196167, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.350600004196167, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 16, "ts": 11577080.078125, "dur": 5390.900135040283, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.390900135040283, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 16, "ts": 11582474.609375, "dur": 3598.900079727173, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.598900079727173, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 16, "ts": 11586076.171875, "dur": 3015.399932861328, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.015399932861328, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 16, "ts": 11589095.703125, "dur": 3111.3998889923096, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.1113998889923096, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 16, "ts": 11592210.9375, "dur": 26094.099044799805, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 26.094099044799805, "detail": "System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11618308.59375, "dur": 3026.0000228881836, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.0260000228881836, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11621337.890625, "dur": 6072.5998878479, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.0725998878479, "detail": "System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 11627414.0625, "dur": 7226.799964904785, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.226799964904785, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 11634645.5078125, "dur": 6738.399982452393, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.738399982452393, "detail": "System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11641414.0625, "dur": 131897.20153808594, "ph": "X", "name": "Generics1.cpp", "args": { "durationMS": 131.89720153808594, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 11773334.9609375, "dur": 3213.7999534606934, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.2137999534606934, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 16, "ts": 11776553.7109375, "dur": 6751.5997886657715, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.7515997886657715, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 16, "ts": 11783307.6171875, "dur": 3736.500024795532, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.7365000247955322, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 16, "ts": 11787046.875, "dur": 5293.099880218506, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.293099880218506, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 16, "ts": 11792342.7734375, "dur": 5548.500061035156, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.548500061035156, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 16, "ts": 11797895.5078125, "dur": 4019.199848175049, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.019199848175049, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 16, "ts": 11801917.96875, "dur": 3284.39998626709, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.28439998626709, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 16, "ts": 11805205.078125, "dur": 3347.5000858306885, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.3475000858306885, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 16, "ts": 11808556.640625, "dur": 28860.498428344727, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 28.860498428344727, "detail": "UnityEngine.UI.ObjectPool`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11837423.828125, "dur": 994.4000244140625, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9944000244140625, "detail": "System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 16, "ts": 11838420.8984375, "dur": 822.700023651123, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.822700023651123, "detail": "System.Predicate`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 16, "ts": 11839245.1171875, "dur": 836.3000154495239, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8363000154495239, "detail": "System.Predicate`1<System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 11840083.984375, "dur": 833.5000276565552, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8335000276565552, "detail": "System.Predicate`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 16, "ts": 11840919.921875, "dur": 834.9000215530396, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8349000215530396, "detail": "System.Predicate`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11841756.8359375, "dur": 1007.6999664306641, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.007699966430664, "detail": "System.Predicate`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 16, "ts": 11842768.5546875, "dur": 859.2000007629395, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8592000007629395, "detail": "System.Predicate`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 16, "ts": 11843630.859375, "dur": 1813.8999938964844, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8138999938964844, "detail": "System.Predicate`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 16, "ts": 11845448.2421875, "dur": 2700.7999420166016, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.7007999420166016, "detail": "System.Predicate`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 16, "ts": 11848153.3203125, "dur": 881.7999958992004, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8817999958992004, "detail": "System.Predicate`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 16, "ts": 11849038.0859375, "dur": 876.2999773025513, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8762999773025513, "detail": "System.Predicate`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 16, "ts": 11849916.9921875, "dur": 857.1000099182129, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8571000099182129, "detail": "System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 16, "ts": 11850780.2734375, "dur": 1194.700002670288, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.194700002670288, "detail": "System.Predicate`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 16, "ts": 11851977.5390625, "dur": 968.9000248908997, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9689000248908997, "detail": "System.Predicate`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 16, "ts": 11852950.1953125, "dur": 20061.00082397461, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 20.06100082397461, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>" } },
- { "pid": 1, "tid": 16, "ts": 11873014.6484375, "dur": 26276.80015563965, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 26.27680015563965, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>" } },
- { "pid": 1, "tid": 16, "ts": 11899294.921875, "dur": 10791.000366210938, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 10.791000366210938, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11910321.2890625, "dur": 5256.999969482422, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.256999969482422, "detail": "System.Threading.Tasks.Shared`1<System.Threading.CancellationTokenRegistration>" } },
- { "pid": 1, "tid": 16, "ts": 11915583.0078125, "dur": 1358.3999872207642, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3583999872207642, "detail": "System.Threading.Tasks.Shared`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11917071.2890625, "dur": 3359.499931335449, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.359499931335449, "detail": "System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11920434.5703125, "dur": 925.3000020980835, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9253000020980835, "detail": "System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11921362.3046875, "dur": 2347.899913787842, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.347899913787842, "detail": "System.Threading.SparselyPopulatedArrayFragment`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11923712.890625, "dur": 7811.600208282471, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.811600208282471, "detail": "System.Threading.SparselyPopulatedArray`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11931529.296875, "dur": 1603.0000448226929, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6030000448226929, "detail": "System.Collections.Generic.StackDebugView`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11933135.7421875, "dur": 25092.100143432617, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 25.092100143432617, "detail": "System.Collections.Generic.Stack`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11958231.4453125, "dur": 1083.1999778747559, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0831999778747559, "detail": "System.Reflection.MonoProperty/StaticGetter`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11959317.3828125, "dur": 4258.299827575684, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.258299827575684, "detail": "System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11963589.84375, "dur": 1860.2999448776245, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8602999448776245, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2/Tables<System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11965455.078125, "dur": 1945.9999799728394, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9459999799728394, "detail": "System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>" } },
- { "pid": 1, "tid": 16, "ts": 11967403.3203125, "dur": 1057.1000576019287, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0571000576019287, "detail": "System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 11968462.890625, "dur": 1242.2000169754028, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2422000169754028, "detail": "System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11969708.984375, "dur": 1046.0000038146973, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0460000038146973, "detail": "System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>" } },
- { "pid": 1, "tid": 16, "ts": 11970756.8359375, "dur": 747.2000122070312, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7472000122070312, "detail": "System.Threading.Tasks.TaskFactory`1<System.Boolean>" } },
- { "pid": 1, "tid": 16, "ts": 11971506.8359375, "dur": 739.0000224113464, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7390000224113464, "detail": "System.Threading.Tasks.TaskFactory`1<System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 11972249.0234375, "dur": 1015.4999494552612, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0154999494552612, "detail": "System.Threading.Tasks.TaskFactory`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 11973270.5078125, "dur": 765.999972820282, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.765999972820282, "detail": "System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>" } },
- { "pid": 1, "tid": 16, "ts": 11974039.0625, "dur": 11552.900314331055, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 11.552900314331055, "detail": "System.Threading.Tasks.Task`1<System.Boolean>" } },
- { "pid": 1, "tid": 16, "ts": 11985595.703125, "dur": 7551.599979400635, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.551599979400635, "detail": "System.Threading.Tasks.Task`1<System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 11993150.390625, "dur": 29109.798431396484, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 29.109798431396484, "detail": "System.Threading.Tasks.Task`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12022263.671875, "dur": 14995.200157165527, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 14.995200157165527, "detail": "System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>" } },
- { "pid": 1, "tid": 16, "ts": 12037261.71875, "dur": 5653.900146484375, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.653900146484375, "detail": "System.Tuple`2<System.Object,System.Char>" } },
- { "pid": 1, "tid": 16, "ts": 12042917.96875, "dur": 9766.400337219238, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 9.766400337219238, "detail": "System.Tuple`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12052688.4765625, "dur": 29531.4998626709, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 29.5314998626709, "detail": "System.Tuple`3<System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12082223.6328125, "dur": 863.3000254631042, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8633000254631042, "detail": "System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 12083090.8203125, "dur": 849.7999906539917, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8497999906539917, "detail": "System.Tuple`4<System.Object,System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12083943.359375, "dur": 3446.0999965667725, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.4460999965667725, "detail": "UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>" } },
- { "pid": 1, "tid": 16, "ts": 12087391.6015625, "dur": 2264.8000717163086, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.2648000717163086, "detail": "UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>" } },
- { "pid": 1, "tid": 16, "ts": 12089661.1328125, "dur": 859.3000173568726, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8593000173568726, "detail": "UnityEngine.Events.UnityAction`1<System.Boolean>" } },
- { "pid": 1, "tid": 16, "ts": 12090522.4609375, "dur": 847.4000096321106, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8474000096321106, "detail": "UnityEngine.Events.UnityAction`1<UnityEngine.Color>" } },
- { "pid": 1, "tid": 16, "ts": 12091373.046875, "dur": 771.3000178337097, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7713000178337097, "detail": "UnityEngine.Events.UnityAction`1<System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 12092149.4140625, "dur": 921.4000105857849, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9214000105857849, "detail": "UnityEngine.Events.UnityAction`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12093074.21875, "dur": 817.3999786376953, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8173999786376953, "detail": "UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>" } },
- { "pid": 1, "tid": 16, "ts": 12093893.5546875, "dur": 748.199999332428, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.748199999332428, "detail": "UnityEngine.Events.UnityAction`1<System.Single>" } },
- { "pid": 1, "tid": 16, "ts": 12094645.5078125, "dur": 2663.8998985290527, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.6638998985290527, "detail": "UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>" } },
- { "pid": 1, "tid": 16, "ts": 12097312.5, "dur": 1334.4999551773071, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3344999551773071, "detail": "UnityEngine.Events.UnityAction`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12098649.4140625, "dur": 1075.0999450683594, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0750999450683594, "detail": "UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>" } },
- { "pid": 1, "tid": 16, "ts": 12099727.5390625, "dur": 899.5000123977661, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8995000123977661, "detail": "UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>" } },
- { "pid": 1, "tid": 16, "ts": 12100629.8828125, "dur": 1257.599949836731, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.257599949836731, "detail": "UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12101892.578125, "dur": 1286.1000299453735, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2861000299453735, "detail": "UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12103182.6171875, "dur": 6775.400161743164, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.775400161743164, "detail": "UnityEngine.Events.UnityEvent`1<System.Boolean>" } },
- { "pid": 1, "tid": 16, "ts": 12109961.9140625, "dur": 7134.799957275391, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.134799957275391, "detail": "UnityEngine.Events.UnityEvent`1<UnityEngine.Color>" } },
- { "pid": 1, "tid": 16, "ts": 12117099.609375, "dur": 29267.398834228516, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 29.267398834228516, "detail": "UnityEngine.Events.UnityEvent`1<System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 12146370.1171875, "dur": 6482.100009918213, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.482100009918213, "detail": "UnityEngine.Events.UnityEvent`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12152856.4453125, "dur": 4042.600154876709, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.042600154876709, "detail": "UnityEngine.Events.UnityEvent`1<System.Single>" } },
- { "pid": 1, "tid": 16, "ts": 12156902.34375, "dur": 4159.200191497803, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.159200191497803, "detail": "UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>" } },
- { "pid": 1, "tid": 16, "ts": 12161065.4296875, "dur": 7450.600147247314, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.4506001472473145, "detail": "UnityEngine.Events.UnityEvent`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12168518.5546875, "dur": 2368.299961090088, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.368299961090088, "detail": "UnityEngine.Events.UnityEvent`3<System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12170890.625, "dur": 1983.7000370025635, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9837000370025635, "detail": "UnityEngine.Events.UnityEvent`4<System.Object,System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12172877.9296875, "dur": 10214.900016784668, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 10.214900016784668, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12183095.703125, "dur": 23086.498260498047, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 23.086498260498047, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 12206187.5, "dur": 22193.199157714844, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 22.193199157714844, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12228384.765625, "dur": 14846.899032592773, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 14.846899032592773, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 16, "ts": 12243234.375, "dur": 4972.700119018555, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.972700119018555, "detail": "System.Linq.Enumerable/WhereArrayIterator`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12248211.9140625, "dur": 2779.5000076293945, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.7795000076293945, "detail": "System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12250993.1640625, "dur": 3210.900068283081, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.210900068283081, "detail": "System.Linq.Enumerable/WhereListIterator`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12254210.9375, "dur": 78196.9985961914, "ph": "X", "name": "Generics5.cpp", "args": { "durationMS": 78.1969985961914, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 12333878.90625, "dur": 537.1000170707703, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5371000170707703, "detail": "System.Action`1<UnityEngine.AsyncOperation>" } },
- { "pid": 1, "tid": 16, "ts": 12334776.3671875, "dur": 557.0999979972839, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5570999979972839, "detail": "System.Action`1<UnityEngine.Font>" } },
- { "pid": 1, "tid": 16, "ts": 12336973.6328125, "dur": 676.800012588501, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.676800012588501, "detail": "System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 16, "ts": 12337653.3203125, "dur": 755.9000253677368, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7559000253677368, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 16, "ts": 12338413.0859375, "dur": 461.1000120639801, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4611000120639801, "detail": "System.Collections.Generic.ArraySortHelper`1<System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 12338879.8828125, "dur": 480.89998960494995, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.48089998960494995, "detail": "System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 16, "ts": 12339362.3046875, "dur": 430.2999973297119, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4302999973297119, "detail": "System.Collections.Generic.ArraySortHelper`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12339795.8984375, "dur": 1181.1000108718872, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.1811000108718872, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.RaycastHit>" } },
- { "pid": 1, "tid": 16, "ts": 12340980.46875, "dur": 997.3999857902527, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9973999857902527, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 16, "ts": 12341982.421875, "dur": 739.1999959945679, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7391999959945679, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 16, "ts": 12342723.6328125, "dur": 708.9999914169312, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7089999914169312, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 16, "ts": 12343437.5, "dur": 10588.299751281738, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 10.588299751281738, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 16, "ts": 12354031.25, "dur": 470.49999237060547, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.47049999237060547, "detail": "System.Collections.Generic.ArraySortHelper`1<System.UInt64>" } },
- { "pid": 1, "tid": 16, "ts": 12354503.90625, "dur": 670.0000166893005, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6700000166893005, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 16, "ts": 12355177.734375, "dur": 706.3000202178955, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7063000202178955, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 16, "ts": 12355886.71875, "dur": 2278.8000106811523, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 2.2788000106811523, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 16, "ts": 12358168.9453125, "dur": 1132.200002670288, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.132200002670288, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 16, "ts": 12359304.6875, "dur": 1328.6999464035034, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.3286999464035034, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 16, "ts": 12360637.6953125, "dur": 473.8999903202057, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4738999903202057, "detail": "System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12361115.234375, "dur": 2779.9999713897705, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 2.7799999713897705, "detail": "System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12365708.984375, "dur": 1285.599946975708, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.285599946975708, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 16, "ts": 12367009.765625, "dur": 945.5999732017517, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9455999732017517, "detail": "System.Collections.Generic.Comparer`1<System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 12368123.046875, "dur": 378.1000077724457, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3781000077724457, "detail": "System.Collections.Generic.Comparer`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12369258.7890625, "dur": 355.5999994277954, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3555999994277954, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 16, "ts": 12370184.5703125, "dur": 1272.6999521255493, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.2726999521255493, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 16, "ts": 12373281.25, "dur": 1269.6000337600708, "ph": "X", "name": "Il2CppGenericComDefinitions.cpp", "args": { "durationMS": 1.2696000337600708, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 12374582.03125, "dur": 1305.0999641418457, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.3050999641418457, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache>" } },
- { "pid": 1, "tid": 16, "ts": 12375890.625, "dur": 1416.9000387191772, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.4169000387191772, "detail": "System.Collections.Generic.Dictionary`2<System.Object,System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 12377309.5703125, "dur": 3000.7998943328857, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 3.0007998943328857, "detail": "System.Collections.Generic.Dictionary`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12380319.3359375, "dur": 3860.80002784729, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 3.86080002784729, "detail": "System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 16, "ts": 12384185.546875, "dur": 1665.0999784469604, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.6650999784469604, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>" } },
- { "pid": 1, "tid": 16, "ts": 12385855.46875, "dur": 1539.199948310852, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.539199948310852, "detail": "System.Collections.Generic.Dictionary`2<System.String,UnityEngine.GUIStyle>" } },
- { "pid": 1, "tid": 16, "ts": 12387399.4140625, "dur": 1600.3999710083008, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.6003999710083008, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 12389004.8828125, "dur": 1476.8999814987183, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.4768999814987183, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot>" } },
- { "pid": 1, "tid": 16, "ts": 12390486.328125, "dur": 1970.7000255584717, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.9707000255584717, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12392464.84375, "dur": 9361.300468444824, "ph": "X", "name": "Il2CppGenericComDefinitions3.cpp", "args": { "durationMS": 9.361300468444824, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 12401891.6015625, "dur": 3609.299898147583, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 3.609299898147583, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 16, "ts": 12405504.8828125, "dur": 1743.1000471115112, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.7431000471115112, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceSet>" } },
- { "pid": 1, "tid": 16, "ts": 12407251.953125, "dur": 1761.8000507354736, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.7618000507354736, "detail": "System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>" } },
- { "pid": 1, "tid": 16, "ts": 12409017.578125, "dur": 107315.09399414062, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 107.31509399414062, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.String>" } },
- { "pid": 1, "tid": 16, "ts": 12516337.890625, "dur": 1415.4000282287598, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.4154000282287598, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.UriParser>" } },
- { "pid": 1, "tid": 16, "ts": 12517758.7890625, "dur": 1412.0999574661255, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.4120999574661255, "detail": "System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute>" } },
- { "pid": 1, "tid": 16, "ts": 12519173.828125, "dur": 1411.7000102996826, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.4117000102996826, "detail": "System.Collections.Generic.Dictionary`2<System.Type,System.Runtime.Serialization.Formatters.Binary.TypeInformation>" } },
- { "pid": 1, "tid": 16, "ts": 12520595.703125, "dur": 1792.799949645996, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.792799949645996, "detail": "System.Collections.Generic.Dictionary`2<System.Type,System.MonoCustomAttrs/AttributeInfo>" } },
- { "pid": 1, "tid": 16, "ts": 12522950.1953125, "dur": 1506.3999891281128, "ph": "X", "name": "Il2CppGenericComDefinitions4.cpp", "args": { "durationMS": 1.5063999891281128, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 12525760.7421875, "dur": 620.4000115394592, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6204000115394592, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.ColorBlock>" } },
- { "pid": 1, "tid": 16, "ts": 12526876.953125, "dur": 653.1999707221985, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6531999707221985, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Navigation>" } },
- { "pid": 1, "tid": 16, "ts": 12527853.515625, "dur": 1187.8000497817993, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.1878000497817993, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 16, "ts": 12529048.828125, "dur": 1466.6999578475952, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.4666999578475952, "detail": "System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 16, "ts": 12530756.8359375, "dur": 479.20000553131104, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.47920000553131104, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.SpriteState>" } },
- { "pid": 1, "tid": 16, "ts": 12532050.78125, "dur": 838.2999897003174, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8382999897003174, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 16, "ts": 12533504.8828125, "dur": 1185.1999759674072, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.1851999759674072, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 16, "ts": 12534694.3359375, "dur": 479.6000123023987, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4796000123023987, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 16, "ts": 12535180.6640625, "dur": 577.1999955177307, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5771999955177307, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 16, "ts": 12538319.3359375, "dur": 679.8999905586243, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6798999905586243, "detail": "System.IO.FileSystemEnumerableIterator`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12539002.9296875, "dur": 361.9999885559082, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3619999885559082, "detail": "System.IO.FileSystemEnumerableIterator`1<System.String>" } },
- { "pid": 1, "tid": 16, "ts": 12540418.9453125, "dur": 382.60000944137573, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.38260000944137573, "detail": "System.Func`2<System.Reflection.AssemblyName,System.Reflection.Assembly>" } },
- { "pid": 1, "tid": 16, "ts": 12543447.265625, "dur": 529.1000008583069, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5291000008583069, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.ColorBlock>" } },
- { "pid": 1, "tid": 16, "ts": 12544165.0390625, "dur": 676.4000058174133, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6764000058174133, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.Navigation>" } },
- { "pid": 1, "tid": 16, "ts": 12544846.6796875, "dur": 961.0000252723694, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9610000252723694, "detail": "System.Collections.Generic.GenericEqualityComparer`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12546046.875, "dur": 644.9999809265137, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6449999809265137, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.SpriteState>" } },
- { "pid": 1, "tid": 16, "ts": 12546893.5546875, "dur": 500.8000135421753, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5008000135421753, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 16, "ts": 12547820.3125, "dur": 950.1000046730042, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9501000046730042, "detail": "System.Collections.Generic.HashSet`1<UnityEngine.UI.IClippable>" } },
- { "pid": 1, "tid": 16, "ts": 12548776.3671875, "dur": 1114.6999597549438, "ph": "X", "name": "Il2CppGenericComDefinitions6.cpp", "args": { "durationMS": 1.1146999597549438, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 12550377.9296875, "dur": 75520.10345458984, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 75.52010345458984, "detail": "System.Array/InternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>" } },
- { "pid": 1, "tid": 16, "ts": 12626353.515625, "dur": 347.00000286102295, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.34700000286102295, "detail": "System.Array/InternalEnumerator`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>" } },
- { "pid": 1, "tid": 16, "ts": 12627061.5234375, "dur": 529.3999910354614, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5293999910354614, "detail": "System.Array/InternalEnumerator`1<Unity.IO.LowLevel.Unsafe.FileReadType>" } },
- { "pid": 1, "tid": 16, "ts": 12628030.2734375, "dur": 2493.5998916625977, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 2.4935998916625977, "detail": "System.Array/InternalEnumerator`1<UnityEngine.GUIStyle>" } },
- { "pid": 1, "tid": 16, "ts": 12634033.203125, "dur": 1053.2000064849854, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.0532000064849854, "detail": "System.Array/InternalEnumerator`1<UnityEngine.EventSystems.IPointerExitHandler>" } },
- { "pid": 1, "tid": 16, "ts": 12638384.765625, "dur": 373.6000061035156, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3736000061035156, "detail": "System.Array/InternalEnumerator`1<System.MarshalByRefObject>" } },
- { "pid": 1, "tid": 16, "ts": 12639490.234375, "dur": 341.8000042438507, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3418000042438507, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UI.Navigation>" } },
- { "pid": 1, "tid": 16, "ts": 12643289.0625, "dur": 1004.6999454498291, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.004699945449829, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UI.Selectable>" } },
- { "pid": 1, "tid": 16, "ts": 12645260.7421875, "dur": 1277.400016784668, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.277400016784668, "detail": "System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.TailoringInfo>" } },
- { "pid": 1, "tid": 16, "ts": 12647229.4921875, "dur": 692.799985408783, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.692799985408783, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UI.Toggle>" } },
- { "pid": 1, "tid": 16, "ts": 12648363.28125, "dur": 455.90001344680786, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.45590001344680786, "detail": "System.Array/InternalEnumerator`1<System.Type>" } },
- { "pid": 1, "tid": 16, "ts": 12648821.2890625, "dur": 694.1999793052673, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6941999793052673, "detail": "System.Array/InternalEnumerator`1<System.TypeCode>" } },
- { "pid": 1, "tid": 16, "ts": 12655824.21875, "dur": 1487.1000051498413, "ph": "X", "name": "Il2CppGenericComDefinitions8.cpp", "args": { "durationMS": 1.4871000051498413, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 12660487.3046875, "dur": 1463.5000228881836, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.4635000228881836, "detail": "System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>" } },
- { "pid": 1, "tid": 16, "ts": 12661953.125, "dur": 1367.300033569336, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.367300033569336, "detail": "System.Collections.Generic.LinkedList`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12663324.21875, "dur": 7787.600040435791, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 7.787600040435791, "detail": "System.RuntimeType/ListBuilder`1<System.Reflection.ConstructorInfo>" } },
- { "pid": 1, "tid": 16, "ts": 12673257.8125, "dur": 972.8999733924866, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9728999733924866, "detail": "System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 16, "ts": 12674234.375, "dur": 1909.500002861023, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.909500002861023, "detail": "System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>>" } },
- { "pid": 1, "tid": 16, "ts": 12676145.5078125, "dur": 1529.7000408172607, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.5297000408172607, "detail": "System.Collections.Generic.List`1<System.AggregateException>" } },
- { "pid": 1, "tid": 16, "ts": 12677680.6640625, "dur": 5869.500160217285, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 5.869500160217285, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule>" } },
- { "pid": 1, "tid": 16, "ts": 12683553.7109375, "dur": 882.3000192642212, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8823000192642212, "detail": "System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>" } },
- { "pid": 1, "tid": 16, "ts": 12684440.4296875, "dur": 871.999979019165, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.871999979019165, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster>" } },
- { "pid": 1, "tid": 16, "ts": 12685314.453125, "dur": 883.899986743927, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.883899986743927, "detail": "System.Collections.Generic.List`1<UnityEngine.Canvas>" } },
- { "pid": 1, "tid": 16, "ts": 12686200.1953125, "dur": 964.5000100135803, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9645000100135803, "detail": "System.Collections.Generic.List`1<UnityEngine.CanvasGroup>" } },
- { "pid": 1, "tid": 16, "ts": 12687169.921875, "dur": 15793.500900268555, "ph": "X", "name": "Il2CppGenericComDefinitions9.cpp", "args": { "durationMS": 15.793500900268555, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 12703007.8125, "dur": 1459.6999883651733, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.4596999883651733, "detail": "System.Collections.Generic.List`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 16, "ts": 12704469.7265625, "dur": 873.3000159263611, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8733000159263611, "detail": "System.Collections.Generic.List`1<UnityEngine.Component>" } },
- { "pid": 1, "tid": 16, "ts": 12705345.703125, "dur": 840.9000039100647, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8409000039100647, "detail": "System.Collections.Generic.List`1<Mono.Globalization.Unicode.Contraction>" } },
- { "pid": 1, "tid": 16, "ts": 12706188.4765625, "dur": 922.2999811172485, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9222999811172485, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>" } },
- { "pid": 1, "tid": 16, "ts": 12707112.3046875, "dur": 1315.4000043869019, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.3154000043869019, "detail": "System.Collections.Generic.List`1<System.Exception>" } },
- { "pid": 1, "tid": 16, "ts": 12708430.6640625, "dur": 814.4999742507935, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8144999742507935, "detail": "System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>" } },
- { "pid": 1, "tid": 16, "ts": 12709248.046875, "dur": 958.1999778747559, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9581999778747559, "detail": "System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>" } },
- { "pid": 1, "tid": 16, "ts": 12710208.0078125, "dur": 974.6000170707703, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9746000170707703, "detail": "System.Collections.Generic.List`1<UnityEngine.GameObject>" } },
- { "pid": 1, "tid": 16, "ts": 12711185.546875, "dur": 1023.8000154495239, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.023800015449524, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Graphic>" } },
- { "pid": 1, "tid": 16, "ts": 12712213.8671875, "dur": 1340.399980545044, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.340399980545044, "detail": "System.Collections.Generic.List`1<System.Threading.IAsyncLocal>" } },
- { "pid": 1, "tid": 16, "ts": 12713557.6171875, "dur": 2008.1000328063965, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 2.0081000328063965, "detail": "System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>" } },
- { "pid": 1, "tid": 16, "ts": 12715571.2890625, "dur": 1849.3000268936157, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.8493000268936157, "detail": "System.Collections.Generic.List`1<System.Runtime.Serialization.IDeserializationCallback>" } },
- { "pid": 1, "tid": 16, "ts": 12717426.7578125, "dur": 17747.299194335938, "ph": "X", "name": "Il2CppGenericComDefinitions10.cpp", "args": { "durationMS": 17.747299194335938, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 12735208.0078125, "dur": 885.9999775886536, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8859999775886536, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>" } },
- { "pid": 1, "tid": 16, "ts": 12736095.703125, "dur": 1015.2000188827515, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.0152000188827515, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Image>" } },
- { "pid": 1, "tid": 16, "ts": 12737113.28125, "dur": 1464.300036430359, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.4643000364303589, "detail": "System.Collections.Generic.List`1<System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 12738580.078125, "dur": 1040.5000448226929, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.0405000448226929, "detail": "System.Collections.Generic.List`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 16, "ts": 12739622.0703125, "dur": 1667.099952697754, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.667099952697754, "detail": "System.Collections.Generic.List`1<Mono.Globalization.Unicode.Level2Map>" } },
- { "pid": 1, "tid": 16, "ts": 12741292.96875, "dur": 844.9000120162964, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8449000120162964, "detail": "System.Collections.Generic.List`1<System.LocalDataStore>" } },
- { "pid": 1, "tid": 16, "ts": 12742139.6484375, "dur": 1002.9000043869019, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.0029000043869019, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Mask>" } },
- { "pid": 1, "tid": 16, "ts": 12743148.4375, "dur": 1035.099983215332, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.035099983215332, "detail": "System.Collections.Generic.List`1<System.Reflection.MethodBase>" } },
- { "pid": 1, "tid": 16, "ts": 12744185.546875, "dur": 2401.20005607605, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 2.40120005607605, "detail": "System.Collections.Generic.List`1<System.Reflection.MethodInfo>" } },
- { "pid": 1, "tid": 16, "ts": 12746588.8671875, "dur": 1540.1999950408936, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.5401999950408936, "detail": "System.Collections.Generic.List`1<System.ModifierSpec>" } },
- { "pid": 1, "tid": 16, "ts": 12748133.7890625, "dur": 1476.5000343322754, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.4765000343322754, "detail": "System.Collections.Generic.List`1<System.Reflection.Module>" } },
- { "pid": 1, "tid": 16, "ts": 12749613.28125, "dur": 695.9999799728394, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6959999799728394, "detail": "System.Collections.Generic.List`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12750317.3828125, "dur": 1465.399980545044, "ph": "X", "name": "Il2CppGenericComDefinitions11.cpp", "args": { "durationMS": 1.465399980545044, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 12751839.84375, "dur": 1174.9999523162842, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.1749999523162842, "detail": "System.Collections.Generic.List`1<UnityEngine.Events.PersistentCall>" } },
- { "pid": 1, "tid": 16, "ts": 12753018.5546875, "dur": 1290.7999753952026, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.2907999753952026, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 16, "ts": 12754406.25, "dur": 903.1000137329102, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9031000137329102, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D>" } },
- { "pid": 1, "tid": 16, "ts": 12755310.546875, "dur": 851.8000245094299, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8518000245094299, "detail": "System.Collections.Generic.List`1<UnityEngine.RectTransform>" } },
- { "pid": 1, "tid": 16, "ts": 12756165.0390625, "dur": 882.3000192642212, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8823000192642212, "detail": "System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>" } },
- { "pid": 1, "tid": 16, "ts": 12757049.8046875, "dur": 1102.8000116348267, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.1028000116348267, "detail": "System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>" } },
- { "pid": 1, "tid": 16, "ts": 12758155.2734375, "dur": 964.8000001907349, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9648000001907349, "detail": "System.Collections.Generic.List`1<UnityEngine.Rigidbody2D>" } },
- { "pid": 1, "tid": 16, "ts": 12759124.0234375, "dur": 1109.3000173568726, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.1093000173568726, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Selectable>" } },
- { "pid": 1, "tid": 16, "ts": 12760236.328125, "dur": 1513.200044631958, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.513200044631958, "detail": "System.Collections.Generic.List`1<System.Runtime.Serialization.SerializationFieldInfo>" } },
- { "pid": 1, "tid": 16, "ts": 12761752.9296875, "dur": 3395.1001167297363, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 3.3951001167297363, "detail": "System.Collections.Generic.List`1<UnityEngine.Sprite>" } },
- { "pid": 1, "tid": 16, "ts": 12765153.3203125, "dur": 1639.8999691009521, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.6398999691009521, "detail": "System.Collections.Generic.List`1<System.Diagnostics.StackFrame>" } },
- { "pid": 1, "tid": 16, "ts": 12766794.921875, "dur": 774.6000289916992, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7746000289916992, "detail": "System.Collections.Generic.List`1<System.String>" } },
- { "pid": 1, "tid": 16, "ts": 12767575.1953125, "dur": 1379.6000480651855, "ph": "X", "name": "Il2CppGenericComDefinitions12.cpp", "args": { "durationMS": 1.3796000480651855, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 12768990.234375, "dur": 792.2000288963318, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7922000288963318, "detail": "System.Collections.Generic.List`1<System.Threading.Tasks.Task>" } },
- { "pid": 1, "tid": 16, "ts": 12769784.1796875, "dur": 916.2999987602234, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9162999987602234, "detail": "System.Collections.Generic.List`1<System.TimeZoneInfo>" } },
- { "pid": 1, "tid": 16, "ts": 12770703.125, "dur": 836.0000252723694, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8360000252723694, "detail": "System.Collections.Generic.List`1<System.Threading.Timer>" } },
- { "pid": 1, "tid": 16, "ts": 12771541.9921875, "dur": 1074.6999979019165, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.0746999979019165, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Toggle>" } },
- { "pid": 1, "tid": 16, "ts": 12772623.046875, "dur": 1384.5000267028809, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.3845000267028809, "detail": "System.Collections.Generic.List`1<UnityEngine.Transform>" } },
- { "pid": 1, "tid": 16, "ts": 12774009.765625, "dur": 852.2999882698059, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8522999882698059, "detail": "System.Collections.Generic.List`1<System.Type>" } },
- { "pid": 1, "tid": 16, "ts": 12774864.2578125, "dur": 758.7000131607056, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7587000131607056, "detail": "System.Collections.Generic.List`1<System.TypeIdentifier>" } },
- { "pid": 1, "tid": 16, "ts": 12775625.9765625, "dur": 926.5000224113464, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9265000224113464, "detail": "System.Collections.Generic.List`1<System.TypeSpec>" } },
- { "pid": 1, "tid": 16, "ts": 12776553.7109375, "dur": 6033.500194549561, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 6.0335001945495605, "detail": "System.Collections.Generic.List`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 16, "ts": 12782590.8203125, "dur": 948.8999843597412, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9488999843597412, "detail": "System.Collections.Generic.List`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 16, "ts": 12783541.9921875, "dur": 2516.0999298095703, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 2.5160999298095703, "detail": "System.Collections.Generic.List`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 16, "ts": 12786062.5, "dur": 952.7999758720398, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9527999758720398, "detail": "System.Collections.Generic.List`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 16, "ts": 12787020.5078125, "dur": 68114.29595947266, "ph": "X", "name": "Il2CppGenericComDefinitions13.cpp", "args": { "durationMS": 68.11429595947266, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 12855169.921875, "dur": 1625.499963760376, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.625499963760376, "detail": "System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 16, "ts": 12856879.8828125, "dur": 478.39999198913574, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.47839999198913574, "detail": "Unity.Collections.NativeArray`1<UnityEngine.Rendering.BatchVisibility>" } },
- { "pid": 1, "tid": 16, "ts": 12857958.0078125, "dur": 726.7000079154968, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7267000079154968, "detail": "Unity.Collections.NativeArray`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>" } },
- { "pid": 1, "tid": 16, "ts": 12858688.4765625, "dur": 737.1000051498413, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7371000051498413, "detail": "Unity.Collections.NativeArray`1<UnityEngine.Plane>" } },
- { "pid": 1, "tid": 16, "ts": 12860383.7890625, "dur": 4671.199798583984, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 4.671199798583984, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit>" } },
- { "pid": 1, "tid": 16, "ts": 12865062.5, "dur": 699.1000175476074, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6991000175476074, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 16, "ts": 12865798.828125, "dur": 406.39999508857727, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.40639999508857727, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 16, "ts": 12866871.09375, "dur": 333.40001106262207, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.33340001106262207, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 16, "ts": 12867208.0078125, "dur": 428.20000648498535, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.42820000648498535, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 16, "ts": 12867638.671875, "dur": 681.8000078201294, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6818000078201294, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 16, "ts": 12869401.3671875, "dur": 566.100001335144, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.566100001335144, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>" } },
- { "pid": 1, "tid": 16, "ts": 12870363.28125, "dur": 477.80001163482666, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.47780001163482666, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.Navigation>" } },
- { "pid": 1, "tid": 16, "ts": 12871027.34375, "dur": 476.99999809265137, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.47699999809265137, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 16, "ts": 12871506.8359375, "dur": 940.4000043869019, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9404000043869019, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 16, "ts": 12872648.4375, "dur": 404.70001101493835, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.40470001101493835, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.SpriteState>" } },
- { "pid": 1, "tid": 16, "ts": 12873544.921875, "dur": 1154.0000438690186, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.1540000438690186, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 16, "ts": 12874936.5234375, "dur": 364.80000615119934, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.36480000615119934, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 16, "ts": 12875304.6875, "dur": 1151.900053024292, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.151900053024292, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 16, "ts": 12876460.9375, "dur": 423.99999499320984, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.42399999499320984, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 16, "ts": 12876887.6953125, "dur": 24518.49937438965, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 24.51849937438965, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 16, "ts": 12902161.1328125, "dur": 362.50001192092896, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.36250001192092896, "detail": "UnityEngine.UI.ObjectPool`1<System.Collections.Generic.List`1<UnityEngine.Vector3>>" } },
- { "pid": 1, "tid": 16, "ts": 12903110.3515625, "dur": 355.6999862194061, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.35569998621940613, "detail": "System.Predicate`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 16, "ts": 12904927.734375, "dur": 397.7000117301941, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3977000117301941, "detail": "System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 16, "ts": 12905630.859375, "dur": 992.1000003814697, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9921000003814697, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>" } },
- { "pid": 1, "tid": 16, "ts": 12906626.953125, "dur": 775.6999731063843, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7756999731063843, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>" } },
- { "pid": 1, "tid": 16, "ts": 12907408.203125, "dur": 732.5000166893005, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7325000166893005, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>" } },
- { "pid": 1, "tid": 16, "ts": 12908150.390625, "dur": 617.2999739646912, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6172999739646912, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>" } },
- { "pid": 1, "tid": 16, "ts": 12908770.5078125, "dur": 484.6000075340271, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4846000075340271, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12909259.765625, "dur": 470.6000089645386, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4706000089645386, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.TimeZoneInfo>" } },
- { "pid": 1, "tid": 16, "ts": 12910924.8046875, "dur": 7268.099784851074, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 7.268099784851074, "detail": "System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12919065.4296875, "dur": 1056.8000078201294, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.0568000078201294, "detail": "System.Threading.Tasks.Task`1<System.Boolean>" } },
- { "pid": 1, "tid": 16, "ts": 12920125.9765625, "dur": 661.0000133514404, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6610000133514404, "detail": "System.Threading.Tasks.Task`1<System.Int32>" } },
- { "pid": 1, "tid": 16, "ts": 12920789.0625, "dur": 462.9000127315521, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4629000127315521, "detail": "System.Threading.Tasks.Task`1<System.Object>" } },
- { "pid": 1, "tid": 16, "ts": 12921257.8125, "dur": 468.60000491142273, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.46860000491142273, "detail": "System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>" } },
- { "pid": 1, "tid": 16, "ts": 12921729.4921875, "dur": 379.50000166893005, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.37950000166893005, "detail": "System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>" } },
- { "pid": 1, "tid": 16, "ts": 12922115.234375, "dur": 2141.7999267578125, "ph": "X", "name": "Il2CppGenericComDefinitions15.cpp", "args": { "durationMS": 2.1417999267578125, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 12924281.25, "dur": 88058.89892578125, "ph": "X", "name": "Idle", "args": { "durationMS": 88.05889892578125, "detail": "" } },
- { "pid": 1, "tid": 12, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 12, "ts": 13216140.625, "dur": 31384.199142456055, "ph": "X", "name": "Idle", "args": { "durationMS": 31.384199142456055, "detail": "" } },
- { "pid": 1, "tid": 12, "ts": 13266577.1484375, "dur": 9654.999732971191, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 9.654999732971191, "detail": "mscorlib" } },
- { "pid": 1, "tid": 12, "ts": 13276357.421875, "dur": 2989.0999794006348, "ph": "X", "name": "Idle", "args": { "durationMS": 2.9890999794006348, "detail": "" } },
- { "pid": 1, "tid": 12, "ts": 13280832.03125, "dur": 86515.99884033203, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 86.51599884033203, "detail": "Generic Methods" } },
- { "pid": 1, "tid": 12, "ts": 13369493.1640625, "dur": 50243.099212646484, "ph": "X", "name": "Merge Invokers", "args": { "durationMS": 50.243099212646484, "detail": "" } },
- { "pid": 1, "tid": 12, "ts": 13419749.0234375, "dur": 390530.517578125, "ph": "X", "name": "Idle", "args": { "durationMS": 390.530517578125, "detail": "" } },
- { "pid": 1, "tid": 11, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 11, "ts": 13216262.6953125, "dur": 31236.7000579834, "ph": "X", "name": "Idle", "args": { "durationMS": 31.2367000579834, "detail": "" } },
- { "pid": 1, "tid": 11, "ts": 13272837.890625, "dur": 1795.4000234603882, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 1.7954000234603882, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 11, "ts": 13274641.6015625, "dur": 4711.20023727417, "ph": "X", "name": "Idle", "args": { "durationMS": 4.71120023727417, "detail": "" } },
- { "pid": 1, "tid": 11, "ts": 13280471.6796875, "dur": 60497.29919433594, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 60.49729919433594, "detail": "mscorlib" } },
- { "pid": 1, "tid": 11, "ts": 13341026.3671875, "dur": 469301.20849609375, "ph": "X", "name": "Idle", "args": { "durationMS": 469.30120849609375, "detail": "" } },
- { "pid": 1, "tid": 10, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 10, "ts": 13216438.4765625, "dur": 31061.199188232422, "ph": "X", "name": "Idle", "args": { "durationMS": 31.061199188232422, "detail": "" } },
- { "pid": 1, "tid": 10, "ts": 13266398.4375, "dur": 5462.399959564209, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 5.462399959564209, "detail": "System.Configuration" } },
- { "pid": 1, "tid": 10, "ts": 13271976.5625, "dur": 2088.0000591278076, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 2.0880000591278076, "detail": "System" } },
- { "pid": 1, "tid": 10, "ts": 13274377.9296875, "dur": 535833.0078125, "ph": "X", "name": "All Collect Metadata", "args": { "durationMS": 535.8330078125, "detail": "" } },
- { "pid": 1, "tid": 10, "ts": 13282165.0390625, "dur": 207688.29345703125, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 207.68829345703125, "detail": "mscorlib" } },
- { "pid": 1, "tid": 10, "ts": 13282974.609375, "dur": 31418.701171875, "ph": "X", "name": "UpdateEmptyTokens", "args": { "durationMS": 31.418701171875, "detail": "" } },
- { "pid": 1, "tid": 10, "ts": 13314394.53125, "dur": 29729.402542114258, "ph": "X", "name": "ValidateTokens", "args": { "durationMS": 29.729402542114258, "detail": "" } },
- { "pid": 1, "tid": 10, "ts": 13489855.46875, "dur": 366.49999022483826, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 0.36649999022483826, "detail": "System.Configuration" } },
- { "pid": 1, "tid": 10, "ts": 13490468.75, "dur": 580.9999704360962, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 0.5809999704360962, "detail": "System.Xml" } },
- { "pid": 1, "tid": 10, "ts": 13491052.734375, "dur": 11858.699798583984, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 11.858699798583984, "detail": "System" } },
- { "pid": 1, "tid": 10, "ts": 13491052.734375, "dur": 587.3000025749207, "ph": "X", "name": "UpdateEmptyTokens", "args": { "durationMS": 0.5873000025749207, "detail": "" } },
- { "pid": 1, "tid": 10, "ts": 13491641.6015625, "dur": 940.1000142097473, "ph": "X", "name": "ValidateTokens", "args": { "durationMS": 0.9401000142097473, "detail": "" } },
- { "pid": 1, "tid": 10, "ts": 13502912.109375, "dur": 1249.1999864578247, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 1.2491999864578247, "detail": "System.Core" } },
- { "pid": 1, "tid": 10, "ts": 13504163.0859375, "dur": 816.9000148773193, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 0.8169000148773193, "detail": "UnityEngine.SharedInternalsModule" } },
- { "pid": 1, "tid": 10, "ts": 13504980.46875, "dur": 24728.700637817383, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 24.728700637817383, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 10, "ts": 13504982.421875, "dur": 2276.4999866485596, "ph": "X", "name": "UpdateEmptyTokens", "args": { "durationMS": 2.2764999866485596, "detail": "" } },
- { "pid": 1, "tid": 10, "ts": 13507259.765625, "dur": 2500.6000995635986, "ph": "X", "name": "ValidateTokens", "args": { "durationMS": 2.5006000995635986, "detail": "" } },
- { "pid": 1, "tid": 10, "ts": 13529796.875, "dur": 657.8999757766724, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 0.6578999757766724, "detail": "UnityEngine.InputLegacyModule" } },
- { "pid": 1, "tid": 10, "ts": 13530622.0703125, "dur": 1117.300033569336, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 1.117300033569336, "detail": "UnityEngine.TextRenderingModule" } },
- { "pid": 1, "tid": 10, "ts": 13531742.1875, "dur": 1263.800024986267, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 1.263800024986267, "detail": "UnityEngine.AnimationModule" } },
- { "pid": 1, "tid": 10, "ts": 13533007.8125, "dur": 2539.400100708008, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 2.539400100708008, "detail": "UnityEngine.IMGUIModule" } },
- { "pid": 1, "tid": 10, "ts": 13535550.78125, "dur": 660.0000262260437, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 0.6600000262260437, "detail": "UnityEngine.PhysicsModule" } },
- { "pid": 1, "tid": 10, "ts": 13536326.171875, "dur": 2298.8998889923096, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 2.2988998889923096, "detail": "UnityEngine.UIModule" } },
- { "pid": 1, "tid": 10, "ts": 13538627.9296875, "dur": 676.5000224113464, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 0.6765000224113464, "detail": "UnityEngine.AudioModule" } },
- { "pid": 1, "tid": 10, "ts": 13539307.6171875, "dur": 21994.800567626953, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 21.994800567626953, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 10, "ts": 13539309.5703125, "dur": 1532.7999591827393, "ph": "X", "name": "UpdateEmptyTokens", "args": { "durationMS": 1.5327999591827393, "detail": "" } },
- { "pid": 1, "tid": 10, "ts": 13540841.796875, "dur": 1644.9999809265137, "ph": "X", "name": "ValidateTokens", "args": { "durationMS": 1.6449999809265137, "detail": "" } },
- { "pid": 1, "tid": 10, "ts": 13561305.6640625, "dur": 774.9000191688538, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 0.7749000191688538, "detail": "UnityEngine.UnityAnalyticsModule" } },
- { "pid": 1, "tid": 10, "ts": 13562421.875, "dur": 2271.3000774383545, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 2.2713000774383545, "detail": "Assembly-CSharp" } },
- { "pid": 1, "tid": 10, "ts": 13562421.875, "dur": 443.69998574256897, "ph": "X", "name": "UpdateEmptyTokens", "args": { "durationMS": 0.44369998574256897, "detail": "" } },
- { "pid": 1, "tid": 9, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 9, "ts": 13216571.2890625, "dur": 30928.300857543945, "ph": "X", "name": "Idle", "args": { "durationMS": 30.928300857543945, "detail": "" } },
- { "pid": 1, "tid": 9, "ts": 13268490.234375, "dur": 3645.400047302246, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 3.645400047302246, "detail": "System.Xml" } },
- { "pid": 1, "tid": 9, "ts": 13272147.4609375, "dur": 1886.1000537872314, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 1.8861000537872314, "detail": "System.Core" } },
- { "pid": 1, "tid": 9, "ts": 13274138.671875, "dur": 429.6000003814697, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 0.4296000003814697, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 9, "ts": 13274597.65625, "dur": 4769.100189208984, "ph": "X", "name": "Idle", "args": { "durationMS": 4.769100189208984, "detail": "" } },
- { "pid": 1, "tid": 9, "ts": 13281102.5390625, "dur": 11194.499969482422, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 11.194499969482422, "detail": "System.Configuration" } },
- { "pid": 1, "tid": 9, "ts": 13292917.96875, "dur": 7442.800045013428, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 7.442800045013428, "detail": "System" } },
- { "pid": 1, "tid": 9, "ts": 13300700.1953125, "dur": 7405.600070953369, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 7.405600070953369, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 9, "ts": 13308749.0234375, "dur": 357.40000009536743, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 0.35740000009536743, "detail": "UnityEngine.AnimationModule" } },
- { "pid": 1, "tid": 9, "ts": 13309109.375, "dur": 17204.39910888672, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 17.20439910888672, "detail": "UnityEngine.IMGUIModule" } },
- { "pid": 1, "tid": 9, "ts": 13326321.2890625, "dur": 550.9999990463257, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 0.5509999990463257, "detail": "UnityEngine.PhysicsModule" } },
- { "pid": 1, "tid": 9, "ts": 13326883.7890625, "dur": 909.9000096321106, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 0.9099000096321106, "detail": "UnityEngine.UIModule" } },
- { "pid": 1, "tid": 9, "ts": 13327995.1171875, "dur": 8532.899856567383, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 8.532899856567383, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 9, "ts": 13336729.4921875, "dur": 369.5000112056732, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 0.3695000112056732, "detail": "Assembly-CSharp" } },
- { "pid": 1, "tid": 9, "ts": 13337864.2578125, "dur": 90457.00073242188, "ph": "X", "name": "Collect Method Tables", "args": { "durationMS": 90.45700073242188, "detail": "" } },
- { "pid": 1, "tid": 9, "ts": 13428335.9375, "dur": 381942.5964355469, "ph": "X", "name": "Idle", "args": { "durationMS": 381.9425964355469, "detail": "" } },
- { "pid": 1, "tid": 21, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 21, "ts": 13874825.1953125, "dur": 47756.99996948242, "ph": "X", "name": "Idle", "args": { "durationMS": 47.75699996948242, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 13922636.71875, "dur": 1765.4000520706177, "ph": "X", "name": "Idle", "args": { "durationMS": 1.7654000520706177, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 13942770.5078125, "dur": 248296.49353027344, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 248.29649353027344, "detail": "mscorlib" } },
- { "pid": 1, "tid": 21, "ts": 13953271.484375, "dur": 237793.10607910156, "ph": "X", "name": "mscorlib_CodeGen.c", "args": { "durationMS": 237.79310607910156, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 14192083.0078125, "dur": 434869.4152832031, "ph": "X", "name": "Write Global Code Metadata", "args": { "durationMS": 434.8694152832031, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 14199337.890625, "dur": 19737.50114440918, "ph": "X", "name": "Il2CppReversePInvokeWrapperTable.cpp", "args": { "durationMS": 19.73750114440918, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 14219685.546875, "dur": 79976.9058227539, "ph": "X", "name": "Il2CppGenericMethodPointerTable.cpp", "args": { "durationMS": 79.9769058227539, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 14300197.265625, "dur": 8712.900161743164, "ph": "X", "name": "Il2CppGenericAdjustorThunkTable.cpp", "args": { "durationMS": 8.712900161743164, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 14309469.7265625, "dur": 255637.4969482422, "ph": "X", "name": "Il2CppInvokerTable.cpp", "args": { "durationMS": 255.6374969482422, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 14573053.7109375, "dur": 35011.10076904297, "ph": "X", "name": "Il2CppInteropDataTable.cpp", "args": { "durationMS": 35.01110076904297, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 14619956.0546875, "dur": 6986.999988555908, "ph": "X", "name": "Il2CppCodeRegistration.cpp", "args": { "durationMS": 6.986999988555908, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 14626963.8671875, "dur": 33025.19989013672, "ph": "X", "name": "Idle", "args": { "durationMS": 33.02519989013672, "detail": "" } },
- { "pid": 1, "tid": 22, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 22, "ts": 13874960.9375, "dur": 47620.09811401367, "ph": "X", "name": "Idle", "args": { "durationMS": 47.62009811401367, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 13956474.609375, "dur": 236306.30493164062, "ph": "X", "name": "Write Global Metadata", "args": { "durationMS": 236.30630493164062, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 13958250.9765625, "dur": 234528.90014648438, "ph": "X", "name": "WriteMetadata", "args": { "durationMS": 234.52890014648438, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 13965596.6796875, "dur": 215003.79943847656, "ph": "X", "name": "Il2CppMetadataUsage.c", "args": { "durationMS": 215.00379943847656, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 14180600.5859375, "dur": 7785.200119018555, "ph": "X", "name": "Il2CppGenericInstCollectorComponent", "args": { "durationMS": 7.785200119018555, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 14202465.8203125, "dur": 39244.60220336914, "ph": "X", "name": "Il2CppGenericClassTable.c", "args": { "durationMS": 39.24460220336914, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 14248571.2890625, "dur": 40423.69842529297, "ph": "X", "name": "Il2CppGenericMethodDefinitions.c", "args": { "durationMS": 40.42369842529297, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 14291868.1640625, "dur": 301526.611328125, "ph": "X", "name": "CompilerCalculateFieldValues", "args": { "durationMS": 301.526611328125, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 14291902.34375, "dur": 301487.0910644531, "ph": "X", "name": "Il2CppCCFieldValuesTable.cpp", "args": { "durationMS": 301.4870910644531, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 14426875.9765625, "dur": 149886.29150390625, "ph": "X", "name": "Il2CppCCalculateFieldValues.cpp", "args": { "durationMS": 149.88629150390625, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 14593407.2265625, "dur": 66602.8060913086, "ph": "X", "name": "Idle", "args": { "durationMS": 66.6028060913086, "detail": "" } },
- { "pid": 1, "tid": 23, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 23, "ts": 13875168.9453125, "dur": 47412.39929199219, "ph": "X", "name": "Idle", "args": { "durationMS": 47.41239929199219, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 13922629.8828125, "dur": 1771.8000411987305, "ph": "X", "name": "Idle", "args": { "durationMS": 1.7718000411987305, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 13946826.171875, "dur": 69860.4965209961, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 69.8604965209961, "detail": "Mono.Security" } },
- { "pid": 1, "tid": 23, "ts": 13953263.671875, "dur": 63421.70333862305, "ph": "X", "name": "Mono.Security_CodeGen.c", "args": { "durationMS": 63.42170333862305, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 14016745.1171875, "dur": 9370.599746704102, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 9.370599746704102, "detail": "System" } },
- { "pid": 1, "tid": 23, "ts": 14016780.2734375, "dur": 9331.399917602539, "ph": "X", "name": "System_CodeGen.c", "args": { "durationMS": 9.331399917602539, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 14026123.046875, "dur": 5905.399799346924, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 5.905399799346924, "detail": "UnityEngine.SharedInternalsModule" } },
- { "pid": 1, "tid": 23, "ts": 14026154.296875, "dur": 5872.499942779541, "ph": "X", "name": "UnityEngine.SharedInternalsModule_CodeGen.c", "args": { "durationMS": 5.872499942779541, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 14032037.109375, "dur": 1923.4000444412231, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 1.9234000444412231, "detail": "UnityEngine.GridModule" } },
- { "pid": 1, "tid": 23, "ts": 14032073.2421875, "dur": 1884.7999572753906, "ph": "X", "name": "UnityEngine.GridModule_CodeGen.c", "args": { "durationMS": 1.8847999572753906, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 14033968.75, "dur": 2141.400098800659, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 2.141400098800659, "detail": "UnityEngine.InputLegacyModule" } },
- { "pid": 1, "tid": 23, "ts": 14034004.8828125, "dur": 2104.300022125244, "ph": "X", "name": "UnityEngine.InputLegacyModule_CodeGen.c", "args": { "durationMS": 2.104300022125244, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 14036120.1171875, "dur": 1481.600046157837, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 1.481600046157837, "detail": "UnityEngine.Physics2DModule" } },
- { "pid": 1, "tid": 23, "ts": 14036154.296875, "dur": 1444.700002670288, "ph": "X", "name": "UnityEngine.Physics2DModule_CodeGen.c", "args": { "durationMS": 1.444700002670288, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 14037608.3984375, "dur": 2065.0999546051025, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 2.0650999546051025, "detail": "UnityEngine.TextRenderingModule" } },
- { "pid": 1, "tid": 23, "ts": 14037639.6484375, "dur": 2032.900094985962, "ph": "X", "name": "UnityEngine.TextRenderingModule_CodeGen.c", "args": { "durationMS": 2.032900094985962, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 14039683.59375, "dur": 16753.999710083008, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 16.753999710083008, "detail": "UnityEngine.AnimationModule" } },
- { "pid": 1, "tid": 23, "ts": 14039716.796875, "dur": 16718.399047851562, "ph": "X", "name": "UnityEngine.AnimationModule_CodeGen.c", "args": { "durationMS": 16.718399047851562, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 14056446.2890625, "dur": 4547.599792480469, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 4.547599792480469, "detail": "UnityEngine.IMGUIModule" } },
- { "pid": 1, "tid": 23, "ts": 14056482.421875, "dur": 4508.600234985352, "ph": "X", "name": "UnityEngine.IMGUIModule_CodeGen.c", "args": { "durationMS": 4.508600234985352, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 14061000.9765625, "dur": 3191.9000148773193, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 3.1919000148773193, "detail": "UnityEngine.PhysicsModule" } },
- { "pid": 1, "tid": 23, "ts": 14061039.0625, "dur": 3153.899908065796, "ph": "X", "name": "UnityEngine.PhysicsModule_CodeGen.c", "args": { "durationMS": 3.153899908065796, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 14064204.1015625, "dur": 2552.9000759124756, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 2.5529000759124756, "detail": "UnityEngine.SpriteShapeModule" } },
- { "pid": 1, "tid": 23, "ts": 14064327.1484375, "dur": 2429.30006980896, "ph": "X", "name": "UnityEngine.SpriteShapeModule_CodeGen.c", "args": { "durationMS": 2.42930006980896, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 14066766.6015625, "dur": 1356.600046157837, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 1.356600046157837, "detail": "UnityEngine.TilemapModule" } },
- { "pid": 1, "tid": 23, "ts": 14066799.8046875, "dur": 1320.7000494003296, "ph": "X", "name": "UnityEngine.TilemapModule_CodeGen.c", "args": { "durationMS": 1.3207000494003296, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 14068129.8828125, "dur": 2766.4999961853027, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 2.7664999961853027, "detail": "UnityEngine.UIModule" } },
- { "pid": 1, "tid": 23, "ts": 14068157.2265625, "dur": 2736.2000942230225, "ph": "X", "name": "UnityEngine.UIModule_CodeGen.c", "args": { "durationMS": 2.7362000942230225, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 14070905.2734375, "dur": 27526.201248168945, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 27.526201248168945, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 23, "ts": 14070929.6875, "dur": 27500.699996948242, "ph": "X", "name": "UnityEngine.UI_CodeGen.c", "args": { "durationMS": 27.500699996948242, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 14098445.3125, "dur": 94187.5991821289, "ph": "X", "name": "Idle", "args": { "durationMS": 94.1875991821289, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 14195900.390625, "dur": 130917.69409179688, "ph": "X", "name": "Il2CppGenericMethodTable.c", "args": { "durationMS": 130.91769409179688, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 14329610.3515625, "dur": 297526.79443359375, "ph": "X", "name": "CompilerCalculateTypeValues", "args": { "durationMS": 297.52679443359375, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 14329639.6484375, "dur": 297491.51611328125, "ph": "X", "name": "Il2CppCCTypeValuesTable.cpp", "args": { "durationMS": 297.49151611328125, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 14505622.0703125, "dur": 100352.1957397461, "ph": "X", "name": "Il2CppCCalculateTypeValues.cpp", "args": { "durationMS": 100.3521957397461, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 14655743.1640625, "dur": 4172.599792480469, "ph": "X", "name": "Il2CppMetadataRegistration.c", "args": { "durationMS": 4.172599792480469, "detail": "" } },
- { "pid": 1, "tid": 24, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 24, "ts": 13875359.375, "dur": 47223.30093383789, "ph": "X", "name": "Idle", "args": { "durationMS": 47.22330093383789, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 13922629.8828125, "dur": 1772.5000381469727, "ph": "X", "name": "Idle", "args": { "durationMS": 1.7725000381469727, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 13946822.265625, "dur": 69750.70190429688, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 69.75070190429688, "detail": "System.Configuration" } },
- { "pid": 1, "tid": 24, "ts": 13953263.671875, "dur": 63307.098388671875, "ph": "X", "name": "System.Configuration_CodeGen.c", "args": { "durationMS": 63.307098388671875, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 14016741.2109375, "dur": 4027.9998779296875, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 4.0279998779296875, "detail": "System.Xml" } },
- { "pid": 1, "tid": 24, "ts": 14016780.2734375, "dur": 3985.300064086914, "ph": "X", "name": "System.Xml_CodeGen.c", "args": { "durationMS": 3.985300064086914, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 14020778.3203125, "dur": 5352.799892425537, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 5.352799892425537, "detail": "System.Core" } },
- { "pid": 1, "tid": 24, "ts": 14020824.21875, "dur": 5305.3998947143555, "ph": "X", "name": "System.Core_CodeGen.c", "args": { "durationMS": 5.3053998947143555, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 14026134.765625, "dur": 44029.69741821289, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 44.02969741821289, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 24, "ts": 14026154.296875, "dur": 44008.8005065918, "ph": "X", "name": "UnityEngine.CoreModule_CodeGen.c", "args": { "durationMS": 44.0088005065918, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 14070174.8046875, "dur": 3621.5999126434326, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 3.6215999126434326, "detail": "UnityEngine.AudioModule" } },
- { "pid": 1, "tid": 24, "ts": 14070207.03125, "dur": 3585.2999687194824, "ph": "X", "name": "UnityEngine.AudioModule_CodeGen.c", "args": { "durationMS": 3.5852999687194824, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 14073805.6640625, "dur": 1928.5999536514282, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 1.9285999536514282, "detail": "UnityEngine.UnityAnalyticsModule" } },
- { "pid": 1, "tid": 24, "ts": 14073856.4453125, "dur": 1876.2999773025513, "ph": "X", "name": "UnityEngine.UnityAnalyticsModule_CodeGen.c", "args": { "durationMS": 1.8762999773025513, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 14075745.1171875, "dur": 2038.0001068115234, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 2.0380001068115234, "detail": "UnityEngine.UnityWebRequestModule" } },
- { "pid": 1, "tid": 24, "ts": 14075781.25, "dur": 2000.999927520752, "ph": "X", "name": "UnityEngine.UnityWebRequestModule_CodeGen.c", "args": { "durationMS": 2.000999927520752, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 14077792.96875, "dur": 1207.2999477386475, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 1.2072999477386475, "detail": "UnityEngine" } },
- { "pid": 1, "tid": 24, "ts": 14077831.0546875, "dur": 1167.9999828338623, "ph": "X", "name": "UnityEngine_CodeGen.c", "args": { "durationMS": 1.1679999828338623, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 14079010.7421875, "dur": 3825.2999782562256, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 3.8252999782562256, "detail": "Assembly-CSharp" } },
- { "pid": 1, "tid": 24, "ts": 14079042.96875, "dur": 3789.2000675201416, "ph": "X", "name": "Assembly-CSharp_CodeGen.c", "args": { "durationMS": 3.7892000675201416, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 14082862.3046875, "dur": 109939.5980834961, "ph": "X", "name": "Idle", "args": { "durationMS": 109.9395980834961, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 14197278.3203125, "dur": 46013.59939575195, "ph": "X", "name": "Il2CppGenericInstDefinitions.c", "args": { "durationMS": 46.01359939575195, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 14247711.9140625, "dur": 246975.5859375, "ph": "X", "name": "Il2CppTypeDefinitions.c", "args": { "durationMS": 246.9755859375, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 14494719.7265625, "dur": 165320.09887695312, "ph": "X", "name": "Idle", "args": { "durationMS": 165.32009887695312, "detail": "" } },
- { "pid": 1, "tid": 16, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 16, "ts": 16583619.140625, "dur": 249694.00024414062, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 249.69400024414062, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include" } },
- { "pid": 1, "tid": 16, "ts": 16587673.828125, "dur": 137150.89416503906, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 137.15089416503906, "detail": ".h C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include" } },
- { "pid": 1, "tid": 16, "ts": 16724835.9375, "dur": 108460.89935302734, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 108.46089935302734, "detail": ".inc C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include" } },
- { "pid": 1, "tid": 16, "ts": 16833316.40625, "dur": 340277.40478515625, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 340.27740478515625, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\pch" } },
- { "pid": 1, "tid": 16, "ts": 16833341.796875, "dur": 107389.90020751953, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 107.38990020751953, "detail": ".h C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\pch" } },
- { "pid": 1, "tid": 16, "ts": 16940744.140625, "dur": 232844.00939941406, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 232.84400939941406, "detail": ".inc C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\pch" } },
- { "pid": 1, "tid": 15, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 15, "ts": 16610658.203125, "dur": 132976.10473632812, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 132.97610473632812, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include" } },
- { "pid": 1, "tid": 15, "ts": 16610720.703125, "dur": 72882.3013305664, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 72.8823013305664, "detail": ".h C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include" } },
- { "pid": 1, "tid": 15, "ts": 16683628.90625, "dur": 59995.89920043945, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 59.99589920043945, "detail": ".inc C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include" } },
- { "pid": 1, "tid": 15, "ts": 16743638.671875, "dur": 308603.3935546875, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 308.6033935546875, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\xxHash" } },
- { "pid": 1, "tid": 15, "ts": 16743650.390625, "dur": 156293.60961914062, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 156.29360961914062, "detail": ".h C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\xxHash" } },
- { "pid": 1, "tid": 15, "ts": 16899960.9375, "dur": 152277.19116210938, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 152.27719116210938, "detail": ".inc C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\xxHash" } },
- { "pid": 1, "tid": 9, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 9, "ts": 16619275.390625, "dur": 24550.701141357422, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 24.550701141357422, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Baselib.h" } },
- { "pid": 1, "tid": 9, "ts": 16643832.03125, "dur": 583.899974822998, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.583899974822998, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Alignment.h" } },
- { "pid": 1, "tid": 9, "ts": 16644419.921875, "dur": 1392.899990081787, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.392899990081787, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Atomic.h" } },
- { "pid": 1, "tid": 9, "ts": 16645820.3125, "dur": 2940.700054168701, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.940700054168701, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Atomic_LLSC.h" } },
- { "pid": 1, "tid": 9, "ts": 16648771.484375, "dur": 937.3000264167786, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9373000264167786, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Atomic_Macros.h" } },
- { "pid": 1, "tid": 9, "ts": 16649714.84375, "dur": 1017.6999568939209, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.017699956893921, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Atomic_TypeSafe.h" } },
- { "pid": 1, "tid": 9, "ts": 16650738.28125, "dur": 908.1000089645386, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9081000089645386, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_CappedSemaphore.h" } },
- { "pid": 1, "tid": 9, "ts": 16651650.390625, "dur": 1398.4999656677246, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3984999656677246, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_CountdownTimer.h" } },
- { "pid": 1, "tid": 9, "ts": 16653056.640625, "dur": 605.1999926567078, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6051999926567078, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Debug.h" } },
- { "pid": 1, "tid": 9, "ts": 16653667.96875, "dur": 692.0999884605408, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6920999884605408, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_DynamicLibrary.h" } },
- { "pid": 1, "tid": 9, "ts": 16654365.234375, "dur": 484.8000109195709, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4848000109195709, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_ErrorCode.h" } },
- { "pid": 1, "tid": 9, "ts": 16654853.515625, "dur": 735.1999878883362, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7351999878883362, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_ErrorState.h" } },
- { "pid": 1, "tid": 9, "ts": 16655603.515625, "dur": 719.6999788284302, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7196999788284302, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_EventSemaphore.h" } },
- { "pid": 1, "tid": 9, "ts": 16656332.03125, "dur": 664.3999814987183, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6643999814987183, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_FileIO.h" } },
- { "pid": 1, "tid": 9, "ts": 16657001.953125, "dur": 511.69997453689575, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5116999745368958, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_HighCapacitySemaphore.h" } },
- { "pid": 1, "tid": 9, "ts": 16657515.625, "dur": 607.9999804496765, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6079999804496765, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Lock.h" } },
- { "pid": 1, "tid": 9, "ts": 16658126.953125, "dur": 564.300000667572, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.564300000667572, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_NetworkAddress.h" } },
- { "pid": 1, "tid": 9, "ts": 16658695.3125, "dur": 428.90000343322754, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.42890000343322754, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Process.h" } },
- { "pid": 1, "tid": 9, "ts": 16659130.859375, "dur": 1017.6999568939209, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.017699956893921, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_RegisteredNetwork.h" } },
- { "pid": 1, "tid": 9, "ts": 16660150.390625, "dur": 802.6999831199646, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8026999831199646, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Semaphore.h" } },
- { "pid": 1, "tid": 9, "ts": 16660957.03125, "dur": 2131.5999031066895, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.1315999031066895, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_SourceLocation.h" } },
- { "pid": 1, "tid": 9, "ts": 16663095.703125, "dur": 2556.999921798706, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.556999921798706, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_SystemSemaphore.h" } },
- { "pid": 1, "tid": 9, "ts": 16665658.203125, "dur": 3297.6999282836914, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.2976999282836914, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Thread.h" } },
- { "pid": 1, "tid": 9, "ts": 16668972.65625, "dur": 936.6000294685364, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9366000294685364, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Timer.h" } },
- { "pid": 1, "tid": 9, "ts": 16669914.0625, "dur": 1099.9000072479248, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0999000072479248, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_CappedSemaphore_FutexBased.inl.h" } },
- { "pid": 1, "tid": 9, "ts": 16671017.578125, "dur": 831.9000005722046, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8319000005722046, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_EventSemaphore_FutexBased.inl.h" } },
- { "pid": 1, "tid": 9, "ts": 16671857.421875, "dur": 686.1000061035156, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6861000061035156, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_HighCapacitySemaphore_FutexBased.inl.h" } },
- { "pid": 1, "tid": 9, "ts": 16672548.828125, "dur": 838.9000296592712, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8389000296592712, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_Lock_FutexBased.inl.h" } },
- { "pid": 1, "tid": 9, "ts": 16673394.53125, "dur": 608.2000136375427, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6082000136375427, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_ReentrantLock.inl.h" } },
- { "pid": 1, "tid": 9, "ts": 16674005.859375, "dur": 598.2999801635742, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5982999801635742, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_Semaphore_SemaphoreBased.inl.h" } },
- { "pid": 1, "tid": 9, "ts": 16674605.46875, "dur": 679.8999905586243, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6798999905586243, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Compiler\\Baselib_Atomic_Gcc_Apple_LLVM_Patch.h" } },
- { "pid": 1, "tid": 9, "ts": 16675289.0625, "dur": 800.4000186920166, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8004000186920166, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Compiler\\Baselib_Atomic_LLSC_Gcc.inl.h" } },
- { "pid": 1, "tid": 9, "ts": 16676091.796875, "dur": 529.1000008583069, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5291000008583069, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Compiler\\Baselib_Atomic_MsvcIntrinsics.h" } },
- { "pid": 1, "tid": 9, "ts": 16676625, "dur": 992.5000071525574, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9925000071525574, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Algorithm.h" } },
- { "pid": 1, "tid": 9, "ts": 16677623.046875, "dur": 2632.1001052856445, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.6321001052856445, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Barrier.h" } },
- { "pid": 1, "tid": 9, "ts": 16680259.765625, "dur": 7844.5000648498535, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.8445000648498535, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\CappedSemaphore.h" } },
- { "pid": 1, "tid": 9, "ts": 16688109.375, "dur": 710.2000117301941, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7102000117301941, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\ReentrantLock.h" } },
- { "pid": 1, "tid": 9, "ts": 16688826.171875, "dur": 727.9999852180481, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7279999852180481, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Stopwatch.h" } },
- { "pid": 1, "tid": 9, "ts": 16689560.546875, "dur": 1070.8999633789062, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0708999633789062, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Thread.h" } },
- { "pid": 1, "tid": 9, "ts": 16690634.765625, "dur": 1427.39999294281, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.42739999294281, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Time.h" } },
- { "pid": 1, "tid": 9, "ts": 16692070.3125, "dur": 381.99999928474426, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.38199999928474426, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\mpmc_node.h" } },
- { "pid": 1, "tid": 9, "ts": 16692455.078125, "dur": 677.6000261306763, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6776000261306763, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\mpmc_node_queue.h" } },
- { "pid": 1, "tid": 9, "ts": 16693144.53125, "dur": 1425.6999492645264, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4256999492645264, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\mpmc_node_stack.h" } },
- { "pid": 1, "tid": 9, "ts": 16694574.21875, "dur": 11473.099708557129, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.473099708557129, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\mpsc_node.h" } },
- { "pid": 1, "tid": 9, "ts": 16706050.78125, "dur": 686.2999796867371, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6862999796867371, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\mpsc_node_stack.h" } },
- { "pid": 1, "tid": 9, "ts": 16706765.625, "dur": 643.2999968528748, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6432999968528748, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\Assert.h" } },
- { "pid": 1, "tid": 9, "ts": 16707416.015625, "dur": 528.9000272750854, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5289000272750854, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\Compiler\\CompilerEnvironmentClang.h" } },
- { "pid": 1, "tid": 9, "ts": 16707949.21875, "dur": 483.2000136375427, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4832000136375427, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\Compiler\\CompilerEnvironmentMsvc.h" } },
- { "pid": 1, "tid": 9, "ts": 16708435.546875, "dur": 1056.6999912261963, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0566999912261963, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\PlatformDetection.h" } },
- { "pid": 1, "tid": 9, "ts": 16709501.953125, "dur": 400.9999930858612, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4009999930858612, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\RedefineCompilerMacros.h" } },
- { "pid": 1, "tid": 9, "ts": 16709906.25, "dur": 12531.700134277344, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.531700134277344, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\UndefineCompilerMacros.h" } },
- { "pid": 1, "tid": 14, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 14, "ts": 16639572.265625, "dur": 111768.29528808594, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 111.76829528808594, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include" } },
- { "pid": 1, "tid": 14, "ts": 16639587.890625, "dur": 66864.79949951172, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 66.86479949951172, "detail": ".h C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include" } },
- { "pid": 1, "tid": 14, "ts": 16706468.75, "dur": 44863.70086669922, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 44.86370086669922, "detail": ".inc C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include" } },
- { "pid": 1, "tid": 14, "ts": 16751349.609375, "dur": 534474.3041992188, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 534.4743041992188, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp" } },
- { "pid": 1, "tid": 14, "ts": 16751453.125, "dur": 422447.998046875, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 422.447998046875, "detail": ".h C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp" } },
- { "pid": 1, "tid": 14, "ts": 17173916.015625, "dur": 111871.6049194336, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 111.8716049194336, "detail": ".inc C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp" } },
- { "pid": 1, "tid": 11, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 11, "ts": 16641275.390625, "dur": 2510.2999210357666, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.5102999210357666, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include\\BaselibPlatformSpecificEnvironment.h" } },
- { "pid": 1, "tid": 11, "ts": 16643796.875, "dur": 17771.20018005371, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 17.77120018005371, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include\\C\\Baselib_Atomic_Platform.inl.h" } },
- { "pid": 1, "tid": 10, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 10, "ts": 16658000, "dur": 1109.0999841690063, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1090999841690063, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Memory.h" } },
- { "pid": 1, "tid": 10, "ts": 16659113.28125, "dur": 1080.1000595092773, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0801000595092773, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_ReentrantLock.h" } },
- { "pid": 1, "tid": 10, "ts": 16660212.890625, "dur": 1040.1999950408936, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0401999950408936, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Socket.h" } },
- { "pid": 1, "tid": 10, "ts": 16661255.859375, "dur": 866.6999936103821, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8666999936103821, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_StaticAssert.h" } },
- { "pid": 1, "tid": 10, "ts": 16662128.90625, "dur": 4476.6998291015625, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.4766998291015625, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_SystemFutex.h" } },
- { "pid": 1, "tid": 10, "ts": 16666617.1875, "dur": 2480.7000160217285, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.4807000160217285, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_ThreadLocalStorage.h" } },
- { "pid": 1, "tid": 10, "ts": 16669101.5625, "dur": 860.4999780654907, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8604999780654907, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_WakeupFallbackStrategy.h" } },
- { "pid": 1, "tid": 10, "ts": 16669964.84375, "dur": 934.0000152587891, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9340000152587891, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_CappedSemaphore_SemaphoreBased.inl.h" } },
- { "pid": 1, "tid": 10, "ts": 16670902.34375, "dur": 386.70000433921814, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.38670000433921814, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_EnumSizeCheck.h" } },
- { "pid": 1, "tid": 10, "ts": 16671292.96875, "dur": 699.999988079071, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.699999988079071, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_EventSemaphore_SemaphoreBased.inl.h" } },
- { "pid": 1, "tid": 10, "ts": 16671996.09375, "dur": 724.7999906539917, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7247999906539917, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_HighCapacitySemaphore_SemaphoreBased.inl.h" } },
- { "pid": 1, "tid": 10, "ts": 16672734.375, "dur": 1107.699990272522, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.107699990272522, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_Lock_SemaphoreBased.inl.h" } },
- { "pid": 1, "tid": 10, "ts": 16673845.703125, "dur": 677.5000095367432, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6775000095367432, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_Semaphore_FutexBased.inl.h" } },
- { "pid": 1, "tid": 10, "ts": 16674527.34375, "dur": 700.9000182151794, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7009000182151794, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Compiler\\Baselib_Atomic_Gcc.h" } },
- { "pid": 1, "tid": 10, "ts": 16675236.328125, "dur": 841.1999940872192, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8411999940872192, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Compiler\\Baselib_Atomic_Gcc_Apple_LLVM_Patch_PostInclude.h" } },
- { "pid": 1, "tid": 10, "ts": 16676080.078125, "dur": 778.1000137329102, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7781000137329102, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Compiler\\Baselib_Atomic_Msvc.h" } },
- { "pid": 1, "tid": 10, "ts": 16676863.28125, "dur": 1441.7999982833862, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4417999982833862, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Atomic.h" } },
- { "pid": 1, "tid": 10, "ts": 16678316.40625, "dur": 2185.4000091552734, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.1854000091552734, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\BinarySemaphore.h" } },
- { "pid": 1, "tid": 10, "ts": 16680505.859375, "dur": 1340.8000469207764, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3408000469207764, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\ConditionVariable.h" } },
- { "pid": 1, "tid": 10, "ts": 16681851.5625, "dur": 587.4999761581421, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5874999761581421, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\CountdownTimer.h" } },
- { "pid": 1, "tid": 10, "ts": 16682441.40625, "dur": 907.7000021934509, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9077000021934509, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\EventSemaphore.h" } },
- { "pid": 1, "tid": 10, "ts": 16683353.515625, "dur": 622.9000091552734, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6229000091552734, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\HighCapacitySemaphore.h" } },
- { "pid": 1, "tid": 10, "ts": 16683980.46875, "dur": 497.5999891757965, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4975999891757965, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Internal\\Compiler\\ClangOrGcc\\AlgorithmClangOrGcc.inl.h" } },
- { "pid": 1, "tid": 10, "ts": 16684480.46875, "dur": 589.3999934196472, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5893999934196472, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Internal\\Compiler\\Msvc\\AlgorithmMsvc.inl.h" } },
- { "pid": 1, "tid": 10, "ts": 16685076.171875, "dur": 518.999993801117, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5189999938011169, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Internal\\ConditionVariableData_FutexBased.inl.h" } },
- { "pid": 1, "tid": 10, "ts": 16685595.703125, "dur": 380.19999861717224, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.38019999861717224, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Internal\\ConditionVariableData_SemaphoreBased.inl.h" } },
- { "pid": 1, "tid": 10, "ts": 16685980.46875, "dur": 598.5999703407288, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5985999703407288, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Internal\\ConditionVariable_FutexBased.inl.h" } },
- { "pid": 1, "tid": 10, "ts": 16686582.03125, "dur": 508.0999732017517, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5080999732017517, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Internal\\ConditionVariable_SemaphoreBased.inl.h" } },
- { "pid": 1, "tid": 10, "ts": 16687095.703125, "dur": 448.7000107765198, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4487000107765198, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Internal\\TypeTraits.h" } },
- { "pid": 1, "tid": 10, "ts": 16687548.828125, "dur": 733.7999939918518, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7337999939918518, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Lock.h" } },
- { "pid": 1, "tid": 10, "ts": 16688287.109375, "dur": 1802.0999431610107, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.8020999431610107, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Semaphore.h" } },
- { "pid": 1, "tid": 10, "ts": 16690091.796875, "dur": 538.5000109672546, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5385000109672546, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\ThreadLocalStorage.h" } },
- { "pid": 1, "tid": 10, "ts": 16690636.71875, "dur": 15152.099609375, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 15.152099609375, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\mpmc_fixed_queue.h" } },
- { "pid": 1, "tid": 10, "ts": 16705794.921875, "dur": 820.5000162124634, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8205000162124634, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\mpsc_node_queue.h" } },
- { "pid": 1, "tid": 10, "ts": 16706621.09375, "dur": 707.8999876976013, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7078999876976013, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\ArchitectureDetection.h" } },
- { "pid": 1, "tid": 10, "ts": 16707333.984375, "dur": 339.70001339912415, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.33970001339912415, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\BasicTypes.h" } },
- { "pid": 1, "tid": 10, "ts": 16707677.734375, "dur": 565.9999847412109, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5659999847412109, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\Compiler\\CompilerEnvironmentGcc.h" } },
- { "pid": 1, "tid": 10, "ts": 16708244.140625, "dur": 1121.6000318527222, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1216000318527222, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\CoreMacros.h" } },
- { "pid": 1, "tid": 10, "ts": 16709373.046875, "dur": 521.0000276565552, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5210000276565552, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\PlatformEnvironment.h" } },
- { "pid": 1, "tid": 10, "ts": 16709896.484375, "dur": 650.600016117096, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.650600016117096, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\RedefinePlatforms.h" } },
- { "pid": 1, "tid": 10, "ts": 16710552.734375, "dur": 436.19999289512634, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.43619999289512634, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\UndefineCoreMacros.h" } },
- { "pid": 1, "tid": 10, "ts": 16710992.1875, "dur": 435.9999895095825, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4359999895095825, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\UndefinePlatforms.h" } },
- { "pid": 1, "tid": 10, "ts": 16711431.640625, "dur": 2737.6999855041504, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.7376999855041504, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\VerifyPlatformEnvironment.h" } },
- { "pid": 1, "tid": 10, "ts": 16714175.78125, "dur": 1430.5000305175781, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4305000305175781, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\PostExternalInclude.h" } },
- { "pid": 1, "tid": 10, "ts": 16715621.09375, "dur": 665.0000214576721, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6650000214576721, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\PreExternalInclude.h" } },
- { "pid": 1, "tid": 13, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 13, "ts": 16658253.90625, "dur": 308838.80615234375, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 308.83880615234375, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src" } },
- { "pid": 1, "tid": 13, "ts": 16658265.625, "dur": 167206.0089111328, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 167.2060089111328, "detail": ".h C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src" } },
- { "pid": 1, "tid": 13, "ts": 16825482.421875, "dur": 141598.89221191406, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 141.59889221191406, "detail": ".inc C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src" } },
- { "pid": 1, "tid": 13, "ts": 16967097.65625, "dur": 309306.1218261719, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 309.3061218261719, "detail": "F:\\cocorobo\\cocorobo-unity\\Library\\Il2cppBuildCache\\WebGL\\il2cppOutput" } },
- { "pid": 1, "tid": 13, "ts": 16967107.421875, "dur": 206976.10473632812, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 206.97610473632812, "detail": ".h F:\\cocorobo\\cocorobo-unity\\Library\\Il2cppBuildCache\\WebGL\\il2cppOutput" } },
- { "pid": 1, "tid": 13, "ts": 17174099.609375, "dur": 102298.095703125, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 102.298095703125, "detail": ".inc F:\\cocorobo\\cocorobo-unity\\Library\\Il2cppBuildCache\\WebGL\\il2cppOutput" } },
- { "pid": 1, "tid": 25, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 25, "ts": 16658578.125, "dur": 1223.6000299453735, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2236000299453735, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\cord.h" } },
- { "pid": 1, "tid": 25, "ts": 16659804.6875, "dur": 719.6000218391418, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7196000218391418, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\cord_pos.h" } },
- { "pid": 1, "tid": 25, "ts": 16660527.34375, "dur": 952.7000188827515, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9527000188827515, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\ec.h" } },
- { "pid": 1, "tid": 25, "ts": 16661484.375, "dur": 705.5000066757202, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7055000066757202, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\extra\\gc.h" } },
- { "pid": 1, "tid": 25, "ts": 16662193.359375, "dur": 370.40001153945923, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.37040001153945923, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\extra\\gc_cpp.h" } },
- { "pid": 1, "tid": 25, "ts": 16662568.359375, "dur": 5264.200210571289, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.264200210571289, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc.h" } },
- { "pid": 1, "tid": 25, "ts": 16667853.515625, "dur": 1299.399971961975, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.299399971961975, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_alloc_ptrs.h" } },
- { "pid": 1, "tid": 25, "ts": 16669156.25, "dur": 946.3000297546387, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9463000297546387, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_allocator.h" } },
- { "pid": 1, "tid": 25, "ts": 16670105.46875, "dur": 501.6000270843506, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5016000270843506, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_backptr.h" } },
- { "pid": 1, "tid": 25, "ts": 16670617.1875, "dur": 981.8999767303467, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9818999767303467, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_config_macros.h" } },
- { "pid": 1, "tid": 25, "ts": 16671601.5625, "dur": 1368.899941444397, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.368899941444397, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_cpp.h" } },
- { "pid": 1, "tid": 25, "ts": 16672974.609375, "dur": 467.7000045776367, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4677000045776367, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_disclaim.h" } },
- { "pid": 1, "tid": 25, "ts": 16673447.265625, "dur": 760.1000070571899, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7601000070571899, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_gcj.h" } },
- { "pid": 1, "tid": 25, "ts": 16674208.984375, "dur": 589.6000266075134, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5896000266075134, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_inline.h" } },
- { "pid": 1, "tid": 25, "ts": 16674802.734375, "dur": 947.700023651123, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.947700023651123, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_mark.h" } },
- { "pid": 1, "tid": 25, "ts": 16675753.90625, "dur": 541.4999723434448, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5414999723434448, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_pthread_redirects.h" } },
- { "pid": 1, "tid": 25, "ts": 16676298.828125, "dur": 421.4000105857849, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4214000105857849, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_tiny_fl.h" } },
- { "pid": 1, "tid": 25, "ts": 16676722.65625, "dur": 884.5999836921692, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8845999836921692, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_typed.h" } },
- { "pid": 1, "tid": 25, "ts": 16677615.234375, "dur": 2640.000104904175, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.640000104904175, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_vector.h" } },
- { "pid": 1, "tid": 25, "ts": 16680259.765625, "dur": 904.20001745224, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.90420001745224, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_version.h" } },
- { "pid": 1, "tid": 25, "ts": 16681171.875, "dur": 854.4999957084656, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8544999957084656, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\javaxfc.h" } },
- { "pid": 1, "tid": 25, "ts": 16682027.34375, "dur": 406.5999984741211, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4065999984741211, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\leak_detector.h" } },
- { "pid": 1, "tid": 25, "ts": 16682439.453125, "dur": 907.800018787384, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.907800018787384, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\new_gc_alloc.h" } },
- { "pid": 1, "tid": 25, "ts": 16683351.5625, "dur": 640.2999758720398, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6402999758720398, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\darwin_semaphore.h" } },
- { "pid": 1, "tid": 25, "ts": 16684000, "dur": 418.1999862194061, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.41819998621940613, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\darwin_stop_world.h" } },
- { "pid": 1, "tid": 25, "ts": 16684433.59375, "dur": 778.8000106811523, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7788000106811523, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\dbg_mlc.h" } },
- { "pid": 1, "tid": 25, "ts": 16685216.796875, "dur": 558.7999820709229, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5587999820709229, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\gc_atomic_ops.h" } },
- { "pid": 1, "tid": 25, "ts": 16685777.34375, "dur": 568.3000087738037, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5683000087738037, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\gc_hdrs.h" } },
- { "pid": 1, "tid": 25, "ts": 16686349.609375, "dur": 773.1999754905701, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7731999754905701, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\gc_locks.h" } },
- { "pid": 1, "tid": 25, "ts": 16687126.953125, "dur": 1021.9000577926636, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0219000577926636, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\gc_pmark.h" } },
- { "pid": 1, "tid": 25, "ts": 16688152.34375, "dur": 2046.299934387207, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.046299934387207, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\gc_priv.h" } },
- { "pid": 1, "tid": 25, "ts": 16690203.125, "dur": 2046.9000339508057, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.0469000339508057, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\gcconfig.h" } },
- { "pid": 1, "tid": 25, "ts": 16692253.90625, "dur": 608.6000204086304, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6086000204086304, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\msvc_dbg.h" } },
- { "pid": 1, "tid": 25, "ts": 16692867.1875, "dur": 1416.0000085830688, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4160000085830688, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\pthread_stop_world.h" } },
- { "pid": 1, "tid": 25, "ts": 16694289.0625, "dur": 4155.099868774414, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.155099868774414, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\pthread_support.h" } },
- { "pid": 1, "tid": 25, "ts": 16698457.03125, "dur": 2216.5000438690186, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.2165000438690186, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\specific.h" } },
- { "pid": 1, "tid": 25, "ts": 16700677.734375, "dur": 941.3999915122986, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9413999915122986, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\thread_local_alloc.h" } },
- { "pid": 1, "tid": 25, "ts": 16701625, "dur": 761.2000107765198, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7612000107765198, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\weakpointer.h" } },
- { "pid": 1, "tid": 12, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 12, "ts": 16659603.515625, "dur": 544.700026512146, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.544700026512146, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include\\C\\Baselib_ErrorState.inl.h" } },
- { "pid": 1, "tid": 12, "ts": 16660154.296875, "dur": 501.29997730255127, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5012999773025513, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include\\C\\Baselib_ThreadLocalStorage.inl.h" } },
- { "pid": 1, "tid": 29, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 29, "ts": 16720072.265625, "dur": 1150.9000062942505, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1509000062942505, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops.h" } },
- { "pid": 1, "tid": 29, "ts": 16721228.515625, "dur": 461.40000224113464, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.46140000224113464, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\ao_version.h" } },
- { "pid": 1, "tid": 29, "ts": 16721693.359375, "dur": 1993.1000471115112, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.9931000471115112, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\generalize-arithm.h" } },
- { "pid": 1, "tid": 29, "ts": 16723693.359375, "dur": 1725.000023841858, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.725000023841858, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\generalize-small.h" } },
- { "pid": 1, "tid": 29, "ts": 16725423.828125, "dur": 956.2000036239624, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9562000036239624, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\generalize.h" } },
- { "pid": 1, "tid": 29, "ts": 16726386.71875, "dur": 495.49999833106995, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.49549999833106995, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\all_acquire_release_volatile.h" } },
- { "pid": 1, "tid": 29, "ts": 16726884.765625, "dur": 1161.1000299453735, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1611000299453735, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\all_aligned_atomic_load_store.h" } },
- { "pid": 1, "tid": 29, "ts": 16728056.640625, "dur": 1131.9999694824219, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1319999694824219, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\all_atomic_load_store.h" } },
- { "pid": 1, "tid": 29, "ts": 16729195.3125, "dur": 1468.2999849319458, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4682999849319458, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\all_atomic_only_load.h" } },
- { "pid": 1, "tid": 29, "ts": 16730689.453125, "dur": 1375.3000497817993, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3753000497817993, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\ao_t_is_int.h" } },
- { "pid": 1, "tid": 29, "ts": 16732080.078125, "dur": 967.2999978065491, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9672999978065491, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\armcc\\arm_v6.h" } },
- { "pid": 1, "tid": 29, "ts": 16733054.6875, "dur": 2854.3999195098877, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.8543999195098877, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\emul_cas.h" } },
- { "pid": 1, "tid": 29, "ts": 16735916.015625, "dur": 1709.9000215530396, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.7099000215530396, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\aarch64.h" } },
- { "pid": 1, "tid": 29, "ts": 16737634.765625, "dur": 942.799985408783, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.942799985408783, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\alpha.h" } },
- { "pid": 1, "tid": 29, "ts": 16738582.03125, "dur": 875.9999871253967, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8759999871253967, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\arm.h" } },
- { "pid": 1, "tid": 29, "ts": 16739464.84375, "dur": 630.6999921798706, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6306999921798706, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\avr32.h" } },
- { "pid": 1, "tid": 29, "ts": 16740103.515625, "dur": 961.3000154495239, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9613000154495239, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\generic-arithm.h" } },
- { "pid": 1, "tid": 29, "ts": 16741068.359375, "dur": 767.7000164985657, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7677000164985657, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\hexagon.h" } },
- { "pid": 1, "tid": 29, "ts": 16741841.796875, "dur": 714.2000198364258, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7142000198364258, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\hppa.h" } },
- { "pid": 1, "tid": 29, "ts": 16742562.5, "dur": 646.4999914169312, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6464999914169312, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\ia64.h" } },
- { "pid": 1, "tid": 29, "ts": 16743212.890625, "dur": 982.9000234603882, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9829000234603882, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\m68k.h" } },
- { "pid": 1, "tid": 29, "ts": 16744203.125, "dur": 929.4000267982483, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9294000267982483, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\mips.h" } },
- { "pid": 1, "tid": 29, "ts": 16745138.671875, "dur": 1412.4000072479248, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4124000072479248, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\powerpc.h" } },
- { "pid": 1, "tid": 29, "ts": 16746560.546875, "dur": 818.7999725341797, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8187999725341797, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\s390.h" } },
- { "pid": 1, "tid": 29, "ts": 16747390.625, "dur": 521.399974822998, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.521399974822998, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\sh.h" } },
- { "pid": 1, "tid": 29, "ts": 16747916.015625, "dur": 542.5000190734863, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5425000190734863, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\sparc.h" } },
- { "pid": 1, "tid": 29, "ts": 16748464.84375, "dur": 869.7999715805054, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8697999715805054, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\x86.h" } },
- { "pid": 1, "tid": 29, "ts": 16749341.796875, "dur": 857.2999835014343, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8572999835014343, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\generic_pthread.h" } },
- { "pid": 1, "tid": 29, "ts": 16750205.078125, "dur": 695.6999897956848, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6956999897956848, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\hpc\\hppa.h" } },
- { "pid": 1, "tid": 29, "ts": 16750906.25, "dur": 621.6999888420105, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6216999888420105, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\hpc\\ia64.h" } },
- { "pid": 1, "tid": 29, "ts": 16751535.15625, "dur": 569.8000192642212, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5698000192642212, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\ibmc\\powerpc.h" } },
- { "pid": 1, "tid": 29, "ts": 16752111.328125, "dur": 720.7000255584717, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7207000255584717, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\icc\\ia64.h" } },
- { "pid": 1, "tid": 29, "ts": 16752835.9375, "dur": 565.500020980835, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.565500020980835, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\acquire_release_volatile.h" } },
- { "pid": 1, "tid": 29, "ts": 16753406.25, "dur": 615.9999966621399, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6159999966621399, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\atomic_load.h" } },
- { "pid": 1, "tid": 29, "ts": 16754027.34375, "dur": 1177.299976348877, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.177299976348877, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\atomic_store.h" } },
- { "pid": 1, "tid": 29, "ts": 16755212.890625, "dur": 1233.0000400543213, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2330000400543213, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\char_acquire_release_volatile.h" } },
- { "pid": 1, "tid": 29, "ts": 16756453.125, "dur": 506.3999891281128, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5063999891281128, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\char_atomic_load.h" } },
- { "pid": 1, "tid": 29, "ts": 16756964.84375, "dur": 453.7000060081482, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4537000060081482, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\char_atomic_store.h" } },
- { "pid": 1, "tid": 29, "ts": 16757429.6875, "dur": 569.8000192642212, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5698000192642212, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\double_atomic_load_store.h" } },
- { "pid": 1, "tid": 29, "ts": 16758001.953125, "dur": 2653.39994430542, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.65339994430542, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\int_acquire_release_volatile.h" } },
- { "pid": 1, "tid": 29, "ts": 16760664.0625, "dur": 3852.60009765625, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.85260009765625, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\int_atomic_load.h" } },
- { "pid": 1, "tid": 29, "ts": 16764525.390625, "dur": 688.1999969482422, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6881999969482422, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\int_atomic_store.h" } },
- { "pid": 1, "tid": 29, "ts": 16765218.75, "dur": 1275.2000093460083, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2752000093460083, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\ordered_loads_only.h" } },
- { "pid": 1, "tid": 29, "ts": 16766501.953125, "dur": 774.9999761581421, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7749999761581421, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\ordered_stores_only.h" } },
- { "pid": 1, "tid": 29, "ts": 16767283.203125, "dur": 482.1999967098236, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4821999967098236, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\short_acquire_release_volatile.h" } },
- { "pid": 1, "tid": 29, "ts": 16767771.484375, "dur": 548.5000014305115, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5485000014305115, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\short_atomic_load.h" } },
- { "pid": 1, "tid": 29, "ts": 16768330.078125, "dur": 561.8000030517578, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5618000030517578, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\short_atomic_store.h" } },
- { "pid": 1, "tid": 29, "ts": 16768900.390625, "dur": 615.9999966621399, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6159999966621399, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\msftc\\arm.h" } },
- { "pid": 1, "tid": 29, "ts": 16769521.484375, "dur": 592.2999978065491, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5922999978065491, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\msftc\\common32_defs.h" } },
- { "pid": 1, "tid": 29, "ts": 16770121.09375, "dur": 635.2999806404114, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6352999806404114, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\msftc\\x86_64.h" } },
- { "pid": 1, "tid": 29, "ts": 16770777.34375, "dur": 460.3999853134155, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4603999853134155, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\ordered_except_wr.h" } },
- { "pid": 1, "tid": 29, "ts": 16771242.1875, "dur": 430.0000071525574, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4300000071525574, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\standard_ao_double_t.h" } },
- { "pid": 1, "tid": 29, "ts": 16771675.78125, "dur": 619.5999979972839, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6195999979972839, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\sunc\\x86.h" } },
- { "pid": 1, "tid": 29, "ts": 16772298.828125, "dur": 9981.100082397461, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.981100082397461, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\test_and_set_t_is_char.h" } },
- { "pid": 1, "tid": 30, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 30, "ts": 16739833.984375, "dur": 614.799976348877, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.614799976348877, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\cris.h" } },
- { "pid": 1, "tid": 30, "ts": 16740453.125, "dur": 610.4000210762024, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6104000210762024, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\generic-small.h" } },
- { "pid": 1, "tid": 30, "ts": 16741068.359375, "dur": 28567.80242919922, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 28.56780242919922, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\generic.h" } },
- { "pid": 1, "tid": 30, "ts": 16769638.671875, "dur": 618.7999844551086, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6187999844551086, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\msftc\\x86.h" } },
- { "pid": 1, "tid": 30, "ts": 16770261.71875, "dur": 571.0999965667725, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5710999965667725, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\ordered.h" } },
- { "pid": 1, "tid": 30, "ts": 16770833.984375, "dur": 691.2999749183655, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6912999749183655, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\read_ordered.h" } },
- { "pid": 1, "tid": 30, "ts": 16771531.25, "dur": 530.3999781608582, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5303999781608582, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\sunc\\sparc.h" } },
- { "pid": 1, "tid": 30, "ts": 16772064.453125, "dur": 441.10000133514404, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.44110000133514404, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\test_and_set_t_is_ao_t.h" } },
- { "pid": 1, "tid": 35, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 35, "ts": 16818347.65625, "dur": 1221.60005569458, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.22160005569458, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\xxHash\\xxh3.h" } },
- { "pid": 1, "tid": 35, "ts": 16819574.21875, "dur": 1501.1999607086182, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5011999607086182, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\xxHash\\xxhash.h" } },
- { "pid": 1, "tid": 37, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 37, "ts": 16825734.375, "dur": 608.7999939918518, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6087999939918518, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\char-conversions.h" } },
- { "pid": 1, "tid": 37, "ts": 16826347.65625, "dur": 1263.3999586105347, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2633999586105347, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-common-big.h" } },
- { "pid": 1, "tid": 37, "ts": 16827617.1875, "dur": 978.600025177002, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.978600025177002, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-common-small.h" } },
- { "pid": 1, "tid": 37, "ts": 16828603.515625, "dur": 3221.9998836517334, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.2219998836517334, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-il2cpp.h" } },
- { "pid": 1, "tid": 37, "ts": 16831832.03125, "dur": 570.2000260353088, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5702000260353088, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-metadata.h" } },
- { "pid": 1, "tid": 37, "ts": 16832412.109375, "dur": 893.4999704360962, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8934999704360962, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-tiny.h" } },
- { "pid": 1, "tid": 37, "ts": 16833312.5, "dur": 430.2000105381012, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4302000105381012, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen.h" } },
- { "pid": 1, "tid": 37, "ts": 16833746.09375, "dur": 666.4999723434448, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6664999723434448, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\debugger\\il2cpp-c-types.h" } },
- { "pid": 1, "tid": 37, "ts": 16834416.015625, "dur": 1065.500020980835, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.065500020980835, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\debugger\\il2cpp-compat.h" } },
- { "pid": 1, "tid": 37, "ts": 16835490.234375, "dur": 711.7999792098999, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7117999792098999, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\Allocator.h" } },
- { "pid": 1, "tid": 37, "ts": 16836208.984375, "dur": 479.0000021457672, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4790000021457672, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\AppendOnlyGCHashMap.h" } },
- { "pid": 1, "tid": 37, "ts": 16836695.3125, "dur": 690.9000277519226, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6909000277519226, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\GCHandle.h" } },
- { "pid": 1, "tid": 37, "ts": 16837392.578125, "dur": 493.2999908924103, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4932999908924103, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\GarbageCollector.h" } },
- { "pid": 1, "tid": 37, "ts": 16837888.671875, "dur": 499.7999966144562, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4997999966144562, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\WriteBarrier.h" } },
- { "pid": 1, "tid": 37, "ts": 16838394.53125, "dur": 382.2999894618988, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3822999894618988, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\WriteBarrierValidation.h" } },
- { "pid": 1, "tid": 37, "ts": 16838781.25, "dur": 394.69999074935913, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.39469999074935913, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\gc_wrapper.h" } },
- { "pid": 1, "tid": 37, "ts": 16839179.6875, "dur": 367.000013589859, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.367000013589859, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System.Configuration\\System.Configuration\\InternalConfigurationHost.h" } },
- { "pid": 1, "tid": 37, "ts": 16839552.734375, "dur": 678.2000064849854, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6782000064849854, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System.Core\\System.IO.MemoryMappedFiles\\MemoryMapImpl.h" } },
- { "pid": 1, "tid": 37, "ts": 16840236.328125, "dur": 445.6000030040741, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4456000030040741, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\Microsoft.Win32\\NativeMethods.h" } },
- { "pid": 1, "tid": 37, "ts": 16840687.5, "dur": 376.5999972820282, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3765999972820282, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\Mono.Net.Security\\MonoTlsProviderFactory.h" } },
- { "pid": 1, "tid": 37, "ts": 16841400.390625, "dur": 545.0000166893005, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5450000166893005, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Configuration\\DefaultConfig.h" } },
- { "pid": 1, "tid": 37, "ts": 16841951.171875, "dur": 359.89999771118164, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.35989999771118164, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Configuration\\InternalConfigurationHost.h" } },
- { "pid": 1, "tid": 37, "ts": 16842312.5, "dur": 445.10000944137573, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.44510000944137573, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\DefaultTraceListener.h" } },
- { "pid": 1, "tid": 37, "ts": 16842763.671875, "dur": 632.0000290870667, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6320000290870667, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\FileVersionInfo.h" } },
- { "pid": 1, "tid": 37, "ts": 16843400.390625, "dur": 605.7999730110168, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6057999730110168, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\PerformanceCounter.h" } },
- { "pid": 1, "tid": 37, "ts": 16844009.765625, "dur": 1421.0000038146973, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4210000038146973, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\PerformanceCounterCategory.h" } },
- { "pid": 1, "tid": 37, "ts": 16845439.453125, "dur": 1500.2000331878662, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5002000331878662, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\PerformanceCounterUtils.h" } },
- { "pid": 1, "tid": 37, "ts": 16846951.171875, "dur": 2424.799919128418, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.424799919128418, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\Process.h" } },
- { "pid": 1, "tid": 37, "ts": 16849384.765625, "dur": 461.40000224113464, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.46140000224113464, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\Stopwatch.h" } },
- { "pid": 1, "tid": 37, "ts": 16849851.5625, "dur": 21267.000198364258, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 21.267000198364258, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\perfcounters-def.h" } },
- { "pid": 1, "tid": 37, "ts": 16871121.09375, "dur": 614.7000193595886, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6147000193595886, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.IO\\FileSystemWatcher.h" } },
- { "pid": 1, "tid": 37, "ts": 16871740.234375, "dur": 466.8999910354614, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4668999910354614, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.IO\\KqueueMonitor.h" } },
- { "pid": 1, "tid": 37, "ts": 16872210.9375, "dur": 368.4000074863434, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3684000074863434, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net.NetworkInformation\\MacOsIPInterfaceProperties.h" } },
- { "pid": 1, "tid": 37, "ts": 16872582.03125, "dur": 472.2999930381775, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4722999930381775, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net.Sockets\\SocketException.h" } },
- { "pid": 1, "tid": 37, "ts": 16873062.5, "dur": 390.79999923706055, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.39079999923706055, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Threading\\Semaphore.h" } },
- { "pid": 1, "tid": 37, "ts": 16873457.03125, "dur": 386.9999945163727, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3869999945163727, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System\\IOSelector.h" } },
- { "pid": 1, "tid": 37, "ts": 16873847.65625, "dur": 388.9000117778778, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3889000117778778, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono.Interop\\ComInteropProxy.h" } },
- { "pid": 1, "tid": 37, "ts": 16874240.234375, "dur": 338.89999985694885, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.33889999985694885, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono.Unity\\UnityTls.h" } },
- { "pid": 1, "tid": 37, "ts": 16874582.03125, "dur": 946.5000033378601, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9465000033378601, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\RuntimeClassHandle.h" } },
- { "pid": 1, "tid": 37, "ts": 16875531.25, "dur": 543.0999994277954, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5430999994277954, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\RuntimeMarshal.h" } },
- { "pid": 1, "tid": 37, "ts": 16876078.125, "dur": 379.7999918460846, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3797999918460846, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\Assert.h" } },
- { "pid": 1, "tid": 37, "ts": 16876460.9375, "dur": 2951.1001110076904, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.9511001110076904, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\StackFrame.h" } },
- { "pid": 1, "tid": 37, "ts": 16879419.921875, "dur": 543.6000227928162, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5436000227928162, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\StackTrace.h" } },
- { "pid": 1, "tid": 37, "ts": 16879966.796875, "dur": 2143.399953842163, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.143399953842163, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CompareInfo.h" } },
- { "pid": 1, "tid": 37, "ts": 16882115.234375, "dur": 1459.4000577926636, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4594000577926636, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CultureData.h" } },
- { "pid": 1, "tid": 37, "ts": 16883587.890625, "dur": 1151.800036430359, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1518000364303589, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CultureInfoInternals.h" } },
- { "pid": 1, "tid": 37, "ts": 16884744.140625, "dur": 930.1999807357788, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9301999807357788, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\Generated\\CultureInfoInternalsNet_4_0.h" } },
- { "pid": 1, "tid": 37, "ts": 16885677.734375, "dur": 620.0000047683716, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6200000047683716, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\RegionInfo.h" } },
- { "pid": 1, "tid": 37, "ts": 16886306.640625, "dur": 1460.3999853134155, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4603999853134155, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.IO\\DriveInfo.h" } },
- { "pid": 1, "tid": 37, "ts": 16887773.4375, "dur": 1736.7000579833984, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.7367000579833984, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.IO\\MonoIO.h" } },
- { "pid": 1, "tid": 37, "ts": 16889517.578125, "dur": 18277.999877929688, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 18.277999877929688, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.IO\\Path.h" } },
- { "pid": 1, "tid": 37, "ts": 16907798.828125, "dur": 548.6000180244446, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5486000180244446, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoMethod.h" } },
- { "pid": 1, "tid": 37, "ts": 16908351.5625, "dur": 485.3000044822693, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4853000044822693, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoPropertyInfo.h" } },
- { "pid": 1, "tid": 37, "ts": 16908841.796875, "dur": 496.6000020503998, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4966000020503998, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\PropertyInfo.h" } },
- { "pid": 1, "tid": 37, "ts": 16909343.75, "dur": 455.3000032901764, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4553000032901764, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.CompilerServices\\RuntimeHelpers.h" } },
- { "pid": 1, "tid": 37, "ts": 16909802.734375, "dur": 516.2000060081482, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5162000060081482, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.InteropServices\\GCHandle.h" } },
- { "pid": 1, "tid": 37, "ts": 16910322.265625, "dur": 750.5000233650208, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7505000233650208, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Activation\\ActivationServices.h" } },
- { "pid": 1, "tid": 37, "ts": 16911078.125, "dur": 418.1999862194061, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.41819998621940613, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Contexts\\Context.h" } },
- { "pid": 1, "tid": 37, "ts": 16911500, "dur": 20129.29916381836, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 20.12929916381836, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Messaging\\MonoMethodMessage.h" } },
- { "pid": 1, "tid": 37, "ts": 16931632.8125, "dur": 629.9999952316284, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6299999952316284, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security\\SecurityFrame.h" } },
- { "pid": 1, "tid": 37, "ts": 16932269.53125, "dur": 603.3999919891357, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6033999919891357, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Text\\Encoding.h" } },
- { "pid": 1, "tid": 37, "ts": 16932875, "dur": 392.8999900817871, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3928999900817871, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\InternalThread.h" } },
- { "pid": 1, "tid": 37, "ts": 16933271.484375, "dur": 751.2999773025513, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7512999773025513, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Mutex.h" } },
- { "pid": 1, "tid": 37, "ts": 16934027.34375, "dur": 414.000004529953, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.414000004529953, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\OSSpecificSynchronizationContext.h" } },
- { "pid": 1, "tid": 37, "ts": 16934453.125, "dur": 908.9999794960022, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9089999794960022, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\ThreadPool.h" } },
- { "pid": 1, "tid": 37, "ts": 16935365.234375, "dur": 560.0000023841858, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5600000023841858, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Timer.h" } },
- { "pid": 1, "tid": 37, "ts": 16935929.6875, "dur": 484.4000041484833, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4844000041484833, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\WaitHandle.h" } },
- { "pid": 1, "tid": 37, "ts": 16936419.921875, "dur": 488.5999858379364, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4885999858379364, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Activator.h" } },
- { "pid": 1, "tid": 37, "ts": 16936912.109375, "dur": 676.9000291824341, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6769000291824341, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\AppDomain.h" } },
- { "pid": 1, "tid": 37, "ts": 16937593.75, "dur": 568.8999891281128, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5688999891281128, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\ArgIterator.h" } },
- { "pid": 1, "tid": 37, "ts": 16938166.015625, "dur": 667.900025844574, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.667900025844574, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Array.h" } },
- { "pid": 1, "tid": 37, "ts": 16938839.84375, "dur": 562.5, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5625, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Buffer.h" } },
- { "pid": 1, "tid": 37, "ts": 16939408.203125, "dur": 941.5000081062317, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9415000081062317, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\CLRConfig.h" } },
- { "pid": 1, "tid": 37, "ts": 16940355.46875, "dur": 496.19999527931213, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.49619999527931213, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Char.h" } },
- { "pid": 1, "tid": 37, "ts": 16940855.46875, "dur": 817.2000050544739, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8172000050544739, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\ConsoleDriver.h" } },
- { "pid": 1, "tid": 37, "ts": 16941685.546875, "dur": 457.19999074935913, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.45719999074935913, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Convert.h" } },
- { "pid": 1, "tid": 37, "ts": 16942146.484375, "dur": 550.4999756813049, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5504999756813049, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\CurrentSystemTimeZone.h" } },
- { "pid": 1, "tid": 37, "ts": 16942703.125, "dur": 448.7999975681305, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4487999975681305, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\DateTime.h" } },
- { "pid": 1, "tid": 37, "ts": 16943154.296875, "dur": 6624.199867248535, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.624199867248535, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Decimal.h" } },
- { "pid": 1, "tid": 37, "ts": 16949789.0625, "dur": 3046.299934387207, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.046299934387207, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Delegate.h" } },
- { "pid": 1, "tid": 37, "ts": 16952841.796875, "dur": 1489.1999959945679, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4891999959945679, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Double.h" } },
- { "pid": 1, "tid": 37, "ts": 16954337.890625, "dur": 519.4000005722046, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5194000005722046, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Enum.h" } },
- { "pid": 1, "tid": 37, "ts": 16954863.28125, "dur": 649.6000289916992, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6496000289916992, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Environment.h" } },
- { "pid": 1, "tid": 37, "ts": 16955517.578125, "dur": 384.40001010894775, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.38440001010894775, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Exception.h" } },
- { "pid": 1, "tid": 37, "ts": 16955904.296875, "dur": 19651.199340820312, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 19.651199340820312, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\MissingMemberException.h" } },
- { "pid": 1, "tid": 37, "ts": 16975564.453125, "dur": 755.1000118255615, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7551000118255615, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\MonoCustomAttrs.h" } },
- { "pid": 1, "tid": 37, "ts": 16976324.21875, "dur": 650.0999927520752, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6500999927520752, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\MonoType.h" } },
- { "pid": 1, "tid": 37, "ts": 16976980.46875, "dur": 1448.799967765808, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.448799967765808, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\NumberFormatter.h" } },
- { "pid": 1, "tid": 37, "ts": 16978435.546875, "dur": 2643.699884414673, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.643699884414673, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Object.h" } },
- { "pid": 1, "tid": 37, "ts": 16981087.890625, "dur": 1496.999979019165, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.496999979019165, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\RuntimeMethodHandle.h" } },
- { "pid": 1, "tid": 37, "ts": 16982593.75, "dur": 1793.7999963760376, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.7937999963760376, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\RuntimeTypeHandle.h" } },
- { "pid": 1, "tid": 37, "ts": 16984390.625, "dur": 791.4999723434448, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7914999723434448, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\TimeSpan.h" } },
- { "pid": 1, "tid": 37, "ts": 16985234.375, "dur": 637.499988079071, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.637499988079071, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\TimeZoneInfo.h" } },
- { "pid": 1, "tid": 37, "ts": 16985875, "dur": 868.3000206947327, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8683000206947327, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\TypedReference.h" } },
- { "pid": 1, "tid": 37, "ts": 16986748.046875, "dur": 1192.8000450134277, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1928000450134277, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\__ComObject.h" } },
- { "pid": 1, "tid": 37, "ts": 16987943.359375, "dur": 688.6000037193298, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6886000037193298, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-api-types.h" } },
- { "pid": 1, "tid": 37, "ts": 16988636.71875, "dur": 718.500018119812, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.718500018119812, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-benchmark-support.h" } },
- { "pid": 1, "tid": 37, "ts": 16989357.421875, "dur": 1028.39994430542, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.02839994430542, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-class-internals.h" } },
- { "pid": 1, "tid": 37, "ts": 16990390.625, "dur": 900.2000093460083, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9002000093460083, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-metadata.h" } },
- { "pid": 1, "tid": 37, "ts": 16991294.921875, "dur": 4045.300006866455, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.045300006866455, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-normalization-tables.h" } },
- { "pid": 1, "tid": 37, "ts": 16995349.609375, "dur": 3152.6999473571777, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.1526999473571777, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-object-internals.h" } },
- { "pid": 1, "tid": 37, "ts": 16998515.625, "dur": 483.599990606308, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.483599990606308, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-pinvoke-support.h" } },
- { "pid": 1, "tid": 37, "ts": 16999001.953125, "dur": 1182.8999519348145, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1828999519348145, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-runtime-metadata.h" } },
- { "pid": 1, "tid": 37, "ts": 17000193.359375, "dur": 428.09998989105225, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.42809998989105225, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-runtime-stats.h" } },
- { "pid": 1, "tid": 37, "ts": 17000945.3125, "dur": 456.8000137805939, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.45680001378059387, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-string-types.h" } },
- { "pid": 1, "tid": 37, "ts": 17001408.203125, "dur": 490.79999327659607, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.49079999327659607, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-tabledefs.h" } },
- { "pid": 1, "tid": 37, "ts": 17001902.34375, "dur": 392.6999866962433, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3926999866962433, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-tokentype.h" } },
- { "pid": 1, "tid": 37, "ts": 17002296.875, "dur": 739.799976348877, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.739799976348877, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-vm-support.h" } },
- { "pid": 1, "tid": 37, "ts": 17003042.96875, "dur": 778.8000106811523, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7788000106811523, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-windowsruntime-types.h" } },
- { "pid": 1, "tid": 37, "ts": 17003828.125, "dur": 618.7000274658203, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6187000274658203, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\ArrayMetadata.h" } },
- { "pid": 1, "tid": 37, "ts": 17004451.171875, "dur": 712.7000093460083, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7127000093460083, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\FieldLayout.h" } },
- { "pid": 1, "tid": 37, "ts": 17005171.875, "dur": 620.5000281333923, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6205000281333923, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\GenericMetadata.h" } },
- { "pid": 1, "tid": 37, "ts": 17005796.875, "dur": 762.3000144958496, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7623000144958496, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\GenericMethod.h" } },
- { "pid": 1, "tid": 37, "ts": 17006562.5, "dur": 735.5999946594238, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7355999946594238, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\GenericSharing.h" } },
- { "pid": 1, "tid": 37, "ts": 17007306.640625, "dur": 661.5999937057495, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6615999937057495, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericClassCompare.h" } },
- { "pid": 1, "tid": 37, "ts": 17007970.703125, "dur": 695.1000094413757, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6951000094413757, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericContextHash.h" } },
- { "pid": 1, "tid": 37, "ts": 17008671.875, "dur": 648.4000086784363, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6484000086784363, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericInstHash.h" } },
- { "pid": 1, "tid": 37, "ts": 17009328.125, "dur": 1582.5999975204468, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5825999975204468, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericMethodCompare.h" } },
- { "pid": 1, "tid": 37, "ts": 17010917.96875, "dur": 3049.000024795532, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.0490000247955322, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppSignature.h" } },
- { "pid": 1, "tid": 37, "ts": 17013972.65625, "dur": 729.200005531311, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.729200005531311, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\MonoPosixHelper.h" } },
- { "pid": 1, "tid": 37, "ts": 17014708.984375, "dur": 2811.8999004364014, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.8118999004364014, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\ThreadPoolDataStructures.h" } },
- { "pid": 1, "tid": 37, "ts": 17017527.34375, "dur": 1034.8000526428223, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0348000526428223, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\ThreadPoolMonitorThread.h" } },
- { "pid": 1, "tid": 37, "ts": 17018568.359375, "dur": 804.1999936103821, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8041999936103821, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\threadpool-ms-io-poll.h" } },
- { "pid": 1, "tid": 37, "ts": 17019376.953125, "dur": 712.4999761581421, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7124999761581421, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\threadpool-ms.h" } },
- { "pid": 1, "tid": 37, "ts": 17020091.796875, "dur": 777.3000001907349, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7773000001907349, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Atomic.h" } },
- { "pid": 1, "tid": 37, "ts": 17020875, "dur": 366.100013256073, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.366100013256073, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ConditionVariable.h" } },
- { "pid": 1, "tid": 37, "ts": 17021244.140625, "dur": 914.3999814987183, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9143999814987183, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ConsoleExtension.h" } },
- { "pid": 1, "tid": 37, "ts": 17022164.0625, "dur": 796.1999773979187, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7961999773979187, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\CrashHelpers.h" } },
- { "pid": 1, "tid": 37, "ts": 17022962.890625, "dur": 706.7999839782715, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7067999839782715, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Debug.h" } },
- { "pid": 1, "tid": 37, "ts": 17023673.828125, "dur": 514.1000151634216, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5141000151634216, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Directory.h" } },
- { "pid": 1, "tid": 37, "ts": 17024191.40625, "dur": 586.3999724388123, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5863999724388123, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Environment.h" } },
- { "pid": 1, "tid": 37, "ts": 17024781.25, "dur": 1692.1000480651855, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.6921000480651855, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ErrorCodes.h" } },
- { "pid": 1, "tid": 37, "ts": 17026476.5625, "dur": 542.1000123023987, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5421000123023987, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\FileSystemWatcher.h" } },
- { "pid": 1, "tid": 37, "ts": 17027025.390625, "dur": 1925.6999492645264, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.9256999492645264, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Handle.h" } },
- { "pid": 1, "tid": 37, "ts": 17028955.078125, "dur": 597.100019454956, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.597100019454956, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Image.h" } },
- { "pid": 1, "tid": 37, "ts": 17029556.640625, "dur": 1051.200032234192, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.051200032234192, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\LastError.h" } },
- { "pid": 1, "tid": 37, "ts": 17030613.28125, "dur": 790.7999753952026, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7907999753952026, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Locale.h" } },
- { "pid": 1, "tid": 37, "ts": 17031406.25, "dur": 644.9000239372253, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6449000239372253, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\File.h" } },
- { "pid": 1, "tid": 37, "ts": 17032396.484375, "dur": 347.79998660087585, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.34779998660087585, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Memory.h" } },
- { "pid": 1, "tid": 37, "ts": 17032748.046875, "dur": 498.10001254081726, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.49810001254081726, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Messages.h" } },
- { "pid": 1, "tid": 37, "ts": 17033250, "dur": 518.1000232696533, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5181000232696533, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\NativeMethods.h" } },
- { "pid": 1, "tid": 37, "ts": 17033781.25, "dur": 558.7000250816345, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5587000250816345, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Path.h" } },
- { "pid": 1, "tid": 37, "ts": 17034345.703125, "dur": 846.7000126838684, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8467000126838684, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Error.h" } },
- { "pid": 1, "tid": 37, "ts": 17035199.21875, "dur": 507.3999762535095, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5073999762535095, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\FileHandle.h" } },
- { "pid": 1, "tid": 37, "ts": 17035708.984375, "dur": 719.2000150680542, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7192000150680542, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\PosixHelpers.h" } },
- { "pid": 1, "tid": 37, "ts": 17036433.59375, "dur": 3490.999937057495, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.490999937057495, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\ReaderWriterLockImpl.h" } },
- { "pid": 1, "tid": 37, "ts": 17039931.640625, "dur": 936.5000128746033, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9365000128746033, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\SocketImpl.h" } },
- { "pid": 1, "tid": 37, "ts": 17040873.046875, "dur": 15772.701263427734, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 15.772701263427734, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\ThreadLocalValueImpl.h" } },
- { "pid": 1, "tid": 37, "ts": 17056652.34375, "dur": 580.299973487854, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.580299973487854, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Time.h" } },
- { "pid": 1, "tid": 37, "ts": 17057236.328125, "dur": 439.39998745918274, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.43939998745918274, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\TimeZone.h" } },
- { "pid": 1, "tid": 37, "ts": 17057679.6875, "dur": 334.5000147819519, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3345000147819519, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\TimeZoneInfo.h" } },
- { "pid": 1, "tid": 37, "ts": 17058316.40625, "dur": 621.999979019165, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.621999979019165, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\ConditionVariableImpl.h" } },
- { "pid": 1, "tid": 37, "ts": 17058941.40625, "dur": 622.7999925613403, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6227999925613403, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\DllMain.h" } },
- { "pid": 1, "tid": 37, "ts": 17059572.265625, "dur": 523.9999890327454, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5239999890327454, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\EventImpl.h" } },
- { "pid": 1, "tid": 37, "ts": 17060099.609375, "dur": 825.9999752044678, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8259999752044678, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\MutexImpl.h" } },
- { "pid": 1, "tid": 37, "ts": 17060933.59375, "dur": 2127.000093460083, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.127000093460083, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\ReaderWriterLockImpl.h" } },
- { "pid": 1, "tid": 37, "ts": 17063070.3125, "dur": 1778.2000303268433, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.7782000303268433, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\SemaphoreImpl.h" } },
- { "pid": 1, "tid": 37, "ts": 17064857.421875, "dur": 3383.5999965667725, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.3835999965667725, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\SocketImpl.h" } },
- { "pid": 1, "tid": 37, "ts": 17068246.09375, "dur": 1425.9999990463257, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4259999990463257, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\ThreadImpl.h" } },
- { "pid": 1, "tid": 37, "ts": 17069687.5, "dur": 673.5000014305115, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6735000014305115, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\ThreadLocalValueImpl.h" } },
- { "pid": 1, "tid": 37, "ts": 17070367.1875, "dur": 546.0000038146973, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5460000038146973, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\WindowsHeaders.h" } },
- { "pid": 1, "tid": 37, "ts": 17070917.96875, "dur": 442.2000050544739, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4422000050544739, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\WindowsHelpers.h" } },
- { "pid": 1, "tid": 37, "ts": 17071363.28125, "dur": 3634.2999935150146, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6342999935150146, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\BrokeredFileSystem.h" } },
- { "pid": 1, "tid": 37, "ts": 17075005.859375, "dur": 970.3999757766724, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9703999757766724, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\ReferenceCounter.h" } },
- { "pid": 1, "tid": 37, "ts": 17075982.421875, "dur": 1228.2999753952026, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2282999753952026, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\SynchronousOperation.h" } },
- { "pid": 1, "tid": 37, "ts": 17077216.796875, "dur": 3134.9000930786133, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.1349000930786133, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Win32ApiSharedEmulation.h" } },
- { "pid": 1, "tid": 37, "ts": 17080359.375, "dur": 1226.9999980926514, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2269999980926514, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Win32ApiWinRTEmulation.h" } },
- { "pid": 1, "tid": 37, "ts": 17081603.515625, "dur": 1271.6000080108643, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2716000080108643, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WindowsGames\\Win32ApiWindowsGamesEmulation.h" } },
- { "pid": 1, "tid": 37, "ts": 17082880.859375, "dur": 669.0999865531921, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6690999865531921, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WindowsRuntime.h" } },
- { "pid": 1, "tid": 37, "ts": 17083556.640625, "dur": 562.7999901771545, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5627999901771545, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Allocator.h" } },
- { "pid": 1, "tid": 37, "ts": 17084125, "dur": 679.1999936103821, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6791999936103821, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Atomic-c-api.h" } },
- { "pid": 1, "tid": 37, "ts": 17084806.640625, "dur": 445.6999897956848, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4456999897956848, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\ConditionVariable-c-api.h" } },
- { "pid": 1, "tid": 37, "ts": 17085257.8125, "dur": 451.4999985694885, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4514999985694885, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\CpuInfo-c-api.h" } },
- { "pid": 1, "tid": 37, "ts": 17085712.890625, "dur": 619.8999881744385, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6198999881744385, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Debug-c-api.h" } },
- { "pid": 1, "tid": 37, "ts": 17086341.796875, "dur": 862.1000051498413, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8621000051498413, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Environment-c-api.h" } },
- { "pid": 1, "tid": 37, "ts": 17087207.03125, "dur": 687.0999932289124, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6870999932289124, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\File-c-api.h" } },
- { "pid": 1, "tid": 37, "ts": 17087896.484375, "dur": 556.5999746322632, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5565999746322632, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\LibraryLoader-c-api.h" } },
- { "pid": 1, "tid": 37, "ts": 17088457.03125, "dur": 658.5000157356262, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6585000157356262, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Locale-c-api.h" } },
- { "pid": 1, "tid": 37, "ts": 17089121.09375, "dur": 628.4999847412109, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6284999847412109, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\MemoryMappedFile-c-api.h" } },
- { "pid": 1, "tid": 37, "ts": 17089755.859375, "dur": 668.7999963760376, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6687999963760376, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Mutex-c-api.h" } },
- { "pid": 1, "tid": 37, "ts": 17090427.734375, "dur": 546.4000105857849, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5464000105857849, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Path-c-api.h" } },
- { "pid": 1, "tid": 37, "ts": 17090978.515625, "dur": 718.2999849319458, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7182999849319458, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Semaphore-c-api.h" } },
- { "pid": 1, "tid": 37, "ts": 17091699.21875, "dur": 468.60000491142273, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.46860000491142273, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Thread-c-api.h" } },
- { "pid": 1, "tid": 37, "ts": 17092169.921875, "dur": 691.6999816894531, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6916999816894531, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\ThreadLocalValue-c-api.h" } },
- { "pid": 1, "tid": 37, "ts": 17092867.1875, "dur": 438.69999051094055, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.43869999051094055, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\TimeZoneInfo-c-api.h" } },
- { "pid": 1, "tid": 37, "ts": 17093308.59375, "dur": 1021.9000577926636, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0219000577926636, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\il2cpp-config-api-platforms.h" } },
- { "pid": 1, "tid": 37, "ts": 17094339.84375, "dur": 2975.300073623657, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.9753000736236572, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\PathHelper.h" } },
- { "pid": 1, "tid": 37, "ts": 17097318.359375, "dur": 1017.0999765396118, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0170999765396118, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\CallOnce.h" } },
- { "pid": 1, "tid": 37, "ts": 17098341.796875, "dur": 1245.90003490448, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.24590003490448, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Collections.h" } },
- { "pid": 1, "tid": 37, "ts": 17099597.65625, "dur": 485.70001125335693, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.48570001125335693, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Exception.h" } },
- { "pid": 1, "tid": 37, "ts": 17100085.9375, "dur": 9902.400016784668, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.902400016784668, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\ExtendedAtomicTypes.h" } },
- { "pid": 1, "tid": 37, "ts": 17109994.140625, "dur": 876.3999938964844, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8763999938964844, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\HashUtils.h" } },
- { "pid": 1, "tid": 37, "ts": 17110875, "dur": 1496.899962425232, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.496899962425232, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Il2CppHashMap.h" } },
- { "pid": 1, "tid": 37, "ts": 17112384.765625, "dur": 1225.8000373840332, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2258000373840332, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\KeyWrapper.h" } },
- { "pid": 1, "tid": 37, "ts": 17113617.1875, "dur": 403.69999408721924, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.40369999408721924, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MarshalingUtils.h" } },
- { "pid": 1, "tid": 37, "ts": 17114023.4375, "dur": 1266.6000127792358, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2666000127792358, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Memory.h" } },
- { "pid": 1, "tid": 37, "ts": 17115294.921875, "dur": 743.399977684021, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.743399977684021, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MemoryRead.h" } },
- { "pid": 1, "tid": 37, "ts": 17116042.96875, "dur": 2253.700017929077, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.253700017929077, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\New.h" } },
- { "pid": 1, "tid": 37, "ts": 17118300.78125, "dur": 1837.9000425338745, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.8379000425338745, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Runtime.h" } },
- { "pid": 1, "tid": 37, "ts": 17120144.53125, "dur": 1094.2000150680542, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0942000150680542, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\StringView.h" } },
- { "pid": 1, "tid": 37, "ts": 17121246.09375, "dur": 876.2999773025513, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8762999773025513, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\StringViewUtils.h" } },
- { "pid": 1, "tid": 37, "ts": 17122128.90625, "dur": 548.5000014305115, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5485000014305115, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\ThreadSafeFreeList.h" } },
- { "pid": 1, "tid": 37, "ts": 17122679.6875, "dur": 496.6999888420105, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4966999888420105, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\sha1.h" } },
- { "pid": 1, "tid": 37, "ts": 17123181.640625, "dur": 531.8999886512756, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5318999886512756, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\utf8-cpp\\source\\utf8.h" } },
- { "pid": 1, "tid": 37, "ts": 17123718.75, "dur": 767.0999765396118, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7670999765396118, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\utf8-cpp\\source\\utf8\\core.h" } },
- { "pid": 1, "tid": 37, "ts": 17124490.234375, "dur": 384.9000036716461, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3849000036716461, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\BlobReader.h" } },
- { "pid": 1, "tid": 37, "ts": 17124876.953125, "dur": 939.4999742507935, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9394999742507935, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\NativeDelegateMethodCache.h" } },
- { "pid": 1, "tid": 37, "ts": 17125824.21875, "dur": 356.2000095844269, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3562000095844269, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\NativeSymbol.h" } },
- { "pid": 1, "tid": 37, "ts": 17126187.5, "dur": 557.699978351593, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.557699978351593, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\icalls\\mscorlib\\System.Threading\\Interlocked.h" } },
- { "pid": 1, "tid": 37, "ts": 17126748.046875, "dur": 6209.59997177124, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.20959997177124, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ActivationFactoryBase.h" } },
- { "pid": 1, "tid": 37, "ts": 17132962.890625, "dur": 1016.9999599456787, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0169999599456787, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\CCWBase.h" } },
- { "pid": 1, "tid": 37, "ts": 17133988.28125, "dur": 1584.6999883651733, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5846999883651733, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\COMEntryPoints.h" } },
- { "pid": 1, "tid": 37, "ts": 17135574.21875, "dur": 1697.100043296814, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.697100043296814, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Class.h" } },
- { "pid": 1, "tid": 37, "ts": 17137277.34375, "dur": 1085.5000019073486, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0855000019073486, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ComObjectBase.h" } },
- { "pid": 1, "tid": 37, "ts": 17138369.140625, "dur": 577.4000287055969, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5774000287055969, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Enum.h" } },
- { "pid": 1, "tid": 37, "ts": 17138949.21875, "dur": 820.5999732017517, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8205999732017517, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Exception.h" } },
- { "pid": 1, "tid": 37, "ts": 17139773.4375, "dur": 859.000027179718, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.859000027179718, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\GenericContainer.h" } },
- { "pid": 1, "tid": 37, "ts": 17140638.671875, "dur": 832.7999711036682, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8327999711036682, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\GlobalMetadataFileInternals.h" } },
- { "pid": 1, "tid": 37, "ts": 17141476.5625, "dur": 613.4999990463257, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6134999990463257, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\InternalCalls.h" } },
- { "pid": 1, "tid": 37, "ts": 17142099.609375, "dur": 892.0999765396118, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8920999765396118, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Liveness.h" } },
- { "pid": 1, "tid": 37, "ts": 17142996.09375, "dur": 656.7000150680542, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6567000150680542, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MemoryInformation.h" } },
- { "pid": 1, "tid": 37, "ts": 17143656.25, "dur": 3837.5000953674316, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8375000953674316, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MetadataCache.h" } },
- { "pid": 1, "tid": 37, "ts": 17147500, "dur": 2604.0000915527344, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.6040000915527344, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Module.h" } },
- { "pid": 1, "tid": 37, "ts": 17150115.234375, "dur": 3627.500057220459, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.627500057220459, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\NonCachedCCWBase.h" } },
- { "pid": 1, "tid": 37, "ts": 17153750, "dur": 782.0000052452087, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7820000052452087, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Object.h" } },
- { "pid": 1, "tid": 37, "ts": 17154537.109375, "dur": 505.40000200271606, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5054000020027161, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Path.h" } },
- { "pid": 1, "tid": 37, "ts": 17155044.921875, "dur": 1129.7999620437622, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1297999620437622, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Profiler.h" } },
- { "pid": 1, "tid": 37, "ts": 17156183.59375, "dur": 609.3000173568726, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6093000173568726, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Random.h" } },
- { "pid": 1, "tid": 37, "ts": 17156796.875, "dur": 593.2000279426575, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5932000279426575, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Reflection.h" } },
- { "pid": 1, "tid": 37, "ts": 17157394.53125, "dur": 567.4999952316284, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5674999952316284, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ScopedThreadAttacher.h" } },
- { "pid": 1, "tid": 37, "ts": 17157964.84375, "dur": 647.4999785423279, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6474999785423279, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\String.h" } },
- { "pid": 1, "tid": 37, "ts": 17158615.234375, "dur": 495.0999915599823, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4950999915599823, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ThreadPool.h" } },
- { "pid": 1, "tid": 37, "ts": 17159115.234375, "dur": 754.7000050544739, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7547000050544739, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Type.h" } },
- { "pid": 1, "tid": 37, "ts": 17159873.046875, "dur": 556.9999814033508, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5569999814033508, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\WindowsRuntime.h" } },
- { "pid": 1, "tid": 38, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 38, "ts": 16871003.90625, "dur": 642.799973487854, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.642799973487854, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.IO\\FAMWatcher.h" } },
- { "pid": 1, "tid": 38, "ts": 16871654.296875, "dur": 557.699978351593, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.557699978351593, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.IO\\InotifyWatcher.h" } },
- { "pid": 1, "tid": 38, "ts": 16872212.890625, "dur": 728.7999987602234, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7287999987602234, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net.Sockets\\Socket.h" } },
- { "pid": 1, "tid": 38, "ts": 16872945.3125, "dur": 516.3000226020813, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5163000226020813, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net\\Dns.h" } },
- { "pid": 1, "tid": 38, "ts": 16873464.84375, "dur": 553.7999868392944, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5537999868392944, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono.Globalization.Unicode\\Normalization.h" } },
- { "pid": 1, "tid": 38, "ts": 16874023.4375, "dur": 456.49999380111694, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.45649999380111694, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono.Security.Cryptography\\KeyPairPersistence.h" } },
- { "pid": 1, "tid": 38, "ts": 16874482.421875, "dur": 772.4000215530396, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7724000215530396, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\Runtime.h" } },
- { "pid": 1, "tid": 38, "ts": 16875259.765625, "dur": 381.19998574256897, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.38119998574256897, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\RuntimeGPtrArrayHandle.h" } },
- { "pid": 1, "tid": 38, "ts": 16875648.4375, "dur": 745.8000183105469, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7458000183105469, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\SafeStringMarshal.h" } },
- { "pid": 1, "tid": 38, "ts": 16876396.484375, "dur": 3340.1999473571777, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.3401999473571777, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\Debugger.h" } },
- { "pid": 1, "tid": 38, "ts": 16879742.1875, "dur": 339.80000019073486, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.33980000019073486, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CalendarData.h" } },
- { "pid": 1, "tid": 38, "ts": 16880083.984375, "dur": 2332.70001411438, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.33270001411438, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CompareOptions.h" } },
- { "pid": 1, "tid": 38, "ts": 16882421.875, "dur": 2238.6999130249023, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.2386999130249023, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CultureInfo.h" } },
- { "pid": 1, "tid": 38, "ts": 16884667.96875, "dur": 655.6000113487244, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6556000113487244, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CultureInfoTables.h" } },
- { "pid": 1, "tid": 38, "ts": 16885328.125, "dur": 4991.199970245361, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.991199970245361, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\Generated\\CultureInfoTablesNet_4_0.h" } },
- { "pid": 1, "tid": 38, "ts": 16890322.265625, "dur": 813.7000203132629, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8137000203132629, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\AssemblyBuilder.h" } },
- { "pid": 1, "tid": 38, "ts": 16891142.578125, "dur": 531.7000150680542, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5317000150680542, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\CustomAttributeBuilder.h" } },
- { "pid": 1, "tid": 38, "ts": 16891683.59375, "dur": 613.3999824523926, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6133999824523926, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\DerivedType.h" } },
- { "pid": 1, "tid": 38, "ts": 16892304.6875, "dur": 504.9999952316284, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5049999952316284, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\DynamicMethod.h" } },
- { "pid": 1, "tid": 38, "ts": 16892814.453125, "dur": 559.8999857902527, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5598999857902527, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\EnumBuilder.h" } },
- { "pid": 1, "tid": 38, "ts": 16893382.8125, "dur": 505.1000118255615, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5051000118255615, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\GenericTypeParameterBuilder.h" } },
- { "pid": 1, "tid": 38, "ts": 16893892.578125, "dur": 586.6000056266785, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5866000056266785, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\MethodBuilder.h" } },
- { "pid": 1, "tid": 38, "ts": 16894484.375, "dur": 1808.3000183105469, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.8083000183105469, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\ModuleBuilder.h" } },
- { "pid": 1, "tid": 38, "ts": 16896300.78125, "dur": 852.5000214576721, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8525000214576721, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\SignatureHelper.h" } },
- { "pid": 1, "tid": 38, "ts": 16897164.0625, "dur": 1402.400016784668, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.402400016784668, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\SymbolType.h" } },
- { "pid": 1, "tid": 38, "ts": 16898572.265625, "dur": 560.5000257492065, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5605000257492065, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\TypeBuilder.h" } },
- { "pid": 1, "tid": 38, "ts": 16899138.671875, "dur": 982.4000000953674, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9824000000953674, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\Assembly.h" } },
- { "pid": 1, "tid": 38, "ts": 16900125, "dur": 596.5999960899353, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5965999960899353, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\AssemblyName.h" } },
- { "pid": 1, "tid": 38, "ts": 16900726.5625, "dur": 357.1000099182129, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3571000099182129, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\CustomAttributeData.h" } },
- { "pid": 1, "tid": 38, "ts": 16901089.84375, "dur": 632.8999996185303, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6328999996185303, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\EventInfo.h" } },
- { "pid": 1, "tid": 38, "ts": 16901728.515625, "dur": 768.4999704360962, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7684999704360962, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\FieldInfo.h" } },
- { "pid": 1, "tid": 38, "ts": 16902503.90625, "dur": 893.5999870300293, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8935999870300293, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MemberInfo.h" } },
- { "pid": 1, "tid": 38, "ts": 16903404.296875, "dur": 442.90000200271606, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.44290000200271606, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MethodBase.h" } },
- { "pid": 1, "tid": 38, "ts": 16903851.5625, "dur": 773.5999822616577, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7735999822616577, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\Module.h" } },
- { "pid": 1, "tid": 38, "ts": 16904630.859375, "dur": 437.90000677108765, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.43790000677108765, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoCMethod.h" } },
- { "pid": 1, "tid": 38, "ts": 16905072.265625, "dur": 532.0000052452087, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5320000052452087, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoEventInfo.h" } },
- { "pid": 1, "tid": 38, "ts": 16905609.375, "dur": 578.8999795913696, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5788999795913696, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoField.h" } },
- { "pid": 1, "tid": 38, "ts": 16906193.359375, "dur": 640.2999758720398, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6402999758720398, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoGenericCMethod.h" } },
- { "pid": 1, "tid": 38, "ts": 16906839.84375, "dur": 513.8000249862671, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5138000249862671, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoGenericClass.h" } },
- { "pid": 1, "tid": 38, "ts": 16907359.375, "dur": 555.9999942779541, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5559999942779541, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoGenericMethod.h" } },
- { "pid": 1, "tid": 38, "ts": 16907916.015625, "dur": 570.8000063896179, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5708000063896179, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoMethodInfo.h" } },
- { "pid": 1, "tid": 38, "ts": 16908490.234375, "dur": 809.0000152587891, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8090000152587891, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\ParameterInfo.h" } },
- { "pid": 1, "tid": 38, "ts": 16909304.6875, "dur": 383.59999656677246, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.38359999656677246, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\RtFieldInfo.h" } },
- { "pid": 1, "tid": 38, "ts": 16909691.40625, "dur": 526.199996471405, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.526199996471405, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.InteropServices.WindowsRuntime\\UnsafeNativeMethods.h" } },
- { "pid": 1, "tid": 38, "ts": 16910222.65625, "dur": 979.0999889373779, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9790999889373779, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.InteropServices\\Marshal.h" } },
- { "pid": 1, "tid": 38, "ts": 16911205.078125, "dur": 379.9000084400177, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3799000084400177, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Messaging\\AsyncResult.h" } },
- { "pid": 1, "tid": 38, "ts": 16911589.84375, "dur": 1070.7999467849731, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0707999467849731, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Proxies\\RealProxy.h" } },
- { "pid": 1, "tid": 38, "ts": 16912669.921875, "dur": 1209.9000215530396, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2099000215530396, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting\\RemotingServices.h" } },
- { "pid": 1, "tid": 38, "ts": 16913886.71875, "dur": 486.9999885559082, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4869999885559082, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Versioning\\VersioningHelper.h" } },
- { "pid": 1, "tid": 38, "ts": 16914378.90625, "dur": 801.1000156402588, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8011000156402588, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Cryptography\\RNGCryptoServiceProvider.h" } },
- { "pid": 1, "tid": 38, "ts": 16915187.5, "dur": 510.2999806404114, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5102999806404114, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Policy\\Evidence.h" } },
- { "pid": 1, "tid": 38, "ts": 16915699.21875, "dur": 648.1000185012817, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6481000185012817, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Principal\\WindowsIdentity.h" } },
- { "pid": 1, "tid": 38, "ts": 16916353.515625, "dur": 14842.399597167969, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 14.842399597167969, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Principal\\WindowsImpersonationContext.h" } },
- { "pid": 1, "tid": 38, "ts": 16931203.125, "dur": 571.399986743927, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.571399986743927, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Principal\\WindowsPrincipal.h" } },
- { "pid": 1, "tid": 38, "ts": 16931785.15625, "dur": 515.1000022888184, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5151000022888184, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security\\SecurityManager.h" } },
- { "pid": 1, "tid": 38, "ts": 16932302.734375, "dur": 517.0000195503235, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5170000195503235, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Text\\EncodingHelper.h" } },
- { "pid": 1, "tid": 38, "ts": 16933152.34375, "dur": 654.5000076293945, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6545000076293945, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Monitor.h" } },
- { "pid": 1, "tid": 38, "ts": 16933810.546875, "dur": 568.3000087738037, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5683000087738037, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\NativeEventCalls.h" } },
- { "pid": 1, "tid": 38, "ts": 16934480.46875, "dur": 21293.19953918457, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 21.29319953918457, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Thread.h" } },
- { "pid": 1, "tid": 38, "ts": 16955779.296875, "dur": 21003.000259399414, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 21.003000259399414, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\GC.h" } },
- { "pid": 1, "tid": 38, "ts": 16976787.109375, "dur": 3291.8999195098877, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.2918999195098877, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Number.h" } },
- { "pid": 1, "tid": 38, "ts": 16980085.9375, "dur": 2192.8999423980713, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.1928999423980713, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\RuntimeFieldHandle.h" } },
- { "pid": 1, "tid": 38, "ts": 16982287.109375, "dur": 1253.7000179290771, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2537000179290771, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\RuntimeType.h" } },
- { "pid": 1, "tid": 38, "ts": 16983548.828125, "dur": 479.40000891685486, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.47940000891685486, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\SizedReference.h" } },
- { "pid": 1, "tid": 38, "ts": 16984037.109375, "dur": 1336.6999626159668, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3366999626159668, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\String.h" } },
- { "pid": 1, "tid": 38, "ts": 16985378.90625, "dur": 1234.3000173568726, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2343000173568726, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Type.h" } },
- { "pid": 1, "tid": 38, "ts": 16986619.140625, "dur": 673.9000082015991, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6739000082015991, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\ValueType.h" } },
- { "pid": 1, "tid": 38, "ts": 16987298.828125, "dur": 934.499979019165, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.934499979019165, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-api-functions.h" } },
- { "pid": 1, "tid": 38, "ts": 16988236.328125, "dur": 807.3999881744385, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8073999881744385, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-api.h" } },
- { "pid": 1, "tid": 38, "ts": 16989046.875, "dur": 548.6999750137329, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5486999750137329, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-blob.h" } },
- { "pid": 1, "tid": 38, "ts": 16989597.65625, "dur": 744.3000078201294, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7443000078201294, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-config-api.h" } },
- { "pid": 1, "tid": 38, "ts": 16990347.65625, "dur": 1098.3999967575073, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0983999967575073, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-config.h" } },
- { "pid": 1, "tid": 38, "ts": 16991449.21875, "dur": 15978.19995880127, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 15.97819995880127, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-number-formatter.h" } },
- { "pid": 1, "tid": 38, "ts": 17007431.640625, "dur": 511.90000772476196, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.511900007724762, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericClassHash.h" } },
- { "pid": 1, "tid": 38, "ts": 17007947.265625, "dur": 718.5999751091003, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7185999751091003, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericContextCompare.h" } },
- { "pid": 1, "tid": 38, "ts": 17008671.875, "dur": 954.9999833106995, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9549999833106995, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericInstCompare.h" } },
- { "pid": 1, "tid": 38, "ts": 17009630.859375, "dur": 1292.799949645996, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.292799949645996, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericMethodHash.h" } },
- { "pid": 1, "tid": 38, "ts": 17010927.734375, "dur": 1636.9999647140503, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.6369999647140503, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppTypeCompare.h" } },
- { "pid": 1, "tid": 38, "ts": 17012572.265625, "dur": 667.6999926567078, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6676999926567078, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppTypeHash.h" } },
- { "pid": 1, "tid": 38, "ts": 17013250, "dur": 514.1000151634216, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5141000151634216, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppTypeVector.h" } },
- { "pid": 1, "tid": 38, "ts": 17013771.484375, "dur": 2089.400053024292, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.089400053024292, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono-structs.h" } },
- { "pid": 1, "tid": 38, "ts": 17015867.1875, "dur": 1814.5999908447266, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.8145999908447266, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\ThreadPoolMacros.h" } },
- { "pid": 1, "tid": 38, "ts": 17017685.546875, "dur": 1290.7999753952026, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2907999753952026, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\ThreadPoolWorkerThread.h" } },
- { "pid": 1, "tid": 38, "ts": 17018984.375, "dur": 793.7999963760376, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7937999963760376, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\threadpool-ms-io.h" } },
- { "pid": 1, "tid": 38, "ts": 17019785.15625, "dur": 393.20001006126404, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.39320001006126404, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Assert.h" } },
- { "pid": 1, "tid": 38, "ts": 17020181.640625, "dur": 855.4999828338623, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8554999828338623, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\COM.h" } },
- { "pid": 1, "tid": 38, "ts": 17021039.0625, "dur": 693.4000253677368, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6934000253677368, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Console.h" } },
- { "pid": 1, "tid": 38, "ts": 17021738.28125, "dur": 928.3999800682068, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9283999800682068, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\CpuInfo.h" } },
- { "pid": 1, "tid": 38, "ts": 17022669.921875, "dur": 1380.4999589920044, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3804999589920044, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Cryptography.h" } },
- { "pid": 1, "tid": 38, "ts": 17024054.6875, "dur": 624.5999932289124, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6245999932289124, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Encoding.h" } },
- { "pid": 1, "tid": 38, "ts": 17024683.59375, "dur": 439.300000667572, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.439300000667572, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Error.h" } },
- { "pid": 1, "tid": 38, "ts": 17025125, "dur": 894.8000073432922, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8948000073432922, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Event.h" } },
- { "pid": 1, "tid": 38, "ts": 17026027.34375, "dur": 740.2999997138977, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7402999997138977, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\File.h" } },
- { "pid": 1, "tid": 38, "ts": 17026771.484375, "dur": 2625.2999305725098, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.6252999305725098, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\SocketImpl.h" } },
- { "pid": 1, "tid": 38, "ts": 17029404.296875, "dur": 747.3999857902527, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7473999857902527, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Initialize.h" } },
- { "pid": 1, "tid": 38, "ts": 17030156.25, "dur": 1076.5999555587769, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0765999555587769, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\LibraryLoader.h" } },
- { "pid": 1, "tid": 38, "ts": 17031240.234375, "dur": 563.7999773025513, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5637999773025513, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\Automation.h" } },
- { "pid": 1, "tid": 38, "ts": 17031810.546875, "dur": 485.5000078678131, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4855000078678131, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\Lifecycle.h" } },
- { "pid": 1, "tid": 38, "ts": 17032298.828125, "dur": 348.8999903202057, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3488999903202057, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\MarshalStringAlloc.h" } },
- { "pid": 1, "tid": 38, "ts": 17032650.390625, "dur": 594.9000120162964, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5949000120162964, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\MemoryMappedFile.h" } },
- { "pid": 1, "tid": 38, "ts": 17033250, "dur": 728.5000085830688, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7285000085830688, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Mutex.h" } },
- { "pid": 1, "tid": 38, "ts": 17033982.421875, "dur": 627.6999711990356, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6276999711990356, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\ConditionVariableImpl.h" } },
- { "pid": 1, "tid": 38, "ts": 17034619.140625, "dur": 715.2000069618225, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7152000069618225, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\EventImpl.h" } },
- { "pid": 1, "tid": 38, "ts": 17035337.890625, "dur": 674.8999953269958, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6748999953269958, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\MutexImpl.h" } },
- { "pid": 1, "tid": 38, "ts": 17036015.625, "dur": 1029.8999547958374, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0298999547958374, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\PosixWaitObject.h" } },
- { "pid": 1, "tid": 38, "ts": 17037052.734375, "dur": 3067.6000118255615, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.0676000118255615, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\SemaphoreImpl.h" } },
- { "pid": 1, "tid": 38, "ts": 17040130.859375, "dur": 1010.5999708175659, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.010599970817566, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\ThreadImpl.h" } },
- { "pid": 1, "tid": 38, "ts": 17041144.53125, "dur": 544.0000295639038, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5440000295639038, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Process.h" } },
- { "pid": 1, "tid": 38, "ts": 17041693.359375, "dur": 510.99997758865356, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5109999775886536, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ReaderWriterLock.h" } },
- { "pid": 1, "tid": 38, "ts": 17042207.03125, "dur": 416.79999232292175, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.41679999232292175, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ReaderWriterLockImpl.h" } },
- { "pid": 1, "tid": 38, "ts": 17042628.90625, "dur": 629.5999884605408, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6295999884605408, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Semaphore.h" } },
- { "pid": 1, "tid": 38, "ts": 17043263.671875, "dur": 884.8000168800354, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8848000168800354, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Socket.h" } },
- { "pid": 1, "tid": 38, "ts": 17044154.296875, "dur": 1460.8999490737915, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4608999490737915, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\SocketBridge.h" } },
- { "pid": 1, "tid": 38, "ts": 17045621.09375, "dur": 686.1000061035156, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6861000061035156, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\StackTrace.h" } },
- { "pid": 1, "tid": 38, "ts": 17046314.453125, "dur": 1347.2000360488892, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3472000360488892, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Std\\ThreadImpl.h" } },
- { "pid": 1, "tid": 38, "ts": 17047667.96875, "dur": 439.50000405311584, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.43950000405311584, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\SynchronizationContext.h" } },
- { "pid": 1, "tid": 38, "ts": 17048113.28125, "dur": 451.9999921321869, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4519999921321869, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\SystemCertificates.h" } },
- { "pid": 1, "tid": 38, "ts": 17048568.359375, "dur": 521.3000178337097, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5213000178337097, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Thread.h" } },
- { "pid": 1, "tid": 38, "ts": 17049093.75, "dur": 35336.097717285156, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 35.336097717285156, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ThreadLocalValue.h" } },
- { "pid": 1, "tid": 38, "ts": 17084435.546875, "dur": 712.1000289916992, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7121000289916992, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\COM-c-api.h" } },
- { "pid": 1, "tid": 38, "ts": 17085150.390625, "dur": 460.099995136261, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.460099995136261, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Console-c-api.h" } },
- { "pid": 1, "tid": 38, "ts": 17085619.140625, "dur": 518.8999772071838, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5188999772071838, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Cryptography-c-api.h" } },
- { "pid": 1, "tid": 38, "ts": 17086144.53125, "dur": 505.99998235702515, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5059999823570251, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Directory-c-api.h" } },
- { "pid": 1, "tid": 38, "ts": 17086654.296875, "dur": 402.20001339912415, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.40220001339912415, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Error-c-api.h" } },
- { "pid": 1, "tid": 38, "ts": 17087058.59375, "dur": 825.6999850273132, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8256999850273132, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Event-c-api.h" } },
- { "pid": 1, "tid": 38, "ts": 17087896.484375, "dur": 607.5999736785889, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6075999736785889, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Handle-c-api.h" } },
- { "pid": 1, "tid": 38, "ts": 17088505.859375, "dur": 609.8999977111816, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6098999977111816, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Memory-c-api.h" } },
- { "pid": 1, "tid": 38, "ts": 17089121.09375, "dur": 699.400007724762, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.699400007724762, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Messages-c-api.h" } },
- { "pid": 1, "tid": 38, "ts": 17089824.21875, "dur": 527.5999903678894, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5275999903678894, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\NativeMethods-c-api.h" } },
- { "pid": 1, "tid": 38, "ts": 17090355.46875, "dur": 617.3999905586243, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6173999905586243, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\OSGlobalEnums.h" } },
- { "pid": 1, "tid": 38, "ts": 17090978.515625, "dur": 333.6000144481659, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3336000144481659, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Process-c-api.h" } },
- { "pid": 1, "tid": 38, "ts": 17091314.453125, "dur": 368.2999908924103, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3682999908924103, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Socket-c-api.h" } },
- { "pid": 1, "tid": 38, "ts": 17091687.5, "dur": 493.09998750686646, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.49309998750686646, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\SystemCertificates-c-api.h" } },
- { "pid": 1, "tid": 38, "ts": 17092183.59375, "dur": 448.9000141620636, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4489000141620636, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Time-c-api.h" } },
- { "pid": 1, "tid": 38, "ts": 17092636.71875, "dur": 488.0000054836273, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4880000054836273, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\TimeZone-c-api.h" } },
- { "pid": 1, "tid": 38, "ts": 17093125, "dur": 501.6000270843506, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5016000270843506, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\WaitStatus-c-api.h" } },
- { "pid": 1, "tid": 38, "ts": 17093632.8125, "dur": 2152.1999835968018, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.1521999835968018, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\il2cpp-config-platforms.h" } },
- { "pid": 1, "tid": 38, "ts": 17095791.015625, "dur": 548.6000180244446, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5486000180244446, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\pch\\pch-c.h" } },
- { "pid": 1, "tid": 38, "ts": 17096347.65625, "dur": 627.7999877929688, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6277999877929688, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\plugin\\UnityPlugin.h" } },
- { "pid": 1, "tid": 38, "ts": 17096982.421875, "dur": 1459.4000577926636, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4594000577926636, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\plugin\\plugin.h" } },
- { "pid": 1, "tid": 38, "ts": 17098552.734375, "dur": 845.6000089645386, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8456000089645386, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\DirectoryUtils.h" } },
- { "pid": 1, "tid": 38, "ts": 17099404.296875, "dur": 363.20000886917114, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.36320000886917114, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Environment.h" } },
- { "pid": 1, "tid": 38, "ts": 17099773.4375, "dur": 10217.300415039062, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.217300415039062, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\ExceptionSupportStack.h" } },
- { "pid": 1, "tid": 38, "ts": 17109994.140625, "dur": 807.699978351593, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.807699978351593, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Functional.h" } },
- { "pid": 1, "tid": 38, "ts": 17110816.40625, "dur": 516.700029373169, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.516700029373169, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Il2CppHStringReference.h" } },
- { "pid": 1, "tid": 38, "ts": 17111339.84375, "dur": 1464.6999835968018, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4646999835968018, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Il2CppHashSet.h" } },
- { "pid": 1, "tid": 38, "ts": 17112810.546875, "dur": 1105.5999994277954, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1055999994277954, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Logging.h" } },
- { "pid": 1, "tid": 38, "ts": 17113921.875, "dur": 851.5999913215637, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8515999913215637, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MathUtils.h" } },
- { "pid": 1, "tid": 38, "ts": 17114779.296875, "dur": 455.3000032901764, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4553000032901764, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MemoryMappedFile.h" } },
- { "pid": 1, "tid": 38, "ts": 17115238.28125, "dur": 645.2999711036682, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6452999711036682, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MemoryPool.h" } },
- { "pid": 1, "tid": 38, "ts": 17115890.625, "dur": 511.2000107765198, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5112000107765198, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MemoryUtils.h" } },
- { "pid": 1, "tid": 38, "ts": 17116404.296875, "dur": 900.9000062942505, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9009000062942505, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\NonCopyable.h" } },
- { "pid": 1, "tid": 38, "ts": 17117312.5, "dur": 511.09999418258667, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5110999941825867, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Output.h" } },
- { "pid": 1, "tid": 38, "ts": 17117832.03125, "dur": 1823.799967765808, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.823799967765808, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\PathUtils.h" } },
- { "pid": 1, "tid": 38, "ts": 17119662.109375, "dur": 1637.4000310897827, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.6374000310897827, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\StringUtils.h" } },
- { "pid": 1, "tid": 38, "ts": 17121302.734375, "dur": 1166.3999557495117, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1663999557495117, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\TemplateUtils.h" } },
- { "pid": 1, "tid": 38, "ts": 17122474.609375, "dur": 793.39998960495, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.79339998960495, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\dynamic_array.h" } },
- { "pid": 1, "tid": 38, "ts": 17123271.484375, "dur": 712.4999761581421, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7124999761581421, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\utf8-cpp\\source\\utf8\\checked.h" } },
- { "pid": 1, "tid": 38, "ts": 17123988.28125, "dur": 760.9000205993652, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7609000205993652, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\utf8-cpp\\source\\utf8\\unchecked.h" } },
- { "pid": 1, "tid": 38, "ts": 17124755.859375, "dur": 1213.4000062942505, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2134000062942505, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\Debugger.h" } },
- { "pid": 1, "tid": 38, "ts": 17125974.609375, "dur": 694.100022315979, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.694100022315979, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\VmStringUtils.h" } },
- { "pid": 1, "tid": 38, "ts": 17126671.875, "dur": 492.7999973297119, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4927999973297119, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\icalls\\mscorlib\\System\\Math.h" } },
- { "pid": 1, "tid": 38, "ts": 17127169.921875, "dur": 2017.899990081787, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.017899990081787, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Array.h" } },
- { "pid": 1, "tid": 38, "ts": 17129199.21875, "dur": 1580.8000564575195, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5808000564575195, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Assembly.h" } },
- { "pid": 1, "tid": 38, "ts": 17130787.109375, "dur": 1646.299958229065, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.646299958229065, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\AssemblyName.h" } },
- { "pid": 1, "tid": 38, "ts": 17132441.40625, "dur": 646.3000178337097, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6463000178337097, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\CCW.h" } },
- { "pid": 1, "tid": 38, "ts": 17133091.796875, "dur": 1903.6999940872192, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.9036999940872192, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\COM.h" } },
- { "pid": 1, "tid": 38, "ts": 17135001.953125, "dur": 1957.200050354004, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.957200050354004, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\CachedCCWBase.h" } },
- { "pid": 1, "tid": 38, "ts": 17136966.796875, "dur": 628.8999915122986, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6288999915122986, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ClassInlines.h" } },
- { "pid": 1, "tid": 38, "ts": 17137599.609375, "dur": 836.1999988555908, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8361999988555908, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Domain.h" } },
- { "pid": 1, "tid": 38, "ts": 17138439.453125, "dur": 515.6000256538391, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5156000256538391, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Event.h" } },
- { "pid": 1, "tid": 38, "ts": 17138957.03125, "dur": 624.8999834060669, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6248999834060669, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Field.h" } },
- { "pid": 1, "tid": 38, "ts": 17139587.890625, "dur": 593.6999917030334, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5936999917030334, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\GenericClass.h" } },
- { "pid": 1, "tid": 38, "ts": 17140185.546875, "dur": 825.6000280380249, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8256000280380249, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\GlobalMetadata.h" } },
- { "pid": 1, "tid": 38, "ts": 17141015.625, "dur": 526.0000228881836, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5260000228881836, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Image.h" } },
- { "pid": 1, "tid": 38, "ts": 17141546.875, "dur": 616.2999868392944, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6162999868392944, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\LastError.h" } },
- { "pid": 1, "tid": 38, "ts": 17142166.015625, "dur": 945.8000063896179, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9458000063896179, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MarshalAlloc.h" } },
- { "pid": 1, "tid": 38, "ts": 17143115.234375, "dur": 537.0000004768372, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5370000004768372, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MetadataAlloc.h" } },
- { "pid": 1, "tid": 38, "ts": 17143656.25, "dur": 2139.699935913086, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.139699935913086, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MetadataLoader.h" } },
- { "pid": 1, "tid": 38, "ts": 17145802.734375, "dur": 774.8000025749207, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7748000025749207, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MetadataLock.h" } },
- { "pid": 1, "tid": 38, "ts": 17146585.9375, "dur": 3510.6000900268555, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5106000900268555, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Method.h" } },
- { "pid": 1, "tid": 38, "ts": 17150103.515625, "dur": 3963.200092315674, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.963200092315674, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Monitor.h" } },
- { "pid": 1, "tid": 38, "ts": 17154080.078125, "dur": 500.29999017715454, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5002999901771545, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Parameter.h" } },
- { "pid": 1, "tid": 38, "ts": 17154580.078125, "dur": 475.40000081062317, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.47540000081062317, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\PlatformInvoke.h" } },
- { "pid": 1, "tid": 38, "ts": 17155058.59375, "dur": 910.7999801635742, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9107999801635742, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Property.h" } },
- { "pid": 1, "tid": 38, "ts": 17155976.5625, "dur": 1011.6000175476074, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0116000175476074, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\RCW.h" } },
- { "pid": 1, "tid": 38, "ts": 17156996.09375, "dur": 497.20001220703125, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.49720001220703125, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Runtime.h" } },
- { "pid": 1, "tid": 38, "ts": 17157496.09375, "dur": 580.0999999046326, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5800999999046326, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\StackTrace.h" } },
- { "pid": 1, "tid": 38, "ts": 17158080.078125, "dur": 798.30002784729, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.79830002784729, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Thread.h" } },
- { "pid": 1, "tid": 38, "ts": 17158878.90625, "dur": 438.400000333786, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.438400000333786, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ThreadPoolMs.h" } },
- { "pid": 1, "tid": 38, "ts": 17159326.171875, "dur": 466.6000008583069, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4666000008583069, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\WaitHandle.h" } },
- { "pid": 1, "tid": 38, "ts": 17159798.828125, "dur": 644.6999907493591, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6446999907493591, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\WeakReference.h" } },
- { "pid": 1, "tid": 41, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 41, "ts": 16874855.46875, "dur": 495.59998512268066, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.49559998512268066, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\pch\\pch-c.h" } },
- { "pid": 1, "tid": 53, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 53, "ts": 17305734.375, "dur": 195023.78845214844, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 195.02378845214844, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc" } },
- { "pid": 1, "tid": 53, "ts": 17305759.765625, "dur": 20486.000061035156, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 20.486000061035156, "detail": ".cpp C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc" } },
- { "pid": 1, "tid": 53, "ts": 17326265.625, "dur": 174484.19189453125, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 174.48419189453125, "detail": ".c C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc" } },
- { "pid": 1, "tid": 53, "ts": 17500761.71875, "dur": 139293.8995361328, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 139.2938995361328, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os" } },
- { "pid": 1, "tid": 53, "ts": 17500775.390625, "dur": 123677.29949951172, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 123.67729949951172, "detail": ".cpp C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os" } },
- { "pid": 1, "tid": 53, "ts": 17624466.796875, "dur": 15564.200401306152, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 15.564200401306152, "detail": ".c C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os" } },
- { "pid": 1, "tid": 54, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 54, "ts": 17306476.5625, "dur": 15019.800186157227, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 15.019800186157227, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen" } },
- { "pid": 1, "tid": 54, "ts": 17306496.09375, "dur": 4119.100093841553, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 4.119100093841553, "detail": ".cpp C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen" } },
- { "pid": 1, "tid": 54, "ts": 17310630.859375, "dur": 10861.800193786621, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 10.861800193786621, "detail": ".c C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen" } },
- { "pid": 1, "tid": 54, "ts": 17321500, "dur": 237324.49340820312, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 237.32449340820312, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls" } },
- { "pid": 1, "tid": 54, "ts": 17321513.671875, "dur": 150945.49560546875, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 150.94549560546875, "detail": ".cpp C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls" } },
- { "pid": 1, "tid": 54, "ts": 17472476.5625, "dur": 86109.90142822266, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 86.10990142822266, "detail": ".c C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls" } },
- { "pid": 1, "tid": 54, "ts": 17558832.03125, "dur": 51887.39776611328, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 51.88739776611328, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\plugin" } },
- { "pid": 1, "tid": 54, "ts": 17558849.609375, "dur": 33802.29949951172, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 33.80229949951172, "detail": ".cpp C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\plugin" } },
- { "pid": 1, "tid": 54, "ts": 17592667.96875, "dur": 16725.900650024414, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 16.725900650024414, "detail": ".c C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\plugin" } },
- { "pid": 1, "tid": 54, "ts": 17610720.703125, "dur": 31172.800064086914, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 31.172800064086914, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils" } },
- { "pid": 1, "tid": 54, "ts": 17610742.1875, "dur": 29546.098709106445, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 29.546098709106445, "detail": ".cpp C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils" } },
- { "pid": 1, "tid": 54, "ts": 17640300.78125, "dur": 1587.2000455856323, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 1.5872000455856323, "detail": ".c C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils" } },
- { "pid": 1, "tid": 57, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 57, "ts": 17307701.171875, "dur": 610.7000112533569, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6107000112533569, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-common.cpp" } },
- { "pid": 1, "tid": 57, "ts": 17308316.40625, "dur": 926.9999861717224, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9269999861717224, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-il2cpp.cpp" } },
- { "pid": 1, "tid": 57, "ts": 17309248.046875, "dur": 890.6999826431274, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8906999826431274, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-tiny.cpp" } },
- { "pid": 1, "tid": 55, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 55, "ts": 17308861.328125, "dur": 64082.09991455078, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 64.08209991455078, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\debugger" } },
- { "pid": 1, "tid": 55, "ts": 17308884.765625, "dur": 11400.799751281738, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 11.400799751281738, "detail": ".cpp C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\debugger" } },
- { "pid": 1, "tid": 55, "ts": 17320333.984375, "dur": 52603.50036621094, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 52.60350036621094, "detail": ".c C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\debugger" } },
- { "pid": 1, "tid": 55, "ts": 17372945.3125, "dur": 213700.89721679688, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 213.70089721679688, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata" } },
- { "pid": 1, "tid": 55, "ts": 17372962.890625, "dur": 176714.38598632812, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 176.71438598632812, "detail": ".cpp C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata" } },
- { "pid": 1, "tid": 55, "ts": 17549720.703125, "dur": 36917.198181152344, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 36.917198181152344, "detail": ".c C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata" } },
- { "pid": 1, "tid": 55, "ts": 17586650.390625, "dur": 37960.70098876953, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 37.96070098876953, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils" } },
- { "pid": 1, "tid": 55, "ts": 17586695.3125, "dur": 17369.298934936523, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 17.369298934936523, "detail": ".cpp C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils" } },
- { "pid": 1, "tid": 55, "ts": 17604078.125, "dur": 20529.298782348633, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 20.529298782348633, "detail": ".c C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils" } },
- { "pid": 1, "tid": 59, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 59, "ts": 17314921.875, "dur": 1655.400037765503, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.655400037765503, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\debugger\\il2cpp-stubs.cpp" } },
- { "pid": 1, "tid": 56, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 56, "ts": 17315591.796875, "dur": 184660.79711914062, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 184.66079711914062, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc" } },
- { "pid": 1, "tid": 56, "ts": 17315617.1875, "dur": 26282.400131225586, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 26.282400131225586, "detail": ".cpp C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc" } },
- { "pid": 1, "tid": 56, "ts": 17341916.015625, "dur": 158328.0029296875, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 158.3280029296875, "detail": ".c C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc" } },
- { "pid": 1, "tid": 56, "ts": 17500257.8125, "dur": 90357.70416259766, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 90.35770416259766, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono" } },
- { "pid": 1, "tid": 56, "ts": 17500296.875, "dur": 59822.70050048828, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 59.82270050048828, "detail": ".cpp C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono" } },
- { "pid": 1, "tid": 56, "ts": 17560132.8125, "dur": 30254.701614379883, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 30.254701614379883, "detail": ".c C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono" } },
- { "pid": 1, "tid": 56, "ts": 17590621.09375, "dur": 49523.799896240234, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 49.523799896240234, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm" } },
- { "pid": 1, "tid": 56, "ts": 17590636.71875, "dur": 41932.498931884766, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 41.932498931884766, "detail": ".cpp C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm" } },
- { "pid": 1, "tid": 56, "ts": 17632583.984375, "dur": 7554.3999671936035, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 7.5543999671936035, "detail": ".c C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm" } },
- { "pid": 1, "tid": 65, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 65, "ts": 17318853.515625, "dur": 925.4000186920166, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9254000186920166, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\BoehmGC.cpp" } },
- { "pid": 1, "tid": 65, "ts": 17319783.203125, "dur": 964.2000198364258, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9642000198364258, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\GCHandle.cpp" } },
- { "pid": 1, "tid": 65, "ts": 17320753.90625, "dur": 649.6000289916992, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6496000289916992, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\GarbageCollector.cpp" } },
- { "pid": 1, "tid": 65, "ts": 17321408.203125, "dur": 787.1999740600586, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7871999740600586, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\NullGC.cpp" } },
- { "pid": 1, "tid": 65, "ts": 17322201.171875, "dur": 658.29998254776, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.65829998254776, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\WriteBarrier.cpp" } },
- { "pid": 1, "tid": 65, "ts": 17322863.28125, "dur": 930.2999973297119, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9302999973297119, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\WriteBarrierValidation.cpp" } },
- { "pid": 1, "tid": 69, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 69, "ts": 17360207.03125, "dur": 7050.300121307373, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.050300121307373, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System.Configuration\\System.Configuration\\InternalConfigurationHost.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17367269.53125, "dur": 621.5000152587891, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6215000152587891, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System.Core\\System.IO.MemoryMappedFiles\\MemoryMapImpl.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17367894.53125, "dur": 449.20000433921814, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.44920000433921814, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\Microsoft.Win32\\NativeMethods.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17368349.609375, "dur": 546.2999939918518, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5462999939918518, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\Mono.Net.Security\\MonoTlsProviderFactory.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17368904.296875, "dur": 538.8000011444092, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5388000011444092, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.ComponentModel\\Win32Exception.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17369449.21875, "dur": 516.7999863624573, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5167999863624573, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Configuration\\DefaultConfig.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17369970.703125, "dur": 495.7999885082245, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4957999885082245, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Configuration\\InternalConfigurationHost.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17370472.65625, "dur": 568.1999921798706, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5681999921798706, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\DefaultTraceListener.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17371375, "dur": 922.5999712944031, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9225999712944031, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\PerformanceCounter.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17372302.734375, "dur": 670.4999804496765, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6704999804496765, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\PerformanceCounterCategory.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17372976.5625, "dur": 443.1000053882599, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4431000053882599, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\PerformanceCounterUtils.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17373423.828125, "dur": 560.4000091552734, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5604000091552734, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\Process.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17373986.328125, "dur": 355.30000925064087, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.35530000925064087, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\Stopwatch.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17374347.65625, "dur": 384.20000672340393, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.38420000672340393, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.IO\\FAMWatcher.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17374734.375, "dur": 399.399995803833, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.399399995803833, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.IO\\FileSystemWatcher.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17375142.578125, "dur": 461.1000120639801, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4611000120639801, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.IO\\InotifyWatcher.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17375685.546875, "dur": 363.7999892234802, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3637999892234802, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.IO\\KqueueMonitor.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17376054.6875, "dur": 735.0000143051147, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7350000143051147, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net.NetworkInformation\\MacOsIPInterfaceProperties.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17376792.96875, "dur": 1414.8999452590942, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4148999452590942, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net.Sockets\\Socket.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17378214.84375, "dur": 981.7000031471252, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9817000031471252, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net.Sockets\\SocketException.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17379203.125, "dur": 2103.800058364868, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.103800058364868, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net\\Dns.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17381314.453125, "dur": 1834.1000080108643, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.8341000080108643, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Threading\\Semaphore.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17383162.109375, "dur": 938.0000233650208, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9380000233650208, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System\\IOSelector.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17384103.515625, "dur": 615.0000095367432, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6150000095367432, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono.Globalization.Unicode\\Normalization.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17384724.609375, "dur": 570.5000162124634, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5705000162124634, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono.Interop\\ComInteropProxy.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17385304.6875, "dur": 443.8999891281128, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4438999891281128, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono.Security.Cryptography\\KeyPairPersistence.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17385753.90625, "dur": 390.500009059906, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.390500009059906, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono.Unity\\UnityTls.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17386146.484375, "dur": 815.500020980835, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.815500020980835, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\Runtime.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17386966.796875, "dur": 381.09999895095825, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.38109999895095825, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\RuntimeGPtrArrayHandle.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17387351.5625, "dur": 344.59999203681946, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.34459999203681946, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\RuntimeMarshal.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17387701.171875, "dur": 435.9999895095825, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4359999895095825, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\SafeStringMarshal.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17388138.671875, "dur": 391.0999894142151, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3910999894142151, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\Assert.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17388541.015625, "dur": 556.4000010490417, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5564000010490417, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\Debugger.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17389103.515625, "dur": 532.2999954223633, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5322999954223633, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\StackFrame.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17389640.625, "dur": 516.4999961853027, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5164999961853027, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\StackTrace.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17390160.15625, "dur": 597.2999930381775, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5972999930381775, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CalendarData.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17390761.71875, "dur": 578.4000158309937, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5784000158309937, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CompareInfo.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17391343.75, "dur": 662.5000238418579, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6625000238418579, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CultureData.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17392011.71875, "dur": 660.6000065803528, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6606000065803528, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CultureInfo.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17392675.78125, "dur": 460.7999920845032, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4607999920845032, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\RegionInfo.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17393140.625, "dur": 472.4999964237213, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4724999964237213, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.IO\\DriveInfo.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17393619.140625, "dur": 936.3999962806702, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9363999962806702, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.IO\\MonoIO.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17394558.59375, "dur": 1622.3000288009644, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.6223000288009644, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.IO\\Path.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17396250, "dur": 1489.300012588501, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.489300012588501, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\AssemblyBuilder.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17397746.09375, "dur": 1339.1000032424927, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3391000032424927, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\CustomAttributeBuilder.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17399089.84375, "dur": 642.799973487854, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.642799973487854, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\DerivedType.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17399738.28125, "dur": 559.7000122070312, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5597000122070312, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\DynamicMethod.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17400302.734375, "dur": 407.79998898506165, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.40779998898506165, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\EnumBuilder.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17400714.84375, "dur": 448.9000141620636, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4489000141620636, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\GenericTypeParameterBuilder.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17401167.96875, "dur": 392.50001311302185, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.39250001311302185, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\MethodBuilder.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17401562.5, "dur": 1017.8999900817871, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.017899990081787, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\SignatureHelper.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17402585.9375, "dur": 952.3000121116638, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9523000121116638, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\Assembly.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17403542.96875, "dur": 623.3000159263611, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6233000159263611, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\EventInfo.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17404169.921875, "dur": 495.0000047683716, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4950000047683716, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MemberInfo.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17404667.96875, "dur": 800.9999990463257, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8009999990463257, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\Module.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17405472.65625, "dur": 579.5000195503235, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5795000195503235, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoEventInfo.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17406052.734375, "dur": 480.89998960494995, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.48089998960494995, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoGenericCMethod.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17406544.921875, "dur": 658.5000157356262, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6585000157356262, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoGenericClass.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17407208.984375, "dur": 746.2999820709229, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7462999820709229, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoMethod.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17407957.03125, "dur": 801.9999861717224, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8019999861717224, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\ParameterInfo.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17408763.671875, "dur": 438.1999969482422, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4381999969482422, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\RtFieldInfo.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17409205.078125, "dur": 498.80000948905945, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.49880000948905945, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.InteropServices.WindowsRuntime\\UnsafeNativeMethods.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17409707.03125, "dur": 907.1999788284302, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9071999788284302, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.InteropServices\\Marshal.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17410619.140625, "dur": 462.09999918937683, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.46209999918937683, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Contexts\\Context.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17411085.9375, "dur": 1279.5000076293945, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2795000076293945, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Messaging\\MonoMethodMessage.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17412373.046875, "dur": 3484.6999645233154, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4846999645233154, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting\\RemotingServices.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17415869.140625, "dur": 593.6999917030334, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5936999917030334, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Policy\\Evidence.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17416468.75, "dur": 1226.5000343322754, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2265000343322754, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Principal\\WindowsIdentity.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17417699.21875, "dur": 1286.9000434875488, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2869000434875488, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security\\SecurityFrame.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17418990.234375, "dur": 482.699990272522, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.482699990272522, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Text\\EncodingHelper.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17419476.5625, "dur": 559.499979019165, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.559499979019165, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Text\\Normalization.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17420039.0625, "dur": 464.8999869823456, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4648999869823456, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Monitor.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17420507.8125, "dur": 547.5000143051147, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5475000143051147, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\NativeEventCalls.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17421058.59375, "dur": 827.3000121116638, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8273000121116638, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Thread.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17421888.671875, "dur": 343.80000829696655, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.34380000829696655, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Timer.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17422236.328125, "dur": 537.4000072479248, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5374000072479248, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\WaitHandle.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17422800.78125, "dur": 624.4999766349792, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6244999766349792, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\AppDomain.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17423429.6875, "dur": 540.7000184059143, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5407000184059143, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Buffer.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17424294.921875, "dur": 447.49999046325684, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.44749999046325684, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\ConsoleDriver.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17424746.09375, "dur": 656.499981880188, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.656499981880188, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Convert.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17425406.25, "dur": 1480.9999465942383, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4809999465942383, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Decimal.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17426888.671875, "dur": 619.7999715805054, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6197999715805054, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Environment.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17427513.671875, "dur": 4850.100040435791, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.850100040435791, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Exception.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17432367.1875, "dur": 414.7999882698059, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4147999882698059, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\MissingMemberException.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17432785.15625, "dur": 924.7999787330627, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9247999787330627, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\MonoType.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17433712.890625, "dur": 441.10000133514404, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.44110000133514404, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\NumberFormatter.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17434162.109375, "dur": 747.9000091552734, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7479000091552734, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\RuntimeFieldHandle.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17434912.109375, "dur": 870.8000183105469, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8708000183105469, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\RuntimeTypeHandle.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17435785.15625, "dur": 889.19997215271, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.88919997215271, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\String.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17436677.734375, "dur": 949.2999911308289, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9492999911308289, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Type.cpp" } },
- { "pid": 1, "tid": 69, "ts": 17437632.8125, "dur": 618.4999942779541, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6184999942779541, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\__ComObject.cpp" } },
- { "pid": 1, "tid": 71, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 71, "ts": 17369351.5625, "dur": 1549.1000413894653, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5491000413894653, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\allchblk.c" } },
- { "pid": 1, "tid": 71, "ts": 17370912.109375, "dur": 1490.7000064849854, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4907000064849854, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\alloc.c" } },
- { "pid": 1, "tid": 71, "ts": 17372406.25, "dur": 773.4000086784363, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7734000086784363, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\backgraph.c" } },
- { "pid": 1, "tid": 71, "ts": 17373181.640625, "dur": 694.2999958992004, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6942999958992004, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\blacklst.c" } },
- { "pid": 1, "tid": 71, "ts": 17373882.8125, "dur": 672.8000044822693, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6728000044822693, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\checksums.c" } },
- { "pid": 1, "tid": 71, "ts": 17374560.546875, "dur": 1161.5999937057495, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1615999937057495, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\cord\\cordbscs.c" } },
- { "pid": 1, "tid": 71, "ts": 17375726.5625, "dur": 667.4000024795532, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6674000024795532, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\cord\\cordprnt.c" } },
- { "pid": 1, "tid": 71, "ts": 17376396.484375, "dur": 904.9000144004822, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9049000144004822, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\cord\\cordxtra.c" } },
- { "pid": 1, "tid": 71, "ts": 17377308.59375, "dur": 918.6000227928162, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9186000227928162, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\cord\\tests\\cordtest.c" } },
- { "pid": 1, "tid": 71, "ts": 17378228.515625, "dur": 6938.799858093262, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.938799858093262, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\cord\\tests\\de.c" } },
- { "pid": 1, "tid": 71, "ts": 17385173.828125, "dur": 693.4000253677368, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6934000253677368, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\cord\\tests\\de_win.c" } },
- { "pid": 1, "tid": 71, "ts": 17385871.09375, "dur": 926.9999861717224, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9269999861717224, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\darwin_stop_world.c" } },
- { "pid": 1, "tid": 71, "ts": 17386802.734375, "dur": 1157.6999425888062, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1576999425888062, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\dbg_mlc.c" } },
- { "pid": 1, "tid": 71, "ts": 17387964.84375, "dur": 1197.4999904632568, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1974999904632568, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\dyn_load.c" } },
- { "pid": 1, "tid": 71, "ts": 17389164.0625, "dur": 1050.9999990463257, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0509999990463257, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\AmigaOS.c" } },
- { "pid": 1, "tid": 71, "ts": 17390216.796875, "dur": 568.4999823570251, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5684999823570251, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\MacOS.c" } },
- { "pid": 1, "tid": 71, "ts": 17390791.015625, "dur": 351.99999809265137, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.35199999809265137, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\Mac_files\\dataend.c" } },
- { "pid": 1, "tid": 71, "ts": 17391466.796875, "dur": 539.6999716758728, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5396999716758728, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\gc.c" } },
- { "pid": 1, "tid": 71, "ts": 17392011.71875, "dur": 449.6000111103058, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4496000111103058, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\krait_signal_handler.c" } },
- { "pid": 1, "tid": 71, "ts": 17392468.75, "dur": 674.0999817848206, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6740999817848206, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\msvc_dbg.c" } },
- { "pid": 1, "tid": 71, "ts": 17393148.4375, "dur": 734.8999977111816, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7348999977111816, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\pcr_interface.c" } },
- { "pid": 1, "tid": 71, "ts": 17393884.765625, "dur": 586.7999792098999, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5867999792098999, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\real_malloc.c" } },
- { "pid": 1, "tid": 71, "ts": 17394478.515625, "dur": 4593.999862670898, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.593999862670898, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\finalize.c" } },
- { "pid": 1, "tid": 71, "ts": 17399085.9375, "dur": 648.8000154495239, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6488000154495239, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\fnlz_mlc.c" } },
- { "pid": 1, "tid": 71, "ts": 17399738.28125, "dur": 559.7000122070312, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5597000122070312, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\gc_dlopen.c" } },
- { "pid": 1, "tid": 71, "ts": 17400302.734375, "dur": 718.1000113487244, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7181000113487244, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\gcj_mlc.c" } },
- { "pid": 1, "tid": 71, "ts": 17401023.4375, "dur": 1171.2000370025635, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1712000370025635, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\headers.c" } },
- { "pid": 1, "tid": 71, "ts": 17402199.21875, "dur": 662.4000072479248, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6624000072479248, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\heapsections.c" } },
- { "pid": 1, "tid": 71, "ts": 17402865.234375, "dur": 675.1999855041504, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6751999855041504, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops.c" } },
- { "pid": 1, "tid": 71, "ts": 17403542.96875, "dur": 740.2999997138977, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7402999997138977, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\mach_dep.c" } },
- { "pid": 1, "tid": 71, "ts": 17404285.15625, "dur": 865.0000095367432, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8650000095367432, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\malloc.c" } },
- { "pid": 1, "tid": 71, "ts": 17405158.203125, "dur": 1363.9999628067017, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3639999628067017, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\mallocx.c" } },
- { "pid": 1, "tid": 71, "ts": 17406525.390625, "dur": 1517.199993133545, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.517199993133545, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\mark.c" } },
- { "pid": 1, "tid": 71, "ts": 17408044.921875, "dur": 951.3999819755554, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9513999819755554, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\mark_rts.c" } },
- { "pid": 1, "tid": 71, "ts": 17408998.046875, "dur": 1557.7000379562378, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5577000379562378, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\misc.c" } },
- { "pid": 1, "tid": 71, "ts": 17410558.59375, "dur": 782.1000218391418, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7821000218391418, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\new_hblk.c" } },
- { "pid": 1, "tid": 71, "ts": 17411345.703125, "dur": 4562.300205230713, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.562300205230713, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\obj_map.c" } },
- { "pid": 1, "tid": 71, "ts": 17415912.109375, "dur": 3972.8000164031982, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9728000164031982, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\os_dep.c" } },
- { "pid": 1, "tid": 71, "ts": 17419890.625, "dur": 1202.9999494552612, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2029999494552612, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\pthread_stop_world.c" } },
- { "pid": 1, "tid": 71, "ts": 17421095.703125, "dur": 1444.9000358581543, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4449000358581543, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\pthread_support.c" } },
- { "pid": 1, "tid": 71, "ts": 17422544.921875, "dur": 592.8999781608582, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5928999781608582, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\ptr_chck.c" } },
- { "pid": 1, "tid": 71, "ts": 17423138.671875, "dur": 821.399986743927, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.821399986743927, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\reclaim.c" } },
- { "pid": 1, "tid": 71, "ts": 17423968.75, "dur": 751.1000037193298, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7511000037193298, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\specific.c" } },
- { "pid": 1, "tid": 71, "ts": 17424724.609375, "dur": 641.2000060081482, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6412000060081482, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\disclaim_bench.c" } },
- { "pid": 1, "tid": 71, "ts": 17425371.09375, "dur": 545.799970626831, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.545799970626831, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\disclaim_test.c" } },
- { "pid": 1, "tid": 71, "ts": 17425919.921875, "dur": 666.4999723434448, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6664999723434448, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\huge_test.c" } },
- { "pid": 1, "tid": 71, "ts": 17426593.75, "dur": 750.6999969482422, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7506999969482422, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\initsecondarythread.c" } },
- { "pid": 1, "tid": 71, "ts": 17427349.609375, "dur": 2318.000078201294, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.318000078201294, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\leak_test.c" } },
- { "pid": 1, "tid": 71, "ts": 17429673.828125, "dur": 1164.8999452590942, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1648999452590942, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\middle.c" } },
- { "pid": 1, "tid": 71, "ts": 17430843.75, "dur": 768.1000232696533, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7681000232696533, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\realloc_test.c" } },
- { "pid": 1, "tid": 71, "ts": 17431619.140625, "dur": 726.1000275611877, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7261000275611877, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\smash_test.c" } },
- { "pid": 1, "tid": 71, "ts": 17432349.609375, "dur": 527.0000100135803, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5270000100135803, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\staticrootslib.c" } },
- { "pid": 1, "tid": 71, "ts": 17432880.859375, "dur": 379.40001487731934, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.37940001487731934, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\staticrootstest.c" } },
- { "pid": 1, "tid": 71, "ts": 17433263.671875, "dur": 402.90001034736633, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.40290001034736633, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\subthread_create.c" } },
- { "pid": 1, "tid": 71, "ts": 17433669.921875, "dur": 1575.8999586105347, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5758999586105347, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\test.c" } },
- { "pid": 1, "tid": 71, "ts": 17435250, "dur": 448.0000138282776, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4480000138282776, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\test_atomic_ops.c" } },
- { "pid": 1, "tid": 71, "ts": 17435701.171875, "dur": 367.5999939441681, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3675999939441681, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\thread_leak_test.c" } },
- { "pid": 1, "tid": 71, "ts": 17436070.3125, "dur": 35621.402740478516, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 35.621402740478516, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\threadkey_test.c" } },
- { "pid": 1, "tid": 71, "ts": 17471699.21875, "dur": 543.9000129699707, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5439000129699707, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\windows-untested\\stdafx.c" } },
- { "pid": 1, "tid": 70, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 70, "ts": 17386835.9375, "dur": 14467.20027923584, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 14.46720027923584, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\RuntimeClassHandle.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17401308.59375, "dur": 781.000018119812, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.781000018119812, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\ModuleBuilder.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17402431.640625, "dur": 441.30000472068787, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.44130000472068787, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\TypeBuilder.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17402878.90625, "dur": 621.5999722480774, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6215999722480774, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\AssemblyName.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17403505.859375, "dur": 523.8999724388123, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5238999724388123, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\CustomAttributeData.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17404033.203125, "dur": 521.8999981880188, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5218999981880188, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\FieldInfo.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17404558.59375, "dur": 711.3000154495239, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7113000154495239, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MethodBase.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17405273.4375, "dur": 582.4999809265137, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5824999809265137, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoCMethod.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17405859.375, "dur": 726.0000109672546, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7260000109672546, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoField.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17406589.84375, "dur": 662.5000238418579, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6625000238418579, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoGenericMethod.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17407253.90625, "dur": 564.8000240325928, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5648000240325928, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoMethodInfo.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17407824.21875, "dur": 496.19999527931213, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.49619999527931213, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoPropertyInfo.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17408324.21875, "dur": 555.7000041007996, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5557000041007996, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\PropertyInfo.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17408884.765625, "dur": 499.39998984336853, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.49939998984336853, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.CompilerServices\\RuntimeHelpers.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17409388.671875, "dur": 851.4999747276306, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8514999747276306, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.InteropServices\\GCHandle.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17410242.1875, "dur": 516.6000127792358, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5166000127792358, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Activation\\ActivationServices.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17410763.671875, "dur": 505.29998540878296, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.505299985408783, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Messaging\\AsyncResult.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17411273.4375, "dur": 2975.800037384033, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.975800037384033, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Proxies\\RealProxy.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17414261.71875, "dur": 1018.9000368118286, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0189000368118286, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Versioning\\VersioningHelper.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17415287.109375, "dur": 1193.0999755859375, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1930999755859375, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Cryptography\\RNGCryptoServiceProvider.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17416484.375, "dur": 961.6000056266785, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9616000056266785, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Principal\\WindowsImpersonationContext.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17417453.125, "dur": 586.4999890327454, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5864999890327454, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Principal\\WindowsPrincipal.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17418044.921875, "dur": 935.5999827384949, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9355999827384949, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security\\SecurityManager.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17418984.375, "dur": 898.8000154495239, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8988000154495239, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Text\\Encoding.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17419890.625, "dur": 446.20001316070557, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.44620001316070557, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\InternalThread.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17420339.84375, "dur": 680.2999973297119, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6802999973297119, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Mutex.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17421025.390625, "dur": 524.6000289916992, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5246000289916992, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\OSSpecificSynchronizationContext.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17421570.3125, "dur": 737.3999953269958, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7373999953269958, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\ThreadPool.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17422310.546875, "dur": 547.9999780654907, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5479999780654907, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Activator.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17422861.328125, "dur": 544.0999865531921, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5440999865531921, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\ArgIterator.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17423408.203125, "dur": 849.9000072479248, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8499000072479248, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Array.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17424267.578125, "dur": 499.7999966144562, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4997999966144562, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Char.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17424769.53125, "dur": 521.7000246047974, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5217000246047974, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\CurrentSystemTimeZone.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17425294.921875, "dur": 387.8999948501587, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3878999948501587, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\DateTime.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17425687.5, "dur": 527.4999737739563, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5274999737739563, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Delegate.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17426216.796875, "dur": 536.5999937057495, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5365999937057495, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Double.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17426755.859375, "dur": 1535.699963569641, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5356999635696411, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Enum.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17428300.78125, "dur": 4098.400115966797, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.098400115966797, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\GC.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17432404.296875, "dur": 547.5999712944031, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5475999712944031, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\MonoCustomAttrs.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17432953.125, "dur": 902.999997138977, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.902999997138977, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Number.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17433859.375, "dur": 447.4000036716461, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4474000036716461, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Object.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17434310.546875, "dur": 370.0999915599823, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3700999915599823, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\RuntimeMethodHandle.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17434689.453125, "dur": 1092.0000076293945, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0920000076293945, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\RuntimeType.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17435783.203125, "dur": 523.4000086784363, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5234000086784363, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\SizedReference.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17436312.5, "dur": 397.0000147819519, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3970000147819519, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\TimeSpan.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17436712.890625, "dur": 832.8999876976013, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8328999876976013, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\TypedReference.cpp" } },
- { "pid": 1, "tid": 70, "ts": 17437552.734375, "dur": 585.9000086784363, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5859000086784363, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\ValueType.cpp" } },
- { "pid": 1, "tid": 72, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 72, "ts": 17418609.375, "dur": 17866.80030822754, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 17.86680030822754, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\pthread_start.c" } },
- { "pid": 1, "tid": 72, "ts": 17436476.5625, "dur": 370.2000081539154, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3702000081539154, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\trace_test.c" } },
- { "pid": 1, "tid": 72, "ts": 17436849.609375, "dur": 695.9999799728394, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6959999799728394, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\thread_local_alloc.c" } },
- { "pid": 1, "tid": 72, "ts": 17437552.734375, "dur": 568.7999725341797, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5687999725341797, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tools\\if_mach.c" } },
- { "pid": 1, "tid": 72, "ts": 17438125, "dur": 377.90000438690186, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.37790000438690186, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tools\\if_not_there.c" } },
- { "pid": 1, "tid": 72, "ts": 17438505.859375, "dur": 674.8999953269958, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6748999953269958, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tools\\setjmp_t.c" } },
- { "pid": 1, "tid": 72, "ts": 17439185.546875, "dur": 477.2000014781952, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4772000014781952, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tools\\threadlibs.c" } },
- { "pid": 1, "tid": 72, "ts": 17439666.015625, "dur": 997.0999956130981, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9970999956130981, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\typd_mlc.c" } },
- { "pid": 1, "tid": 72, "ts": 17440666.015625, "dur": 609.6000075340271, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6096000075340271, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\vector_mlc.c" } },
- { "pid": 1, "tid": 72, "ts": 17441283.203125, "dur": 49509.403228759766, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 49.509403228759766, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\win32_threads.c" } },
- { "pid": 1, "tid": 75, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 75, "ts": 17440277.34375, "dur": 998.0999827384949, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9980999827384949, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\ArrayMetadata.cpp" } },
- { "pid": 1, "tid": 75, "ts": 17441281.25, "dur": 852.1000146865845, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8521000146865845, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\FieldLayout.cpp" } },
- { "pid": 1, "tid": 75, "ts": 17442138.671875, "dur": 683.2000017166138, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6832000017166138, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\GenericMetadata.cpp" } },
- { "pid": 1, "tid": 75, "ts": 17442830.078125, "dur": 662.1000170707703, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6621000170707703, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\GenericMethod.cpp" } },
- { "pid": 1, "tid": 75, "ts": 17443496.09375, "dur": 484.20000076293945, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.48420000076293945, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\GenericSharing.cpp" } },
- { "pid": 1, "tid": 75, "ts": 17443988.28125, "dur": 492.5999939441681, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4925999939441681, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericClassCompare.cpp" } },
- { "pid": 1, "tid": 75, "ts": 17444486.328125, "dur": 1524.999976158142, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.524999976158142, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericClassHash.cpp" } },
- { "pid": 1, "tid": 75, "ts": 17446017.578125, "dur": 6030.099868774414, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.030099868774414, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericContextCompare.cpp" } },
- { "pid": 1, "tid": 75, "ts": 17452056.640625, "dur": 991.5000200271606, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9915000200271606, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericContextHash.cpp" } },
- { "pid": 1, "tid": 75, "ts": 17453054.6875, "dur": 657.9999923706055, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6579999923706055, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericInstCompare.cpp" } },
- { "pid": 1, "tid": 75, "ts": 17453718.75, "dur": 549.0999817848206, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5490999817848206, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericInstHash.cpp" } },
- { "pid": 1, "tid": 75, "ts": 17454271.484375, "dur": 467.5000011920929, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4675000011920929, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericMethodCompare.cpp" } },
- { "pid": 1, "tid": 75, "ts": 17454744.140625, "dur": 564.7000074386597, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5647000074386597, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericMethodHash.cpp" } },
- { "pid": 1, "tid": 75, "ts": 17455314.453125, "dur": 640.7999992370605, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6407999992370605, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppSignature.cpp" } },
- { "pid": 1, "tid": 75, "ts": 17455960.9375, "dur": 982.699990272522, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.982699990272522, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppTypeCompare.cpp" } },
- { "pid": 1, "tid": 75, "ts": 17456951.171875, "dur": 578.1999826431274, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5781999826431274, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppTypeHash.cpp" } },
- { "pid": 1, "tid": 79, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 79, "ts": 17538617.1875, "dur": 807.0999979972839, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8070999979972839, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\MonoPosixHelper.cpp" } },
- { "pid": 1, "tid": 79, "ts": 17539431.640625, "dur": 634.5999836921692, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6345999836921692, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\ThreadPoolMonitorThread.cpp" } },
- { "pid": 1, "tid": 79, "ts": 17540070.3125, "dur": 725.7999777793884, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7257999777793884, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\ThreadPoolWorkerThread.cpp" } },
- { "pid": 1, "tid": 79, "ts": 17540800.78125, "dur": 591.1999940872192, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5911999940872192, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\threadpool-ms-io-poll.cpp" } },
- { "pid": 1, "tid": 79, "ts": 17541394.53125, "dur": 855.3000092506409, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8553000092506409, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\threadpool-ms-io.cpp" } },
- { "pid": 1, "tid": 79, "ts": 17542257.8125, "dur": 1165.6999588012695, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1656999588012695, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\threadpool-ms.cpp" } },
- { "pid": 1, "tid": 29, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 29, "ts": 17540791.015625, "dur": 474.700003862381, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.474700003862381, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Android\\ConsoleExtension.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17541269.53125, "dur": 752.6000142097473, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7526000142097473, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Android\\Initialize.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17542025.390625, "dur": 1167.099952697754, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.167099952697754, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Android\\Locale.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17543208.984375, "dur": 878.7000179290771, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8787000179290771, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Android\\StackTrace.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17544091.796875, "dur": 2770.8001136779785, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.7708001136779785, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Android\\TimeZoneInfo.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17546875, "dur": 717.4999713897705, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7174999713897705, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ConditionVariable.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17547597.65625, "dur": 688.7000203132629, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6887000203132629, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\CrashHelpers.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17548294.921875, "dur": 567.3999786376953, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5673999786376953, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Emscripten\\SocketBridge.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17548867.1875, "dur": 446.5999901294708, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4465999901294708, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Error.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17549324.21875, "dur": 453.7999927997589, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4537999927997589, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Event.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17549781.25, "dur": 346.5000092983246, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3465000092983246, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\Assert.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17550130.859375, "dur": 462.5000059604645, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4625000059604645, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\COM.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17550597.65625, "dur": 597.599983215332, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.597599983215332, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\CpuInfo.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17551199.21875, "dur": 374.59999322891235, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.37459999322891235, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\CrashHelpers.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17551582.03125, "dur": 420.7000136375427, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4207000136375427, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\Debug.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17552005.859375, "dur": 486.2000048160553, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4862000048160553, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\Environment.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17552496.09375, "dur": 712.1000289916992, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7121000289916992, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\File.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17553214.84375, "dur": 514.8000121116638, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5148000121116638, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\Handle.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17553734.375, "dur": 446.399986743927, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.446399986743927, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\Initialize.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17554185.546875, "dur": 726.8999814987183, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7268999814987183, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\MarshalStringAlloc.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17554916.015625, "dur": 435.40000915527344, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.43540000915527344, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\Process.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17555353.515625, "dur": 582.1999907493591, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5821999907493591, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\SocketImpl.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17555941.40625, "dur": 476.3999879360199, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4763999879360199, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\WindowsRuntime.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17556421.875, "dur": 464.1999900341034, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4641999900341034, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\LibraryLoader.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17556890.625, "dur": 356.4000129699707, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3564000129699707, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\Debug.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17557251.953125, "dur": 359.6000075340271, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3596000075340271, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\Environment.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17557611.328125, "dur": 446.70000672340393, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.44670000672340393, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\Initialize.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17558064.453125, "dur": 638.0000114440918, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6380000114440918, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\Process.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17558707.03125, "dur": 579.9999833106995, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5799999833106995, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\TimeZoneInfo.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17559291.015625, "dur": 449.09998774528503, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.44909998774528503, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Mutex.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17559744.140625, "dur": 1176.800012588501, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.176800012588501, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\OSX\\Image.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17560925.78125, "dur": 446.00000977516174, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.44600000977516174, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\OSX\\Process.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17561375, "dur": 3170.0000762939453, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.1700000762939453, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\OSX\\SystemCertificates.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17564550.78125, "dur": 1258.5999965667725, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2585999965667725, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Console.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17565812.5, "dur": 541.8999791145325, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5418999791145325, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\CrashHelpers.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17566357.421875, "dur": 584.8000049591064, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5848000049591064, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Directory.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17566949.21875, "dur": 585.3000283241272, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5853000283241272, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Error.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17567537.109375, "dur": 755.299985408783, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.755299985408783, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\File.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17568296.875, "dur": 606.1000227928162, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6061000227928162, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\LastError.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17568908.203125, "dur": 842.0000076293945, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8420000076293945, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\LibraryLoader.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17569753.90625, "dur": 645.799994468689, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.645799994468689, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Memory.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17570402.34375, "dur": 432.30000138282776, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.43230000138282776, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\MutexImpl.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17570839.84375, "dur": 449.0000009536743, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4490000009536743, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Path.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17571292.96875, "dur": 633.1999897956848, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6331999897956848, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\PosixWaitObject.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17571929.6875, "dur": 2273.400068283081, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.273400068283081, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Process.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17574207.03125, "dur": 711.6000056266785, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7116000056266785, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\StackTrace.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17574925.78125, "dur": 976.1000275611877, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9761000275611877, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\SystemCertificates.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17575912.109375, "dur": 833.5000276565552, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8335000276565552, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Time.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17576751.953125, "dur": 1105.1000356674194, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1051000356674194, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ReaderWriterLock.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17577861.328125, "dur": 2113.300085067749, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.113300085067749, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\StackTrace.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17579982.421875, "dur": 571.0999965667725, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5710999965667725, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Std\\ThreadImpl.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17580556.640625, "dur": 379.59998846054077, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.37959998846054077, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Assert.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17580941.40625, "dur": 589.2999768257141, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5892999768257141, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\COM.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17581533.203125, "dur": 1017.0999765396118, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0170999765396118, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Console.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17582554.6875, "dur": 383.39999318122864, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.38339999318122864, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\CrashHelpers.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17582943.359375, "dur": 414.6000146865845, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4146000146865845, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Cryptography.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17583363.28125, "dur": 552.3999929428101, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5523999929428101, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Directory.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17583917.96875, "dur": 536.1999869346619, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5361999869346619, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Environment.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17584457.03125, "dur": 871.1000084877014, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8711000084877014, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\File.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17585330.078125, "dur": 510.10000705718994, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5101000070571899, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Image.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17585845.703125, "dur": 440.4999911785126, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4404999911785126, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\LastError.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17586289.0625, "dur": 680.9999942779541, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6809999942779541, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\LibraryLoader.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17586974.609375, "dur": 548.6000180244446, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5486000180244446, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\MarshalStringAlloc.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17587527.34375, "dur": 553.0999898910522, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5530999898910522, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\MemoryMappedFile.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17588085.9375, "dur": 382.4999928474426, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3824999928474426, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\NativeMethods.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17588470.703125, "dur": 402.7999937534332, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4027999937534332, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Process.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17588876.953125, "dur": 1525.4000425338745, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5254000425338745, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\SocketImpl.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17590406.25, "dur": 616.599977016449, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.616599977016449, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\ThreadImpl.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17591027.34375, "dur": 7763.500213623047, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.763500213623047, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\WindowsHelpers.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17598792.96875, "dur": 559.1999888420105, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5591999888420105, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Win32ApiSharedEmulation.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17599357.421875, "dur": 730.0000190734863, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7300000190734863, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WindowsGames\\Win32ApiWindowsGamesEmulation.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17600089.84375, "dur": 575.6000280380249, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5756000280380249, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\COM.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17600691.40625, "dur": 1440.2999877929688, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4402999877929688, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Console.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17602134.765625, "dur": 441.0000145435333, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4410000145435333, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\CultureInfo.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17602582.03125, "dur": 428.20000648498535, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.42820000648498535, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Debug.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17603011.71875, "dur": 520.0999975204468, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5200999975204468, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Environment.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17603539.0625, "dur": 464.59999680519104, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.46459999680519104, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Event.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17604009.765625, "dur": 414.7999882698059, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4147999882698059, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Handle.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17604429.6875, "dur": 370.49999833106995, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.37049999833106995, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\LibraryLoader.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17604802.734375, "dur": 345.0999855995178, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3450999855995178, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Locale.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17605152.34375, "dur": 381.09999895095825, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.38109999895095825, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Memory.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17605541.015625, "dur": 422.89999127388, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.42289999127388, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\MemoryMappedFile.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17605968.75, "dur": 410.4999899864197, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4104999899864197, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Mutex.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17606380.859375, "dur": 481.79998993873596, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.48179998993873596, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Path.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17606867.1875, "dur": 443.3000087738037, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4433000087738037, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Process.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17607312.5, "dur": 519.10001039505, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.51910001039505, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Socket.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17607835.9375, "dur": 379.2000114917755, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3792000114917755, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Thread.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17608216.796875, "dur": 383.3000063896179, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3833000063896179, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Time.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17608603.515625, "dur": 379.2000114917755, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3792000114917755, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\TimeZoneInfo.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17608986.328125, "dur": 500.99998712539673, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5009999871253967, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\ConditionVariableTests.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17609490.234375, "dur": 603.7999987602234, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6037999987602234, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\ConsoleTests.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17610097.65625, "dur": 468.10001134872437, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.46810001134872437, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\CryptographyTests.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17610570.3125, "dur": 670.199990272522, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.670199990272522, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\DirectoryTests.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17611242.1875, "dur": 1505.8000087738037, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5058000087738037, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\ErrorTests.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17612755.859375, "dur": 3218.6999320983887, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.2186999320983887, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\FileTests.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17615982.421875, "dur": 505.9000253677368, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5059000253677368, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\LocaleTests.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17616494.140625, "dur": 1006.7000389099121, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.006700038909912, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\MemoryMappedFileTests.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17618152.34375, "dur": 970.8999991416931, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9708999991416931, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\PathTests.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17619125, "dur": 1044.2999601364136, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0442999601364136, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\SocketTests.cpp" } },
- { "pid": 1, "tid": 29, "ts": 17620171.875, "dur": 404.7999978065491, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4047999978065491, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\TimeTests.cpp" } },
- { "pid": 1, "tid": 74, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 74, "ts": 17553886.71875, "dur": 397.599995136261, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.397599995136261, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\LibraryLoader.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17554287.109375, "dur": 903.1000137329102, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9031000137329102, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\MemoryMappedFile.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17555511.71875, "dur": 409.50000286102295, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.40950000286102295, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\SystemCertificates.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17555925.78125, "dur": 451.4000117778778, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4514000117778778, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\TimeZoneInfo.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17556382.8125, "dur": 463.4000062942505, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4634000062942505, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Image.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17556851.5625, "dur": 571.0999965667725, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5710999965667725, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\Automation.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17557425.78125, "dur": 419.40000653266907, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.41940000653266907, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\File.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17557849.609375, "dur": 379.9000084400177, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3799000084400177, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\Lifecycle.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17558234.375, "dur": 466.19999408721924, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.46619999408721924, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\StackTrace.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17558705.078125, "dur": 5107.2998046875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.1072998046875, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Messages.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17563820.3125, "dur": 490.9999966621399, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4909999966621399, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Path.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17564316.40625, "dur": 1144.700050354004, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.144700050354004, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\ConditionVariableImpl.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17565468.75, "dur": 472.6000130176544, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4726000130176544, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\CpuInfo.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17565943.359375, "dur": 576.0999917984009, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5760999917984009, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Cryptography.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17566523.4375, "dur": 420.7000136375427, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4207000136375427, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Encoding.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17566949.21875, "dur": 523.5000252723694, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5235000252723694, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Environment.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17567476.5625, "dur": 432.5000047683716, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4325000047683716, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\EventImpl.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17567914.0625, "dur": 365.2999997138977, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3652999997138977, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\FileSystemWatcher.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17568283.203125, "dur": 690.1000142097473, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6901000142097473, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Image.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17568976.5625, "dur": 594.9000120162964, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5949000120162964, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Locale.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17569576.171875, "dur": 650.7999897003174, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6507999897003174, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\MarshalAlloc.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17570232.421875, "dur": 535.7000231742859, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5357000231742859, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\MemoryMappedFile.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17570773.4375, "dur": 440.4999911785126, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4404999911785126, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\NativeMethods.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17571220.703125, "dur": 753.3000111579895, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7533000111579895, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\PosixHelpers.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17571978.515625, "dur": 1956.5999507904053, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.9565999507904053, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\SemaphoreImpl.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17573939.453125, "dur": 1259.600043296814, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.259600043296814, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\SocketImpl.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17575203.125, "dur": 764.19997215271, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.76419997215271, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\ThreadImpl.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17575974.609375, "dur": 772.4000215530396, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7724000215530396, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\TimeZone.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17576751.953125, "dur": 1077.6000022888184, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0776000022888184, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Semaphore.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17577837.890625, "dur": 2516.4999961853027, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.5164999961853027, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Socket.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17580359.375, "dur": 813.1999969482422, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8131999969482422, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Thread.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17581175.78125, "dur": 970.6000089645386, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9706000089645386, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\ConditionVariableImpl.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17582154.296875, "dur": 870.7000017166138, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8707000017166138, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\CpuInfo.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17583027.34375, "dur": 414.2000079154968, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4142000079154968, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Debug.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17583445.3125, "dur": 389.29998874664307, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.38929998874664307, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\DllMain.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17583843.75, "dur": 379.50000166893005, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.37950000166893005, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Encoding.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17584228.515625, "dur": 413.39999437332153, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.41339999437332153, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\EventImpl.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17584642.578125, "dur": 615.8000230789185, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6158000230789185, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\FileSystemWatcher.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17585263.671875, "dur": 491.2000000476837, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4912000000476837, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Handle.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17585759.765625, "dur": 574.5000243186951, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5745000243186951, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Initialize.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17586337.890625, "dur": 444.9999928474426, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4449999928474426, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Locale.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17586785.15625, "dur": 568.5999989509583, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5685999989509583, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\MarshalAlloc.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17587361.328125, "dur": 435.2000057697296, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4352000057697296, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Memory.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17587798.828125, "dur": 363.0000054836273, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3630000054836273, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\MutexImpl.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17588164.0625, "dur": 426.69999599456787, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.42669999599456787, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Path.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17588595.703125, "dur": 377.4000108242035, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3774000108242035, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\SemaphoreImpl.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17588978.515625, "dur": 426.49999260902405, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.42649999260902405, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\StackTrace.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17589410.15625, "dur": 710.3000283241272, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7103000283241272, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\SynchronizationContext.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17590125, "dur": 372.7000057697296, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3727000057697296, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\SystemCertificates.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17590501.953125, "dur": 449.20000433921814, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.44920000433921814, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Time.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17590951.171875, "dur": 460.9000086784363, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4609000086784363, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\TimeZone.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17591417.96875, "dur": 653.2999873161316, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6532999873161316, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\WindowsRuntime.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17592074.21875, "dur": 761.3999843597412, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7613999843597412, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\BrokeredFileSystem.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17592837.890625, "dur": 353.59999537467957, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.35359999537467957, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Cryptography.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17593195.3125, "dur": 701.3999819755554, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7013999819755554, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Environment.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17593900.390625, "dur": 898.1999754905701, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8981999754905701, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\File.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17594804.6875, "dur": 2263.0999088287354, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.2630999088287354, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Initialize.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17597072.265625, "dur": 902.1999835968018, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9021999835968018, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Locale.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17597982.421875, "dur": 654.7999978065491, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6547999978065491, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\MarshalAlloc.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17598642.578125, "dur": 559.499979019165, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.559499979019165, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Process.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17599207.03125, "dur": 670.5999970436096, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6705999970436096, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Win32ApiWinRTEmulation.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17599888.671875, "dur": 562.7999901771545, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5627999901771545, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Allocator.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17600455.078125, "dur": 825.9999752044678, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8259999752044678, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\ConditionVariable.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17601287.109375, "dur": 467.4000144004822, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4674000144004822, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\CpuInfo.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17601759.765625, "dur": 842.0000076293945, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8420000076293945, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Cryptography.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17602603.515625, "dur": 564.5999908447266, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5645999908447266, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Directory.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17603171.875, "dur": 484.499990940094, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.484499990940094, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Error.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17603660.15625, "dur": 2086.2998962402344, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.0862998962402344, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\File.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17605748.046875, "dur": 502.69997119903564, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5026999711990356, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Messages.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17606255.859375, "dur": 796.1999773979187, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7961999773979187, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\NativeMethods.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17607056.640625, "dur": 497.7000057697296, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4977000057697296, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Semaphore.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17607556.640625, "dur": 443.69998574256897, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.44369998574256897, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\SystemCertificates.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17608001.953125, "dur": 428.20000648498535, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.42820000648498535, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\ThreadLocalValue.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17608435.546875, "dur": 357.1999967098236, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3571999967098236, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\TimeZone.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17608796.875, "dur": 690.8000111579895, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6908000111579895, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\COMTests.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17609490.234375, "dur": 702.6000022888184, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7026000022888184, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\CpuInfoTests.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17610197.265625, "dur": 480.3999960422516, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4803999960422516, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\DebugTests.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17610683.59375, "dur": 643.8000202178955, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6438000202178955, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\EnvironmentTests.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17611330.078125, "dur": 2613.8999462127686, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.6138999462127686, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\EventTests.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17613960.9375, "dur": 2268.5000896453857, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.2685000896453857, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\LibraryLoaderTests.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17616238.28125, "dur": 399.3000090122223, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3993000090122223, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\MainTestRunner.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17616638.671875, "dur": 1059.499979019165, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.059499979019165, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\MemoryTests.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17617701.171875, "dur": 461.6999924182892, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4616999924182892, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\MutexTests.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17618164.0625, "dur": 605.89998960495, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.60589998960495, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\ProcessTests.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17618773.4375, "dur": 568.7999725341797, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5687999725341797, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\SemaphoreTests.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17619347.65625, "dur": 636.6999745368958, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6366999745368958, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\ThreadLocalValueTests.cpp" } },
- { "pid": 1, "tid": 74, "ts": 17620320.3125, "dur": 392.6999866962433, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3926999866962433, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\TimeZoneInfoTests.cpp" } },
- { "pid": 1, "tid": 67, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 67, "ts": 17589857.421875, "dur": 638.4000182151794, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6384000182151794, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\DirectoryUtils.cpp" } },
- { "pid": 1, "tid": 67, "ts": 17590500, "dur": 475.19999742507935, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.47519999742507935, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Environment.cpp" } },
- { "pid": 1, "tid": 67, "ts": 17590978.515625, "dur": 357.8999936580658, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3578999936580658, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Il2CppHStringReference.cpp" } },
- { "pid": 1, "tid": 67, "ts": 17591337.890625, "dur": 747.6000189781189, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7476000189781189, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Logging.cpp" } },
- { "pid": 1, "tid": 67, "ts": 17592089.84375, "dur": 583.899974822998, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.583899974822998, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Memory.cpp" } },
- { "pid": 1, "tid": 67, "ts": 17592677.734375, "dur": 461.40000224113464, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.46140000224113464, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MemoryPool.cpp" } },
- { "pid": 1, "tid": 67, "ts": 17593140.625, "dur": 710.9000086784363, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7109000086784363, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Runtime.cpp" } },
- { "pid": 1, "tid": 67, "ts": 17593855.46875, "dur": 404.59999442100525, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.40459999442100525, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\mono-structs.cpp" } },
- { "pid": 1, "tid": 66, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 66, "ts": 17591023.4375, "dur": 617.6000237464905, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6176000237464905, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Exception.cpp" } },
- { "pid": 1, "tid": 66, "ts": 17591644.53125, "dur": 606.8999767303467, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6068999767303467, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MarshalingUtils.cpp" } },
- { "pid": 1, "tid": 66, "ts": 17592253.90625, "dur": 495.7999885082245, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4957999885082245, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MemoryMappedFile.cpp" } },
- { "pid": 1, "tid": 66, "ts": 17592751.953125, "dur": 364.80000615119934, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.36480000615119934, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Output.cpp" } },
- { "pid": 1, "tid": 66, "ts": 17593119.140625, "dur": 452.6999890804291, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4526999890804291, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\PathUtils.cpp" } },
- { "pid": 1, "tid": 66, "ts": 17593578.125, "dur": 546.500027179718, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.546500027179718, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\StringUtils.cpp" } },
- { "pid": 1, "tid": 66, "ts": 17594126.953125, "dur": 2631.7999362945557, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.6317999362945557, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\sha1.cpp" } },
- { "pid": 1, "tid": 63, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 63, "ts": 17605789.0625, "dur": 804.3000102043152, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8043000102043152, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Array.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17606597.65625, "dur": 516.0999894142151, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5160999894142151, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Assembly.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17607115.234375, "dur": 686.6000294685364, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6866000294685364, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\CCW.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17607804.6875, "dur": 648.8000154495239, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6488000154495239, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\COM.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17608458.984375, "dur": 1329.5999765396118, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3295999765396118, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Class.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17609789.0625, "dur": 518.2999968528748, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5182999968528748, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Enum.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17610310.546875, "dur": 883.5999965667725, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8835999965667725, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Exception.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17611197.265625, "dur": 3440.3998851776123, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4403998851776123, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\GenericClass.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17614646.484375, "dur": 1477.4999618530273, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4774999618530273, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Image.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17616130.859375, "dur": 544.7999835014343, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5447999835014343, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\LastError.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17616677.734375, "dur": 502.6000142097473, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5026000142097473, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MarshalAlloc.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17617185.546875, "dur": 689.4999742507935, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6894999742507935, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MemoryInformation.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17617878.90625, "dur": 1054.4999837875366, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0544999837875366, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MetadataCache.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17618945.3125, "dur": 437.2999966144562, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4372999966144562, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Module.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17619386.71875, "dur": 802.299976348877, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.802299976348877, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Object.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17620193.359375, "dur": 354.6000123023987, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3546000123023987, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Path.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17620548.828125, "dur": 625.9999871253967, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6259999871253967, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Profiler.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17621179.6875, "dur": 496.8000054359436, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4968000054359436, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Property.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17621681.640625, "dur": 449.4999945163727, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4494999945163727, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Random.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17622132.8125, "dur": 1086.5000486373901, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0865000486373901, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Runtime.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17623222.65625, "dur": 726.9999980926514, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7269999980926514, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\StackTrace.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17623955.078125, "dur": 917.2000288963318, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9172000288963318, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Thread.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17624875, "dur": 632.0000290870667, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6320000290870667, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ThreadPoolMs.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17625509.765625, "dur": 556.4000010490417, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5564000010490417, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\VisualizerHelpers.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17626072.265625, "dur": 551.9999861717224, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5519999861717224, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\WaitHandle.cpp" } },
- { "pid": 1, "tid": 63, "ts": 17626628.90625, "dur": 1036.5999937057495, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0365999937057495, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\WindowsRuntime.cpp" } },
- { "pid": 1, "tid": 62, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 62, "ts": 17606712.890625, "dur": 614.7000193595886, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6147000193595886, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\AssemblyName.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17607330.078125, "dur": 676.1999726295471, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6761999726295471, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\CCWBase.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17608009.765625, "dur": 567.2000050544739, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5672000050544739, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\COMEntryPoints.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17608582.03125, "dur": 454.4000029563904, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4544000029563904, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ClassInlines.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17609039.0625, "dur": 649.399995803833, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.649399995803833, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ComObjectBase.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17609691.40625, "dur": 511.3000273704529, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5113000273704529, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Domain.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17610207.03125, "dur": 473.8999903202057, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4738999903202057, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Event.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17610683.59375, "dur": 911.899983882904, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.911899983882904, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Field.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17611601.5625, "dur": 365.59998989105225, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.36559998989105225, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\GenericContainer.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17611974.609375, "dur": 4121.799945831299, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.121799945831299, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\GlobalMetadata.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17616099.609375, "dur": 476.3000011444092, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4763000011444092, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\InternalCalls.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17616580.078125, "dur": 819.5000290870667, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8195000290870667, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Liveness.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17617402.34375, "dur": 486.0999882221222, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4860999882221222, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MetadataAlloc.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17617894.53125, "dur": 655.6000113487244, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6556000113487244, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MetadataLoader.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17618554.6875, "dur": 605.7999730110168, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6057999730110168, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Method.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17619164.0625, "dur": 873.0999827384949, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8730999827384949, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Monitor.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17620041.015625, "dur": 431.60000443458557, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.43160000443458557, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Parameter.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17620474.609375, "dur": 719.3999886512756, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7193999886512756, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\PlatformInvoke.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17621197.265625, "dur": 873.6000061035156, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8736000061035156, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\RCW.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17622074.21875, "dur": 981.7000031471252, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9817000031471252, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Reflection.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17623062.5, "dur": 434.70001220703125, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.43470001220703125, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ScopedThreadAttacher.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17623500, "dur": 586.3999724388123, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5863999724388123, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\String.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17624089.84375, "dur": 1054.1000366210938, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0541000366210938, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ThreadPool.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17625146.484375, "dur": 994.5999979972839, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9945999979972839, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Type.cpp" } },
- { "pid": 1, "tid": 62, "ts": 17626146.484375, "dur": 478.39999198913574, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.47839999198913574, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\WeakReference.cpp" } },
- { "pid": 1, "tid": 59, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 59, "ts": 17633808.59375, "dur": 2747.80011177063, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.74780011177063, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\BlobReader.cpp" } },
- { "pid": 1, "tid": 59, "ts": 17636564.453125, "dur": 1178.5000562667847, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1785000562667847, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\Debugger.cpp" } },
- { "pid": 1, "tid": 59, "ts": 17637751.953125, "dur": 739.300012588501, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.739300012588501, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\NativeDelegateMethodCache.cpp" } },
- { "pid": 1, "tid": 59, "ts": 17638496.09375, "dur": 767.300009727478, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.767300009727478, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\NativeSymbol.cpp" } },
- { "pid": 1, "tid": 59, "ts": 17639267.578125, "dur": 816.9000148773193, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8169000148773193, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\icalls\\mscorlib\\System\\Math.cpp" } },
- { "pid": 1, "tid": 58, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 58, "ts": 17638625, "dur": 635.2999806404114, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6352999806404114, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\VmStringUtils.cpp" } },
- { "pid": 1, "tid": 58, "ts": 17639267.578125, "dur": 814.7000074386597, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8147000074386597, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\icalls\\mscorlib\\System.Threading\\Interlocked.cpp" } },
- { "pid": 1, "tid": 46, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 46, "ts": 17718402.34375, "dur": 61668.800354003906, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 61.668800354003906, "detail": "Il2CppCCalculateTypeValues.cpp" } },
- { "pid": 1, "tid": 46, "ts": 17790005.859375, "dur": 29632.301330566406, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 29.632301330566406, "detail": "UnityEngine.CoreModule.cpp" } },
- { "pid": 1, "tid": 46, "ts": 17825689.453125, "dur": 44026.89743041992, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 44.02689743041992, "detail": "mscorlib4.cpp" } },
- { "pid": 1, "tid": 46, "ts": 17874255.859375, "dur": 41239.10140991211, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 41.23910140991211, "detail": "GenericMethods.cpp" } },
- { "pid": 1, "tid": 46, "ts": 17919417.96875, "dur": 14688.098907470703, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 14.688098907470703, "detail": "Generics.cpp" } },
- { "pid": 1, "tid": 46, "ts": 17937857.421875, "dur": 17984.498977661133, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 17.984498977661133, "detail": "UnityEngine.UI3.cpp" } },
- { "pid": 1, "tid": 46, "ts": 17959439.453125, "dur": 25327.50129699707, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 25.32750129699707, "detail": "mscorlib15.cpp" } },
- { "pid": 1, "tid": 46, "ts": 17989066.40625, "dur": 31051.599502563477, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 31.051599502563477, "detail": "mscorlib11.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18024181.640625, "dur": 26622.098922729492, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 26.622098922729492, "detail": "GenericMethods1.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18054519.53125, "dur": 11697.099685668945, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 11.697099685668945, "detail": "UnityEngine.IMGUIModule.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18071162.109375, "dur": 7207.900047302246, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.207900047302246, "detail": "UnityEngine.CoreModule_CodeGen.c" } },
- { "pid": 1, "tid": 46, "ts": 18087884.765625, "dur": 11464.400291442871, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 11.464400291442871, "detail": "UnityEngine.UI_Attr.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18103603.515625, "dur": 5861.199855804443, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 5.861199855804443, "detail": "Il2CppCCTypeValuesTable.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18115802.734375, "dur": 6822.1001625061035, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.8221001625061035, "detail": "Il2CppGenericAdjustorThunkTable.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18126976.5625, "dur": 12180.800437927246, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 12.180800437927246, "detail": "UnityEngine.PhysicsModule_Attr.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18144556.640625, "dur": 14440.098762512207, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 14.440098762512207, "detail": "UnityEngine.SharedInternalsModule_Attr.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18166814.453125, "dur": 13657.600402832031, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 13.657600402832031, "detail": "Il2CppInteropDataTable.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18185052.734375, "dur": 17384.79995727539, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 17.38479995727539, "detail": "Il2CppGenericMethodDefinitions.c" } },
- { "pid": 1, "tid": 46, "ts": 18207296.875, "dur": 11602.399826049805, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 11.602399826049805, "detail": "UnityICallRegistration.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18223050.78125, "dur": 9180.500030517578, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.180500030517578, "detail": "UnityEngine.AudioModule.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18236267.578125, "dur": 19075.50048828125, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 19.07550048828125, "detail": "UnityEngine.UnityWebRequestModule_Attr.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18260630.859375, "dur": 9721.699714660645, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.721699714660645, "detail": "System.Core_Attr.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18274929.6875, "dur": 12519.100189208984, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 12.519100189208984, "detail": "System.Configuration.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18292750, "dur": 9029.899597167969, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.029899597167969, "detail": "Mono.Security_Attr.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18306296.875, "dur": 8366.999626159668, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.366999626159668, "detail": "UnityEngine.UIModule_CodeGen.c" } },
- { "pid": 1, "tid": 46, "ts": 18319703.125, "dur": 15494.799613952637, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 15.494799613952637, "detail": "Lump_libil2cpp_os.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18340898.4375, "dur": 7960.4997634887695, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.9604997634887695, "detail": "UnityEngine.SharedInternalsModule_CodeGen.c" } },
- { "pid": 1, "tid": 46, "ts": 18357648.4375, "dur": 18173.1014251709, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 18.1731014251709, "detail": "UnityEngine.TextRenderingModule_CodeGen.c" } },
- { "pid": 1, "tid": 46, "ts": 18390650.390625, "dur": 8139.599800109863, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.139599800109863, "detail": "UnityEngine.InputLegacyModule_CodeGen.c" } },
- { "pid": 1, "tid": 46, "ts": 18402714.84375, "dur": 5804.200172424316, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 5.804200172424316, "detail": "zutil.c" } },
- { "pid": 1, "tid": 46, "ts": 18413400.390625, "dur": 4631.499767303467, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.631499767303467, "detail": "UnityEngine.TilemapModule.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18423544.921875, "dur": 20843.599319458008, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 20.843599319458008, "detail": "UnityEngine.SpriteShapeModule.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18451933.59375, "dur": 15141.698837280273, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 15.141698837280273, "detail": "uncompr.c" } },
- { "pid": 1, "tid": 46, "ts": 18471632.8125, "dur": 35286.30065917969, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 35.28630065917969, "detail": "UnityEngine.UnityWebRequestModule_CodeGen.c" } },
- { "pid": 1, "tid": 46, "ts": 18551880.859375, "dur": 4278.900146484375, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.278900146484375, "detail": "krait_signal_handler.c" } },
- { "pid": 1, "tid": 46, "ts": 18566822.265625, "dur": 8645.500183105469, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.645500183105469, "detail": "UnityEngine.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18581228.515625, "dur": 9294.19994354248, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.29419994354248, "detail": "Lump_libil2cpp_gc.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18599941.40625, "dur": 4274.799823760986, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.274799823760986, "detail": "UnityEngine.TilemapModule_CodeGen.c" } },
- { "pid": 1, "tid": 46, "ts": 18619177.734375, "dur": 6000.199794769287, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.000199794769287, "detail": "Il2CppGenericComDefinitions.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18632601.5625, "dur": 7242.800235748291, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.242800235748291, "detail": "Il2CppGenericComDefinitions11.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18643837.890625, "dur": 11561.400413513184, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 11.561400413513184, "detail": "Il2CppGenericComDefinitions15.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18659060.546875, "dur": 12603.500366210938, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 12.603500366210938, "detail": "Il2CppGenericComDefinitions3.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18675402.34375, "dur": 12129.899978637695, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 12.129899978637695, "detail": "Il2CppGenericComDefinitions7.cpp" } },
- { "pid": 1, "tid": 46, "ts": 18693039.0625, "dur": 10256.400108337402, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 10.256400108337402, "detail": "Lump_libil2cpp_plugin.cpp" } },
- { "pid": 1, "tid": 44, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 44, "ts": 17719134.765625, "dur": 46724.89929199219, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 46.72489929199219, "detail": "mscorlib1.cpp" } },
- { "pid": 1, "tid": 44, "ts": 17778982.421875, "dur": 36280.399322509766, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 36.280399322509766, "detail": "mscorlib13.cpp" } },
- { "pid": 1, "tid": 44, "ts": 17818921.875, "dur": 20927.101135253906, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 20.927101135253906, "detail": "mscorlib6.cpp" } },
- { "pid": 1, "tid": 44, "ts": 17843677.734375, "dur": 18642.799377441406, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 18.642799377441406, "detail": "mscorlib.cpp" } },
- { "pid": 1, "tid": 44, "ts": 17868861.328125, "dur": 39087.69989013672, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 39.08769989013672, "detail": "Il2CppInvokerTable.cpp" } },
- { "pid": 1, "tid": 44, "ts": 17917226.5625, "dur": 26450.700759887695, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 26.450700759887695, "detail": "mscorlib5.cpp" } },
- { "pid": 1, "tid": 44, "ts": 17949867.1875, "dur": 23972.60093688965, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 23.97260093688965, "detail": "mscorlib14.cpp" } },
- { "pid": 1, "tid": 44, "ts": 17980328.125, "dur": 19122.30110168457, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 19.12230110168457, "detail": "UnityEngine.CoreModule1.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18003251.953125, "dur": 20802.799224853516, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 20.802799224853516, "detail": "Generics4.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18031123.046875, "dur": 16617.698669433594, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 16.617698669433594, "detail": "Il2CppMetadataUsage.c" } },
- { "pid": 1, "tid": 44, "ts": 18052230.46875, "dur": 13081.199645996094, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 13.081199645996094, "detail": "Assembly-CSharp.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18069007.8125, "dur": 8799.200057983398, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.799200057983398, "detail": "UnityEngine.UI_CodeGen.c" } },
- { "pid": 1, "tid": 44, "ts": 18081875, "dur": 13704.19979095459, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 13.70419979095459, "detail": "char-conversions.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18100751.953125, "dur": 19847.299575805664, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 19.847299575805664, "detail": "UnityEngine.UIModule.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18127267.578125, "dur": 11835.399627685547, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 11.835399627685547, "detail": "UnityEngine.PhysicsModule.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18144373.046875, "dur": 10376.799583435059, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 10.376799583435059, "detail": "UnityEngine.InputLegacyModule.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18158898.4375, "dur": 12702.099800109863, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 12.702099800109863, "detail": "Il2CppGenericMethodTable.c" } },
- { "pid": 1, "tid": 44, "ts": 18176357.421875, "dur": 10176.6996383667, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 10.1766996383667, "detail": "UnityEngine.UIModule_Attr.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18190730.46875, "dur": 16802.898406982422, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 16.802898406982422, "detail": "UnityEngine.TextRenderingModule_Attr.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18214478.515625, "dur": 7369.100093841553, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.369100093841553, "detail": "UnityEngine.InputLegacyModule_Attr.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18225701.171875, "dur": 15296.099662780762, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 15.296099662780762, "detail": "UnityEngine.SpriteShapeModule_Attr.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18247035.15625, "dur": 21113.298416137695, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 21.113298416137695, "detail": "UnityEngine.IMGUIModule_CodeGen.c" } },
- { "pid": 1, "tid": 44, "ts": 18272076.171875, "dur": 7844.399929046631, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.844399929046631, "detail": "inflate.c" } },
- { "pid": 1, "tid": 44, "ts": 18283679.6875, "dur": 14553.199768066406, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 14.553199768066406, "detail": "Assembly-CSharp_Attr.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18302828.125, "dur": 7187.699794769287, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.187699794769287, "detail": "UnityEngine.Physics2DModule.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18315822.265625, "dur": 9140.999794006348, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.140999794006348, "detail": "infback.c" } },
- { "pid": 1, "tid": 44, "ts": 18328746.09375, "dur": 6439.300060272217, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.439300060272217, "detail": "Assembly-CSharp_CodeGen.c" } },
- { "pid": 1, "tid": 44, "ts": 18340904.296875, "dur": 18713.90151977539, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 18.71390151977539, "detail": "Lump_libil2cpp_icalls.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18365226.5625, "dur": 21738.89923095703, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 21.73889923095703, "detail": "inftrees.c" } },
- { "pid": 1, "tid": 44, "ts": 18391050.78125, "dur": 10075.699806213379, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 10.075699806213379, "detail": "UnityEngine_Attr.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18404806.640625, "dur": 12909.299850463867, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 12.909299850463867, "detail": "UnityEngine.UnityAnalyticsModule_CodeGen.c" } },
- { "pid": 1, "tid": 44, "ts": 18422773.4375, "dur": 16055.900573730469, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 16.05590057373047, "detail": "adler32.c" } },
- { "pid": 1, "tid": 44, "ts": 18442666.015625, "dur": 40057.899475097656, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 40.057899475097656, "detail": "gc.c" } },
- { "pid": 1, "tid": 44, "ts": 18486326.171875, "dur": 68503.1967163086, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 68.5031967163086, "detail": "Lump_libil2cpp_metadata.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18558988.28125, "dur": 15672.700881958008, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 15.672700881958008, "detail": "Il2CppMetadataRegistration.c" } },
- { "pid": 1, "tid": 44, "ts": 18582923.828125, "dur": 10253.700256347656, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 10.253700256347656, "detail": "Lump_libil2cpp_mono.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18599042.96875, "dur": 5894.199848175049, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 5.894199848175049, "detail": "UnityEngine.GridModule_CodeGen.c" } },
- { "pid": 1, "tid": 44, "ts": 18618835.9375, "dur": 6762.599945068359, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.762599945068359, "detail": "Il2CppGenericComDefinitions1.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18632632.8125, "dur": 6931.300163269043, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.931300163269043, "detail": "Il2CppGenericComDefinitions12.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18643771.484375, "dur": 12262.00008392334, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 12.26200008392334, "detail": "Il2CppGenericComDefinitions14.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18659726.5625, "dur": 14022.000312805176, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 14.022000312805176, "detail": "Il2CppGenericComDefinitions4.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18678052.734375, "dur": 7557.799816131592, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.557799816131592, "detail": "Il2CppGenericComDefinitions8.cpp" } },
- { "pid": 1, "tid": 44, "ts": 18689623.046875, "dur": 9966.699600219727, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.966699600219727, "detail": "il2cpp-runtime-stats.cpp" } },
- { "pid": 1, "tid": 47, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 47, "ts": 17719560.546875, "dur": 55952.69775390625, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 55.95269775390625, "detail": "Il2CppCCalculateFieldValues.cpp" } },
- { "pid": 1, "tid": 47, "ts": 17786181.640625, "dur": 23519.59991455078, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 23.51959991455078, "detail": "mscorlib10.cpp" } },
- { "pid": 1, "tid": 47, "ts": 17816023.4375, "dur": 24162.799835205078, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 24.162799835205078, "detail": "Generics1.cpp" } },
- { "pid": 1, "tid": 47, "ts": 17845697.265625, "dur": 16537.500381469727, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 16.537500381469727, "detail": "mscorlib2.cpp" } },
- { "pid": 1, "tid": 47, "ts": 17868861.328125, "dur": 40653.7971496582, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 40.6537971496582, "detail": "Generics3.cpp" } },
- { "pid": 1, "tid": 47, "ts": 17916863.28125, "dur": 16978.899002075195, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 16.978899002075195, "detail": "Il2CppTypeDefinitions.c" } },
- { "pid": 1, "tid": 47, "ts": 17937609.375, "dur": 14273.599624633789, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 14.273599624633789, "detail": "mscorlib8.cpp" } },
- { "pid": 1, "tid": 47, "ts": 17955357.421875, "dur": 23516.300201416016, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 23.516300201416016, "detail": "UnityEngine.UI2.cpp" } },
- { "pid": 1, "tid": 47, "ts": 17983142.578125, "dur": 17620.5997467041, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 17.6205997467041, "detail": "mscorlib3.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18004988.28125, "dur": 38305.69839477539, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 38.30569839477539, "detail": "Generics5.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18047667.96875, "dur": 13393.400192260742, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 13.393400192260742, "detail": "UnityEngine.CoreModule_Attr.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18069550.78125, "dur": 9051.09977722168, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.05109977722168, "detail": "System2.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18084632.8125, "dur": 9381.999969482422, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.381999969482422, "detail": "Il2CppGenericInstDefinitions.c" } },
- { "pid": 1, "tid": 47, "ts": 18101152.34375, "dur": 8283.39958190918, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.28339958190918, "detail": "UnityEngine.AnimationModule.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18115802.734375, "dur": 6841.800212860107, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.841800212860107, "detail": "UnityEngine.IMGUIModule_Attr.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18126976.5625, "dur": 12106.200218200684, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 12.106200218200684, "detail": "UnityEngine.AnimationModule_Attr.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18144234.375, "dur": 10324.799537658691, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 10.324799537658691, "detail": "System_CodeGen.c" } },
- { "pid": 1, "tid": 47, "ts": 18158490.234375, "dur": 13634.899139404297, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 13.634899139404297, "detail": "Mono.Security.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18178230.46875, "dur": 8188.599586486816, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.188599586486816, "detail": "Il2CppCCFieldValuesTable.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18190871.09375, "dur": 12007.599830627441, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 12.007599830627441, "detail": "UnityEngine.Physics2DModule_Attr.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18207296.875, "dur": 11559.200286865234, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 11.559200286865234, "detail": "UnityEngine.TilemapModule_Attr.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18224300.78125, "dur": 13995.599746704102, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 13.995599746704102, "detail": "System_Attr.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18242226.5625, "dur": 24816.699981689453, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 24.816699981689453, "detail": "UnityEngine.UnityAnalyticsModule.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18271304.6875, "dur": 5330.50012588501, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 5.33050012588501, "detail": "System.Xml_Attr.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18283246.09375, "dur": 17858.90007019043, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 17.85890007019043, "detail": "trees.c" } },
- { "pid": 1, "tid": 47, "ts": 18304806.640625, "dur": 5549.799919128418, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 5.549799919128418, "detail": "xamarin_getifaddrs.c" } },
- { "pid": 1, "tid": 47, "ts": 18316146.484375, "dur": 8315.099716186523, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.315099716186523, "detail": "UnityEngine.PhysicsModule_CodeGen.c" } },
- { "pid": 1, "tid": 47, "ts": 18328728.515625, "dur": 7909.5001220703125, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.9095001220703125, "detail": "gzread.c" } },
- { "pid": 1, "tid": 47, "ts": 18341062.5, "dur": 6993.199825286865, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.993199825286865, "detail": "gzlib.c" } },
- { "pid": 1, "tid": 47, "ts": 18354892.578125, "dur": 12096.699714660645, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 12.096699714660645, "detail": "UnityClassRegistration.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18371316.40625, "dur": 23055.999755859375, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 23.055999755859375, "detail": "System.Core_CodeGen.c" } },
- { "pid": 1, "tid": 47, "ts": 18399648.4375, "dur": 8286.999702453613, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.286999702453613, "detail": "System.Xml_CodeGen.c" } },
- { "pid": 1, "tid": 47, "ts": 18413400.390625, "dur": 14526.700973510742, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 14.526700973510742, "detail": "Lump_libil2cpp_vm.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18435738.28125, "dur": 18723.400115966797, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 18.723400115966797, "detail": "UnityEngine.GridModule.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18458371.09375, "dur": 34235.00061035156, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 34.23500061035156, "detail": "UnityEngine.Physics2DModule_CodeGen.c" } },
- { "pid": 1, "tid": 47, "ts": 18502917.96875, "dur": 52212.100982666016, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 52.212100982666016, "detail": "UnityAdsStubs.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18559078.125, "dur": 25617.50030517578, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 25.61750030517578, "detail": "Lump_libil2cpp_vm-utils.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18588599.609375, "dur": 13720.999717712402, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 13.720999717712402, "detail": "il2cpp-benchmark-support.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18607230.46875, "dur": 17875.79917907715, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 17.87579917907715, "detail": "UnityEngine_CodeGen.c" } },
- { "pid": 1, "tid": 47, "ts": 18632300.78125, "dur": 9098.299980163574, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.098299980163574, "detail": "Il2CppGenericComDefinitions10.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18651408.203125, "dur": 18023.000717163086, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 18.023000717163086, "detail": "Il2CppGenericComDefinitions16.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18673429.6875, "dur": 10300.600051879883, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 10.300600051879883, "detail": "Il2CppGenericComDefinitions6.cpp" } },
- { "pid": 1, "tid": 47, "ts": 18688265.625, "dur": 11686.49959564209, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 11.68649959564209, "detail": "Lump_libil2cpp_debugger.cpp" } },
- { "pid": 1, "tid": 45, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 45, "ts": 17719560.546875, "dur": 46378.79943847656, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 46.37879943847656, "detail": "mscorlib_CodeGen.c" } },
- { "pid": 1, "tid": 45, "ts": 17770492.1875, "dur": 37825.29830932617, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 37.82529830932617, "detail": "mscorlib9.cpp" } },
- { "pid": 1, "tid": 45, "ts": 17818359.375, "dur": 20602.49900817871, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 20.60249900817871, "detail": "mscorlib16.cpp" } },
- { "pid": 1, "tid": 45, "ts": 17843056.640625, "dur": 33276.40151977539, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 33.27640151977539, "detail": "mscorlib7.cpp" } },
- { "pid": 1, "tid": 45, "ts": 17893382.8125, "dur": 33522.098541259766, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 33.522098541259766, "detail": "UnityEngine.UI.cpp" } },
- { "pid": 1, "tid": 45, "ts": 17934935.546875, "dur": 23445.600509643555, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 23.445600509643555, "detail": "Generics2.cpp" } },
- { "pid": 1, "tid": 45, "ts": 17964691.40625, "dur": 14159.39998626709, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 14.15939998626709, "detail": "UnityEngine.UI1.cpp" } },
- { "pid": 1, "tid": 45, "ts": 17983142.578125, "dur": 16003.000259399414, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 16.003000259399414, "detail": "mscorlib12.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18003150.390625, "dur": 19668.399810791016, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 19.668399810791016, "detail": "System1.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18027283.203125, "dur": 15912.599563598633, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 15.912599563598633, "detail": "System.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18047667.96875, "dur": 11790.10009765625, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 11.79010009765625, "detail": "Il2CppGenericMethodPointerTable.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18063896.484375, "dur": 16481.901168823242, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 16.481901168823242, "detail": "mscorlib_Attr.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18087951.171875, "dur": 6277.400016784668, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.277400016784668, "detail": "UnresolvedVirtualCallStubs.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18099080.078125, "dur": 10309.700012207031, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 10.309700012207031, "detail": "mscorlib17.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18115802.734375, "dur": 7453.999996185303, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.453999996185303, "detail": "UnityEngine.TextRenderingModule.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18134224.609375, "dur": 5714.900016784668, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 5.714900016784668, "detail": "UnityEngine.SharedInternalsModule.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18144785.15625, "dur": 17259.199142456055, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 17.259199142456055, "detail": "Il2CppGenericClassTable.c" } },
- { "pid": 1, "tid": 45, "ts": 18167353.515625, "dur": 16935.800552368164, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 16.935800552368164, "detail": "UnityEngine.AudioModule_Attr.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18187941.40625, "dur": 14504.499435424805, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 14.504499435424805, "detail": "System.Xml.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18207300.78125, "dur": 11564.900398254395, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 11.564900398254395, "detail": "UnityEngine.UnityAnalyticsModule_Attr.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18223050.78125, "dur": 10055.700302124023, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 10.055700302124023, "detail": "UnityEngine.GridModule_Attr.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18236921.875, "dur": 18373.600006103516, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 18.373600006103516, "detail": "deflate.c" } },
- { "pid": 1, "tid": 45, "ts": 18262890.625, "dur": 9491.999626159668, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.491999626159668, "detail": "UnityEngine.UnityWebRequestModule.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18276005.859375, "dur": 11406.800270080566, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 11.406800270080566, "detail": "System.Configuration_Attr.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18292845.703125, "dur": 11895.099639892578, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 11.895099639892578, "detail": "il2cpp-api.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18308570.3125, "dur": 13517.900466918945, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 13.517900466918945, "detail": "UnityEngine.AnimationModule_CodeGen.c" } },
- { "pid": 1, "tid": 45, "ts": 18326169.921875, "dur": 9017.600059509277, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.017600059509277, "detail": "System.Core.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18340419.921875, "dur": 9163.100242614746, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.163100242614746, "detail": "gzwrite.c" } },
- { "pid": 1, "tid": 45, "ts": 18354349.609375, "dur": 6287.099838256836, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.287099838256836, "detail": "crc32.c" } },
- { "pid": 1, "tid": 45, "ts": 18364748.046875, "dur": 24952.199935913086, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 24.952199935913086, "detail": "inffast.c" } },
- { "pid": 1, "tid": 45, "ts": 18394535.15625, "dur": 8922.900199890137, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.922900199890137, "detail": "UnityEngine.AudioModule_CodeGen.c" } },
- { "pid": 1, "tid": 45, "ts": 18407025.390625, "dur": 10897.99976348877, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 10.89799976348877, "detail": "System.Configuration_CodeGen.c" } },
- { "pid": 1, "tid": 45, "ts": 18423433.59375, "dur": 12840.399742126465, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 12.840399742126465, "detail": "Mono.Security_CodeGen.c" } },
- { "pid": 1, "tid": 45, "ts": 18440943.359375, "dur": 15212.400436401367, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 15.212400436401367, "detail": "Il2CppCodeRegistration.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18459539.0625, "dur": 14683.799743652344, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 14.683799743652344, "detail": "compress.c" } },
- { "pid": 1, "tid": 45, "ts": 18482044.921875, "dur": 22037.69874572754, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 22.03769874572754, "detail": "Il2CppReversePInvokeWrapperTable.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18554867.1875, "dur": 21109.399795532227, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 21.109399795532227, "detail": "Lump_libil2cpp_utils.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18581388.671875, "dur": 7399.099826812744, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.399099826812744, "detail": "gzclose.c" } },
- { "pid": 1, "tid": 45, "ts": 18592843.75, "dur": 11225.299835205078, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 11.225299835205078, "detail": "UnityEngine.SpriteShapeModule_CodeGen.c" } },
- { "pid": 1, "tid": 45, "ts": 18610730.46875, "dur": 28145.401000976562, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 28.145401000976562, "detail": "Lump_libil2cpp_codegen.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18642992.1875, "dur": 8680.000305175781, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.680000305175781, "detail": "Il2CppGenericComDefinitions13.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18656076.171875, "dur": 7537.700176239014, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.537700176239014, "detail": "Il2CppGenericComDefinitions2.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18670181.640625, "dur": 7503.600120544434, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.503600120544434, "detail": "Il2CppGenericComDefinitions5.cpp" } },
- { "pid": 1, "tid": 45, "ts": 18683378.90625, "dur": 9748.100280761719, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.748100280761719, "detail": "Il2CppGenericComDefinitions9.cpp" } },
- { "pid": 1, "tid": 41, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 41, "ts": 17725248.046875, "dur": 335.7999920845032, "ph": "X", "name": "HeaderFileHashProvider.HashForAllHeaderFilesReachableByFilesIn", "args": { "durationMS": 0.3357999920845032, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include" } },
- { "pid": 1, "tid": 39, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 39, "ts": 17725275.390625, "dur": 341.8000042438507, "ph": "X", "name": "HeaderFileHashProvider.HashForAllHeaderFilesReachableByFilesIn", "args": { "durationMS": 0.3418000042438507, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include" } },
- { "pid": 1, "tid": 119, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 119, "ts": 18001722.65625, "dur": 626.9000172615051, "ph": "X", "name": "HeaderFileHashProvider.HashForAllHeaderFilesReachableByFilesIn", "args": { "durationMS": 0.6269000172615051, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp" } },
- { "pid": 1, "tid": 119, "ts": 18002351.5625, "dur": 622.9000091552734, "ph": "X", "name": "HeaderFileHashProvider.HashForAllHeaderFilesReachableByFilesIn", "args": { "durationMS": 0.6229000091552734, "detail": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\libil2cpp" } },
- { "pid": 1, "tid": 119, "ts": 18002984.375, "dur": 357.60000348091125, "ph": "X", "name": "HeaderFileHashProvider.HashForAllHeaderFilesReachableByFilesIn", "args": { "durationMS": 0.35760000348091125, "detail": "F:\\cocorobo\\cocorobo-unity\\Library\\Il2cppBuildCache\\WebGL\\il2cppOutput" } },
- { "pid": 1, "tid": 257, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 257, "ts": 18735656.25, "dur": 11833694.3359375, "ph": "X", "name": "Compile", "args": { "durationMS": 11833.6943359375, "detail": "Il2CppMetadataUsage.c" } },
- { "pid": 1, "tid": 257, "ts": 30569837.890625, "dur": 6763667.96875, "ph": "X", "name": "Compile", "args": { "durationMS": 6763.66796875, "detail": "UnityEngine.CoreModule_CodeGen.c" } },
- { "pid": 1, "tid": 256, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 256, "ts": 18737123.046875, "dur": 11865137.6953125, "ph": "X", "name": "Compile", "args": { "durationMS": 11865.1376953125, "detail": "UnityEngine.CoreModule_Attr.cpp" } },
- { "pid": 1, "tid": 256, "ts": 30602285.15625, "dur": 6653832.03125, "ph": "X", "name": "Compile", "args": { "durationMS": 6653.83203125, "detail": "Il2CppGenericMethodDefinitions.c" } },
- { "pid": 1, "tid": 258, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 258, "ts": 18737279.296875, "dur": 19851248.046875, "ph": "X", "name": "Compile", "args": { "durationMS": 19851.248046875, "detail": "UnityEngine.CoreModule.cpp" } },
- { "pid": 1, "tid": 255, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 255, "ts": 18737511.71875, "dur": 13168505.859375, "ph": "X", "name": "Compile", "args": { "durationMS": 13168.505859375, "detail": "Assembly-CSharp.cpp" } },
- { "pid": 1, "tid": 255, "ts": 31906041.015625, "dur": 5347529.296875, "ph": "X", "name": "Compile", "args": { "durationMS": 5347.529296875, "detail": "UnityICallRegistration.cpp" } },
- { "pid": 1, "tid": 255, "ts": 37253593.75, "dur": 1520587.646484375, "ph": "X", "name": "Compile", "args": { "durationMS": 1520.587646484375, "detail": "Assembly-CSharp_CodeGen.c" } }
- ],
- "meta_datetime": "02/08/2022 11:36:13",
- "meta_command_line": "\"C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\build\\deploy\\netcoreapp3.1\\il2cpp.dll\" @artifacts\\rsp\\9823849370109081815.rsp",
- "meta_command_line_args": "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.26f1c1\\Editor\\Data\\il2cpp\\build\\deploy\\netcoreapp3.1\\il2cpp.dll @artifacts\\rsp\\9823849370109081815.rsp",
- "meta_user_name": "Administrator",
- "meta_os_version": "Microsoft Windows NT 6.2.9200.0",
- "meta_cpu_count": "4"}
|