| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278 |
- {
- "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": 754.8999786376953, "dur": 47639578.125, "ph": "X", "name": "il2cpp.exe", "args": { "durationMS": 47639.578125, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 132723.29711914062, "dur": 4550652.83203125, "ph": "X", "name": "ConvertAssemblies", "args": { "durationMS": 4550.65283203125, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 156485.09216308594, "dur": 316075.8972167969, "ph": "X", "name": "InitializePhase", "args": { "durationMS": 316.0758972167969, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 156485.3973388672, "dur": 314882.2937011719, "ph": "X", "name": "Collect assemblies to convert", "args": { "durationMS": 314.8822937011719, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 472964.29443359375, "dur": 742213.8061523438, "ph": "X", "name": "SetupPhase", "args": { "durationMS": 742.2138061523438, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 473348.9074707031, "dur": 67749.19891357422, "ph": "X", "name": "RegisterCorlib", "args": { "durationMS": 67.74919891357422, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 542677.1850585938, "dur": 36424.30114746094, "ph": "X", "name": "PreProcessIL", "args": { "durationMS": 36.42430114746094, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 542677.6123046875, "dur": 28908.998489379883, "ph": "X", "name": "Inject base types and finalizers into COM and Windows Runtime types", "args": { "durationMS": 28.908998489379883, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 542968.505859375, "dur": 28064.498901367188, "ph": "X", "name": "ModifyCOMAndWindowsRuntimeTypes in assembly", "args": { "durationMS": 28.064498901367188, "detail": "mscorlib" } },
- { "pid": 1, "tid": 1, "ts": 571586.7919921875, "dur": 7514.200210571289, "ph": "X", "name": "ApplyDefaultMarshalAsAttribute", "args": { "durationMS": 7.514200210571289, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 571850.09765625, "dur": 5875, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 5.875, "detail": "mscorlib" } },
- { "pid": 1, "tid": 1, "ts": 577947.6928710938, "dur": 485.79999804496765, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 0.48579999804496765, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 1, "ts": 579239.501953125, "dur": 4658.999919891357, "ph": "X", "name": "WriteResources", "args": { "durationMS": 4.658999919891357, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 584181.5185546875, "dur": 554484.2529296875, "ph": "X", "name": "CopyEtcFolder", "args": { "durationMS": 554.4842529296875, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1164335.9375, "dur": 50028.900146484375, "ph": "X", "name": "Add Missing rets", "args": { "durationMS": 50.028900146484375, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1172469.7265625, "dur": 41848.80065917969, "ph": "X", "name": "mscorlib", "args": { "durationMS": 41.84880065917969, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1214365.234375, "dur": 811.9000196456909, "ph": "X", "name": "Build Results", "args": { "durationMS": 0.8119000196456909, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1216707.6416015625, "dur": 498840.51513671875, "ph": "X", "name": "PrimaryCollectionPhase", "args": { "durationMS": 498.84051513671875, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1217805.6640625, "dur": 14405.500411987305, "ph": "X", "name": "Create Scheduler", "args": { "durationMS": 14.405500411987305, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1222123.1689453125, "dur": 6270.899772644043, "ph": "X", "name": "ForkedContextScope.Setup", "args": { "durationMS": 6.270899772644043, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1232211.9140625, "dur": 40636.79885864258, "ph": "X", "name": "Scheduling", "args": { "durationMS": 40.63679885864258, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1273850.9521484375, "dur": 415709.1979980469, "ph": "X", "name": "PhaseWorkScheduler.WaitForEmptyQueue", "args": { "durationMS": 415.7091979980469, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1691857.666015625, "dur": 20971.698760986328, "ph": "X", "name": "ForkedContextScope.MergeBack", "args": { "durationMS": 20.971698760986328, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1701580.810546875, "dur": 653.6999940872192, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.6536999940872192, "detail": "Unity.IL2CPP.Contexts.Components.MethodCollector" } },
- { "pid": 1, "tid": 1, "ts": 1702239.2578125, "dur": 859.000027179718, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.859000027179718, "detail": "Unity.IL2CPP.Contexts.Components.WindowsRuntimeTypeWithNameComponent" } },
- { "pid": 1, "tid": 1, "ts": 1712857.177734375, "dur": 2690.2999877929688, "ph": "X", "name": "Build Results", "args": { "durationMS": 2.6902999877929688, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1717600.7080078125, "dur": 2301448.2421875, "ph": "X", "name": "PrimaryWritePhase", "args": { "durationMS": 2301.4482421875, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1717927.6123046875, "dur": 1926.3999462127686, "ph": "X", "name": "Create Scheduler", "args": { "durationMS": 1.9263999462127686, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1719854.4921875, "dur": 126075.49285888672, "ph": "X", "name": "Scheduling", "args": { "durationMS": 126.07549285888672, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 1845947.6318359375, "dur": 2072793.45703125, "ph": "X", "name": "PhaseWorkScheduler.WaitForEmptyQueue", "args": { "durationMS": 2072.79345703125, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 3918989.74609375, "dur": 47834.49935913086, "ph": "X", "name": "ForkedContextScope.MergeBack", "args": { "durationMS": 47.83449935913086, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 3919208.740234375, "dur": 15244.199752807617, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 15.244199752807617, "detail": "Unity.IL2CPP.Contexts.Components.MetadataUsageCollectorComponent" } },
- { "pid": 1, "tid": 1, "ts": 3966842.041015625, "dur": 52206.40182495117, "ph": "X", "name": "Build Results", "args": { "durationMS": 52.20640182495117, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4020307.861328125, "dur": 229230.7891845703, "ph": "X", "name": "SecondaryCollectionPhase", "args": { "durationMS": 229.2307891845703, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4020307.861328125, "dur": 219858.99353027344, "ph": "X", "name": "Scheduling", "args": { "durationMS": 219.85899353027344, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4020606.93359375, "dur": 1934.9000453948975, "ph": "X", "name": "Create Scheduler", "args": { "durationMS": 1.9349000453948975, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4039201.904296875, "dur": 199478.1951904297, "ph": "X", "name": "PhaseWorkScheduler.WaitForEmptyQueue", "args": { "durationMS": 199.4781951904297, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4238877.44140625, "dur": 1277.3000001907349, "ph": "X", "name": "ForkedContextScope.MergeBack", "args": { "durationMS": 1.2773000001907349, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4239092.7734375, "dur": 1054.900050163269, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 1.054900050163269, "detail": "Unity.IL2CPP.Contexts.Components.TypeCollector" } },
- { "pid": 1, "tid": 1, "ts": 4240167.48046875, "dur": 9370.499610900879, "ph": "X", "name": "Build Results", "args": { "durationMS": 9.370499610900879, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4249778.3203125, "dur": 284993.4997558594, "ph": "X", "name": "SecondaryWritePhase", "args": { "durationMS": 284.9934997558594, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4250275.390625, "dur": 2057.1999549865723, "ph": "X", "name": "Part1", "args": { "durationMS": 2.0571999549865723, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4250275.87890625, "dur": 438.1999969482422, "ph": "X", "name": "Scheduling", "args": { "durationMS": 0.4381999969482422, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4250714.35546875, "dur": 1618.0000305175781, "ph": "X", "name": "Build Results", "args": { "durationMS": 1.6180000305175781, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4252727.5390625, "dur": 11163.999557495117, "ph": "X", "name": "Part3", "args": { "durationMS": 11.163999557495117, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4252727.5390625, "dur": 11161.999702453613, "ph": "X", "name": "Scheduling", "args": { "durationMS": 11.161999702453613, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4252897.94921875, "dur": 10989.700317382812, "ph": "X", "name": "WriteUnresolvedStubs", "args": { "durationMS": 10.989700317382812, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4253901.85546875, "dur": 9984.90047454834, "ph": "X", "name": "UnresolvedVirtualCallStubs.cpp", "args": { "durationMS": 9.98490047454834, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4264783.203125, "dur": 269987.79296875, "ph": "X", "name": "Part4", "args": { "durationMS": 269.98779296875, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4264783.203125, "dur": 269650.87890625, "ph": "X", "name": "Scheduling", "args": { "durationMS": 269.65087890625, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4265089.35546875, "dur": 1467.5999879837036, "ph": "X", "name": "Create Scheduler", "args": { "durationMS": 1.4675999879837036, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4281401.85546875, "dur": 251485.3057861328, "ph": "X", "name": "PhaseWorkScheduler.WaitForEmptyQueue", "args": { "durationMS": 251.4853057861328, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4532887.6953125, "dur": 390.10000228881836, "ph": "X", "name": "PhaseWorkScheduler.JoinThreads", "args": { "durationMS": 0.39010000228881836, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4533278.3203125, "dur": 1139.0000581741333, "ph": "X", "name": "ForkedContextScope.MergeBack", "args": { "durationMS": 1.1390000581741333, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4533641.6015625, "dur": 747.0999956130981, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.7470999956130981, "detail": "Unity.IL2CPP.Contexts.Components.SourceAnnotationWriterComponent" } },
- { "pid": 1, "tid": 1, "ts": 4534434.5703125, "dur": 335.50000190734863, "ph": "X", "name": "Build Results", "args": { "durationMS": 0.33550000190734863, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4535002.9296875, "dur": 103127.197265625, "ph": "X", "name": "MetadataWritePhase", "args": { "durationMS": 103.127197265625, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4543613.76953125, "dur": 11715.900421142578, "ph": "X", "name": "StringLiteralWriter", "args": { "durationMS": 11.715900421142578, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4555582.03125, "dur": 1101.199984550476, "ph": "X", "name": "Metadata Strings", "args": { "durationMS": 1.101199984550476, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4556686.5234375, "dur": 1917.0000553131104, "ph": "X", "name": "Events", "args": { "durationMS": 1.9170000553131104, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4558604.00390625, "dur": 3260.0998878479004, "ph": "X", "name": "Properties", "args": { "durationMS": 3.2600998878479004, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4561865.234375, "dur": 21849.90119934082, "ph": "X", "name": "Methods", "args": { "durationMS": 21.84990119934082, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4583716.30859375, "dur": 807.3999881744385, "ph": "X", "name": "Parameter Default Values", "args": { "durationMS": 0.8073999881744385, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4584524.4140625, "dur": 1859.5999479293823, "ph": "X", "name": "Field Default Values", "args": { "durationMS": 1.8595999479293823, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4586384.765625, "dur": 401.49998664855957, "ph": "X", "name": "Field and Parameter Default Values Data", "args": { "durationMS": 0.40149998664855957, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4586786.62109375, "dur": 902.5999903678894, "ph": "X", "name": "Field Marshaled Sizes", "args": { "durationMS": 0.9025999903678894, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4587689.94140625, "dur": 9933.699607849121, "ph": "X", "name": "Parameters", "args": { "durationMS": 9.933699607849121, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4597629.39453125, "dur": 6091.19987487793, "ph": "X", "name": "Fields", "args": { "durationMS": 6.09119987487793, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4603721.6796875, "dur": 1697.1999406814575, "ph": "X", "name": "Generic Parameters", "args": { "durationMS": 1.6971999406814575, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4605419.43359375, "dur": 549.0000247955322, "ph": "X", "name": "Generic Parameter Constraints", "args": { "durationMS": 0.5490000247955322, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4605968.75, "dur": 1201.5999555587769, "ph": "X", "name": "Generic Containers", "args": { "durationMS": 1.2015999555587769, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4607171.38671875, "dur": 344.7999954223633, "ph": "X", "name": "Nested Types", "args": { "durationMS": 0.3447999954223633, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4607516.11328125, "dur": 512.6000046730042, "ph": "X", "name": "Interfaces", "args": { "durationMS": 0.5126000046730042, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4608029.296875, "dur": 2527.400016784668, "ph": "X", "name": "VTables", "args": { "durationMS": 2.527400016784668, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4610557.12890625, "dur": 1301.800012588501, "ph": "X", "name": "Interface Offsets", "args": { "durationMS": 1.301800012588501, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4611859.375, "dur": 13989.60018157959, "ph": "X", "name": "Type Definitions", "args": { "durationMS": 13.98960018157959, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4626132.8125, "dur": 2891.5998935699463, "ph": "X", "name": "Images", "args": { "durationMS": 2.8915998935699463, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4629024.90234375, "dur": 1265.6999826431274, "ph": "X", "name": "Assemblies", "args": { "durationMS": 1.2656999826431274, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4630496.09375, "dur": 334.3999981880188, "ph": "X", "name": "Referenced Assemblies", "args": { "durationMS": 0.3343999981880188, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4630830.56640625, "dur": 1933.6999654769897, "ph": "X", "name": "Attribute Types Ranges", "args": { "durationMS": 1.9336999654769897, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4632765.625, "dur": 1934.399962425232, "ph": "X", "name": "Attribute Types", "args": { "durationMS": 1.934399962425232, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4634700.68359375, "dur": 871.6999888420105, "ph": "X", "name": "Unresolved Virtual Call Parameter Types", "args": { "durationMS": 0.8716999888420105, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4636401.85546875, "dur": 1016.800045967102, "ph": "X", "name": "Exported Types", "args": { "durationMS": 1.016800045967102, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4638933.10546875, "dur": 43227.500915527344, "ph": "X", "name": "CompletionPhase", "args": { "durationMS": 43.227500915527344, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4681799.31640625, "dur": 360.5000078678131, "ph": "X", "name": "Build Results", "args": { "durationMS": 0.3605000078678131, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4778727.05078125, "dur": 42860425.78125, "ph": "X", "name": "Build", "args": { "durationMS": 42860.42578125, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4782968.75, "dur": 42855449.21875, "ph": "X", "name": "BuildBinary", "args": { "durationMS": 42855.44921875, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4783167.48046875, "dur": 67511.29913330078, "ph": "X", "name": "FindFilesToCompile", "args": { "durationMS": 67.51129913330078, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 4850679.19921875, "dur": 981986.9384765625, "ph": "X", "name": "Calculate header hashes", "args": { "durationMS": 981.9869384765625, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 5832666.9921875, "dur": 723848.5717773438, "ph": "X", "name": "Calculate lumped hashes", "args": { "durationMS": 723.8485717773438, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 6556557.6171875, "dur": 10235517.578125, "ph": "X", "name": "BuildAllCppFiles", "args": { "durationMS": 10235.517578125, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 6560520.01953125, "dur": 10231554.6875, "ph": "X", "name": "Compile", "args": { "durationMS": 10231.5546875, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 16792082.03125, "dur": 494.3999946117401, "ph": "X", "name": "OnBeforeLink Build", "args": { "durationMS": 0.4943999946117401, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 16792578.125, "dur": 30569166.015625, "ph": "X", "name": "Postprocess Object Files", "args": { "durationMS": 30569.166015625, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 16794378.90625, "dur": 30567367.1875, "ph": "X", "name": "Link", "args": { "durationMS": 30567.3671875, "detail": "build.bc" } },
- { "pid": 1, "tid": 1, "ts": 16808726.5625, "dur": 490948.6999511719, "ph": "X", "name": "hash linker invocation", "args": { "durationMS": 490.9486999511719, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 17314978.515625, "dur": 29998498.046875, "ph": "X", "name": "ActualLinkerInvocation", "args": { "durationMS": 29998.498046875, "detail": "build.bc" } },
- { "pid": 1, "tid": 1, "ts": 47361742.1875, "dur": 218503.0975341797, "ph": "X", "name": "ProgramDescription Finalize Build", "args": { "durationMS": 218.5030975341797, "detail": "" } },
- { "pid": 1, "tid": 1, "ts": 47580250, "dur": 58168.1022644043, "ph": "X", "name": "Clean IL2CPP Cache", "args": { "durationMS": 58.1681022644043, "detail": "" } },
- { "pid": 1, "tid": 4, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 4, "ts": 1172485.4736328125, "dur": 16338.300704956055, "ph": "X", "name": "System.Xml", "args": { "durationMS": 16.338300704956055, "detail": "" } },
- { "pid": 1, "tid": 4, "ts": 1701584.5947265625, "dur": 668.6000227928162, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.6686000227928162, "detail": "Unity.IL2CPP.Contexts.Components.VirtualCallCollector" } },
- { "pid": 1, "tid": 4, "ts": 3919454.58984375, "dur": 9539.199829101562, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 9.539199829101562, "detail": "Unity.IL2CPP.Metadata.VTableBuilder" } },
- { "pid": 1, "tid": 5, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 5, "ts": 1172490.6005859375, "dur": 13906.800270080566, "ph": "X", "name": "UnityEngine.SharedInternalsModule", "args": { "durationMS": 13.906800270080566, "detail": "" } },
- { "pid": 1, "tid": 5, "ts": 1186398.92578125, "dur": 4624.100208282471, "ph": "X", "name": "UnityEngine.CoreModule", "args": { "durationMS": 4.624100208282471, "detail": "" } },
- { "pid": 1, "tid": 5, "ts": 1701607.0556640625, "dur": 616.9000267982483, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.6169000267982483, "detail": "Unity.IL2CPP.Tiny.TinyStringCollectorComponent" } },
- { "pid": 1, "tid": 5, "ts": 1702237.1826171875, "dur": 848.2999801635742, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.8482999801635742, "detail": "Unity.IL2CPP.Contexts.Components.CCWMarshallingFunctionComponent" } },
- { "pid": 1, "tid": 5, "ts": 3919389.892578125, "dur": 3559.2000484466553, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 3.5592000484466553, "detail": "Unity.IL2CPP.Contexts.Components.StatsComponent" } },
- { "pid": 1, "tid": 6, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 6, "ts": 1172496.09375, "dur": 13876.199722290039, "ph": "X", "name": "UnityEngine.InputLegacyModule", "args": { "durationMS": 13.876199722290039, "detail": "" } },
- { "pid": 1, "tid": 6, "ts": 1186390.5029296875, "dur": 2509.999990463257, "ph": "X", "name": "UnityEngine.TextRenderingModule", "args": { "durationMS": 2.509999990463257, "detail": "" } },
- { "pid": 1, "tid": 6, "ts": 1701580.810546875, "dur": 578.9999961853027, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.5789999961853027, "detail": "Unity.IL2CPP.Contexts.Components.MetadataUsageCollectorComponent" } },
- { "pid": 1, "tid": 6, "ts": 1702404.1748046875, "dur": 725.1999974250793, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.7251999974250793, "detail": "Unity.IL2CPP.Contexts.Components.MessageLoggerComponent" } },
- { "pid": 1, "tid": 6, "ts": 3919256.8359375, "dur": 4884.500026702881, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 4.884500026702881, "detail": "Unity.IL2CPP.Metadata.GenericMethodCollectorComponent" } },
- { "pid": 1, "tid": 8, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 8, "ts": 1172509.033203125, "dur": 4132.999897003174, "ph": "X", "name": "UnityEngine.SpriteShapeModule", "args": { "durationMS": 4.132999897003174, "detail": "" } },
- { "pid": 1, "tid": 8, "ts": 1176664.1845703125, "dur": 9034.500122070312, "ph": "X", "name": "UnityEngine.UIModule", "args": { "durationMS": 9.034500122070312, "detail": "" } },
- { "pid": 1, "tid": 8, "ts": 1185705.322265625, "dur": 1350.3999710083008, "ph": "X", "name": "Assembly-CSharp", "args": { "durationMS": 1.3503999710083008, "detail": "" } },
- { "pid": 1, "tid": 8, "ts": 1701596.8017578125, "dur": 1872.9000091552734, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 1.8729000091552734, "detail": "Unity.IL2CPP.Contexts.Components.TypeCollector" } },
- { "pid": 1, "tid": 8, "ts": 3919239.990234375, "dur": 1075.5000114440918, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 1.0755000114440918, "detail": "Unity.IL2CPP.Contexts.Components.TypeCollector" } },
- { "pid": 1, "tid": 8, "ts": 3920324.70703125, "dur": 702.0999789237976, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.7020999789237976, "detail": "Unity.IL2CPP.Contexts.Components.SourceAnnotationWriterComponent" } },
- { "pid": 1, "tid": 9, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 9, "ts": 1172509.3994140625, "dur": 11734.100341796875, "ph": "X", "name": "UnityEngine.AudioModule", "args": { "durationMS": 11.734100341796875, "detail": "" } },
- { "pid": 1, "tid": 9, "ts": 1184245.60546875, "dur": 10605.999946594238, "ph": "X", "name": "UnityEngine.UI", "args": { "durationMS": 10.605999946594238, "detail": "" } },
- { "pid": 1, "tid": 9, "ts": 1701602.6611328125, "dur": 2121.9000816345215, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 2.1219000816345215, "detail": "Unity.IL2CPP.Metadata.GenericMethodCollectorComponent" } },
- { "pid": 1, "tid": 9, "ts": 3919238.76953125, "dur": 3856.800079345703, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 3.856800079345703, "detail": "Unity.IL2CPP.Contexts.Components.SharedMethodCollector" } },
- { "pid": 1, "tid": 7, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 7, "ts": 1172510.25390625, "dur": 13353.699684143066, "ph": "X", "name": "UnityEngine.AnimationModule", "args": { "durationMS": 13.353699684143066, "detail": "" } },
- { "pid": 1, "tid": 7, "ts": 1185866.0888671875, "dur": 3593.3001041412354, "ph": "X", "name": "UnityEngine.IMGUIModule", "args": { "durationMS": 3.5933001041412354, "detail": "" } },
- { "pid": 1, "tid": 7, "ts": 1701589.9658203125, "dur": 538.100004196167, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.538100004196167, "detail": "Unity.IL2CPP.Contexts.Components.SharedMethodCollector" } },
- { "pid": 1, "tid": 7, "ts": 1702155.517578125, "dur": 2448.2998847961426, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 2.4482998847961426, "detail": "Unity.IL2CPP.Contexts.Components.StatsComponent" } },
- { "pid": 1, "tid": 7, "ts": 3919228.515625, "dur": 797.6999878883362, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.7976999878883362, "detail": "Unity.IL2CPP.Symbols.SymbolsCollector" } },
- { "pid": 1, "tid": 7, "ts": 3920034.1796875, "dur": 4717.599868774414, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 4.717599868774414, "detail": "Unity.IL2CPP.Contexts.Components.CppDeclarationsComponent" } },
- { "pid": 1, "tid": 10, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 10, "ts": 1172511.5966796875, "dur": 13304.499626159668, "ph": "X", "name": "UnityEngine.UnityWebRequestModule", "args": { "durationMS": 13.304499626159668, "detail": "" } },
- { "pid": 1, "tid": 10, "ts": 1185818.359375, "dur": 6342.199802398682, "ph": "X", "name": "System", "args": { "durationMS": 6.342199802398682, "detail": "" } },
- { "pid": 1, "tid": 10, "ts": 1192163.4521484375, "dur": 437.00000643730164, "ph": "X", "name": "System.Core", "args": { "durationMS": 0.43700000643730164, "detail": "" } },
- { "pid": 1, "tid": 10, "ts": 1701609.130859375, "dur": 641.4999961853027, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.6414999961853027, "detail": "Unity.IL2CPP.Tiny.TinyTypeCollectorComponent" } },
- { "pid": 1, "tid": 10, "ts": 1702393.6767578125, "dur": 10170.80020904541, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 10.17080020904541, "detail": "Unity.IL2CPP.Naming.NamingComponent" } },
- { "pid": 1, "tid": 10, "ts": 1703868.7744140625, "dur": 1649.399995803833, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.649399995803833, "detail": "_methodNameOnlyCache" } },
- { "pid": 1, "tid": 10, "ts": 1705519.04296875, "dur": 1107.4999570846558, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.1074999570846558, "detail": "_cleanNamesCache" } },
- { "pid": 1, "tid": 10, "ts": 1707191.0400390625, "dur": 577.3000121116638, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.5773000121116638, "detail": "_typeNameOnlyCache" } },
- { "pid": 1, "tid": 10, "ts": 1707768.4326171875, "dur": 2683.3999156951904, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.6833999156951904, "detail": "_methodNameOnlyCache" } },
- { "pid": 1, "tid": 10, "ts": 1710452.392578125, "dur": 929.3000102043152, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.9293000102043152, "detail": "_cleanNamesCache" } },
- { "pid": 1, "tid": 10, "ts": 1711986.328125, "dur": 424.699991941452, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.424699991941452, "detail": "_cleanNamesCache" } },
- { "pid": 1, "tid": 10, "ts": 3919216.552734375, "dur": 3541.300058364868, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 3.541300058364868, "detail": "Unity.IL2CPP.Contexts.Components.MethodCollector" } },
- { "pid": 1, "tid": 11, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 11, "ts": 1172527.7099609375, "dur": 11584.699630737305, "ph": "X", "name": "System.Configuration", "args": { "durationMS": 11.584699630737305, "detail": "" } },
- { "pid": 1, "tid": 11, "ts": 1184118.7744140625, "dur": 4745.60022354126, "ph": "X", "name": "Mono.Security", "args": { "durationMS": 4.74560022354126, "detail": "" } },
- { "pid": 1, "tid": 11, "ts": 1701580.810546875, "dur": 574.999988079071, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.574999988079071, "detail": "Unity.IL2CPP.Symbols.SymbolsCollector" } },
- { "pid": 1, "tid": 11, "ts": 1702163.9404296875, "dur": 2320.69993019104, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 2.32069993019104, "detail": "Unity.IL2CPP.Metadata.VTableBuilder" } },
- { "pid": 1, "tid": 11, "ts": 3919230.95703125, "dur": 796.500027179718, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.796500027179718, "detail": "Unity.IL2CPP.Contexts.Components.VirtualCallCollector" } },
- { "pid": 1, "tid": 11, "ts": 3920187.744140625, "dur": 46583.80126953125, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 46.58380126953125, "detail": "Unity.IL2CPP.Naming.NamingComponent" } },
- { "pid": 1, "tid": 11, "ts": 3920188.232421875, "dur": 744.0000176429749, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.7440000176429749, "detail": "_typeNameOnlyCache" } },
- { "pid": 1, "tid": 11, "ts": 3920932.861328125, "dur": 3363.800048828125, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 3.363800048828125, "detail": "_methodNameOnlyCache" } },
- { "pid": 1, "tid": 11, "ts": 3924407.958984375, "dur": 2347.100019454956, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.347100019454956, "detail": "_cleanNamesCache" } },
- { "pid": 1, "tid": 11, "ts": 3926757.080078125, "dur": 609.3000173568726, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.6093000173568726, "detail": "_typeNameOnlyCache" } },
- { "pid": 1, "tid": 11, "ts": 3927366.455078125, "dur": 2675.600051879883, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.675600051879883, "detail": "_methodNameOnlyCache" } },
- { "pid": 1, "tid": 11, "ts": 3930103.515625, "dur": 1828.0999660491943, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.8280999660491943, "detail": "_cleanNamesCache" } },
- { "pid": 1, "tid": 11, "ts": 3931933.10546875, "dur": 631.2999725341797, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.6312999725341797, "detail": "_typeNameOnlyCache" } },
- { "pid": 1, "tid": 11, "ts": 3932564.697265625, "dur": 3033.4999561309814, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 3.0334999561309814, "detail": "_methodNameOnlyCache" } },
- { "pid": 1, "tid": 11, "ts": 3935662.841796875, "dur": 1712.8000259399414, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.7128000259399414, "detail": "_cleanNamesCache" } },
- { "pid": 1, "tid": 11, "ts": 3937377.197265625, "dur": 708.4000110626221, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.7084000110626221, "detail": "_typeNameOnlyCache" } },
- { "pid": 1, "tid": 11, "ts": 3938086.181640625, "dur": 2773.7998962402344, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.7737998962402344, "detail": "_methodNameOnlyCache" } },
- { "pid": 1, "tid": 11, "ts": 3940906.494140625, "dur": 1826.5999555587769, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.8265999555587769, "detail": "_cleanNamesCache" } },
- { "pid": 1, "tid": 11, "ts": 3942735.3515625, "dur": 630.9000253677368, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.6309000253677368, "detail": "_typeNameOnlyCache" } },
- { "pid": 1, "tid": 11, "ts": 3943366.69921875, "dur": 2674.799919128418, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.674799919128418, "detail": "_methodNameOnlyCache" } },
- { "pid": 1, "tid": 11, "ts": 3946127.44140625, "dur": 1709.4000577926636, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.7094000577926636, "detail": "_cleanNamesCache" } },
- { "pid": 1, "tid": 11, "ts": 3947838.623046875, "dur": 562.3000264167786, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.5623000264167786, "detail": "_typeNameOnlyCache" } },
- { "pid": 1, "tid": 11, "ts": 3948401.3671875, "dur": 2623.699903488159, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.623699903488159, "detail": "_methodNameOnlyCache" } },
- { "pid": 1, "tid": 11, "ts": 3951107.177734375, "dur": 1791.700005531311, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.791700005531311, "detail": "_cleanNamesCache" } },
- { "pid": 1, "tid": 11, "ts": 3952900.87890625, "dur": 636.3000273704529, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.6363000273704529, "detail": "_typeNameOnlyCache" } },
- { "pid": 1, "tid": 11, "ts": 3953537.109375, "dur": 2630.8999061584473, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.6308999061584473, "detail": "_methodNameOnlyCache" } },
- { "pid": 1, "tid": 11, "ts": 3956235.107421875, "dur": 1599.7999906539917, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.5997999906539917, "detail": "_cleanNamesCache" } },
- { "pid": 1, "tid": 11, "ts": 3957836.181640625, "dur": 495.0000047683716, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.4950000047683716, "detail": "_typeNameOnlyCache" } },
- { "pid": 1, "tid": 11, "ts": 3958331.298828125, "dur": 2286.600112915039, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.286600112915039, "detail": "_methodNameOnlyCache" } },
- { "pid": 1, "tid": 11, "ts": 3960693.115234375, "dur": 1623.9999532699585, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.6239999532699585, "detail": "_cleanNamesCache" } },
- { "pid": 1, "tid": 11, "ts": 3962319.3359375, "dur": 508.899986743927, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.508899986743927, "detail": "_typeNameOnlyCache" } },
- { "pid": 1, "tid": 11, "ts": 3962828.857421875, "dur": 2330.1000595092773, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.3301000595092773, "detail": "_methodNameOnlyCache" } },
- { "pid": 1, "tid": 11, "ts": 3965159.423828125, "dur": 1611.4000082015991, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.6114000082015991, "detail": "_cleanNamesCache" } },
- { "pid": 1, "tid": 13, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 13, "ts": 1233342.1630859375, "dur": 31421.50115966797, "ph": "X", "name": "Idle", "args": { "durationMS": 31.42150115966797, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 1264927.490234375, "dur": 356.70000314712524, "ph": "X", "name": "Idle", "args": { "durationMS": 0.35670000314712524, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 1265287.2314453125, "dur": 2773.400068283081, "ph": "X", "name": "Idle", "args": { "durationMS": 2.773400068283081, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 1269518.5546875, "dur": 15480.400085449219, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 15.480400085449219, "detail": "System.Core" } },
- { "pid": 1, "tid": 13, "ts": 1285006.7138671875, "dur": 12233.400344848633, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 12.233400344848633, "detail": "Mono.Security" } },
- { "pid": 1, "tid": 13, "ts": 1297248.779296875, "dur": 35415.90118408203, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 35.41590118408203, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 13, "ts": 1332669.677734375, "dur": 5105.800151824951, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 5.105800151824951, "detail": "System.Xml" } },
- { "pid": 1, "tid": 13, "ts": 1337785.64453125, "dur": 3610.1999282836914, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 3.6101999282836914, "detail": "System.Core" } },
- { "pid": 1, "tid": 13, "ts": 1341398.193359375, "dur": 8262.00008392334, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 8.26200008392334, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 13, "ts": 1349668.5791015625, "dur": 340263.00048828125, "ph": "X", "name": "Idle", "args": { "durationMS": 340.26300048828125, "detail": "" } },
- { "pid": 1, "tid": 12, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 12, "ts": 1233348.0224609375, "dur": 31439.599990844727, "ph": "X", "name": "Idle", "args": { "durationMS": 31.439599990844727, "detail": "" } },
- { "pid": 1, "tid": 12, "ts": 1264865.234375, "dur": 470.8999991416931, "ph": "X", "name": "Idle", "args": { "durationMS": 0.4708999991416931, "detail": "" } },
- { "pid": 1, "tid": 12, "ts": 1265339.7216796875, "dur": 2673.3999252319336, "ph": "X", "name": "Idle", "args": { "durationMS": 2.6733999252319336, "detail": "" } },
- { "pid": 1, "tid": 12, "ts": 1269526.85546875, "dur": 7488.29984664917, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 7.48829984664917, "detail": "Mono.Security" } },
- { "pid": 1, "tid": 12, "ts": 1278970.458984375, "dur": 356.4000129699707, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 0.3564000129699707, "detail": "UnityEngine.IMGUIModule" } },
- { "pid": 1, "tid": 12, "ts": 1279356.8115234375, "dur": 688.6000037193298, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 0.6886000037193298, "detail": "Assembly-CSharp" } },
- { "pid": 1, "tid": 12, "ts": 1280437.1337890625, "dur": 228882.50732421875, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 228.88250732421875, "detail": "mscorlib" } },
- { "pid": 1, "tid": 12, "ts": 1509393.4326171875, "dur": 180514.09912109375, "ph": "X", "name": "Idle", "args": { "durationMS": 180.51409912109375, "detail": "" } },
- { "pid": 1, "tid": 16, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 16, "ts": 1233354.00390625, "dur": 31409.79766845703, "ph": "X", "name": "Idle", "args": { "durationMS": 31.40979766845703, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 1264927.734375, "dur": 424.6000051498413, "ph": "X", "name": "Idle", "args": { "durationMS": 0.4246000051498413, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 1265355.1025390625, "dur": 2682.800054550171, "ph": "X", "name": "Idle", "args": { "durationMS": 2.682800054550171, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 1269525.146484375, "dur": 15366.701126098633, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 15.366701126098633, "detail": "System" } },
- { "pid": 1, "tid": 16, "ts": 1284904.9072265625, "dur": 11087.300300598145, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 11.087300300598145, "detail": "System.Configuration" } },
- { "pid": 1, "tid": 16, "ts": 1296037.4755859375, "dur": 1413.100004196167, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 1.413100004196167, "detail": "System.Core" } },
- { "pid": 1, "tid": 16, "ts": 1297559.5703125, "dur": 923.0999946594238, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 0.9230999946594238, "detail": "UnityEngine.InputLegacyModule" } },
- { "pid": 1, "tid": 16, "ts": 1298484.375, "dur": 1924.8000383377075, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 1.9248000383377075, "detail": "UnityEngine.AnimationModule" } },
- { "pid": 1, "tid": 16, "ts": 1300411.62109375, "dur": 1991.2999868392944, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 1.9912999868392944, "detail": "UnityEngine.PhysicsModule" } },
- { "pid": 1, "tid": 16, "ts": 1302405.1513671875, "dur": 859.6000075340271, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 0.8596000075340271, "detail": "UnityEngine.AudioModule" } },
- { "pid": 1, "tid": 16, "ts": 1303266.6015625, "dur": 684.3000054359436, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 0.6843000054359436, "detail": "UnityEngine.UnityAnalyticsModule" } },
- { "pid": 1, "tid": 16, "ts": 1304032.1044921875, "dur": 4454.599857330322, "ph": "X", "name": "Collect Windows Runtime Data", "args": { "durationMS": 4.454599857330322, "detail": "mscorlib" } },
- { "pid": 1, "tid": 16, "ts": 1309037.7197265625, "dur": 6460.8001708984375, "ph": "X", "name": "Collect CCW Marshaling Functions", "args": { "durationMS": 6.4608001708984375, "detail": "mscorlib" } },
- { "pid": 1, "tid": 16, "ts": 1315501.46484375, "dur": 19577.40020751953, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 19.57740020751953, "detail": "Mono.Security" } },
- { "pid": 1, "tid": 16, "ts": 1335121.4599609375, "dur": 6001.900196075439, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 6.0019001960754395, "detail": "System" } },
- { "pid": 1, "tid": 16, "ts": 1341909.5458984375, "dur": 348003.60107421875, "ph": "X", "name": "Idle", "args": { "durationMS": 348.00360107421875, "detail": "" } },
- { "pid": 1, "tid": 17, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 17, "ts": 1233354.1259765625, "dur": 31409.59930419922, "ph": "X", "name": "Idle", "args": { "durationMS": 31.40959930419922, "detail": "" } },
- { "pid": 1, "tid": 17, "ts": 1264862.060546875, "dur": 428.90000343322754, "ph": "X", "name": "Idle", "args": { "durationMS": 0.42890000343322754, "detail": "" } },
- { "pid": 1, "tid": 17, "ts": 1265291.748046875, "dur": 2721.100091934204, "ph": "X", "name": "Idle", "args": { "durationMS": 2.721100091934204, "detail": "" } },
- { "pid": 1, "tid": 17, "ts": 1269480.8349609375, "dur": 28886.201858520508, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 28.886201858520508, "detail": "mscorlib" } },
- { "pid": 1, "tid": 17, "ts": 1301555.0537109375, "dur": 1577.7000188827515, "ph": "X", "name": "Merging Generic Sharing", "args": { "durationMS": 1.5777000188827515, "detail": "" } },
- { "pid": 1, "tid": 17, "ts": 1303134.765625, "dur": 35775.19989013672, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 35.77519989013672, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 17, "ts": 1338993.408203125, "dur": 624.5999932289124, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.6245999932289124, "detail": "UnityEngine.InputLegacyModule" } },
- { "pid": 1, "tid": 17, "ts": 1339654.6630859375, "dur": 405.9000015258789, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.4059000015258789, "detail": "UnityEngine.TextRenderingModule" } },
- { "pid": 1, "tid": 17, "ts": 1340061.5234375, "dur": 491.60000681877136, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.49160000681877136, "detail": "UnityEngine.AnimationModule" } },
- { "pid": 1, "tid": 17, "ts": 1340554.6875, "dur": 715.3000235557556, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.7153000235557556, "detail": "UnityEngine.IMGUIModule" } },
- { "pid": 1, "tid": 17, "ts": 1341760.6201171875, "dur": 348183.5021972656, "ph": "X", "name": "Idle", "args": { "durationMS": 348.1835021972656, "detail": "" } },
- { "pid": 1, "tid": 15, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 15, "ts": 1233367.0654296875, "dur": 31435.199737548828, "ph": "X", "name": "Idle", "args": { "durationMS": 31.435199737548828, "detail": "" } },
- { "pid": 1, "tid": 15, "ts": 1264927.734375, "dur": 423.799991607666, "ph": "X", "name": "Idle", "args": { "durationMS": 0.423799991607666, "detail": "" } },
- { "pid": 1, "tid": 15, "ts": 1265354.1259765625, "dur": 2658.799886703491, "ph": "X", "name": "Idle", "args": { "durationMS": 2.658799886703491, "detail": "" } },
- { "pid": 1, "tid": 15, "ts": 1269529.1748046875, "dur": 7293.600082397461, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 7.293600082397461, "detail": "System.Configuration" } },
- { "pid": 1, "tid": 15, "ts": 1279179.931640625, "dur": 9404.399871826172, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 9.404399871826172, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 15, "ts": 1288586.7919921875, "dur": 12364.399909973145, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 12.364399909973145, "detail": "System" } },
- { "pid": 1, "tid": 15, "ts": 1301352.9052734375, "dur": 2049.5998859405518, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 2.0495998859405518, "detail": "UnityEngine.UIModule" } },
- { "pid": 1, "tid": 15, "ts": 1303754.638671875, "dur": 1686.400055885315, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 1.686400055885315, "detail": "Assembly-CSharp" } },
- { "pid": 1, "tid": 15, "ts": 1305443.4814453125, "dur": 3000.9000301361084, "ph": "X", "name": "Collect Windows Runtime Data", "args": { "durationMS": 3.0009000301361084, "detail": "System.Configuration" } },
- { "pid": 1, "tid": 15, "ts": 1309912.4755859375, "dur": 581.0999870300293, "ph": "X", "name": "Collect CCW Marshaling Functions", "args": { "durationMS": 0.5810999870300293, "detail": "System.Configuration" } },
- { "pid": 1, "tid": 15, "ts": 1310630.859375, "dur": 1651.2999534606934, "ph": "X", "name": "Collect CCW Marshaling Functions", "args": { "durationMS": 1.6512999534606934, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 15, "ts": 1312668.8232421875, "dur": 61202.89993286133, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 61.20289993286133, "detail": "mscorlib" } },
- { "pid": 1, "tid": 15, "ts": 1373973.14453125, "dur": 315934.6008300781, "ph": "X", "name": "Idle", "args": { "durationMS": 315.9346008300781, "detail": "" } },
- { "pid": 1, "tid": 18, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 18, "ts": 1233368.408203125, "dur": 31395.299911499023, "ph": "X", "name": "Idle", "args": { "durationMS": 31.395299911499023, "detail": "" } },
- { "pid": 1, "tid": 18, "ts": 1265827.5146484375, "dur": 423031.7077636719, "ph": "X", "name": "All Generics Collection", "args": { "durationMS": 423.0317077636719, "detail": "" } },
- { "pid": 1, "tid": 18, "ts": 1266178.1005859375, "dur": 401406.0974121094, "ph": "X", "name": "GenericsCollector.Collect", "args": { "durationMS": 401.4060974121094, "detail": "" } },
- { "pid": 1, "tid": 18, "ts": 1267189.94140625, "dur": 20367.698669433594, "ph": "X", "name": "GenericCodeFlowGraphCollector.Collect", "args": { "durationMS": 20.367698669433594, "detail": "" } },
- { "pid": 1, "tid": 18, "ts": 1267190.3076171875, "dur": 19589.799880981445, "ph": "X", "name": "GenericCodeFlowGraphCollector.GetTypesAndMethodsForAnalysis", "args": { "durationMS": 19.589799880981445, "detail": "" } },
- { "pid": 1, "tid": 18, "ts": 1667584.47265625, "dur": 8121.399879455566, "ph": "X", "name": "CollectGenericVirtualMethods.Collect", "args": { "durationMS": 8.121399879455566, "detail": "" } },
- { "pid": 1, "tid": 18, "ts": 1675706.298828125, "dur": 1139.8999691009521, "ph": "X", "name": "AddExtraTypes", "args": { "durationMS": 1.1398999691009521, "detail": "" } },
- { "pid": 1, "tid": 18, "ts": 1686466.30859375, "dur": 1298.200011253357, "ph": "X", "name": "Add Windows Runtime type names", "args": { "durationMS": 1.298200011253357, "detail": "" } },
- { "pid": 1, "tid": 18, "ts": 1687796.630859375, "dur": 1061.900019645691, "ph": "X", "name": "Collect Generic CCWMarshallingFunctions", "args": { "durationMS": 1.061900019645691, "detail": "" } },
- { "pid": 1, "tid": 18, "ts": 1688865.6005859375, "dur": 1065.999984741211, "ph": "X", "name": "Idle", "args": { "durationMS": 1.065999984741211, "detail": "" } },
- { "pid": 1, "tid": 14, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 14, "ts": 1233370.4833984375, "dur": 31417.10090637207, "ph": "X", "name": "Idle", "args": { "durationMS": 31.41710090637207, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 1264865.1123046875, "dur": 417.8999960422516, "ph": "X", "name": "Idle", "args": { "durationMS": 0.4178999960422516, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 1265818.359375, "dur": 295745.30029296875, "ph": "X", "name": "All Warm up Naming", "args": { "durationMS": 295.74530029296875, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 1266205.2001953125, "dur": 236171.69189453125, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 236.17169189453125, "detail": "mscorlib" } },
- { "pid": 1, "tid": 14, "ts": 1503141.2353515625, "dur": 9116.399765014648, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 9.116399765014648, "detail": "System" } },
- { "pid": 1, "tid": 14, "ts": 1512259.033203125, "dur": 1520.900011062622, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 1.520900011062622, "detail": "System.Core" } },
- { "pid": 1, "tid": 14, "ts": 1513781.005859375, "dur": 500.99998712539673, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 0.5009999871253967, "detail": "UnityEngine.SharedInternalsModule" } },
- { "pid": 1, "tid": 14, "ts": 1514282.470703125, "dur": 15372.400283813477, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 15.372400283813477, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 14, "ts": 1529668.9453125, "dur": 333.6000144481659, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 0.3336000144481659, "detail": "UnityEngine.InputLegacyModule" } },
- { "pid": 1, "tid": 14, "ts": 1530067.0166015625, "dur": 542.8000092506409, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 0.5428000092506409, "detail": "UnityEngine.TextRenderingModule" } },
- { "pid": 1, "tid": 14, "ts": 1530610.2294921875, "dur": 620.4000115394592, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 0.6204000115394592, "detail": "UnityEngine.AnimationModule" } },
- { "pid": 1, "tid": 14, "ts": 1531231.689453125, "dur": 2449.8000144958496, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 2.4498000144958496, "detail": "UnityEngine.IMGUIModule" } },
- { "pid": 1, "tid": 14, "ts": 1533682.4951171875, "dur": 715.499997138977, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 0.715499997138977, "detail": "UnityEngine.PhysicsModule" } },
- { "pid": 1, "tid": 14, "ts": 1534425.6591796875, "dur": 825.2000212669373, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 0.8252000212669373, "detail": "UnityEngine.UIModule" } },
- { "pid": 1, "tid": 14, "ts": 1535521.240234375, "dur": 22745.0008392334, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 22.7450008392334, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 14, "ts": 1558569.3359375, "dur": 2989.000082015991, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 2.989000082015991, "detail": "Assembly-CSharp" } },
- { "pid": 1, "tid": 14, "ts": 1561570.6787109375, "dur": 128378.09753417969, "ph": "X", "name": "Idle", "args": { "durationMS": 128.3780975341797, "detail": "" } },
- { "pid": 1, "tid": 19, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 19, "ts": 1233373.9013671875, "dur": 31428.300857543945, "ph": "X", "name": "Idle", "args": { "durationMS": 31.428300857543945, "detail": "" } },
- { "pid": 1, "tid": 19, "ts": 1264924.1943359375, "dur": 421.2999939918518, "ph": "X", "name": "Idle", "args": { "durationMS": 0.4212999939918518, "detail": "" } },
- { "pid": 1, "tid": 19, "ts": 1265347.7783203125, "dur": 2690.0999546051025, "ph": "X", "name": "Idle", "args": { "durationMS": 2.6900999546051025, "detail": "" } },
- { "pid": 1, "tid": 19, "ts": 1269514.6484375, "dur": 7492.700099945068, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 7.492700099945068, "detail": "System.Xml" } },
- { "pid": 1, "tid": 19, "ts": 1278824.0966796875, "dur": 9666.199684143066, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 9.666199684143066, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 19, "ts": 1288494.873046875, "dur": 7639.2998695373535, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 7.6392998695373535, "detail": "System.Xml" } },
- { "pid": 1, "tid": 19, "ts": 1296139.892578125, "dur": 1533.6999893188477, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 1.5336999893188477, "detail": "UnityEngine.SharedInternalsModule" } },
- { "pid": 1, "tid": 19, "ts": 1297983.2763671875, "dur": 2369.8999881744385, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 2.3698999881744385, "detail": "UnityEngine.TextRenderingModule" } },
- { "pid": 1, "tid": 19, "ts": 1300357.2998046875, "dur": 5120.500087738037, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 5.120500087738037, "detail": "UnityEngine.IMGUIModule" } },
- { "pid": 1, "tid": 19, "ts": 1305480.3466796875, "dur": 2961.1001014709473, "ph": "X", "name": "Collect Windows Runtime Data", "args": { "durationMS": 2.9611001014709473, "detail": "Mono.Security" } },
- { "pid": 1, "tid": 19, "ts": 1309083.49609375, "dur": 1264.5000219345093, "ph": "X", "name": "Collect CCW Marshaling Functions", "args": { "durationMS": 1.2645000219345093, "detail": "Mono.Security" } },
- { "pid": 1, "tid": 19, "ts": 1310384.8876953125, "dur": 563.4999871253967, "ph": "X", "name": "Collect CCW Marshaling Functions", "args": { "durationMS": 0.5634999871253967, "detail": "System" } },
- { "pid": 1, "tid": 19, "ts": 1311631.591796875, "dur": 1254.8999786376953, "ph": "X", "name": "Collect CCW Marshaling Functions", "args": { "durationMS": 1.2548999786376953, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 19, "ts": 1312888.0615234375, "dur": 25064.39971923828, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 25.06439971923828, "detail": "System.Configuration" } },
- { "pid": 1, "tid": 19, "ts": 1337958.8623046875, "dur": 335.70000529289246, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.33570000529289246, "detail": "UnityEngine.SharedInternalsModule" } },
- { "pid": 1, "tid": 19, "ts": 1338296.5087890625, "dur": 8207.599639892578, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 8.207599639892578, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 19, "ts": 1346512.0849609375, "dur": 343436.70654296875, "ph": "X", "name": "Idle", "args": { "durationMS": 343.43670654296875, "detail": "" } },
- { "pid": 1, "tid": 20, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 20, "ts": 1718999.267578125, "dur": 12109.49993133545, "ph": "X", "name": "Idle", "args": { "durationMS": 12.10949993133545, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 1846819.2138671875, "dur": 1293.0999994277954, "ph": "X", "name": "Write Assembly", "args": { "durationMS": 1.2930999994277954, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 20, "ts": 1848974.7314453125, "dur": 174970.9014892578, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 174.9709014892578, "detail": "System.Xml" } },
- { "pid": 1, "tid": 20, "ts": 1850052.3681640625, "dur": 173892.8985595703, "ph": "X", "name": "System.Xml_Attr.cpp", "args": { "durationMS": 173.8928985595703, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 2028628.7841796875, "dur": 28646.30126953125, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 28.64630126953125, "detail": "UnityEngine.AnimationModule" } },
- { "pid": 1, "tid": 20, "ts": 2028708.8623046875, "dur": 28565.698623657227, "ph": "X", "name": "UnityEngine.AnimationModule_Attr.cpp", "args": { "durationMS": 28.565698623657227, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 2057278.80859375, "dur": 6803.999900817871, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 6.803999900817871, "detail": "Assembly-CSharp" } },
- { "pid": 1, "tid": 20, "ts": 2057309.5703125, "dur": 6772.500038146973, "ph": "X", "name": "Assembly-CSharp_Attr.cpp", "args": { "durationMS": 6.772500038146973, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 2075141.11328125, "dur": 5511.70015335083, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.51170015335083, "detail": "<Module>" } },
- { "pid": 1, "tid": 20, "ts": 2080653.80859375, "dur": 143537.3077392578, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 143.5373077392578, "detail": "UnityEngine.Font" } },
- { "pid": 1, "tid": 20, "ts": 2224218.26171875, "dur": 4003.200054168701, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.003200054168701, "detail": "UnityEngine.TextGenerationSettings" } },
- { "pid": 1, "tid": 20, "ts": 2228222.65625, "dur": 34423.80142211914, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 34.42380142211914, "detail": "UnityEngine.TextGenerator" } },
- { "pid": 1, "tid": 20, "ts": 2262691.40625, "dur": 659.3999862670898, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6593999862670898, "detail": "UnityEngine.UIVertex" } },
- { "pid": 1, "tid": 20, "ts": 2263362.060546875, "dur": 3705.1000595092773, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.7051000595092773, "detail": "UnityEngine.Font/FontTextureRebuildCallback" } },
- { "pid": 1, "tid": 20, "ts": 2267070.068359375, "dur": 50623.29864501953, "ph": "X", "name": "UnityEngine.TextRenderingModule.cpp", "args": { "durationMS": 50.62329864501953, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 2320016.357421875, "dur": 41868.099212646484, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 41.868099212646484, "detail": "UnityEngine.UI.Selectable" } },
- { "pid": 1, "tid": 20, "ts": 2361885.986328125, "dur": 1507.200002670288, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.507200002670288, "detail": "UnityEngine.UI.SetPropertyUtility" } },
- { "pid": 1, "tid": 20, "ts": 2363394.775390625, "dur": 5399.099826812744, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.399099826812744, "detail": "UnityEngine.UI.Shadow" } },
- { "pid": 1, "tid": 20, "ts": 2368794.921875, "dur": 27559.101104736328, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 27.559101104736328, "detail": "UnityEngine.UI.Slider" } },
- { "pid": 1, "tid": 20, "ts": 2396354.736328125, "dur": 3286.900043487549, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.286900043487549, "detail": "UnityEngine.UI.SpriteState" } },
- { "pid": 1, "tid": 20, "ts": 2399643.310546875, "dur": 37034.400939941406, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 37.034400939941406, "detail": "UnityEngine.EventSystems.StandaloneInputModule" } },
- { "pid": 1, "tid": 20, "ts": 2436678.466796875, "dur": 7913.700103759766, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.913700103759766, "detail": "UnityEngine.UI.StencilMaterial" } },
- { "pid": 1, "tid": 20, "ts": 2444593.26171875, "dur": 18330.99937438965, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.33099937438965, "detail": "UnityEngine.UI.Text" } },
- { "pid": 1, "tid": 20, "ts": 2462925.29296875, "dur": 6082.099914550781, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.082099914550781, "detail": "UnityEngine.UI.Toggle" } },
- { "pid": 1, "tid": 20, "ts": 2469008.544921875, "dur": 11205.300331115723, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.205300331115723, "detail": "UnityEngine.UI.ToggleGroup" } },
- { "pid": 1, "tid": 20, "ts": 2480215.33203125, "dur": 17370.800018310547, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 17.370800018310547, "detail": "UnityEngine.EventSystems.TouchInputModule" } },
- { "pid": 1, "tid": 20, "ts": 2497587.158203125, "dur": 30910.400390625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 30.910400390625, "detail": "UnityEngine.EventSystems.UIBehaviour" } },
- { "pid": 1, "tid": 20, "ts": 2528498.779296875, "dur": 11289.799690246582, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.289799690246582, "detail": "UnityEngine.UI.VertexHelper" } },
- { "pid": 1, "tid": 20, "ts": 2539789.0625, "dur": 837.0000123977661, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8370000123977661, "detail": "UnityEngine.UI.VerticalLayoutGroup" } },
- { "pid": 1, "tid": 20, "ts": 2540645.01953125, "dur": 2276.9999504089355, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.2769999504089355, "detail": "UnityEngine.UI.Button/<OnFinishSubmit>d__9" } },
- { "pid": 1, "tid": 20, "ts": 2543235.83984375, "dur": 2190.5999183654785, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1905999183654785, "detail": "UnityEngine.UI.DefaultControls/DefaultRuntimeFactory" } },
- { "pid": 1, "tid": 20, "ts": 2545690.185546875, "dur": 2526.4999866485596, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.5264999866485596, "detail": "UnityEngine.UI.Dropdown/<>c__DisplayClass63_0" } },
- { "pid": 1, "tid": 20, "ts": 2548217.529296875, "dur": 719.0999984741211, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7190999984741211, "detail": "UnityEngine.UI.Dropdown/<DelayedDestroyDropdownList>d__75" } },
- { "pid": 1, "tid": 20, "ts": 2549088.134765625, "dur": 1654.1999578475952, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6541999578475952, "detail": "UnityEngine.UI.Dropdown/DropdownItem" } },
- { "pid": 1, "tid": 20, "ts": 2550743.1640625, "dur": 926.9999861717224, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9269999861717224, "detail": "UnityEngine.UI.Dropdown/OptionData" } },
- { "pid": 1, "tid": 20, "ts": 2551671.142578125, "dur": 5393.3000564575195, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.3933000564575195, "detail": "UnityEngine.UI.Dropdown/OptionDataList" } },
- { "pid": 1, "tid": 20, "ts": 2557065.673828125, "dur": 1099.5999574661255, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0995999574661255, "detail": "UnityEngine.EventSystems.EventTrigger/Entry" } },
- { "pid": 1, "tid": 20, "ts": 2558292.48046875, "dur": 1113.700032234192, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.113700032234192, "detail": "UnityEngine.EventSystems.ExecuteEvents/<>c" } },
- { "pid": 1, "tid": 20, "ts": 2559540.0390625, "dur": 1296.5999841690063, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2965999841690063, "detail": "UnityEngine.UI.GraphicRaycaster/<>c" } },
- { "pid": 1, "tid": 20, "ts": 2560901.123046875, "dur": 18422.100067138672, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.422100067138672, "detail": "UnityEngine.UI.InputField/<CaretBlink>d__161" } },
- { "pid": 1, "tid": 20, "ts": 2579324.70703125, "dur": 2184.299945831299, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.184299945831299, "detail": "UnityEngine.UI.InputField/<MouseDragOutsideRect>d__183" } },
- { "pid": 1, "tid": 20, "ts": 2581668.701171875, "dur": 637.6000046730042, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6376000046730042, "detail": "UnityEngine.UI.InputField/OnValidateInput" } },
- { "pid": 1, "tid": 20, "ts": 2582446.533203125, "dur": 2049.299955368042, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.049299955368042, "detail": "UnityEngine.UI.LayoutGroup/<DelayedSetDirty>d__56" } },
- { "pid": 1, "tid": 20, "ts": 2584496.826171875, "dur": 2082.0999145507812, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0820999145507812, "detail": "UnityEngine.UI.LayoutRebuilder/<>c" } },
- { "pid": 1, "tid": 20, "ts": 2586580.078125, "dur": 1816.2000179290771, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8162000179290771, "detail": "UnityEngine.UI.LayoutUtility/<>c" } },
- { "pid": 1, "tid": 20, "ts": 2588536.1328125, "dur": 1084.8000049591064, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0848000049591064, "detail": "UnityEngine.EventSystems.PhysicsRaycaster/RaycastHitComparer" } },
- { "pid": 1, "tid": 20, "ts": 2589638.916015625, "dur": 2735.1999282836914, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.7351999282836914, "detail": "UnityEngine.EventSystems.PointerInputModule/ButtonState" } },
- { "pid": 1, "tid": 20, "ts": 2592375.244140625, "dur": 430.400013923645, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.430400013923645, "detail": "UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData" } },
- { "pid": 1, "tid": 20, "ts": 2592806.396484375, "dur": 1831.2000036239624, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8312000036239624, "detail": "UnityEngine.EventSystems.PointerInputModule/MouseState" } },
- { "pid": 1, "tid": 20, "ts": 2594638.916015625, "dur": 2961.699962615967, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.961699962615967, "detail": "UnityEngine.UI.ReflectionMethodsCache/GetRayIntersectionAllCallback" } },
- { "pid": 1, "tid": 20, "ts": 2597601.806640625, "dur": 1236.899971961975, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.236899971961975, "detail": "UnityEngine.UI.ReflectionMethodsCache/GetRayIntersectionAllNonAllocCallback" } },
- { "pid": 1, "tid": 20, "ts": 2598839.599609375, "dur": 1188.8999938964844, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1888999938964844, "detail": "UnityEngine.UI.ReflectionMethodsCache/GetRaycastNonAllocCallback" } },
- { "pid": 1, "tid": 20, "ts": 2600029.296875, "dur": 863.3000254631042, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8633000254631042, "detail": "UnityEngine.UI.ReflectionMethodsCache/Raycast2DCallback" } },
- { "pid": 1, "tid": 20, "ts": 2600893.5546875, "dur": 4940.700054168701, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.940700054168701, "detail": "UnityEngine.UI.ReflectionMethodsCache/Raycast3DCallback" } },
- { "pid": 1, "tid": 20, "ts": 2605835.205078125, "dur": 988.099992275238, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.988099992275238, "detail": "UnityEngine.UI.ReflectionMethodsCache/RaycastAllCallback" } },
- { "pid": 1, "tid": 20, "ts": 2606976.806640625, "dur": 2613.600015640259, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.613600015640259, "detail": "UnityEngine.UI.Scrollbar/<ClickRepeat>d__58" } },
- { "pid": 1, "tid": 20, "ts": 2610152.099609375, "dur": 378.1000077724457, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3781000077724457, "detail": "UnityEngine.UI.ToggleGroup/<>c" } },
- { "pid": 1, "tid": 20, "ts": 2610533.935546875, "dur": 104192.19970703125, "ph": "X", "name": "UnityEngine.UI3.cpp", "args": { "durationMS": 104.19219970703125, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 2714764.892578125, "dur": 380.4999887943268, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3804999887943268, "detail": "<PrivateImplementationDetails>" } },
- { "pid": 1, "tid": 20, "ts": 2715255.37109375, "dur": 8075.499534606934, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.075499534606934, "detail": "System.Security.Cryptography.AsnEncodedData" } },
- { "pid": 1, "tid": 20, "ts": 2723587.646484375, "dur": 6109.600067138672, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.109600067138672, "detail": "System.Security.Cryptography.CAPI" } },
- { "pid": 1, "tid": 20, "ts": 2730799.072265625, "dur": 7316.800117492676, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.316800117492676, "detail": "System.DomainNameHelper" } },
- { "pid": 1, "tid": 20, "ts": 2738927.001953125, "dur": 39076.602935791016, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 39.076602935791016, "detail": "System.IOAsyncCallback" } },
- { "pid": 1, "tid": 20, "ts": 2778488.525390625, "dur": 3412.4999046325684, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.4124999046325684, "detail": "System.Net.IPAddress" } },
- { "pid": 1, "tid": 20, "ts": 2781902.099609375, "dur": 6044.400215148926, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.044400215148926, "detail": "System.IPv4AddressHelper" } },
- { "pid": 1, "tid": 20, "ts": 2787947.509765625, "dur": 2445.69993019104, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.44569993019104, "detail": "System.Net.IPv6AddressFormatter" } },
- { "pid": 1, "tid": 20, "ts": 2790394.287109375, "dur": 12980.09967803955, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.98009967803955, "detail": "System.IPv6AddressHelper" } },
- { "pid": 1, "tid": 20, "ts": 2803931.884765625, "dur": 7971.700191497803, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.971700191497803, "detail": "System.IriHelper" } },
- { "pid": 1, "tid": 20, "ts": 2811997.0703125, "dur": 681.1000108718872, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6811000108718872, "detail": "System.Security.Cryptography.Oid" } },
- { "pid": 1, "tid": 20, "ts": 2812678.7109375, "dur": 1422.700047492981, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.422700047492981, "detail": "System.Security.Cryptography.OidCollection" } },
- { "pid": 1, "tid": 20, "ts": 2814102.5390625, "dur": 411.90001368522644, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.41190001368522644, "detail": "System.Security.Cryptography.OidEnumerator" } },
- { "pid": 1, "tid": 20, "ts": 2814906.25, "dur": 388.39998841285706, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.38839998841285706, "detail": "System.Security.Cryptography.X509Certificates.PublicKey" } },
- { "pid": 1, "tid": 20, "ts": 2815295.654296875, "dur": 14064.899444580078, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.064899444580078, "detail": "System.Text.RegularExpressions.Regex" } },
- { "pid": 1, "tid": 20, "ts": 2829361.083984375, "dur": 2345.9999561309814, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.3459999561309814, "detail": "System.Text.RegularExpressions.RegexBoyerMoore" } },
- { "pid": 1, "tid": 20, "ts": 2831708.251953125, "dur": 69634.90295410156, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 69.63490295410156, "detail": "System.Text.RegularExpressions.RegexCharClass" } },
- { "pid": 1, "tid": 20, "ts": 2901344.482421875, "dur": 1852.3000478744507, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8523000478744507, "detail": "System.Text.RegularExpressions.RegexCode" } },
- { "pid": 1, "tid": 20, "ts": 2903197.75390625, "dur": 1160.7999801635742, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1607999801635742, "detail": "System.Text.RegularExpressions.RegexFC" } },
- { "pid": 1, "tid": 20, "ts": 2904359.130859375, "dur": 5954.699993133545, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.954699993133545, "detail": "System.Text.RegularExpressions.RegexFCD" } },
- { "pid": 1, "tid": 20, "ts": 2910316.650390625, "dur": 43521.400451660156, "ph": "X", "name": "System.cpp", "args": { "durationMS": 43.521400451660156, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 2958781.982421875, "dur": 343.69999170303345, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.34369999170303345, "detail": "System.Array/InternalEnumerator`1<System.Reflection.MethodBase>" } },
- { "pid": 1, "tid": 20, "ts": 2959999.51171875, "dur": 373.80000948905945, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.37380000948905945, "detail": "System.Array/InternalEnumerator`1<System.Runtime.Serialization.ObjectHolder>" } },
- { "pid": 1, "tid": 20, "ts": 2961366.455078125, "dur": 338.99998664855957, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.33899998664855957, "detail": "System.Array/InternalEnumerator`1<System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 20, "ts": 2962664.55078125, "dur": 1981.4000129699707, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.9814000129699707, "detail": "System.Array/InternalEnumerator`1<System.TermInfoStrings>" } },
- { "pid": 1, "tid": 20, "ts": 2967834.47265625, "dur": 530.4999947547913, "ph": "X", "name": "Il2CppGenericComDefinitions8.cpp", "args": { "durationMS": 0.5304999947547913, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 2968384.033203125, "dur": 488.09999227523804, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.48809999227523804, "detail": "System.Collections.Generic.List`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 20, "ts": 2968874.0234375, "dur": 369.8999881744385, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3698999881744385, "detail": "System.Collections.Generic.List`1<UnityEngine.Component>" } },
- { "pid": 1, "tid": 20, "ts": 2969246.09375, "dur": 408.8999927043915, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4088999927043915, "detail": "System.Collections.Generic.List`1<Mono.Globalization.Unicode.Contraction>" } },
- { "pid": 1, "tid": 20, "ts": 2969656.73828125, "dur": 371.39999866485596, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.37139999866485596, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>" } },
- { "pid": 1, "tid": 20, "ts": 2970029.78515625, "dur": 536.4000201225281, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5364000201225281, "detail": "System.Collections.Generic.List`1<System.Exception>" } },
- { "pid": 1, "tid": 20, "ts": 2970567.626953125, "dur": 356.9999933242798, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3569999933242798, "detail": "System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>" } },
- { "pid": 1, "tid": 20, "ts": 2970926.025390625, "dur": 354.09998893737793, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.35409998893737793, "detail": "System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>" } },
- { "pid": 1, "tid": 20, "ts": 2971281.494140625, "dur": 350.600004196167, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.350600004196167, "detail": "System.Collections.Generic.List`1<UnityEngine.GameObject>" } },
- { "pid": 1, "tid": 20, "ts": 2971633.544921875, "dur": 355.80000281333923, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.35580000281333923, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Graphic>" } },
- { "pid": 1, "tid": 20, "ts": 2972303.955078125, "dur": 703.8999795913696, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7038999795913696, "detail": "System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>" } },
- { "pid": 1, "tid": 20, "ts": 2973009.27734375, "dur": 1351.7999649047852, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.3517999649047852, "detail": "System.Collections.Generic.List`1<System.Runtime.Serialization.IDeserializationCallback>" } },
- { "pid": 1, "tid": 20, "ts": 2974365.234375, "dur": 683.0000281333923, "ph": "X", "name": "Il2CppGenericComDefinitions10.cpp", "args": { "durationMS": 0.6830000281333923, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 2975066.40625, "dur": 427.50000953674316, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.42750000953674316, "detail": "System.Collections.Generic.List`1<UnityEngine.Events.PersistentCall>" } },
- { "pid": 1, "tid": 20, "ts": 2975495.361328125, "dur": 552.5000095367432, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5525000095367432, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 20, "ts": 2976049.072265625, "dur": 363.0000054836273, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3630000054836273, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D>" } },
- { "pid": 1, "tid": 20, "ts": 2976413.57421875, "dur": 353.39999198913574, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.35339999198913574, "detail": "System.Collections.Generic.List`1<UnityEngine.RectTransform>" } },
- { "pid": 1, "tid": 20, "ts": 2976768.798828125, "dur": 340.9000039100647, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3409000039100647, "detail": "System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>" } },
- { "pid": 1, "tid": 20, "ts": 2977110.3515625, "dur": 347.00000286102295, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.34700000286102295, "detail": "System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>" } },
- { "pid": 1, "tid": 20, "ts": 2977458.49609375, "dur": 361.4000082015991, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3614000082015991, "detail": "System.Collections.Generic.List`1<UnityEngine.Rigidbody2D>" } },
- { "pid": 1, "tid": 20, "ts": 2977820.80078125, "dur": 340.9999907016754, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3409999907016754, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Selectable>" } },
- { "pid": 1, "tid": 20, "ts": 2978163.0859375, "dur": 376.3999938964844, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3763999938964844, "detail": "System.Collections.Generic.List`1<System.Runtime.Serialization.SerializationFieldInfo>" } },
- { "pid": 1, "tid": 20, "ts": 2978541.259765625, "dur": 341.19999408721924, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.34119999408721924, "detail": "System.Collections.Generic.List`1<UnityEngine.Sprite>" } },
- { "pid": 1, "tid": 20, "ts": 2978883.544921875, "dur": 579.4000029563904, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5794000029563904, "detail": "System.Collections.Generic.List`1<System.Diagnostics.StackFrame>" } },
- { "pid": 1, "tid": 20, "ts": 2979780.517578125, "dur": 1041.599988937378, "ph": "X", "name": "Il2CppGenericComDefinitions12.cpp", "args": { "durationMS": 1.041599988937378, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 2980836.9140625, "dur": 670.0000166893005, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6700000166893005, "detail": "System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 20, "ts": 2982020.263671875, "dur": 488.4999990463257, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4884999990463257, "detail": "Unity.Collections.NativeArray`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>" } },
- { "pid": 1, "tid": 20, "ts": 2984721.19140625, "dur": 354.6999990940094, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3546999990940094, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>" } },
- { "pid": 1, "tid": 20, "ts": 2985164.794921875, "dur": 17205.799102783203, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 17.205799102783203, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 20, "ts": 3002975.341796875, "dur": 519.599974155426, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.519599974155426, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 20, "ts": 3004072.021484375, "dur": 473.60000014305115, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.47360000014305115, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 20, "ts": 3004809.326171875, "dur": 545.4000234603882, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5454000234603882, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 20, "ts": 3007607.666015625, "dur": 448.30000400543213, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.44830000400543213, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>" } },
- { "pid": 1, "tid": 20, "ts": 3008057.861328125, "dur": 539.6999716758728, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5396999716758728, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>" } },
- { "pid": 1, "tid": 20, "ts": 3008599.365234375, "dur": 644.5000171661377, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6445000171661377, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>" } },
- { "pid": 1, "tid": 20, "ts": 3009246.337890625, "dur": 780.9000015258789, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7809000015258789, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>" } },
- { "pid": 1, "tid": 20, "ts": 3013062.01171875, "dur": 544.2000031471252, "ph": "X", "name": "Il2CppGenericComDefinitions15.cpp", "args": { "durationMS": 0.5442000031471252, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 3013778.564453125, "dur": 444.599986076355, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.444599986076355, "detail": "System.Reflection.CustomAttributeFormatException" } },
- { "pid": 1, "tid": 20, "ts": 3014223.876953125, "dur": 999.5999932289124, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9995999932289124, "detail": "System.Reflection.CustomAttributeNamedArgument" } },
- { "pid": 1, "tid": 20, "ts": 3015223.876953125, "dur": 2163.8998985290527, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1638998985290527, "detail": "System.Reflection.CustomAttributeTypedArgument" } },
- { "pid": 1, "tid": 20, "ts": 3017479.98046875, "dur": 2758.8000297546387, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.7588000297546387, "detail": "System.DBNull" } },
- { "pid": 1, "tid": 20, "ts": 3020239.74609375, "dur": 603.1000018119812, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6031000018119812, "detail": "System.DTSubString" } },
- { "pid": 1, "tid": 20, "ts": 3020852.783203125, "dur": 25126.70135498047, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 25.12670135498047, "detail": "System.DateTime" } },
- { "pid": 1, "tid": 20, "ts": 3046082.03125, "dur": 13759.79995727539, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.75979995727539, "detail": "System.DateTimeFormat" } },
- { "pid": 1, "tid": 20, "ts": 3059855.46875, "dur": 51212.398529052734, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 51.212398529052734, "detail": "System.Globalization.DateTimeFormatInfo" } },
- { "pid": 1, "tid": 20, "ts": 3111068.84765625, "dur": 8673.800468444824, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.673800468444824, "detail": "System.Globalization.DateTimeFormatInfoScanner" } },
- { "pid": 1, "tid": 20, "ts": 3119752.9296875, "dur": 83297.50061035156, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 83.29750061035156, "detail": "System.DateTimeParse" } },
- { "pid": 1, "tid": 20, "ts": 3203054.6875, "dur": 39371.50192260742, "ph": "X", "name": "mscorlib3.cpp", "args": { "durationMS": 39.37150192260742, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 3242666.748046875, "dur": 1019.6000337600708, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0196000337600708, "detail": "System.Security.Cryptography.HashAlgorithm" } },
- { "pid": 1, "tid": 20, "ts": 3243687.01171875, "dur": 1698.3000040054321, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6983000040054321, "detail": "System.Collections.HashHelpers" } },
- { "pid": 1, "tid": 20, "ts": 3245386.23046875, "dur": 55948.001861572266, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 55.948001861572266, "detail": "System.Collections.Hashtable" } },
- { "pid": 1, "tid": 20, "ts": 3301350.09765625, "dur": 416.20001196861267, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.41620001196861267, "detail": "System.Runtime.Remoting.Messaging.HeaderHandler" } },
- { "pid": 1, "tid": 20, "ts": 3301767.08984375, "dur": 3961.9998931884766, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.9619998931884766, "detail": "System.Globalization.HebrewNumber" } },
- { "pid": 1, "tid": 20, "ts": 3305865.72265625, "dur": 6154.399871826172, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.154399871826172, "detail": "System.Globalization.HijriCalendar" } },
- { "pid": 1, "tid": 20, "ts": 3312034.1796875, "dur": 831.0999870300293, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8310999870300293, "detail": "System.IO.IOException" } },
- { "pid": 1, "tid": 20, "ts": 3312866.2109375, "dur": 653.9999842643738, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6539999842643738, "detail": "System.Runtime.Serialization.Formatters.Binary.IOUtil" } },
- { "pid": 1, "tid": 20, "ts": 3313521.240234375, "dur": 1144.0999507904053, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1440999507904053, "detail": "System.Runtime.Remoting.Identity" } },
- { "pid": 1, "tid": 20, "ts": 3314666.50390625, "dur": 9289.400100708008, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.289400100708008, "detail": "System.Globalization.IdnMapping" } },
- { "pid": 1, "tid": 20, "ts": 3323956.54296875, "dur": 799.3000149726868, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7993000149726868, "detail": "System.Runtime.Remoting.Messaging.IllogicalCallContext" } },
- { "pid": 1, "tid": 20, "ts": 3324835.205078125, "dur": 468.69999170303345, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.46869999170303345, "detail": "System.IndexOutOfRangeException" } },
- { "pid": 1, "tid": 20, "ts": 3325304.6875, "dur": 434.70001220703125, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.43470001220703125, "detail": "System.InputRecord" } },
- { "pid": 1, "tid": 20, "ts": 3325750.9765625, "dur": 35277.6985168457, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 35.2776985168457, "detail": "System.Int16" } },
- { "pid": 1, "tid": 20, "ts": 3361040.771484375, "dur": 4480.800151824951, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.480800151824951, "detail": "System.Int32" } },
- { "pid": 1, "tid": 20, "ts": 3365532.958984375, "dur": 4165.299892425537, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.165299892425537, "detail": "System.Int64" } },
- { "pid": 1, "tid": 20, "ts": 3369708.740234375, "dur": 4774.00016784668, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.77400016784668, "detail": "System.IntPtr" } },
- { "pid": 1, "tid": 20, "ts": 3374484.375, "dur": 1781.2999486923218, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7812999486923218, "detail": "System.Runtime.Serialization.Formatters.Binary.IntSizedArray" } },
- { "pid": 1, "tid": 20, "ts": 3376530.517578125, "dur": 899.1000056266785, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8991000056266785, "detail": "System.Threading.Interlocked" } },
- { "pid": 1, "tid": 20, "ts": 3377730.712890625, "dur": 501.10000371932983, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5011000037193298, "detail": "System.Text.InternalDecoderBestFitFallback" } },
- { "pid": 1, "tid": 20, "ts": 3378232.421875, "dur": 1711.5000486373901, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7115000486373901, "detail": "System.Text.InternalDecoderBestFitFallbackBuffer" } },
- { "pid": 1, "tid": 20, "ts": 3379944.82421875, "dur": 577.7999758720398, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5777999758720398, "detail": "System.Text.InternalEncoderBestFitFallback" } },
- { "pid": 1, "tid": 20, "ts": 3380523.681640625, "dur": 4966.300010681152, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.966300010681152, "detail": "System.Text.InternalEncoderBestFitFallbackBuffer" } },
- { "pid": 1, "tid": 20, "ts": 3385914.0625, "dur": 940.1000142097473, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9401000142097473, "detail": "System.Runtime.Remoting.InternalRemotingServices" } },
- { "pid": 1, "tid": 20, "ts": 3386864.013671875, "dur": 787.6999974250793, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7876999974250793, "detail": "System.Collections.Generic.InternalStringComparer" } },
- { "pid": 1, "tid": 20, "ts": 3388508.056640625, "dur": 481.2999963760376, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4812999963760376, "detail": "System.InvalidCastException" } },
- { "pid": 1, "tid": 20, "ts": 3388989.990234375, "dur": 491.49999022483826, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.49149999022483826, "detail": "System.Reflection.InvalidFilterCriteriaException" } },
- { "pid": 1, "tid": 20, "ts": 3389481.93359375, "dur": 562.3000264167786, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5623000264167786, "detail": "System.InvalidOperationException" } },
- { "pid": 1, "tid": 20, "ts": 3390044.677734375, "dur": 447.49999046325684, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.44749999046325684, "detail": "System.InvalidProgramException" } },
- { "pid": 1, "tid": 20, "ts": 3390492.919921875, "dur": 550.1999855041504, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5501999855041504, "detail": "System.InvalidTimeZoneException" } },
- { "pid": 1, "tid": 20, "ts": 3391140.13671875, "dur": 3946.199893951416, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.946199893951416, "detail": "System.Globalization.JapaneseCalendar" } },
- { "pid": 1, "tid": 20, "ts": 3395099.12109375, "dur": 26234.19952392578, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 26.23419952392578, "detail": "Microsoft.Win32.KeyHandler" } },
- { "pid": 1, "tid": 20, "ts": 3421334.716796875, "dur": 482.49998688697815, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.48249998688697815, "detail": "System.Collections.Generic.KeyNotFoundException" } },
- { "pid": 1, "tid": 20, "ts": 3422197.509765625, "dur": 389.99998569488525, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.38999998569488525, "detail": "System.KnownTerminals" } },
- { "pid": 1, "tid": 20, "ts": 3422588.37890625, "dur": 4737.500190734863, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.737500190734863, "detail": "System.Text.Latin1Encoding" } },
- { "pid": 1, "tid": 20, "ts": 3427399.169921875, "dur": 2436.7001056671143, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.4367001056671143, "detail": "System.Runtime.Remoting.Lifetime.Lease" } },
- { "pid": 1, "tid": 20, "ts": 3429837.158203125, "dur": 1803.0999898910522, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8030999898910522, "detail": "System.Runtime.Remoting.Lifetime.LeaseManager" } },
- { "pid": 1, "tid": 20, "ts": 3431641.357421875, "dur": 685.9999895095825, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6859999895095825, "detail": "System.Runtime.Remoting.Lifetime.LeaseSink" } },
- { "pid": 1, "tid": 20, "ts": 3432444.82421875, "dur": 1009.600043296814, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.009600043296814, "detail": "System.Runtime.Remoting.Lifetime.LifetimeServices" } },
- { "pid": 1, "tid": 20, "ts": 3433455.322265625, "dur": 1917.0000553131104, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9170000553131104, "detail": "System.Collections.ListDictionaryInternal" } },
- { "pid": 1, "tid": 20, "ts": 3435550.78125, "dur": 1816.9000148773193, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8169000148773193, "detail": "System.LocalDataStore" } },
- { "pid": 1, "tid": 20, "ts": 3437640.13671875, "dur": 352.2999882698059, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3522999882698059, "detail": "System.LocalDataStoreHolder" } },
- { "pid": 1, "tid": 20, "ts": 3437993.1640625, "dur": 19498.199462890625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 19.498199462890625, "detail": "System.LocalDataStoreMgr" } },
- { "pid": 1, "tid": 20, "ts": 3457492.67578125, "dur": 525.4999995231628, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5254999995231628, "detail": "System.LocalDataStoreSlot" } },
- { "pid": 1, "tid": 20, "ts": 3458019.287109375, "dur": 382.2000026702881, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3822000026702881, "detail": "System.Reflection.LocalVariableInfo" } },
- { "pid": 1, "tid": 20, "ts": 3458558.349609375, "dur": 460.50000190734863, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.46050000190734863, "detail": "System.Threading.LockRecursionException" } },
- { "pid": 1, "tid": 20, "ts": 3459020.01953125, "dur": 3487.799882888794, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.487799882888794, "detail": "System.Runtime.Remoting.Messaging.LogicalCallContext" } },
- { "pid": 1, "tid": 20, "ts": 3462508.544921875, "dur": 1256.9999694824219, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2569999694824219, "detail": "System.Runtime.Serialization.LongList" } },
- { "pid": 1, "tid": 20, "ts": 3463766.357421875, "dur": 622.3000288009644, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6223000288009644, "detail": "System.Collections.LowLevelComparer" } },
- { "pid": 1, "tid": 20, "ts": 3464388.916015625, "dur": 351.99999809265137, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.35199999809265137, "detail": "System.Runtime.Remoting.Messaging.MCMDictionary" } },
- { "pid": 1, "tid": 20, "ts": 3464741.69921875, "dur": 12152.700424194336, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.152700424194336, "detail": "Mono.Globalization.Unicode.MSCompatUnicodeTable" } },
- { "pid": 1, "tid": 20, "ts": 3476895.263671875, "dur": 947.3999738693237, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9473999738693237, "detail": "Mono.Globalization.Unicode.MSCompatUnicodeTableUtil" } },
- { "pid": 1, "tid": 20, "ts": 3477845.21484375, "dur": 46428.199768066406, "ph": "X", "name": "mscorlib6.cpp", "args": { "durationMS": 46.428199768066406, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 3524306.884765625, "dur": 1043.2000160217285, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0432000160217285, "detail": "System.IO.UnexceptionalStreamWriter" } },
- { "pid": 1, "tid": 20, "ts": 3525591.796875, "dur": 433.20000171661377, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.43320000171661377, "detail": "System.UnhandledExceptionEventHandler" } },
- { "pid": 1, "tid": 20, "ts": 3526037.841796875, "dur": 89078.20129394531, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 89.07820129394531, "detail": "System.Text.UnicodeEncoding" } },
- { "pid": 1, "tid": 20, "ts": 3615116.943359375, "dur": 5922.2002029418945, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.9222002029418945, "detail": "System.UnitySerializationHolder" } },
- { "pid": 1, "tid": 20, "ts": 3621040.0390625, "dur": 2073.9998817443848, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0739998817443848, "detail": "Microsoft.Win32.UnixRegistryApi" } },
- { "pid": 1, "tid": 20, "ts": 3623208.49609375, "dur": 6295.7000732421875, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.2957000732421875, "detail": "System.IO.UnmanagedMemoryStream" } },
- { "pid": 1, "tid": 20, "ts": 3629533.203125, "dur": 1956.5999507904053, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9565999507904053, "detail": "System.Threading.Tasks.UnobservedTaskExceptionEventArgs" } },
- { "pid": 1, "tid": 20, "ts": 3631574.21875, "dur": 1786.2000465393066, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7862000465393066, "detail": "System.Runtime.Serialization.Formatters.Binary.ValueFixup" } },
- { "pid": 1, "tid": 20, "ts": 3633375.244140625, "dur": 10544.500350952148, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.544500350952148, "detail": "System.ValueType" } },
- { "pid": 1, "tid": 20, "ts": 3643920.8984375, "dur": 2134.999990463257, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.134999990463257, "detail": "System.Runtime.Serialization.ValueTypeFixupInfo" } },
- { "pid": 1, "tid": 20, "ts": 3646069.580078125, "dur": 888.4000182151794, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8884000182151794, "detail": "System.Variant" } },
- { "pid": 1, "tid": 20, "ts": 3646959.228515625, "dur": 6771.200180053711, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.771200180053711, "detail": "System.Version" } },
- { "pid": 1, "tid": 20, "ts": 3653869.140625, "dur": 337.3999893665314, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.33739998936653137, "detail": "System.Threading.WaitCallback" } },
- { "pid": 1, "tid": 20, "ts": 3654207.03125, "dur": 11224.599838256836, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.224599838256836, "detail": "System.Threading.WaitHandle" } },
- { "pid": 1, "tid": 20, "ts": 3665433.10546875, "dur": 1192.8000450134277, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1928000450134277, "detail": "System.Threading.WaitHandleCannotBeOpenedException" } },
- { "pid": 1, "tid": 20, "ts": 3666626.46484375, "dur": 366.100013256073, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.366100013256073, "detail": "System.Threading.WaitOrTimerCallback" } },
- { "pid": 1, "tid": 20, "ts": 3666993.1640625, "dur": 2518.699884414673, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.518699884414673, "detail": "System.WeakReference" } },
- { "pid": 1, "tid": 20, "ts": 3669512.6953125, "dur": 1588.0000591278076, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5880000591278076, "detail": "System.Runtime.Remoting.WellKnownClientTypeEntry" } },
- { "pid": 1, "tid": 20, "ts": 3671112.060546875, "dur": 1210.7000350952148, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2107000350952148, "detail": "System.Runtime.Remoting.WellKnownServiceTypeEntry" } },
- { "pid": 1, "tid": 20, "ts": 3672323.73046875, "dur": 922.6999878883362, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9226999878883362, "detail": "Microsoft.Win32.Win32Native" } },
- { "pid": 1, "tid": 20, "ts": 3673248.046875, "dur": 178942.10815429688, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 178.94210815429688, "detail": "Microsoft.Win32.Win32RegistryApi" } },
- { "pid": 1, "tid": 20, "ts": 3852190.91796875, "dur": 2937.299966812134, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.937299966812134, "detail": "System.WindowsConsoleDriver" } },
- { "pid": 1, "tid": 20, "ts": 3855129.39453125, "dur": 5347.400188446045, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.347400188446045, "detail": "System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo" } },
- { "pid": 1, "tid": 20, "ts": 3860477.05078125, "dur": 446.399986743927, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.446399986743927, "detail": "System.Security.XmlSyntaxException" } },
- { "pid": 1, "tid": 20, "ts": 3861011.962890625, "dur": 15618.700981140137, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.618700981140137, "detail": "System.Runtime.Serialization.Formatters.Binary.__BinaryParser" } },
- { "pid": 1, "tid": 20, "ts": 3876631.8359375, "dur": 9572.999954223633, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.572999954223633, "detail": "System.Runtime.Serialization.Formatters.Binary.__BinaryWriter" } },
- { "pid": 1, "tid": 20, "ts": 3886207.03125, "dur": 14721.100807189941, "ph": "X", "name": "mscorlib15.cpp", "args": { "durationMS": 14.721100807189941, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 3901175.048828125, "dur": 17581.100463867188, "ph": "X", "name": "Idle", "args": { "durationMS": 17.581100463867188, "detail": "" } },
- { "pid": 1, "tid": 21, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 21, "ts": 1719098.388671875, "dur": 12028.400421142578, "ph": "X", "name": "Idle", "args": { "durationMS": 12.028400421142578, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 1844827.1484375, "dur": 3286.29994392395, "ph": "X", "name": "Write Assembly", "args": { "durationMS": 3.28629994392395, "detail": "mscorlib" } },
- { "pid": 1, "tid": 21, "ts": 1848968.3837890625, "dur": 175200.10375976562, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 175.20010375976562, "detail": "Mono.Security" } },
- { "pid": 1, "tid": 21, "ts": 1850033.5693359375, "dur": 174134.29260253906, "ph": "X", "name": "Mono.Security_Attr.cpp", "args": { "durationMS": 174.13429260253906, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 2037143.5546875, "dur": 18347.200393676758, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 18.347200393676758, "detail": "UnityEngine.PhysicsModule" } },
- { "pid": 1, "tid": 21, "ts": 2037279.541015625, "dur": 18210.1993560791, "ph": "X", "name": "UnityEngine.PhysicsModule_Attr.cpp", "args": { "durationMS": 18.2101993560791, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 2055495.361328125, "dur": 17067.901611328125, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 17.067901611328125, "detail": "UnityEngine.UnityWebRequestModule" } },
- { "pid": 1, "tid": 21, "ts": 2055515.625, "dur": 17046.600341796875, "ph": "X", "name": "UnityEngine.UnityWebRequestModule_Attr.cpp", "args": { "durationMS": 17.046600341796875, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 2074468.017578125, "dur": 6294.1999435424805, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.2941999435424805, "detail": "<Module>" } },
- { "pid": 1, "tid": 21, "ts": 2080763.18359375, "dur": 181996.5057373047, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 181.9965057373047, "detail": "Mono.Security.ASN1" } },
- { "pid": 1, "tid": 21, "ts": 2262760.498046875, "dur": 2696.7999935150146, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.6967999935150146, "detail": "Mono.Security.ASN1Convert" } },
- { "pid": 1, "tid": 21, "ts": 2265458.0078125, "dur": 1088.8999700546265, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0888999700546265, "detail": "Mono.Security.BitConverterLE" } },
- { "pid": 1, "tid": 21, "ts": 2266548.095703125, "dur": 543.6999797821045, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5436999797821045, "detail": "Mono.Security.Cryptography.CryptoConvert" } },
- { "pid": 1, "tid": 21, "ts": 2267093.505859375, "dur": 13489.00032043457, "ph": "X", "name": "Mono.Security.cpp", "args": { "durationMS": 13.48900032043457, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 2280617.919921875, "dur": 3957.70001411438, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.95770001411438, "detail": "AutoA" } },
- { "pid": 1, "tid": 21, "ts": 2284577.1484375, "dur": 2357.100009918213, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.357100009918213, "detail": "CameraMove" } },
- { "pid": 1, "tid": 21, "ts": 2286935.546875, "dur": 3041.5000915527344, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.0415000915527344, "detail": "CollisionDetector" } },
- { "pid": 1, "tid": 21, "ts": 2290094.970703125, "dur": 18055.299758911133, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.055299758911133, "detail": "Goto" } },
- { "pid": 1, "tid": 21, "ts": 2308151.611328125, "dur": 21347.79930114746, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 21.34779930114746, "detail": "Menu_Buttons" } },
- { "pid": 1, "tid": 21, "ts": 2329500.732421875, "dur": 1401.800036430359, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4018000364303589, "detail": "MeshCreatorData" } },
- { "pid": 1, "tid": 21, "ts": 2330904.052734375, "dur": 21881.900787353516, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 21.881900787353516, "detail": "MoveCar" } },
- { "pid": 1, "tid": 21, "ts": 2352787.353515625, "dur": 4506.499767303467, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.506499767303467, "detail": "MoveComponet" } },
- { "pid": 1, "tid": 21, "ts": 2357295.166015625, "dur": 34767.90237426758, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 34.76790237426758, "detail": "MoveCurtains" } },
- { "pid": 1, "tid": 21, "ts": 2392064.453125, "dur": 25607.00035095215, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 25.60700035095215, "detail": "MoveDoor" } },
- { "pid": 1, "tid": 21, "ts": 2417672.8515625, "dur": 13235.199928283691, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.235199928283691, "detail": "MoveNecklace" } },
- { "pid": 1, "tid": 21, "ts": 2430909.1796875, "dur": 12223.799705505371, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.223799705505371, "detail": "MovePay" } },
- { "pid": 1, "tid": 21, "ts": 2443134.033203125, "dur": 8732.799530029297, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.732799530029297, "detail": "MovePolice" } },
- { "pid": 1, "tid": 21, "ts": 2451868.1640625, "dur": 2607.599973678589, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.607599973678589, "detail": "NewBehaviourScript" } },
- { "pid": 1, "tid": 21, "ts": 2454476.806640625, "dur": 636.900007724762, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.636900007724762, "detail": "ScenesArgs" } },
- { "pid": 1, "tid": 21, "ts": 2455114.74609375, "dur": 2729.0000915527344, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.7290000915527344, "detail": "Wallcollision" } },
- { "pid": 1, "tid": 21, "ts": 2457845.21484375, "dur": 1947.700023651123, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.947700023651123, "detail": "click" } },
- { "pid": 1, "tid": 21, "ts": 2459793.9453125, "dur": 1879.2999982833862, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8792999982833862, "detail": "cube" } },
- { "pid": 1, "tid": 21, "ts": 2461675.29296875, "dur": 19261.899948120117, "ph": "X", "name": "Assembly-CSharp.cpp", "args": { "durationMS": 19.261899948120117, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 2481219.482421875, "dur": 8537.500381469727, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 8.537500381469727, "detail": "System.Threading.Tasks.Task`1/<>c<System.Boolean>" } },
- { "pid": 1, "tid": 21, "ts": 2489766.357421875, "dur": 657.1999788284302, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6571999788284302, "detail": "System.Threading.Tasks.Task`1/<>c<System.Int32>" } },
- { "pid": 1, "tid": 21, "ts": 2490425.048828125, "dur": 589.5000100135803, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5895000100135803, "detail": "System.Threading.Tasks.Task`1/<>c<System.Object>" } },
- { "pid": 1, "tid": 21, "ts": 2491016.6015625, "dur": 589.5000100135803, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5895000100135803, "detail": "System.Threading.Tasks.Task`1/<>c<System.Threading.Tasks.VoidTaskResult>" } },
- { "pid": 1, "tid": 21, "ts": 2491608.154296875, "dur": 524.399995803833, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.524399995803833, "detail": "System.Linq.Enumerable/<>c__DisplayClass6_0`1<System.Object>" } },
- { "pid": 1, "tid": 21, "ts": 2492134.521484375, "dur": 3057.6999187469482, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.0576999187469482, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2/<GetEnumerator>d__32<System.Object,System.Object>" } },
- { "pid": 1, "tid": 21, "ts": 2495194.3359375, "dur": 30309.29946899414, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 30.30929946899414, "detail": "UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>d__2<UnityEngine.UI.CoroutineTween.ColorTween>" } },
- { "pid": 1, "tid": 21, "ts": 2525506.591796875, "dur": 1846.3000059127808, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8463000059127808, "detail": "UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>d__2<UnityEngine.UI.CoroutineTween.FloatTween>" } },
- { "pid": 1, "tid": 21, "ts": 2527355.712890625, "dur": 721.7000126838684, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7217000126838684, "detail": "System.Action`1<System.Boolean>" } },
- { "pid": 1, "tid": 21, "ts": 2528078.857421875, "dur": 442.6000118255615, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4426000118255615, "detail": "System.Action`1<System.Object>" } },
- { "pid": 1, "tid": 21, "ts": 2528522.94921875, "dur": 552.2000193595886, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5522000193595886, "detail": "System.Action`2<System.Object,System.Boolean>" } },
- { "pid": 1, "tid": 21, "ts": 2529076.904296875, "dur": 577.7000188827515, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5777000188827515, "detail": "System.Action`2<System.Object,System.Int32Enum>" } },
- { "pid": 1, "tid": 21, "ts": 2529655.517578125, "dur": 597.5000262260437, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5975000262260437, "detail": "System.Action`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 21, "ts": 2530254.8828125, "dur": 521.3000178337097, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5213000178337097, "detail": "System.Action`3<System.Boolean,System.Boolean,System.Int32>" } },
- { "pid": 1, "tid": 21, "ts": 2530777.83203125, "dur": 662.2999906539917, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6622999906539917, "detail": "System.Action`3<System.Object,System.Boolean,UnityEngine.Profiling.Experimental.DebugScreenCapture>" } },
- { "pid": 1, "tid": 21, "ts": 2531441.650390625, "dur": 562.6999735832214, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5626999735832214, "detail": "System.Action`3<System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 21, "ts": 2532006.591796875, "dur": 8443.400382995605, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 8.443400382995605, "detail": "System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 21, "ts": 2540452.392578125, "dur": 6408.899784088135, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.408899784088135, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 21, "ts": 2546863.037109375, "dur": 8070.699691772461, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 8.070699691772461, "detail": "System.Collections.Generic.ArraySortHelper`1<System.Int32>" } },
- { "pid": 1, "tid": 21, "ts": 2554936.03515625, "dur": 15772.80044555664, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 15.77280044555664, "detail": "System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 21, "ts": 2570711.181640625, "dur": 7821.100234985352, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.821100234985352, "detail": "System.Collections.Generic.ArraySortHelper`1<System.Object>" } },
- { "pid": 1, "tid": 21, "ts": 2578534.423828125, "dur": 7773.200035095215, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.773200035095215, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.RaycastHit>" } },
- { "pid": 1, "tid": 21, "ts": 2586309.5703125, "dur": 7320.499897003174, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.320499897003174, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 21, "ts": 2593632.32421875, "dur": 6506.700038909912, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.506700038909912, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 21, "ts": 2600140.869140625, "dur": 39401.19934082031, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 39.40119934082031, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 21, "ts": 2639544.677734375, "dur": 10916.799545288086, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 10.916799545288086, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 21, "ts": 2650465.576171875, "dur": 6638.100147247314, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.6381001472473145, "detail": "System.Collections.Generic.ArraySortHelper`1<System.UInt64>" } },
- { "pid": 1, "tid": 21, "ts": 2657105.46875, "dur": 6300.49991607666, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.30049991607666, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 21, "ts": 2663408.69140625, "dur": 6127.900123596191, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.127900123596191, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 21, "ts": 2669538.818359375, "dur": 6259.6001625061035, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.2596001625061035, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 21, "ts": 2675800.78125, "dur": 7951.700210571289, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.951700210571289, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 21, "ts": 2683754.39453125, "dur": 6365.600109100342, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.365600109100342, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 21, "ts": 2690121.826171875, "dur": 6544.099807739258, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.544099807739258, "detail": "System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 21, "ts": 2696667.724609375, "dur": 6410.500049591064, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.4105000495910645, "detail": "System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>" } },
- { "pid": 1, "tid": 21, "ts": 2703084.9609375, "dur": 5320.300102233887, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.320300102233887, "detail": "System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>" } },
- { "pid": 1, "tid": 21, "ts": 2708407.2265625, "dur": 5605.400085449219, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.605400085449219, "detail": "System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>" } },
- { "pid": 1, "tid": 21, "ts": 2714013.916015625, "dur": 669.2000031471252, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6692000031471252, "detail": "UnityEngine.Events.CachedInvokableCall`1<System.Boolean>" } },
- { "pid": 1, "tid": 21, "ts": 2714684.814453125, "dur": 566.9000148773193, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5669000148773193, "detail": "UnityEngine.Events.CachedInvokableCall`1<System.Int32>" } },
- { "pid": 1, "tid": 21, "ts": 2715252.685546875, "dur": 583.5999846458435, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5835999846458435, "detail": "UnityEngine.Events.CachedInvokableCall`1<System.Object>" } },
- { "pid": 1, "tid": 21, "ts": 2715837.646484375, "dur": 560.699999332428, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.560699999332428, "detail": "UnityEngine.Events.CachedInvokableCall`1<System.Single>" } },
- { "pid": 1, "tid": 21, "ts": 2716400.390625, "dur": 1829.3999433517456, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8293999433517456, "detail": "System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 21, "ts": 2718231.201171875, "dur": 1740.7000064849854, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7407000064849854, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 21, "ts": 2719973.388671875, "dur": 1690.000057220459, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.690000057220459, "detail": "System.Collections.Generic.Comparer`1<System.Int32>" } },
- { "pid": 1, "tid": 21, "ts": 2721664.794921875, "dur": 2166.6998863220215, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.1666998863220215, "detail": "System.Collections.Generic.Comparer`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 21, "ts": 2723832.763671875, "dur": 1796.1000204086304, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7961000204086304, "detail": "System.Collections.Generic.Comparer`1<System.Object>" } },
- { "pid": 1, "tid": 21, "ts": 2725631.34765625, "dur": 1746.7000484466553, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7467000484466553, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit>" } },
- { "pid": 1, "tid": 21, "ts": 2727379.8828125, "dur": 1781.9000482559204, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7819000482559204, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 21, "ts": 2729163.330078125, "dur": 1740.3000593185425, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7403000593185425, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 21, "ts": 2730905.029296875, "dur": 1850.8000373840332, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8508000373840332, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 21, "ts": 2732757.080078125, "dur": 1812.000036239624, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.812000036239624, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 21, "ts": 2734571.044921875, "dur": 1705.8000564575195, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7058000564575195, "detail": "System.Collections.Generic.Comparer`1<System.UInt64>" } },
- { "pid": 1, "tid": 21, "ts": 2736278.80859375, "dur": 1764.8999691009521, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7648999691009521, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 21, "ts": 2738044.677734375, "dur": 1732.5999736785889, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7325999736785889, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 21, "ts": 2739779.052734375, "dur": 1728.9999723434448, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7289999723434448, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 21, "ts": 2741510.009765625, "dur": 1734.6999645233154, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7346999645233154, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 21, "ts": 2743246.337890625, "dur": 2028.5999774932861, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.028599977493286, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 21, "ts": 2745278.076171875, "dur": 609.499990940094, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.609499990940094, "detail": "System.Comparison`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 21, "ts": 2745889.16015625, "dur": 502.3000240325928, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5023000240325928, "detail": "System.Comparison`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 21, "ts": 2746392.578125, "dur": 477.60000824928284, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.47760000824928284, "detail": "System.Comparison`1<System.Int32>" } },
- { "pid": 1, "tid": 21, "ts": 2746872.0703125, "dur": 490.0999963283539, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4900999963283539, "detail": "System.Comparison`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 21, "ts": 2747363.037109375, "dur": 487.39999532699585, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.48739999532699585, "detail": "System.Comparison`1<System.Object>" } },
- { "pid": 1, "tid": 21, "ts": 2747852.05078125, "dur": 470.8999991416931, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4708999991416931, "detail": "System.Comparison`1<UnityEngine.RaycastHit>" } },
- { "pid": 1, "tid": 21, "ts": 2748323.974609375, "dur": 458.99999141693115, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.45899999141693115, "detail": "System.Comparison`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 21, "ts": 2748784.423828125, "dur": 574.5000243186951, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5745000243186951, "detail": "System.Comparison`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 21, "ts": 2749360.107421875, "dur": 471.10000252723694, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.47110000252723694, "detail": "System.Comparison`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 21, "ts": 2749833.251953125, "dur": 853.2000184059143, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8532000184059143, "detail": "System.Comparison`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 21, "ts": 2750687.98828125, "dur": 471.19998931884766, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.47119998931884766, "detail": "System.Comparison`1<System.UInt64>" } },
- { "pid": 1, "tid": 21, "ts": 2751160.64453125, "dur": 501.5000104904175, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5015000104904175, "detail": "System.Comparison`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 21, "ts": 2751663.818359375, "dur": 484.89999771118164, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.48489999771118164, "detail": "System.Comparison`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 21, "ts": 2752149.90234375, "dur": 479.99998927116394, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.47999998927116394, "detail": "System.Comparison`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 21, "ts": 2752631.34765625, "dur": 471.10000252723694, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.47110000252723694, "detail": "System.Comparison`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 21, "ts": 2753103.759765625, "dur": 479.9000024795532, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4799000024795532, "detail": "System.Comparison`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 21, "ts": 2753585.205078125, "dur": 25104.000091552734, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 25.104000091552734, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 21, "ts": 2778713.8671875, "dur": 96300.20141601562, "ph": "X", "name": "Generics.cpp", "args": { "durationMS": 96.30020141601562, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 2875056.640625, "dur": 715.399980545044, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.715399980545044, "detail": "System.UriFormatException" } },
- { "pid": 1, "tid": 21, "ts": 2875772.4609375, "dur": 10794.699668884277, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.794699668884277, "detail": "System.UriHelper" } },
- { "pid": 1, "tid": 21, "ts": 2886585.44921875, "dur": 6214.200019836426, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.214200019836426, "detail": "System.UriParser" } },
- { "pid": 1, "tid": 21, "ts": 2892813.4765625, "dur": 419.29998993873596, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.41929998993873596, "detail": "System.UriTypeConverter" } },
- { "pid": 1, "tid": 21, "ts": 2893701.904296875, "dur": 5126.900196075439, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.1269001960754395, "detail": "System.ComponentModel.Win32Exception" } },
- { "pid": 1, "tid": 21, "ts": 2898829.833984375, "dur": 4017.899990081787, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.017899990081787, "detail": "System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension" } },
- { "pid": 1, "tid": 21, "ts": 2902848.6328125, "dur": 2558.3999156951904, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.5583999156951904, "detail": "System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension" } },
- { "pid": 1, "tid": 21, "ts": 2905407.958984375, "dur": 902.8000235557556, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9028000235557556, "detail": "System.Security.Cryptography.X509Certificates.X509Extension" } },
- { "pid": 1, "tid": 21, "ts": 2906311.767578125, "dur": 15030.400276184082, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.030400276184082, "detail": "System.Security.Cryptography.X509Certificates.X509KeyUsageExtension" } },
- { "pid": 1, "tid": 21, "ts": 2921352.783203125, "dur": 5730.400085449219, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.730400085449219, "detail": "System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension" } },
- { "pid": 1, "tid": 21, "ts": 2927098.14453125, "dur": 980.4999828338623, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9804999828338623, "detail": "System.Security.Cryptography.X509Certificates.X509Utils" } },
- { "pid": 1, "tid": 21, "ts": 2928096.6796875, "dur": 459.80000495910645, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.45980000495910645, "detail": "System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping" } },
- { "pid": 1, "tid": 21, "ts": 2929326.904296875, "dur": 17420.8984375, "ph": "X", "name": "System2.cpp", "args": { "durationMS": 17.4208984375, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 2947400.634765625, "dur": 398.79998564720154, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.39879998564720154, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.ColorBlock>" } },
- { "pid": 1, "tid": 21, "ts": 2948583.984375, "dur": 578.1000256538391, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5781000256538391, "detail": "System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 21, "ts": 2950095.703125, "dur": 535.4999899864197, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5354999899864197, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 21, "ts": 2950953.125, "dur": 537.8999710083008, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5378999710083008, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 21, "ts": 2954260.986328125, "dur": 9933.300018310547, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 9.933300018310547, "detail": "System.Func`2<System.Object,System.Int32>" } },
- { "pid": 1, "tid": 21, "ts": 2964197.265625, "dur": 16166.099548339844, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 16.166099548339844, "detail": "System.Func`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 21, "ts": 2981313.232421875, "dur": 359.29998755455017, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.35929998755455017, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.ColorBlock>" } },
- { "pid": 1, "tid": 21, "ts": 2982807.861328125, "dur": 604.7000288963318, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6047000288963318, "detail": "System.Collections.Generic.HashSet`1<UnityEngine.UI.IClippable>" } },
- { "pid": 1, "tid": 21, "ts": 2983416.50390625, "dur": 1816.7999982833862, "ph": "X", "name": "Il2CppGenericComDefinitions6.cpp", "args": { "durationMS": 1.8167999982833862, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 2985563.96484375, "dur": 3069.4000720977783, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.0694000720977783, "detail": "AwaitUnsafeOnCompleted" } },
- { "pid": 1, "tid": 21, "ts": 2988634.765625, "dur": 1290.4000282287598, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2904000282287598, "detail": "AwaitUnsafeOnCompleted" } },
- { "pid": 1, "tid": 21, "ts": 2989926.513671875, "dur": 523.8000154495239, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5238000154495239, "detail": "Start" } },
- { "pid": 1, "tid": 21, "ts": 2990451.171875, "dur": 3174.2000579833984, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.1742000579833984, "detail": "AwaitUnsafeOnCompleted" } },
- { "pid": 1, "tid": 21, "ts": 2993626.708984375, "dur": 502.90000438690186, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5029000043869019, "detail": "Start" } },
- { "pid": 1, "tid": 21, "ts": 2994130.615234375, "dur": 874.1999864578247, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8741999864578247, "detail": "CreateInstance" } },
- { "pid": 1, "tid": 21, "ts": 2995005.859375, "dur": 1255.1000118255615, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2551000118255615, "detail": "AsReadOnly" } },
- { "pid": 1, "tid": 21, "ts": 2998029.052734375, "dur": 600.600004196167, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.600600004196167, "detail": "BinarySearch" } },
- { "pid": 1, "tid": 21, "ts": 2998630.859375, "dur": 564.8000240325928, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5648000240325928, "detail": "BinarySearch" } },
- { "pid": 1, "tid": 21, "ts": 2999196.77734375, "dur": 801.2999892234802, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8012999892234802, "detail": "ConvertAll" } },
- { "pid": 1, "tid": 21, "ts": 3000577.1484375, "dur": 335.50000190734863, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.33550000190734863, "detail": "Fill" } },
- { "pid": 1, "tid": 21, "ts": 3000913.818359375, "dur": 706.0999870300293, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7060999870300293, "detail": "Fill" } },
- { "pid": 1, "tid": 21, "ts": 3001621.337890625, "dur": 517.5999999046326, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5175999999046326, "detail": "Find" } },
- { "pid": 1, "tid": 21, "ts": 3002139.6484375, "dur": 1025.7999897003174, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0257999897003174, "detail": "FindAll" } },
- { "pid": 1, "tid": 21, "ts": 3003169.677734375, "dur": 391.49999618530273, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.39149999618530273, "detail": "FindIndex" } },
- { "pid": 1, "tid": 21, "ts": 3003562.744140625, "dur": 366.40000343322754, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36640000343322754, "detail": "FindIndex" } },
- { "pid": 1, "tid": 21, "ts": 3003929.931640625, "dur": 750.8999705314636, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7508999705314636, "detail": "FindIndex" } },
- { "pid": 1, "tid": 21, "ts": 3004682.373046875, "dur": 541.0000085830688, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5410000085830688, "detail": "FindLast" } },
- { "pid": 1, "tid": 21, "ts": 3005224.365234375, "dur": 357.699990272522, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.357699990272522, "detail": "FindLastIndex" } },
- { "pid": 1, "tid": 21, "ts": 3005583.251953125, "dur": 339.5000100135803, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3395000100135803, "detail": "FindLastIndex" } },
- { "pid": 1, "tid": 21, "ts": 3005923.583984375, "dur": 893.8999772071838, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8938999772071838, "detail": "FindLastIndex" } },
- { "pid": 1, "tid": 21, "ts": 3006818.603515625, "dur": 448.0000138282776, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4480000138282776, "detail": "ForEach" } },
- { "pid": 1, "tid": 21, "ts": 3008035.64453125, "dur": 1508.1000328063965, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.5081000328063965, "detail": "IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3009544.921875, "dur": 581.7999839782715, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5817999839782715, "detail": "IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3010127.685546875, "dur": 539.6000146865845, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5396000146865845, "detail": "IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3010668.212890625, "dur": 588.8000130653381, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5888000130653381, "detail": "IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3011258.056640625, "dur": 528.9999842643738, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5289999842643738, "detail": "IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3011787.841796875, "dur": 573.4999775886536, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5734999775886536, "detail": "IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3012362.548828125, "dur": 551.800012588501, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.551800012588501, "detail": "IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3012915.283203125, "dur": 553.9000034332275, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5539000034332275, "detail": "IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3013469.970703125, "dur": 561.6999864578247, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5616999864578247, "detail": "IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3014032.470703125, "dur": 629.8999786376953, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6298999786376953, "detail": "IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3014663.330078125, "dur": 545.0000166893005, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5450000166893005, "detail": "IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3015209.47265625, "dur": 551.800012588501, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.551800012588501, "detail": "IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3015762.20703125, "dur": 956.499993801117, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9564999938011169, "detail": "IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3016719.482421875, "dur": 567.2000050544739, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5672000050544739, "detail": "IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3017862.79296875, "dur": 735.5999946594238, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7355999946594238, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 21, "ts": 3018599.609375, "dur": 508.49997997283936, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5084999799728394, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 21, "ts": 3019110.107421875, "dur": 333.6000144481659, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3336000144481659, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 21, "ts": 3020010.498046875, "dur": 363.40001225471497, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36340001225471497, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 21, "ts": 3020374.755859375, "dur": 431.1999976634979, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4311999976634979, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 21, "ts": 3020806.884765625, "dur": 446.20001316070557, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.44620001316070557, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 21, "ts": 3021254.150390625, "dur": 420.80000042915344, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.42080000042915344, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 21, "ts": 3021675.78125, "dur": 424.19999837875366, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.42419999837875366, "detail": "IndexOfImpl" } },
- { "pid": 1, "tid": 21, "ts": 3022988.525390625, "dur": 449.20000433921814, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.44920000433921814, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 21, "ts": 3023438.96484375, "dur": 435.40000915527344, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.43540000915527344, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 21, "ts": 3023875.244140625, "dur": 347.00000286102295, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34700000286102295, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 21, "ts": 3024223.388671875, "dur": 404.1000008583069, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4041000008583069, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 21, "ts": 3027883.7890625, "dur": 357.699990272522, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.357699990272522, "detail": "InternalArray__ICollection_Add" } },
- { "pid": 1, "tid": 21, "ts": 3037016.11328125, "dur": 630.9999823570251, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6309999823570251, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3037648.193359375, "dur": 635.1000070571899, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6351000070571899, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3038284.1796875, "dur": 598.2000231742859, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5982000231742859, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3038883.544921875, "dur": 598.800003528595, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.598800003528595, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3039483.3984375, "dur": 743.399977684021, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.743399977684021, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3040227.5390625, "dur": 609.7000241279602, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6097000241279602, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3040838.37890625, "dur": 636.7999911308289, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6367999911308289, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3041476.07421875, "dur": 655.4999947547913, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6554999947547913, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3042132.568359375, "dur": 602.2999882698059, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6022999882698059, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3042735.83984375, "dur": 603.5000085830688, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6035000085830688, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3043340.576171875, "dur": 567.9000020027161, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5679000020027161, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3043909.66796875, "dur": 528.6999940872192, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5286999940872192, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3044439.208984375, "dur": 539.6000146865845, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5396000146865845, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3044979.98046875, "dur": 558.7000250816345, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5587000250816345, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3045539.55078125, "dur": 526.0000228881836, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5260000228881836, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3046066.40625, "dur": 810.5999827384949, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8105999827384949, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3046878.173828125, "dur": 611.1000180244446, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6111000180244446, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3047490.234375, "dur": 576.200008392334, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.576200008392334, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3048067.3828125, "dur": 540.7000184059143, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5407000184059143, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3048608.88671875, "dur": 575.1000046730042, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5751000046730042, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3049185.302734375, "dur": 555.4999709129333, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5554999709129333, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3049741.455078125, "dur": 579.9000263214111, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5799000263214111, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3050322.75390625, "dur": 566.6999816894531, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5666999816894531, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3050890.380859375, "dur": 532.5999855995178, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5325999855995178, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3051423.828125, "dur": 6057.499885559082, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 6.057499885559082, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3057482.666015625, "dur": 592.2999978065491, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5922999978065491, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3058076.416015625, "dur": 550.4999756813049, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5504999756813049, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3058627.9296875, "dur": 536.4999771118164, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5364999771118164, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3059165.52734375, "dur": 532.1999788284302, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5321999788284302, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3059698.974609375, "dur": 533.2000255584717, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5332000255584717, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3060233.154296875, "dur": 568.8999891281128, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5688999891281128, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3060803.22265625, "dur": 651.4999866485596, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6514999866485596, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3061456.0546875, "dur": 586.6000056266785, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5866000056266785, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3062043.9453125, "dur": 892.799973487854, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.892799973487854, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3062938.4765625, "dur": 892.0000195503235, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8920000195503235, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3063832.03125, "dur": 573.0999708175659, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5730999708175659, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3064406.005859375, "dur": 559.3000054359436, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5593000054359436, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3064966.30859375, "dur": 547.3999977111816, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5473999977111816, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3065514.892578125, "dur": 555.1999807357788, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5551999807357788, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3066071.2890625, "dur": 544.7999835014343, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5447999835014343, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3066616.943359375, "dur": 545.0000166893005, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5450000166893005, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3067162.841796875, "dur": 551.9000291824341, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5519000291824341, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3067715.8203125, "dur": 554.0000200271606, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5540000200271606, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3068270.751953125, "dur": 545.0000166893005, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5450000166893005, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3068816.40625, "dur": 560.1999759674072, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5601999759674072, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3069377.44140625, "dur": 528.9000272750854, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5289000272750854, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3069907.470703125, "dur": 564.1000270843506, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5641000270843506, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3070472.412109375, "dur": 553.9000034332275, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5539000034332275, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3071027.34375, "dur": 783.3999991416931, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7833999991416931, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3071811.767578125, "dur": 615.8000230789185, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6158000230789185, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3072428.466796875, "dur": 543.6000227928162, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5436000227928162, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3072972.900390625, "dur": 516.7999863624573, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5167999863624573, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3073490.72265625, "dur": 555.5999875068665, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5555999875068665, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3074047.607421875, "dur": 533.1000089645386, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5331000089645386, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3074581.54296875, "dur": 538.2999777793884, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5382999777793884, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3075120.849609375, "dur": 540.7999753952026, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5407999753952026, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3075662.353515625, "dur": 537.6999974250793, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5376999974250793, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3076201.171875, "dur": 551.9999861717224, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5519999861717224, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3076753.90625, "dur": 540.0999784469604, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5400999784469604, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3077295.166015625, "dur": 547.8000044822693, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5478000044822693, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3077843.994140625, "dur": 856.1999797821045, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8561999797821045, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3078701.171875, "dur": 2460.400104522705, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.460400104522705, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3081163.57421875, "dur": 633.1999897956848, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6331999897956848, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3081798.33984375, "dur": 1000.8000135421753, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0008000135421753, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3082800.78125, "dur": 1045.6000566482544, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0456000566482544, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3083848.14453125, "dur": 699.8999714851379, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6998999714851379, "detail": "InternalArray__ICollection_Contains" } },
- { "pid": 1, "tid": 21, "ts": 3084879.39453125, "dur": 354.7999858856201, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3547999858856201, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 21, "ts": 3086151.3671875, "dur": 397.7999985218048, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3977999985218048, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 21, "ts": 3089819.091796875, "dur": 578.9999961853027, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5789999961853027, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 21, "ts": 3090399.4140625, "dur": 967.5999879837036, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9675999879837036, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 21, "ts": 3091897.4609375, "dur": 991.9000267982483, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9919000267982483, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 21, "ts": 3093676.26953125, "dur": 13261.899948120117, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 13.261899948120117, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 21, "ts": 3108826.66015625, "dur": 535.7999801635742, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5357999801635742, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 21, "ts": 3115932.373046875, "dur": 591.4000272750854, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5914000272750854, "detail": "InternalArray__ICollection_CopyTo" } },
- { "pid": 1, "tid": 21, "ts": 3130657.470703125, "dur": 365.59998989105225, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36559998989105225, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3131023.92578125, "dur": 352.400004863739, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.352400004863739, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3131377.197265625, "dur": 343.80000829696655, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34380000829696655, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3131721.923828125, "dur": 416.2999987602234, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4162999987602234, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3132138.916015625, "dur": 415.4999852180481, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4154999852180481, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3132555.6640625, "dur": 409.9000096321106, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4099000096321106, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3132966.552734375, "dur": 418.39998960494995, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.41839998960494995, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3133385.986328125, "dur": 418.9999997615814, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4189999997615814, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3133806.15234375, "dur": 431.49998784065247, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.43149998784065247, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3134238.76953125, "dur": 410.19999980926514, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.41019999980926514, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3134649.658203125, "dur": 376.800000667572, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.376800000667572, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3135027.587890625, "dur": 361.0999882221222, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3610999882221222, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3135389.6484375, "dur": 354.6999990940094, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3546999990940094, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3135745.1171875, "dur": 363.7000024318695, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3637000024318695, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3136109.619140625, "dur": 358.2000136375427, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3582000136375427, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3136468.75, "dur": 375.60001015663147, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37560001015663147, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3136845.21484375, "dur": 366.8999969959259, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3668999969959259, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3137213.134765625, "dur": 370.7999885082245, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3707999885082245, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3137584.716796875, "dur": 375.2000033855438, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3752000033855438, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3137960.693359375, "dur": 361.9999885559082, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3619999885559082, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3138323.73046875, "dur": 370.0000047683716, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3700000047683716, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3138694.580078125, "dur": 497.3999857902527, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4973999857902527, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3139192.87109375, "dur": 376.89998745918274, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37689998745918274, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3139570.80078125, "dur": 360.1999878883362, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3601999878883362, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3139931.640625, "dur": 375.900000333786, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.375900000333786, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3140308.837890625, "dur": 369.3999946117401, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3693999946117401, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3140679.19921875, "dur": 369.80000138282776, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36980000138282776, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3141049.560546875, "dur": 367.000013589859, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.367000013589859, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3141417.48046875, "dur": 367.7999973297119, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3677999973297119, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3141785.888671875, "dur": 367.7999973297119, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3677999973297119, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3142154.78515625, "dur": 373.4999895095825, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3734999895095825, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3142529.296875, "dur": 381.00001215934753, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38100001215934753, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3142911.1328125, "dur": 3537.400007247925, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.537400007247925, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3146449.462890625, "dur": 403.6000072956085, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4036000072956085, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3146854.4921875, "dur": 383.70001316070557, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38370001316070557, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3147239.2578125, "dur": 380.6999921798706, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3806999921798706, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3147620.849609375, "dur": 381.7000091075897, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3817000091075897, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3148003.41796875, "dur": 372.99999594688416, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37299999594688416, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3148377.685546875, "dur": 389.60000872612, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38960000872612, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3148768.06640625, "dur": 957.5999975204468, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9575999975204468, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3149726.5625, "dur": 2891.900062561035, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.891900062561035, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3152619.62890625, "dur": 345.40000557899475, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34540000557899475, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3154562.98828125, "dur": 378.8999915122986, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3788999915122986, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3156511.962890625, "dur": 365.3999865055084, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3653999865055084, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3158170.166015625, "dur": 386.5000009536743, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3865000009536743, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3158557.6171875, "dur": 408.69998931884766, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.40869998931884766, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3158967.28515625, "dur": 466.6999876499176, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4666999876499176, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
- { "pid": 1, "tid": 21, "ts": 3161580.322265625, "dur": 378.60000133514404, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37860000133514404, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3161959.716796875, "dur": 377.09999084472656, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37709999084472656, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3162337.646484375, "dur": 407.09999203681946, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.40709999203681946, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3162745.60546875, "dur": 396.29998803138733, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.39629998803138733, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3163142.822265625, "dur": 371.1000084877014, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3711000084877014, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3163515.13671875, "dur": 390.79999923706055, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.39079999923706055, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3163906.73828125, "dur": 384.0000033378601, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3840000033378601, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3164291.748046875, "dur": 348.1999933719635, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3481999933719635, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3166578.125, "dur": 389.6999955177307, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3896999955177307, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3166968.75, "dur": 337.19998598098755, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.33719998598098755, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3167306.640625, "dur": 341.8999910354614, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3418999910354614, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3167649.90234375, "dur": 432.09999799728394, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.43209999799728394, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3168083.251953125, "dur": 371.39999866485596, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37139999866485596, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3168455.56640625, "dur": 359.499990940094, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.359499990940094, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3168815.91796875, "dur": 348.3000099658966, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3483000099658966, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3169165.0390625, "dur": 354.20000553131104, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.35420000553131104, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3169520.5078125, "dur": 367.5000071525574, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3675000071525574, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3169888.916015625, "dur": 343.60000491142273, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34360000491142273, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3170233.642578125, "dur": 349.40001368522644, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34940001368522644, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3170583.740234375, "dur": 349.9000072479248, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3499000072479248, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3170934.814453125, "dur": 347.9999899864197, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3479999899864197, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3171283.69140625, "dur": 344.70000863075256, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34470000863075256, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3171629.638671875, "dur": 504.59998846054077, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5045999884605408, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3172135.009765625, "dur": 366.6999936103821, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3666999936103821, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3172502.9296875, "dur": 395.59999108314514, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.39559999108314514, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3172899.658203125, "dur": 367.1000003814697, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3671000003814697, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3173268.06640625, "dur": 358.39998722076416, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.35839998722076416, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3173627.197265625, "dur": 374.9000132083893, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3749000132083893, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3174003.173828125, "dur": 343.60000491142273, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34360000491142273, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3174347.65625, "dur": 39219.69985961914, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 39.21969985961914, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3213569.82421875, "dur": 363.09999227523804, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36309999227523804, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3213934.08203125, "dur": 363.5999858379364, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3635999858379364, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3214298.828125, "dur": 354.20000553131104, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.35420000553131104, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3214654.052734375, "dur": 355.3999960422516, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3553999960422516, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3215010.498046875, "dur": 351.79999470710754, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.35179999470710754, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3215363.037109375, "dur": 351.09999775886536, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.35109999775886536, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3215715.087890625, "dur": 345.40000557899475, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34540000557899475, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3216061.279296875, "dur": 353.1000018119812, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3531000018119812, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3216415.283203125, "dur": 354.6000123023987, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3546000123023987, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3222080.810546875, "dur": 372.79999256134033, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37279999256134033, "detail": "InternalArray__IReadOnlyList_get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3222454.833984375, "dur": 800.3000020980835, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8003000020980835, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3223256.34765625, "dur": 773.5000252723694, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7735000252723694, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3224030.76171875, "dur": 792.5000190734863, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7925000190734863, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3224824.462890625, "dur": 1363.6000156402588, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3636000156402588, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3226189.453125, "dur": 1093.7999486923218, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0937999486923218, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3227284.423828125, "dur": 779.3999910354614, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7793999910354614, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3228064.697265625, "dur": 759.0000033378601, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7590000033378601, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3228824.70703125, "dur": 745.4000115394592, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7454000115394592, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3229571.2890625, "dur": 825.5000114440918, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8255000114440918, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3230397.94921875, "dur": 814.300000667572, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.814300000667572, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3231213.8671875, "dur": 728.7999987602234, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7287999987602234, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3231944.091796875, "dur": 1641.4999961853027, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.6414999961853027, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3233586.669921875, "dur": 724.3000268936157, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7243000268936157, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3234312.744140625, "dur": 709.5999717712402, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7095999717712402, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3235023.681640625, "dur": 699.400007724762, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.699400007724762, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3235724.12109375, "dur": 697.3000168800354, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6973000168800354, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3236422.36328125, "dur": 671.7000007629395, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6717000007629395, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3237095.21484375, "dur": 685.1000189781189, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6851000189781189, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3237781.25, "dur": 745.9999918937683, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7459999918937683, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3238528.3203125, "dur": 840.9000039100647, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8409000039100647, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3239370.849609375, "dur": 961.1999988555908, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9611999988555908, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3240333.49609375, "dur": 778.9999842643738, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7789999842643738, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3241114.013671875, "dur": 727.1000146865845, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7271000146865845, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3241842.28515625, "dur": 1444.599986076355, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.444599986076355, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3243288.330078125, "dur": 733.9000105857849, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7339000105857849, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3244023.681640625, "dur": 755.9000253677368, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7559000253677368, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3244780.76171875, "dur": 689.8000240325928, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6898000240325928, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3245471.435546875, "dur": 709.2000246047974, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7092000246047974, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3246181.884765625, "dur": 668.0999994277954, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6680999994277954, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3246851.318359375, "dur": 686.5000128746033, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6865000128746033, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3247538.818359375, "dur": 897.0000147819519, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8970000147819519, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3248437.255859375, "dur": 733.299970626831, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.733299970626831, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3249171.875, "dur": 723.6999869346619, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7236999869346619, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3249897.216796875, "dur": 740.2999997138977, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7402999997138977, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3250638.916015625, "dur": 772.0999717712402, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7720999717712402, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3251412.109375, "dur": 722.599983215332, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.722599983215332, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3252135.986328125, "dur": 753.7999749183655, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7537999749183655, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3252891.357421875, "dur": 726.1000275611877, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7261000275611877, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3253618.896484375, "dur": 712.1999859809875, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7121999859809875, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3254332.51953125, "dur": 742.9999709129333, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7429999709129333, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3255076.904296875, "dur": 705.0999999046326, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7050999999046326, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3255782.958984375, "dur": 39169.10171508789, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 39.16910171508789, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3294953.61328125, "dur": 763.9999985694885, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7639999985694885, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3295718.994140625, "dur": 730.3000092506409, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7303000092506409, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3296450.439453125, "dur": 709.1000080108643, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7091000080108643, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3297160.888671875, "dur": 753.600001335144, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.753600001335144, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3297915.771484375, "dur": 804.099977016449, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.804099977016449, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3298721.19140625, "dur": 738.7999892234802, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7387999892234802, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3299461.42578125, "dur": 1219.4000482559204, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2194000482559204, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3300682.373046875, "dur": 952.7000188827515, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9527000188827515, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3301636.71875, "dur": 767.4000263214111, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7674000263214111, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3302405.517578125, "dur": 770.6999778747559, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7706999778747559, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3303177.24609375, "dur": 691.5000081062317, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6915000081062317, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3303870.361328125, "dur": 676.2999892234802, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6762999892234802, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3304547.607421875, "dur": 687.3999834060669, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6873999834060669, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3305236.083984375, "dur": 709.5000147819519, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7095000147819519, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3305946.77734375, "dur": 698.0000138282776, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6980000138282776, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3306645.5078125, "dur": 710.5000019073486, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7105000019073486, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3307357.666015625, "dur": 712.0000123977661, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7120000123977661, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3308070.80078125, "dur": 717.1000242233276, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7171000242233276, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3308789.0625, "dur": 699.8000144958496, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6998000144958496, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3309490.234375, "dur": 768.999993801117, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7689999938011169, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3310260.498046875, "dur": 712.1999859809875, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7121999859809875, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3310973.876953125, "dur": 707.1999907493591, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7071999907493591, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3311682.12890625, "dur": 697.0000267028809, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6970000267028809, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3312380.37109375, "dur": 680.9999942779541, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6809999942779541, "detail": "InternalArray__IndexOf" } },
- { "pid": 1, "tid": 21, "ts": 3326467.7734375, "dur": 10974.599838256836, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 10.974599838256836, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3337444.091796875, "dur": 350.30001401901245, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.35030001401901245, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3337795.8984375, "dur": 353.39999198913574, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.35339999198913574, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3338150.634765625, "dur": 384.7000002861023, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3847000002861023, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3338536.865234375, "dur": 343.69999170303345, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34369999170303345, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3338881.591796875, "dur": 336.29998564720154, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.33629998564720154, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3339218.75, "dur": 400.59998631477356, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.40059998631477356, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3339940.4296875, "dur": 600.0999808311462, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6000999808311462, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3342362.548828125, "dur": 1036.1000299453735, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0361000299453735, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 21, "ts": 3347021.728515625, "dur": 41651.5007019043, "ph": "X", "name": "GenericMethods.cpp", "args": { "durationMS": 41.6515007019043, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 3388688.4765625, "dur": 1189.2000436782837, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1892000436782837, "detail": "System.Runtime.CompilerServices.TaskAwaiter" } },
- { "pid": 1, "tid": 21, "ts": 3389878.41796875, "dur": 667.6999926567078, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6676999926567078, "detail": "System.Threading.Tasks.TaskCanceledException" } },
- { "pid": 1, "tid": 21, "ts": 3390546.630859375, "dur": 552.1000027656555, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5521000027656555, "detail": "System.Threading.Tasks.TaskContinuation" } },
- { "pid": 1, "tid": 21, "ts": 3391114.74609375, "dur": 4765.600204467773, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.765600204467773, "detail": "System.Threading.Tasks.TaskExceptionHolder" } },
- { "pid": 1, "tid": 21, "ts": 3395880.859375, "dur": 1317.3999786376953, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3173999786376953, "detail": "System.Threading.Tasks.TaskFactory" } },
- { "pid": 1, "tid": 21, "ts": 3397199.21875, "dur": 2774.199962615967, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.774199962615967, "detail": "System.Threading.Tasks.TaskScheduler" } },
- { "pid": 1, "tid": 21, "ts": 3399974.12109375, "dur": 1151.6000032424927, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1516000032424927, "detail": "System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation" } },
- { "pid": 1, "tid": 21, "ts": 3401126.220703125, "dur": 1920.4000234603882, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9204000234603882, "detail": "System.Threading.Tasks.TaskSchedulerException" } },
- { "pid": 1, "tid": 21, "ts": 3403057.6171875, "dur": 35606.597900390625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 35.606597900390625, "detail": "System.TermInfoDriver" } },
- { "pid": 1, "tid": 21, "ts": 3438676.025390625, "dur": 4736.999988555908, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.736999988555908, "detail": "System.TermInfoReader" } },
- { "pid": 1, "tid": 21, "ts": 3443452.63671875, "dur": 11417.400360107422, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.417400360107422, "detail": "System.Globalization.TextInfo" } },
- { "pid": 1, "tid": 21, "ts": 3454870.849609375, "dur": 485.10000109672546, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.48510000109672546, "detail": "System.Globalization.TextInfoToLowerData" } },
- { "pid": 1, "tid": 21, "ts": 3455356.93359375, "dur": 416.3999855518341, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4163999855518341, "detail": "System.Globalization.TextInfoToUpperData" } },
- { "pid": 1, "tid": 21, "ts": 3455773.4375, "dur": 17990.800857543945, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 17.990800857543945, "detail": "System.IO.TextReader" } },
- { "pid": 1, "tid": 21, "ts": 3473765.13671875, "dur": 3293.9999103546143, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.2939999103546143, "detail": "System.IO.TextWriter" } },
- { "pid": 1, "tid": 21, "ts": 3477060.05859375, "dur": 1900.0999927520752, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9000999927520752, "detail": "System.Globalization.ThaiBuddhistCalendar" } },
- { "pid": 1, "tid": 21, "ts": 3478960.9375, "dur": 5533.500194549561, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.5335001945495605, "detail": "System.Threading.Thread" } },
- { "pid": 1, "tid": 21, "ts": 3484495.1171875, "dur": 376.5000104904175, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3765000104904175, "detail": "System.Threading.ThreadAbortException" } },
- { "pid": 1, "tid": 21, "ts": 3484871.826171875, "dur": 1118.7000274658203, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1187000274658203, "detail": "System.Threading.ThreadHelper" } },
- { "pid": 1, "tid": 21, "ts": 3485992.1875, "dur": 395.3000009059906, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3953000009059906, "detail": "System.Threading.ThreadInterruptedException" } },
- { "pid": 1, "tid": 21, "ts": 3486387.6953125, "dur": 2818.7999725341797, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.8187999725341797, "detail": "System.Threading.ThreadPool" } },
- { "pid": 1, "tid": 21, "ts": 3489364.013671875, "dur": 1270.2000141143799, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2702000141143799, "detail": "System.Threading.Tasks.ThreadPoolTaskScheduler" } },
- { "pid": 1, "tid": 21, "ts": 3490635.009765625, "dur": 3640.3000354766846, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.6403000354766846, "detail": "System.Threading.ThreadPoolWorkQueue" } },
- { "pid": 1, "tid": 21, "ts": 3494277.587890625, "dur": 914.900004863739, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.914900004863739, "detail": "System.Threading.ThreadPoolWorkQueueThreadLocals" } },
- { "pid": 1, "tid": 21, "ts": 3495541.50390625, "dur": 646.0999846458435, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6460999846458435, "detail": "System.Threading.ThreadStateException" } },
- { "pid": 1, "tid": 21, "ts": 3496269.53125, "dur": 3248.8999366760254, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.2488999366760254, "detail": "System.ThrowHelper" } },
- { "pid": 1, "tid": 21, "ts": 3499627.197265625, "dur": 10985.199928283691, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.985199928283691, "detail": "System.TimeSpan" } },
- { "pid": 1, "tid": 21, "ts": 3510613.28125, "dur": 5335.899829864502, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.335899829864502, "detail": "System.Globalization.TimeSpanFormat" } },
- { "pid": 1, "tid": 21, "ts": 3515950.1953125, "dur": 456.2999904155731, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4562999904155731, "detail": "System.TimeType" } },
- { "pid": 1, "tid": 21, "ts": 3516407.470703125, "dur": 471.19998931884766, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.47119998931884766, "detail": "System.TimeZone" } },
- { "pid": 1, "tid": 21, "ts": 3516879.638671875, "dur": 338567.81005859375, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 338.56781005859375, "detail": "System.TimeZoneInfo" } },
- { "pid": 1, "tid": 21, "ts": 3855454.1015625, "dur": 34580.997467041016, "ph": "X", "name": "mscorlib13.cpp", "args": { "durationMS": 34.580997467041016, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 3890051.025390625, "dur": 28703.500747680664, "ph": "X", "name": "Idle", "args": { "durationMS": 28.703500747680664, "detail": "" } },
- { "pid": 1, "tid": 22, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 22, "ts": 1719192.7490234375, "dur": 11957.6997756958, "ph": "X", "name": "Idle", "args": { "durationMS": 11.9576997756958, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 1844838.134765625, "dur": 3255.3999423980713, "ph": "X", "name": "Write Assembly", "args": { "durationMS": 3.2553999423980713, "detail": "System.Core" } },
- { "pid": 1, "tid": 22, "ts": 1848995.2392578125, "dur": 177641.7999267578, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 177.6417999267578, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 22, "ts": 1850099.2431640625, "dur": 176537.09411621094, "ph": "X", "name": "UnityEngine.CoreModule_Attr.cpp", "args": { "durationMS": 176.53709411621094, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 2026649.169921875, "dur": 26864.79949951172, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 26.86479949951172, "detail": "UnityEngine.TextRenderingModule" } },
- { "pid": 1, "tid": 22, "ts": 2026668.45703125, "dur": 26844.900131225586, "ph": "X", "name": "UnityEngine.TextRenderingModule_Attr.cpp", "args": { "durationMS": 26.844900131225586, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 2053519.04296875, "dur": 33935.19973754883, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 33.93519973754883, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 22, "ts": 2053808.349609375, "dur": 33644.8974609375, "ph": "X", "name": "UnityEngine.UI_Attr.cpp", "args": { "durationMS": 33.6448974609375, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 2089880.126953125, "dur": 90462.89825439453, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 90.46289825439453, "detail": "UnityEngine.AudioClip" } },
- { "pid": 1, "tid": 22, "ts": 2180343.994140625, "dur": 666.9999957084656, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6669999957084656, "detail": "UnityEngine.Audio.AudioClipPlayable" } },
- { "pid": 1, "tid": 22, "ts": 2181027.34375, "dur": 3125.499963760376, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.125499963760376, "detail": "UnityEngine.Audio.AudioMixerPlayable" } },
- { "pid": 1, "tid": 22, "ts": 2184188.4765625, "dur": 629.4000148773193, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6294000148773193, "detail": "UnityEngine.Experimental.Audio.AudioSampleProvider" } },
- { "pid": 1, "tid": 22, "ts": 2184818.84765625, "dur": 27924.90005493164, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 27.92490005493164, "detail": "UnityEngine.AudioSettings" } },
- { "pid": 1, "tid": 22, "ts": 2212745.1171875, "dur": 838.5000228881836, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8385000228881836, "detail": "UnityEngine.AudioSource" } },
- { "pid": 1, "tid": 22, "ts": 2213584.47265625, "dur": 53481.40335083008, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 53.48140335083008, "detail": "UnityEngine.AudioClip/PCMReaderCallback" } },
- { "pid": 1, "tid": 22, "ts": 2267066.89453125, "dur": 1551.900029182434, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.551900029182434, "detail": "UnityEngine.AudioClip/PCMSetPositionCallback" } },
- { "pid": 1, "tid": 22, "ts": 2268620.361328125, "dur": 584.9999785423279, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5849999785423279, "detail": "UnityEngine.Experimental.Audio.AudioSampleProvider/SampleFramesHandler" } },
- { "pid": 1, "tid": 22, "ts": 2269206.298828125, "dur": 454.6999931335449, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4546999931335449, "detail": "UnityEngine.AudioSettings/AudioConfigurationChangeHandler" } },
- { "pid": 1, "tid": 22, "ts": 2269663.330078125, "dur": 6510.900020599365, "ph": "X", "name": "UnityEngine.AudioModule.cpp", "args": { "durationMS": 6.510900020599365, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 2276319.3359375, "dur": 1004.09996509552, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.00409996509552, "detail": "System.Configuration.ConfigurationElement" } },
- { "pid": 1, "tid": 22, "ts": 2277467.28515625, "dur": 548.30002784729, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.54830002784729, "detail": "System.Configuration.ConfigurationSection" } },
- { "pid": 1, "tid": 22, "ts": 2278026.611328125, "dur": 2174.9000549316406, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1749000549316406, "detail": "System.Configuration.IgnoreSection" } },
- { "pid": 1, "tid": 22, "ts": 2280373.779296875, "dur": 2710.099935531616, "ph": "X", "name": "System.Configuration.cpp", "args": { "durationMS": 2.710099935531616, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 2283104.248046875, "dur": 6768.700122833252, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.768700122833252, "detail": "UnityEngine.UI.LayoutElement" } },
- { "pid": 1, "tid": 22, "ts": 2289874.0234375, "dur": 25122.600555419922, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 25.122600555419922, "detail": "UnityEngine.UI.LayoutGroup" } },
- { "pid": 1, "tid": 22, "ts": 2314998.291015625, "dur": 24431.99920654297, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 24.43199920654297, "detail": "UnityEngine.UI.LayoutRebuilder" } },
- { "pid": 1, "tid": 22, "ts": 2339431.640625, "dur": 7695.199966430664, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.695199966430664, "detail": "UnityEngine.UI.LayoutUtility" } },
- { "pid": 1, "tid": 22, "ts": 2347128.41796875, "dur": 8171.699523925781, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.171699523925781, "detail": "UnityEngine.UI.Mask" } },
- { "pid": 1, "tid": 22, "ts": 2355300.78125, "dur": 11755.10025024414, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.75510025024414, "detail": "UnityEngine.UI.MaskUtilities" } },
- { "pid": 1, "tid": 22, "ts": 2367057.12890625, "dur": 27285.999298095703, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 27.285999298095703, "detail": "UnityEngine.UI.MaskableGraphic" } },
- { "pid": 1, "tid": 22, "ts": 2394344.482421875, "dur": 3112.99991607666, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.11299991607666, "detail": "UnityEngine.UI.Misc" } },
- { "pid": 1, "tid": 22, "ts": 2397469.7265625, "dur": 2445.199966430664, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.445199966430664, "detail": "UnityEngine.UI.MultipleDisplayUtilities" } },
- { "pid": 1, "tid": 22, "ts": 2399915.52734375, "dur": 3812.000036239624, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.812000036239624, "detail": "UnityEngine.UI.Navigation" } },
- { "pid": 1, "tid": 22, "ts": 2403728.515625, "dur": 2018.899917602539, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.018899917602539, "detail": "UnityEngine.UI.Outline" } },
- { "pid": 1, "tid": 22, "ts": 2405748.53515625, "dur": 3264.1000747680664, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.2641000747680664, "detail": "UnityEngine.EventSystems.Physics2DRaycaster" } },
- { "pid": 1, "tid": 22, "ts": 2409013.916015625, "dur": 5686.299800872803, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.686299800872803, "detail": "UnityEngine.EventSystems.PhysicsRaycaster" } },
- { "pid": 1, "tid": 22, "ts": 2414701.171875, "dur": 12991.700172424316, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.991700172424316, "detail": "UnityEngine.EventSystems.PointerEventData" } },
- { "pid": 1, "tid": 22, "ts": 2427693.84765625, "dur": 11353.19995880127, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.35319995880127, "detail": "UnityEngine.EventSystems.PointerInputModule" } },
- { "pid": 1, "tid": 22, "ts": 2439048.095703125, "dur": 924.1999983787537, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9241999983787537, "detail": "UnityEngine.UI.PositionAsUV1" } },
- { "pid": 1, "tid": 22, "ts": 2439973.6328125, "dur": 4984.200000762939, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.9842000007629395, "detail": "UnityEngine.UI.RawImage" } },
- { "pid": 1, "tid": 22, "ts": 2444958.740234375, "dur": 3319.000005722046, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.319000005722046, "detail": "UnityEngine.EventSystems.RaycastResult" } },
- { "pid": 1, "tid": 22, "ts": 2448279.052734375, "dur": 1727.9000282287598, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7279000282287598, "detail": "UnityEngine.EventSystems.RaycasterManager" } },
- { "pid": 1, "tid": 22, "ts": 2450008.056640625, "dur": 11609.999656677246, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.609999656677246, "detail": "UnityEngine.UI.RectMask2D" } },
- { "pid": 1, "tid": 22, "ts": 2461618.896484375, "dur": 1341.8999910354614, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3418999910354614, "detail": "UnityEngine.UI.RectangularVertexClipper" } },
- { "pid": 1, "tid": 22, "ts": 2462961.669921875, "dur": 4567.800045013428, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.567800045013428, "detail": "UnityEngine.UI.ReflectionMethodsCache" } },
- { "pid": 1, "tid": 22, "ts": 2467530.76171875, "dur": 71048.79760742188, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 71.04879760742188, "detail": "UnityEngine.UI.ScrollRect" } },
- { "pid": 1, "tid": 22, "ts": 2538581.0546875, "dur": 14788.300514221191, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.788300514221191, "detail": "UnityEngine.UI.Scrollbar" } },
- { "pid": 1, "tid": 22, "ts": 2553372.0703125, "dur": 50919.99816894531, "ph": "X", "name": "UnityEngine.UI2.cpp", "args": { "durationMS": 50.91999816894531, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 2604310.546875, "dur": 1806.5999746322632, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8065999746322632, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>" } },
- { "pid": 1, "tid": 22, "ts": 2606119.62890625, "dur": 3361.0999584198, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.3610999584198, "detail": "System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 22, "ts": 2609482.177734375, "dur": 1997.5999593734741, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9975999593734741, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 22, "ts": 2611482.421875, "dur": 32713.199615478516, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 32.713199615478516, "detail": "System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 22, "ts": 2644197.998046875, "dur": 8376.00040435791, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 8.37600040435791, "detail": "System.Collections.Generic.EqualityComparer`1<System.Boolean>" } },
- { "pid": 1, "tid": 22, "ts": 2652577.880859375, "dur": 4167.799949645996, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.167799949645996, "detail": "System.Collections.Generic.EqualityComparer`1<System.Byte>" } },
- { "pid": 1, "tid": 22, "ts": 2656748.046875, "dur": 3941.0998821258545, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.9410998821258545, "detail": "System.Collections.Generic.EqualityComparer`1<System.Char>" } },
- { "pid": 1, "tid": 22, "ts": 2660691.162109375, "dur": 4071.5999603271484, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.071599960327148, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 22, "ts": 2664764.404296875, "dur": 5096.399784088135, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.096399784088135, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.ColorBlock>" } },
- { "pid": 1, "tid": 22, "ts": 2669862.548828125, "dur": 3886.1000537872314, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.8861000537872314, "detail": "System.Collections.Generic.EqualityComparer`1<System.Int32>" } },
- { "pid": 1, "tid": 22, "ts": 2673750.244140625, "dur": 15866.701126098633, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 15.866701126098633, "detail": "System.Collections.Generic.EqualityComparer`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 22, "ts": 2689619.384765625, "dur": 4590.099811553955, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.590099811553955, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Navigation>" } },
- { "pid": 1, "tid": 22, "ts": 2694211.181640625, "dur": 43818.40133666992, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 43.81840133666992, "detail": "System.Collections.Generic.EqualityComparer`1<System.Object>" } },
- { "pid": 1, "tid": 22, "ts": 2738031.25, "dur": 3965.60001373291, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.96560001373291, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 22, "ts": 2741998.291015625, "dur": 3272.599935531616, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.272599935531616, "detail": "System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 22, "ts": 2745272.216796875, "dur": 3214.6999835968018, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.2146999835968018, "detail": "System.Collections.Generic.EqualityComparer`1<System.Single>" } },
- { "pid": 1, "tid": 22, "ts": 2748488.525390625, "dur": 3712.8000259399414, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.7128000259399414, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.SpriteState>" } },
- { "pid": 1, "tid": 22, "ts": 2752202.63671875, "dur": 5576.499938964844, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.576499938964844, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 22, "ts": 2757780.76171875, "dur": 4070.0998306274414, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.070099830627441, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 22, "ts": 2761852.294921875, "dur": 14809.200286865234, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 14.809200286865234, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 22, "ts": 2776663.57421875, "dur": 4303.400039672852, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.303400039672852, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 22, "ts": 2780969.482421875, "dur": 43588.0012512207, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 43.5880012512207, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 22, "ts": 2824560.05859375, "dur": 3746.2000846862793, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.7462000846862793, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 22, "ts": 2828308.10546875, "dur": 4887.400150299072, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.887400150299072, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 22, "ts": 2833197.998046875, "dur": 3991.100072860718, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.9911000728607178, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 22, "ts": 2837190.91796875, "dur": 553.9000034332275, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5539000034332275, "detail": "UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<System.Object>" } },
- { "pid": 1, "tid": 22, "ts": 2837746.58203125, "dur": 500.1000165939331, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5001000165939331, "detail": "System.EventHandler`1<System.Object>" } },
- { "pid": 1, "tid": 22, "ts": 2838247.55859375, "dur": 37137.59994506836, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 37.13759994506836, "detail": "System.IO.FileSystemEnumerableIterator`1<System.Object>" } },
- { "pid": 1, "tid": 22, "ts": 2875386.962890625, "dur": 440.4999911785126, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4404999911785126, "detail": "System.Func`1<System.Boolean>" } },
- { "pid": 1, "tid": 22, "ts": 2875828.369140625, "dur": 397.39999175071716, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.39739999175071716, "detail": "System.Func`1<System.Int32>" } },
- { "pid": 1, "tid": 22, "ts": 2876226.806640625, "dur": 398.499995470047, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.398499995470047, "detail": "System.Func`1<System.Object>" } },
- { "pid": 1, "tid": 22, "ts": 2876626.46484375, "dur": 411.3999903202057, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4113999903202057, "detail": "System.Func`1<System.Threading.Tasks.VoidTaskResult>" } },
- { "pid": 1, "tid": 22, "ts": 2877039.306640625, "dur": 483.7000072002411, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4837000072002411, "detail": "System.Func`2<System.Object,System.Boolean>" } },
- { "pid": 1, "tid": 22, "ts": 2877524.169921875, "dur": 457.19999074935913, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.45719999074935913, "detail": "System.Func`2<System.Object,System.Int32>" } },
- { "pid": 1, "tid": 22, "ts": 2877982.421875, "dur": 490.2999997138977, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4902999997138977, "detail": "System.Func`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 22, "ts": 2878474.12109375, "dur": 463.89999985694885, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.46389999985694885, "detail": "System.Func`2<System.Object,System.Single>" } },
- { "pid": 1, "tid": 22, "ts": 2878939.453125, "dur": 518.999993801117, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5189999938011169, "detail": "System.Func`2<System.Object,System.Threading.Tasks.VoidTaskResult>" } },
- { "pid": 1, "tid": 22, "ts": 2879460.44921875, "dur": 479.99998927116394, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.47999998927116394, "detail": "System.Func`3<System.Int32,System.IntPtr,System.Boolean>" } },
- { "pid": 1, "tid": 22, "ts": 2879941.40625, "dur": 518.7000036239624, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5187000036239624, "detail": "System.Func`3<System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 22, "ts": 2880461.669921875, "dur": 588.5999798774719, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5885999798774719, "detail": "System.Func`4<System.Object,System.Object,System.Boolean,System.Object>" } },
- { "pid": 1, "tid": 22, "ts": 2881051.7578125, "dur": 579.800009727478, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.579800009727478, "detail": "System.Func`4<System.Object,System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 22, "ts": 2881632.8125, "dur": 708.5000276565552, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7085000276565552, "detail": "System.Collections.Generic.GenericComparer`1<System.Int32>" } },
- { "pid": 1, "tid": 22, "ts": 2882342.529296875, "dur": 695.5000162124634, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6955000162124634, "detail": "System.Collections.Generic.GenericComparer`1<System.Object>" } },
- { "pid": 1, "tid": 22, "ts": 2883039.306640625, "dur": 673.6999750137329, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6736999750137329, "detail": "System.Collections.Generic.GenericComparer`1<System.UInt64>" } },
- { "pid": 1, "tid": 22, "ts": 2883714.84375, "dur": 1777.0999670028687, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7770999670028687, "detail": "System.Collections.Generic.GenericEqualityComparer`1<System.Boolean>" } },
- { "pid": 1, "tid": 22, "ts": 2885493.896484375, "dur": 1718.6000347137451, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7186000347137451, "detail": "System.Collections.Generic.GenericEqualityComparer`1<System.Byte>" } },
- { "pid": 1, "tid": 22, "ts": 2887214.599609375, "dur": 1905.6999683380127, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9056999683380127, "detail": "System.Collections.Generic.GenericEqualityComparer`1<System.Char>" } },
- { "pid": 1, "tid": 22, "ts": 2889122.314453125, "dur": 1746.999979019165, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.746999979019165, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.ColorBlock>" } },
- { "pid": 1, "tid": 22, "ts": 2890871.09375, "dur": 1809.9000453948975, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8099000453948975, "detail": "System.Collections.Generic.GenericEqualityComparer`1<System.Int32>" } },
- { "pid": 1, "tid": 22, "ts": 2892683.349609375, "dur": 1864.5999431610107, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8645999431610107, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.Navigation>" } },
- { "pid": 1, "tid": 22, "ts": 2894549.31640625, "dur": 1870.4999685287476, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8704999685287476, "detail": "System.Collections.Generic.GenericEqualityComparer`1<System.Object>" } },
- { "pid": 1, "tid": 22, "ts": 2896421.630859375, "dur": 1782.5000286102295, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7825000286102295, "detail": "System.Collections.Generic.GenericEqualityComparer`1<System.Single>" } },
- { "pid": 1, "tid": 22, "ts": 2898205.810546875, "dur": 1829.5999765396118, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8295999765396118, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.SpriteState>" } },
- { "pid": 1, "tid": 22, "ts": 2900037.109375, "dur": 1781.499981880188, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.781499981880188, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 22, "ts": 2901820.068359375, "dur": 1777.1999835968018, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7771999835968018, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 22, "ts": 2903598.6328125, "dur": 517.5999999046326, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5175999999046326, "detail": "System.Reflection.MonoProperty/Getter`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 22, "ts": 2904118.1640625, "dur": 9748.600006103516, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 9.748600006103516, "detail": "System.Collections.Generic.HashSet`1<System.Object>" } },
- { "pid": 1, "tid": 22, "ts": 2913867.919921875, "dur": 568.4000253677368, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5684000253677368, "detail": "System.Collections.Generic.ICollectionDebugView`1<System.Object>" } },
- { "pid": 1, "tid": 22, "ts": 2914444.580078125, "dur": 556.5000176429749, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5565000176429749, "detail": "System.Collections.Generic.ICollectionDebugView`1<System.Object>" } },
- { "pid": 1, "tid": 22, "ts": 2915943.603515625, "dur": 1896.9000577926636, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8969000577926636, "detail": "System.Collections.Concurrent.IDictionaryDebugView`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 22, "ts": 2917842.041015625, "dur": 561.6000294685364, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5616000294685364, "detail": "System.Collections.Generic.IDictionaryDebugView`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 22, "ts": 2918661.376953125, "dur": 404.1000008583069, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4041000008583069, "detail": "System.Collections.Generic.IEnumerable`1<System.Globalization.UmAlQuraCalendar/DateMapping>" } },
- { "pid": 1, "tid": 22, "ts": 2920954.1015625, "dur": 7484.799861907959, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.484799861907959, "detail": "UnityEngine.UI.Collections.IndexedSet`1<System.Object>" } },
- { "pid": 1, "tid": 22, "ts": 2928442.138671875, "dur": 1597.2000360488892, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5972000360488892, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>" } },
- { "pid": 1, "tid": 22, "ts": 2930041.9921875, "dur": 2280.2999019622803, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.2802999019622803, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>" } },
- { "pid": 1, "tid": 22, "ts": 2932324.21875, "dur": 2011.699914932251, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.011699914932251, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>" } },
- { "pid": 1, "tid": 22, "ts": 2934337.890625, "dur": 2250.2999305725098, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.2502999305725098, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>" } },
- { "pid": 1, "tid": 22, "ts": 2936591.796875, "dur": 1692.3999786376953, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6923999786376953, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 22, "ts": 2938286.376953125, "dur": 1588.2999897003174, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5882999897003174, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>" } },
- { "pid": 1, "tid": 22, "ts": 2939876.46484375, "dur": 2363.600015640259, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.363600015640259, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>" } },
- { "pid": 1, "tid": 22, "ts": 2942242.1875, "dur": 2036.2000465393066, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.0362000465393066, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>" } },
- { "pid": 1, "tid": 22, "ts": 2944280.517578125, "dur": 1514.6000385284424, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5146000385284424, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>" } },
- { "pid": 1, "tid": 22, "ts": 2945796.38671875, "dur": 1746.0999488830566, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7460999488830566, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>" } },
- { "pid": 1, "tid": 22, "ts": 2947544.677734375, "dur": 1475.9000539779663, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4759000539779663, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>" } },
- { "pid": 1, "tid": 22, "ts": 2949021.97265625, "dur": 1543.6999797821045, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5436999797821045, "detail": "System.Array/InternalEnumerator`1<System.Boolean>" } },
- { "pid": 1, "tid": 22, "ts": 2950567.626953125, "dur": 1413.699984550476, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.413699984550476, "detail": "System.Array/InternalEnumerator`1<System.Byte>" } },
- { "pid": 1, "tid": 22, "ts": 2951983.154296875, "dur": 2642.199993133545, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.642199993133545, "detail": "System.Array/InternalEnumerator`1<System.Threading.CancellationTokenRegistration>" } },
- { "pid": 1, "tid": 22, "ts": 2954627.44140625, "dur": 1727.6999950408936, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7276999950408936, "detail": "System.Array/InternalEnumerator`1<System.Char>" } },
- { "pid": 1, "tid": 22, "ts": 2956357.177734375, "dur": 1753.9000511169434, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7539000511169434, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 22, "ts": 2958114.2578125, "dur": 34583.396911621094, "ph": "X", "name": "Generics2.cpp", "args": { "durationMS": 34.583396911621094, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 2992717.529296875, "dur": 10127.300262451172, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.127300262451172, "detail": "System.IO.BinaryReader" } },
- { "pid": 1, "tid": 22, "ts": 3002856.93359375, "dur": 5850.200176239014, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.850200176239014, "detail": "System.IO.BinaryWriter" } },
- { "pid": 1, "tid": 22, "ts": 3008707.51953125, "dur": 823.4000205993652, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8234000205993652, "detail": "System.Reflection.Binder" } },
- { "pid": 1, "tid": 22, "ts": 3009542.236328125, "dur": 4883.900165557861, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.883900165557861, "detail": "System.BitConverter" } },
- { "pid": 1, "tid": 22, "ts": 3014426.7578125, "dur": 1780.3000211715698, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7803000211715698, "detail": "Mono.Security.BitConverterLE" } },
- { "pid": 1, "tid": 22, "ts": 3016208.0078125, "dur": 5355.599880218506, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.355599880218506, "detail": "System.Boolean" } },
- { "pid": 1, "tid": 22, "ts": 3021564.208984375, "dur": 4809.4000816345215, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.8094000816345215, "detail": "System.Globalization.Bootstring" } },
- { "pid": 1, "tid": 22, "ts": 3026374.755859375, "dur": 4325.600147247314, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.3256001472473145, "detail": "System.Buffer" } },
- { "pid": 1, "tid": 22, "ts": 3030701.171875, "dur": 4649.600028991699, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.649600028991699, "detail": "System.Byte" } },
- { "pid": 1, "tid": 22, "ts": 3035362.060546875, "dur": 1449.8000144958496, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4498000144958496, "detail": "System.Collections.Generic.ByteEqualityComparer" } },
- { "pid": 1, "tid": 22, "ts": 3036812.98828125, "dur": 1462.9000425338745, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4629000425338745, "detail": "System.ByteMatcher" } },
- { "pid": 1, "tid": 22, "ts": 3038377.9296875, "dur": 6107.800006866455, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.107800006866455, "detail": "System.Runtime.Remoting.Messaging.CADMessageBase" } },
- { "pid": 1, "tid": 22, "ts": 3044486.572265625, "dur": 975.3999710083008, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9753999710083008, "detail": "System.Runtime.Remoting.Messaging.CADMethodCallMessage" } },
- { "pid": 1, "tid": 22, "ts": 3045462.890625, "dur": 2286.4999771118164, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.2864999771118164, "detail": "System.Runtime.Remoting.Messaging.CADMethodRef" } },
- { "pid": 1, "tid": 22, "ts": 3047750, "dur": 1440.2999877929688, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4402999877929688, "detail": "System.Runtime.Remoting.Messaging.CADMethodReturnMessage" } },
- { "pid": 1, "tid": 22, "ts": 3049335.44921875, "dur": 897.599995136261, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.897599995136261, "detail": "System.Runtime.Remoting.Channels.CADSerializer" } },
- { "pid": 1, "tid": 22, "ts": 3050635.009765625, "dur": 1036.5999937057495, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0365999937057495, "detail": "System.Runtime.InteropServices.COMException" } },
- { "pid": 1, "tid": 22, "ts": 3051672.36328125, "dur": 2125.6000995635986, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1256000995635986, "detail": "System.IO.CStreamReader" } },
- { "pid": 1, "tid": 22, "ts": 3053798.828125, "dur": 2828.9999961853027, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.8289999961853027, "detail": "System.IO.CStreamWriter" } },
- { "pid": 1, "tid": 22, "ts": 3056628.662109375, "dur": 9236.800193786621, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.236800193786621, "detail": "System.Globalization.Calendar" } },
- { "pid": 1, "tid": 22, "ts": 3065866.943359375, "dur": 7595.4999923706055, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.5954999923706055, "detail": "System.Globalization.CalendarData" } },
- { "pid": 1, "tid": 22, "ts": 3073753.41796875, "dur": 457.50001072883606, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.45750001072883606, "detail": "System.Runtime.Remoting.Messaging.CallContextRemotingData" } },
- { "pid": 1, "tid": 22, "ts": 3074815.91796875, "dur": 675.1000285148621, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6751000285148621, "detail": "System.Threading.CancellationCallbackInfo" } },
- { "pid": 1, "tid": 22, "ts": 3075491.943359375, "dur": 13425.100326538086, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.425100326538086, "detail": "System.Threading.CancellationToken" } },
- { "pid": 1, "tid": 22, "ts": 3088917.48046875, "dur": 3218.8000679016113, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.2188000679016113, "detail": "System.Threading.CancellationTokenRegistration" } },
- { "pid": 1, "tid": 22, "ts": 3092137.20703125, "dur": 8286.299705505371, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.286299705505371, "detail": "System.Threading.CancellationTokenSource" } },
- { "pid": 1, "tid": 22, "ts": 3100424.560546875, "dur": 487.199991941452, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.487199991941452, "detail": "System.CannotUnloadAppDomainException" } },
- { "pid": 1, "tid": 22, "ts": 3100912.841796875, "dur": 787.1000170707703, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7871000170707703, "detail": "System.Collections.CaseInsensitiveComparer" } },
- { "pid": 1, "tid": 22, "ts": 3101700.68359375, "dur": 952.6000022888184, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9526000022888184, "detail": "System.Collections.CaseInsensitiveHashCodeProvider" } },
- { "pid": 1, "tid": 22, "ts": 3102680.6640625, "dur": 1918.0999994277954, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9180999994277954, "detail": "System.Runtime.Remoting.ChannelData" } },
- { "pid": 1, "tid": 22, "ts": 3104932.6171875, "dur": 14697.999954223633, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.697999954223633, "detail": "System.Runtime.Remoting.Channels.ChannelServices" } },
- { "pid": 1, "tid": 22, "ts": 3119631.103515625, "dur": 10973.299980163574, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.973299980163574, "detail": "System.Char" } },
- { "pid": 1, "tid": 22, "ts": 3130605.46875, "dur": 1190.500020980835, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.190500020980835, "detail": "System.CharEnumerator" } },
- { "pid": 1, "tid": 22, "ts": 3131807.6171875, "dur": 2671.999931335449, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.671999931335449, "detail": "System.Globalization.CharUnicodeInfo" } },
- { "pid": 1, "tid": 22, "ts": 3134624.267578125, "dur": 1338.5000228881836, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3385000228881836, "detail": "System.Runtime.Remoting.ClientActivatedIdentity" } },
- { "pid": 1, "tid": 22, "ts": 3135963.623046875, "dur": 984.8999977111816, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9848999977111816, "detail": "System.Runtime.Remoting.Messaging.ClientContextReplySink" } },
- { "pid": 1, "tid": 22, "ts": 3136949.21875, "dur": 1227.9000282287598, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2279000282287598, "detail": "System.Runtime.Remoting.Messaging.ClientContextTerminatorSink" } },
- { "pid": 1, "tid": 22, "ts": 3138177.734375, "dur": 860.0999712944031, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8600999712944031, "detail": "System.Runtime.Remoting.ClientIdentity" } },
- { "pid": 1, "tid": 22, "ts": 3139038.818359375, "dur": 344.39998865127563, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.34439998865127563, "detail": "System.Globalization.CodePageDataItem" } },
- { "pid": 1, "tid": 22, "ts": 3139383.7890625, "dur": 1106.600046157837, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.106600046157837, "detail": "Mono.Globalization.Unicode.CodePointIndexer" } },
- { "pid": 1, "tid": 22, "ts": 3141104.736328125, "dur": 18782.19985961914, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.78219985961914, "detail": "System.Globalization.CompareInfo" } },
- { "pid": 1, "tid": 22, "ts": 3159897.4609375, "dur": 2339.200019836426, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.339200019836426, "detail": "System.Collections.Comparer" } },
- { "pid": 1, "tid": 22, "ts": 3162248.291015625, "dur": 1046.0000038146973, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0460000038146973, "detail": "System.Collections.CompatibleComparer" } },
- { "pid": 1, "tid": 22, "ts": 3164106.93359375, "dur": 36977.500915527344, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 36.977500915527344, "detail": "System.Runtime.Remoting.ConfigHandler" } },
- { "pid": 1, "tid": 22, "ts": 3201087.890625, "dur": 100735.30578613281, "ph": "X", "name": "mscorlib1.cpp", "args": { "durationMS": 100.73530578613281, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 3301840.8203125, "dur": 5102.90002822876, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.10290002822876, "detail": "System.Globalization.NumberFormatInfo" } },
- { "pid": 1, "tid": 22, "ts": 3306944.3359375, "dur": 40657.901763916016, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 40.657901763916016, "detail": "System.NumberFormatter" } },
- { "pid": 1, "tid": 22, "ts": 3347613.76953125, "dur": 15440.70053100586, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.44070053100586, "detail": "System.Threading.OSSpecificSynchronizationContext" } },
- { "pid": 1, "tid": 22, "ts": 3363055.17578125, "dur": 3837.5000953674316, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.8375000953674316, "detail": "System.Runtime.Remoting.ObjRef" } },
- { "pid": 1, "tid": 22, "ts": 3366893.5546875, "dur": 732.699990272522, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.732699990272522, "detail": "System.Runtime.Remoting.Messaging.ObjRefSurrogate" } },
- { "pid": 1, "tid": 22, "ts": 3367627.197265625, "dur": 816.7999982833862, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8167999982833862, "detail": "System.Object" } },
- { "pid": 1, "tid": 22, "ts": 3368444.82421875, "dur": 2963.599920272827, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.963599920272827, "detail": "System.ObjectDisposedException" } },
- { "pid": 1, "tid": 22, "ts": 3371416.748046875, "dur": 597.5000262260437, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5975000262260437, "detail": "System.Collections.Generic.ObjectEqualityComparer" } },
- { "pid": 1, "tid": 22, "ts": 3372015.13671875, "dur": 5849.899768829346, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.849899768829346, "detail": "System.Runtime.Serialization.ObjectHolder" } },
- { "pid": 1, "tid": 22, "ts": 3377865.478515625, "dur": 921.1000204086304, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9211000204086304, "detail": "System.Runtime.Serialization.ObjectHolderList" } },
- { "pid": 1, "tid": 22, "ts": 3378787.59765625, "dur": 546.1000204086304, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5461000204086304, "detail": "System.Runtime.Serialization.ObjectHolderListEnumerator" } },
- { "pid": 1, "tid": 22, "ts": 3379334.228515625, "dur": 2121.299982070923, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.121299982070923, "detail": "System.Runtime.Serialization.ObjectIDGenerator" } },
- { "pid": 1, "tid": 22, "ts": 3381456.54296875, "dur": 14962.499618530273, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.962499618530273, "detail": "System.Runtime.Serialization.ObjectManager" } },
- { "pid": 1, "tid": 22, "ts": 3396419.921875, "dur": 1760.3000402450562, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7603000402450562, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectMap" } },
- { "pid": 1, "tid": 22, "ts": 3398181.15234375, "dur": 504.0000081062317, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5040000081062317, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectMapInfo" } },
- { "pid": 1, "tid": 22, "ts": 3398685.791015625, "dur": 1131.00004196167, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.13100004196167, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectNull" } },
- { "pid": 1, "tid": 22, "ts": 3399817.626953125, "dur": 1077.7000188827515, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0777000188827515, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectProgress" } },
- { "pid": 1, "tid": 22, "ts": 3400895.99609375, "dur": 35798.40087890625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 35.79840087890625, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectReader" } },
- { "pid": 1, "tid": 22, "ts": 3436695.556640625, "dur": 15326.600074768066, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.326600074768066, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectWriter" } },
- { "pid": 1, "tid": 22, "ts": 3452024.4140625, "dur": 36102.10037231445, "ph": "X", "name": "mscorlib8.cpp", "args": { "durationMS": 36.10210037231445, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 3488158.935546875, "dur": 500.8000135421753, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5008000135421753, "detail": "System.TimeZoneNotFoundException" } },
- { "pid": 1, "tid": 22, "ts": 3489040.771484375, "dur": 1533.9000225067139, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5339000225067139, "detail": "System.Threading.Timer" } },
- { "pid": 1, "tid": 22, "ts": 3491028.564453125, "dur": 2080.4998874664307, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0804998874664307, "detail": "System.Runtime.Remoting.Services.TrackingServices" } },
- { "pid": 1, "tid": 22, "ts": 3493111.328125, "dur": 2193.3999061584473, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1933999061584473, "detail": "System.Runtime.Remoting.Proxies.TransparentProxy" } },
- { "pid": 1, "tid": 22, "ts": 3495507.080078125, "dur": 30642.099380493164, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 30.642099380493164, "detail": "System.Type" } },
- { "pid": 1, "tid": 22, "ts": 3526160.888671875, "dur": 2880.199909210205, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.880199909210205, "detail": "System.Reflection.Emit.TypeBuilder" } },
- { "pid": 1, "tid": 22, "ts": 3529627.197265625, "dur": 392.8000032901764, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3928000032901764, "detail": "System.Reflection.TypeFilter" } },
- { "pid": 1, "tid": 22, "ts": 3530507.8125, "dur": 1620.5999851226807, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6205999851226807, "detail": "System.Runtime.Remoting.TypeInfo" } },
- { "pid": 1, "tid": 22, "ts": 3532396.240234375, "dur": 3474.9999046325684, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.4749999046325684, "detail": "System.TypeInitializationException" } },
- { "pid": 1, "tid": 22, "ts": 3535872.314453125, "dur": 2017.699956893921, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.017699956893921, "detail": "System.TypeLoadException" } },
- { "pid": 1, "tid": 22, "ts": 3538226.318359375, "dur": 67591.8960571289, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 67.5918960571289, "detail": "System.TypeSpec" } },
- { "pid": 1, "tid": 22, "ts": 3605819.82421875, "dur": 3250.200033187866, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.250200033187866, "detail": "System.TypedReference" } },
- { "pid": 1, "tid": 22, "ts": 3609071.2890625, "dur": 5818.79997253418, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.81879997253418, "detail": "System.UInt16" } },
- { "pid": 1, "tid": 22, "ts": 3614899.90234375, "dur": 5712.600231170654, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.712600231170654, "detail": "System.UInt32" } },
- { "pid": 1, "tid": 22, "ts": 3620625.244140625, "dur": 5506.100177764893, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.506100177764893, "detail": "System.UInt64" } },
- { "pid": 1, "tid": 22, "ts": 3626141.357421875, "dur": 1083.6000442504883, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0836000442504883, "detail": "System.UIntPtr" } },
- { "pid": 1, "tid": 22, "ts": 3627225.5859375, "dur": 29908.199310302734, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 29.908199310302734, "detail": "System.Text.UTF32Encoding" } },
- { "pid": 1, "tid": 22, "ts": 3657135.009765625, "dur": 13516.499519348145, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.516499519348145, "detail": "System.Text.UTF7Encoding" } },
- { "pid": 1, "tid": 22, "ts": 3670652.099609375, "dur": 185720.5047607422, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 185.7205047607422, "detail": "System.Text.UTF8Encoding" } },
- { "pid": 1, "tid": 22, "ts": 3856382.8125, "dur": 5271.500110626221, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.271500110626221, "detail": "System.Globalization.UmAlQuraCalendar" } },
- { "pid": 1, "tid": 22, "ts": 3861655.029296875, "dur": 712.4000191688538, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7124000191688538, "detail": "System.UnSafeCharBuffer" } },
- { "pid": 1, "tid": 22, "ts": 3862368.1640625, "dur": 475.40000081062317, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.47540000081062317, "detail": "System.UnauthorizedAccessException" } },
- { "pid": 1, "tid": 22, "ts": 3862844.7265625, "dur": 2267.1000957489014, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.2671000957489014, "detail": "System.IO.UnexceptionalStreamReader" } },
- { "pid": 1, "tid": 22, "ts": 3865119.62890625, "dur": 17187.299728393555, "ph": "X", "name": "mscorlib14.cpp", "args": { "durationMS": 17.187299728393555, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 3882334.228515625, "dur": 36465.599060058594, "ph": "X", "name": "Idle", "args": { "durationMS": 36.465599060058594, "detail": "" } },
- { "pid": 1, "tid": 23, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 23, "ts": 1719293.9453125, "dur": 11815.299987792969, "ph": "X", "name": "Idle", "args": { "durationMS": 11.815299987792969, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 1845164.0625, "dur": 2989.5999431610107, "ph": "X", "name": "Write Assembly", "args": { "durationMS": 2.9895999431610107, "detail": "System.Configuration" } },
- { "pid": 1, "tid": 23, "ts": 1848987.060546875, "dur": 174823.69995117188, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 174.82369995117188, "detail": "System.Core" } },
- { "pid": 1, "tid": 23, "ts": 1850057.9833984375, "dur": 173751.60217285156, "ph": "X", "name": "System.Core_Attr.cpp", "args": { "durationMS": 173.75160217285156, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 2025952.5146484375, "dur": 23662.899017333984, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 23.662899017333984, "detail": "UnityEngine.InputLegacyModule" } },
- { "pid": 1, "tid": 23, "ts": 2025971.3134765625, "dur": 23642.99964904785, "ph": "X", "name": "UnityEngine.InputLegacyModule_Attr.cpp", "args": { "durationMS": 23.64299964904785, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 2049620.361328125, "dur": 13947.501182556152, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 13.947501182556152, "detail": "UnityEngine.AudioModule" } },
- { "pid": 1, "tid": 23, "ts": 2049652.83203125, "dur": 13914.400100708008, "ph": "X", "name": "UnityEngine.AudioModule_Attr.cpp", "args": { "durationMS": 13.914400100708008, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 2074499.755859375, "dur": 5017.799854278564, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.0177998542785645, "detail": "<Module>" } },
- { "pid": 1, "tid": 23, "ts": 2079546.875, "dur": 1084.1000080108643, "ph": "X", "name": "UnityEngine.GridModule.cpp", "args": { "durationMS": 1.0841000080108643, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 2080692.87109375, "dur": 132241.10412597656, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 132.24110412597656, "detail": "UnityEngine.Canvas" } },
- { "pid": 1, "tid": 23, "ts": 2212935.05859375, "dur": 848.6999869346619, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8486999869346619, "detail": "UnityEngine.CanvasGroup" } },
- { "pid": 1, "tid": 23, "ts": 2213784.66796875, "dur": 4062.699794769287, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.062699794769287, "detail": "UnityEngine.CanvasRenderer" } },
- { "pid": 1, "tid": 23, "ts": 2217848.388671875, "dur": 10124.899864196777, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.124899864196777, "detail": "UnityEngine.RectTransformUtility" } },
- { "pid": 1, "tid": 23, "ts": 2228234.375, "dur": 38846.702575683594, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 38.846702575683594, "detail": "UnityEngine.Canvas/WillRenderCanvases" } },
- { "pid": 1, "tid": 23, "ts": 2267098.6328125, "dur": 15444.600105285645, "ph": "X", "name": "UnityEngine.UIModule.cpp", "args": { "durationMS": 15.444600105285645, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 2293822.509765625, "dur": 34034.8014831543, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 34.0348014831543, "detail": "UnityEngine.UI.GraphicRaycaster" } },
- { "pid": 1, "tid": 23, "ts": 2327858.88671875, "dur": 8433.500289916992, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.433500289916992, "detail": "UnityEngine.UI.GraphicRegistry" } },
- { "pid": 1, "tid": 23, "ts": 2336294.189453125, "dur": 23011.600494384766, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 23.011600494384766, "detail": "UnityEngine.UI.GridLayoutGroup" } },
- { "pid": 1, "tid": 23, "ts": 2359307.12890625, "dur": 1269.5000171661377, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2695000171661377, "detail": "UnityEngine.UI.HorizontalLayoutGroup" } },
- { "pid": 1, "tid": 23, "ts": 2360577.63671875, "dur": 19317.100524902344, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 19.317100524902344, "detail": "UnityEngine.UI.HorizontalOrVerticalLayoutGroup" } },
- { "pid": 1, "tid": 23, "ts": 2379896.728515625, "dur": 85741.69921875, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 85.74169921875, "detail": "UnityEngine.UI.Image" } },
- { "pid": 1, "tid": 23, "ts": 2465639.16015625, "dur": 132834.41162109375, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 132.83441162109375, "detail": "UnityEngine.UI.InputField" } },
- { "pid": 1, "tid": 23, "ts": 2598476.07421875, "dur": 96466.40014648438, "ph": "X", "name": "UnityEngine.UI1.cpp", "args": { "durationMS": 96.46640014648438, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 2694962.40234375, "dur": 1871.000051498413, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.871000051498413, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 23, "ts": 2696834.9609375, "dur": 4842.299938201904, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.842299938201904, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 23, "ts": 2701678.7109375, "dur": 1921.7000007629395, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9217000007629395, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 23, "ts": 2703602.05078125, "dur": 1891.8999433517456, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8918999433517456, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 23, "ts": 2705495.361328125, "dur": 2047.3999977111816, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.0473999977111816, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 23, "ts": 2707543.9453125, "dur": 2209.700107574463, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.209700107574463, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 23, "ts": 2709760.498046875, "dur": 1918.0999994277954, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9180999994277954, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 23, "ts": 2711679.6875, "dur": 1935.8999729156494, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9358999729156494, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 23, "ts": 2713617.67578125, "dur": 3160.599946975708, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.160599946975708, "detail": "UnityEngine.UI.ObjectPool`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2716780.2734375, "dur": 596.4000225067139, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5964000225067139, "detail": "System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 23, "ts": 2717378.41796875, "dur": 462.3999893665314, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.46239998936653137, "detail": "System.Predicate`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 23, "ts": 2717841.796875, "dur": 442.2999918460846, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4422999918460846, "detail": "System.Predicate`1<System.Int32>" } },
- { "pid": 1, "tid": 23, "ts": 2718285.400390625, "dur": 446.5000033378601, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4465000033378601, "detail": "System.Predicate`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 23, "ts": 2718732.91015625, "dur": 513.5999917984009, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5135999917984009, "detail": "System.Predicate`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2719248.046875, "dur": 507.60000944137573, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5076000094413757, "detail": "System.Predicate`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 23, "ts": 2719757.080078125, "dur": 490.200012922287, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.490200012922287, "detail": "System.Predicate`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 23, "ts": 2720248.779296875, "dur": 513.8000249862671, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5138000249862671, "detail": "System.Predicate`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 23, "ts": 2720763.671875, "dur": 491.40000343322754, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.49140000343322754, "detail": "System.Predicate`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 23, "ts": 2721256.34765625, "dur": 1280.7999849319458, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2807999849319458, "detail": "System.Predicate`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 23, "ts": 2722538.818359375, "dur": 475.1000106334686, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.47510001063346863, "detail": "System.Predicate`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 23, "ts": 2723015.380859375, "dur": 467.00000762939453, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.46700000762939453, "detail": "System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 23, "ts": 2723483.88671875, "dur": 465.40001034736633, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.46540001034736633, "detail": "System.Predicate`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 23, "ts": 2723950.439453125, "dur": 470.6999957561493, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4706999957561493, "detail": "System.Predicate`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 23, "ts": 2724422.8515625, "dur": 5743.400096893311, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.7434000968933105, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>" } },
- { "pid": 1, "tid": 23, "ts": 2730167.724609375, "dur": 6799.900054931641, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.799900054931641, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>" } },
- { "pid": 1, "tid": 23, "ts": 2736969.482421875, "dur": 5811.200141906738, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.811200141906738, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2743193.603515625, "dur": 1574.4999647140503, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5744999647140503, "detail": "System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2744769.53125, "dur": 517.4000263214111, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5174000263214111, "detail": "System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2745288.57421875, "dur": 1019.0999507904053, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0190999507904053, "detail": "System.Threading.SparselyPopulatedArrayFragment`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2746308.837890625, "dur": 1715.2999639511108, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7152999639511108, "detail": "System.Threading.SparselyPopulatedArray`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2748026.123046875, "dur": 459.5000147819519, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4595000147819519, "detail": "System.Collections.Generic.StackDebugView`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2748486.81640625, "dur": 4863.2001876831055, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.8632001876831055, "detail": "System.Collections.Generic.Stack`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2753351.5625, "dur": 425.79999566078186, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.42579999566078186, "detail": "System.Reflection.MonoProperty/StaticGetter`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2753778.564453125, "dur": 1633.1000328063965, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6331000328063965, "detail": "System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2755655.76171875, "dur": 597.5000262260437, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5975000262260437, "detail": "System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>" } },
- { "pid": 1, "tid": 23, "ts": 2756254.150390625, "dur": 579.9999833106995, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5799999833106995, "detail": "System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>" } },
- { "pid": 1, "tid": 23, "ts": 2756835.205078125, "dur": 598.6999869346619, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5986999869346619, "detail": "System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2757435.546875, "dur": 619.3000078201294, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6193000078201294, "detail": "System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>" } },
- { "pid": 1, "tid": 23, "ts": 2758056.396484375, "dur": 412.69999742507935, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.41269999742507935, "detail": "System.Threading.Tasks.TaskFactory`1<System.Boolean>" } },
- { "pid": 1, "tid": 23, "ts": 2758470.458984375, "dur": 393.5000002384186, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.3935000002384186, "detail": "System.Threading.Tasks.TaskFactory`1<System.Int32>" } },
- { "pid": 1, "tid": 23, "ts": 2758864.990234375, "dur": 404.1000008583069, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4041000008583069, "detail": "System.Threading.Tasks.TaskFactory`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2759270.5078125, "dur": 406.6999852657318, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4066999852657318, "detail": "System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>" } },
- { "pid": 1, "tid": 23, "ts": 2759678.466796875, "dur": 4756.00004196167, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.75600004196167, "detail": "System.Threading.Tasks.Task`1<System.Boolean>" } },
- { "pid": 1, "tid": 23, "ts": 2764436.279296875, "dur": 4848.899841308594, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.848899841308594, "detail": "System.Threading.Tasks.Task`1<System.Int32>" } },
- { "pid": 1, "tid": 23, "ts": 2769287.109375, "dur": 4704.800128936768, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.704800128936768, "detail": "System.Threading.Tasks.Task`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2773994.140625, "dur": 4778.800010681152, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.778800010681152, "detail": "System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>" } },
- { "pid": 1, "tid": 23, "ts": 2778774.4140625, "dur": 2879.499912261963, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.879499912261963, "detail": "System.Tuple`2<System.Object,System.Char>" } },
- { "pid": 1, "tid": 23, "ts": 2781655.517578125, "dur": 2673.0000972747803, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.6730000972747803, "detail": "System.Tuple`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2784330.810546875, "dur": 3872.6000785827637, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.8726000785827637, "detail": "System.Tuple`3<System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2788205.078125, "dur": 473.3000099658966, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4733000099658966, "detail": "System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>" } },
- { "pid": 1, "tid": 23, "ts": 2788679.931640625, "dur": 448.1000006198883, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4481000006198883, "detail": "System.Tuple`4<System.Object,System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2789129.638671875, "dur": 1997.9000091552734, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9979000091552734, "detail": "UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>" } },
- { "pid": 1, "tid": 23, "ts": 2791129.39453125, "dur": 1766.3999795913696, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7663999795913696, "detail": "UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>" } },
- { "pid": 1, "tid": 23, "ts": 2792898.4375, "dur": 569.5000290870667, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5695000290870667, "detail": "UnityEngine.Events.UnityAction`1<System.Boolean>" } },
- { "pid": 1, "tid": 23, "ts": 2793469.482421875, "dur": 467.7000045776367, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4677000045776367, "detail": "UnityEngine.Events.UnityAction`1<UnityEngine.Color>" } },
- { "pid": 1, "tid": 23, "ts": 2793938.4765625, "dur": 512.3999714851379, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5123999714851379, "detail": "UnityEngine.Events.UnityAction`1<System.Int32>" } },
- { "pid": 1, "tid": 23, "ts": 2794452.392578125, "dur": 500.50002336502075, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5005000233650208, "detail": "UnityEngine.Events.UnityAction`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2794953.857421875, "dur": 453.50000262260437, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.45350000262260437, "detail": "UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>" } },
- { "pid": 1, "tid": 23, "ts": 2795409.1796875, "dur": 446.20001316070557, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.44620001316070557, "detail": "UnityEngine.Events.UnityAction`1<System.Single>" } },
- { "pid": 1, "tid": 23, "ts": 2795856.93359375, "dur": 483.2000136375427, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4832000136375427, "detail": "UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>" } },
- { "pid": 1, "tid": 23, "ts": 2796341.552734375, "dur": 571.9000101089478, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5719000101089478, "detail": "UnityEngine.Events.UnityAction`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2796915.0390625, "dur": 611.6999983787537, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6116999983787537, "detail": "UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>" } },
- { "pid": 1, "tid": 23, "ts": 2797528.564453125, "dur": 504.1000247001648, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5041000247001648, "detail": "UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>" } },
- { "pid": 1, "tid": 23, "ts": 2798033.935546875, "dur": 639.2999887466431, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6392999887466431, "detail": "UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2798674.560546875, "dur": 691.2000179290771, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6912000179290771, "detail": "UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2799367.67578125, "dur": 2831.5000534057617, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.8315000534057617, "detail": "UnityEngine.Events.UnityEvent`1<System.Boolean>" } },
- { "pid": 1, "tid": 23, "ts": 2802201.66015625, "dur": 2419.3999767303467, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.4193999767303467, "detail": "UnityEngine.Events.UnityEvent`1<UnityEngine.Color>" } },
- { "pid": 1, "tid": 23, "ts": 2804622.802734375, "dur": 2524.600028991699, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.524600028991699, "detail": "UnityEngine.Events.UnityEvent`1<System.Int32>" } },
- { "pid": 1, "tid": 23, "ts": 2807149.658203125, "dur": 2277.899980545044, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.277899980545044, "detail": "UnityEngine.Events.UnityEvent`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2809430.419921875, "dur": 2622.299909591675, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.622299909591675, "detail": "UnityEngine.Events.UnityEvent`1<System.Single>" } },
- { "pid": 1, "tid": 23, "ts": 2812054.931640625, "dur": 2500.9000301361084, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.5009000301361084, "detail": "UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>" } },
- { "pid": 1, "tid": 23, "ts": 2814557.861328125, "dur": 978.9000153541565, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9789000153541565, "detail": "UnityEngine.Events.UnityEvent`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2815539.0625, "dur": 1192.3999786376953, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.1923999786376953, "detail": "UnityEngine.Events.UnityEvent`3<System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2816733.154296875, "dur": 1266.8999433517456, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2668999433517456, "detail": "UnityEngine.Events.UnityEvent`4<System.Object,System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2818002.44140625, "dur": 4635.000228881836, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.635000228881836, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2822639.6484375, "dur": 3851.3998985290527, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.8513998985290527, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>" } },
- { "pid": 1, "tid": 23, "ts": 2826493.1640625, "dur": 3836.400032043457, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.836400032043457, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2830331.787109375, "dur": 4949.999809265137, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.949999809265137, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 23, "ts": 2835283.447265625, "dur": 1109.3000173568726, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.1093000173568726, "detail": "System.Linq.Enumerable/WhereArrayIterator`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2836394.04296875, "dur": 1467.3000574111938, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4673000574111938, "detail": "System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2837862.3046875, "dur": 1317.0000314712524, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3170000314712524, "detail": "System.Linq.Enumerable/WhereListIterator`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2839194.82421875, "dur": 54864.99786376953, "ph": "X", "name": "Generics5.cpp", "args": { "durationMS": 54.86499786376953, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 2894104.00390625, "dur": 413.39999437332153, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.41339999437332153, "detail": "System.Linq.Error" } },
- { "pid": 1, "tid": 23, "ts": 2894519.53125, "dur": 1039.8999452590942, "ph": "X", "name": "System.Core.cpp", "args": { "durationMS": 1.0398999452590942, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 2897635.498046875, "dur": 353.59999537467957, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.35359999537467957, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 23, "ts": 2898637.6953125, "dur": 648.0000019073486, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6480000019073486, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.RaycastHit>" } },
- { "pid": 1, "tid": 23, "ts": 2899288.0859375, "dur": 736.4000082015991, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7364000082015991, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 23, "ts": 2900026.85546875, "dur": 367.5000071525574, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3675000071525574, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 23, "ts": 2900395.99609375, "dur": 368.4999942779541, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3684999942779541, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 23, "ts": 2900766.6015625, "dur": 2116.300106048584, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 2.116300106048584, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 23, "ts": 2903429.931640625, "dur": 408.49998593330383, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.40849998593330383, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 23, "ts": 2903840.8203125, "dur": 1227.4999618530273, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.2274999618530273, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 23, "ts": 2905070.80078125, "dur": 569.8000192642212, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5698000192642212, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 23, "ts": 2905642.822265625, "dur": 608.299970626831, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.608299970626831, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 23, "ts": 2909601.806640625, "dur": 1230.3999662399292, "ph": "X", "name": "Il2CppGenericComDefinitions.cpp", "args": { "durationMS": 1.2303999662399292, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 2911394.775390625, "dur": 353.50000858306885, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.35350000858306885, "detail": "System.Comparison`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 23, "ts": 2912087.158203125, "dur": 570.3999996185303, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5703999996185303, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2<System.Runtime.Serialization.MemberHolder,System.Reflection.MemberInfo[]>" } },
- { "pid": 1, "tid": 23, "ts": 2912659.1796875, "dur": 517.4999833106995, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5174999833106995, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2913178.466796875, "dur": 520.9000110626221, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5209000110626221, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2<System.String,System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2914682.861328125, "dur": 738.3999824523926, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7383999824523926, "detail": "System.Collections.Generic.Dictionary`2<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>" } },
- { "pid": 1, "tid": 23, "ts": 2915423.583984375, "dur": 727.5000214576721, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7275000214576721, "detail": "System.Collections.Generic.Dictionary`2<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>" } },
- { "pid": 1, "tid": 23, "ts": 2916152.83203125, "dur": 663.6000275611877, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6636000275611877, "detail": "System.Collections.Generic.Dictionary`2<UnityEngine.UI.Graphic,System.Int32>" } },
- { "pid": 1, "tid": 23, "ts": 2916820.068359375, "dur": 560.8000159263611, "ph": "X", "name": "Il2CppGenericComDefinitions1.cpp", "args": { "durationMS": 0.5608000159263611, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 2917400.390625, "dur": 704.1000127792358, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7041000127792358, "detail": "System.Collections.Generic.Dictionary`2<System.Threading.IAsyncLocal,System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2918106.201171875, "dur": 644.6999907493591, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6446999907493591, "detail": "System.Collections.Generic.Dictionary`2<UnityEngine.UI.ICanvasElement,System.Int32>" } },
- { "pid": 1, "tid": 23, "ts": 2918753.41796875, "dur": 624.0000128746033, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6240000128746033, "detail": "System.Collections.Generic.Dictionary`2<UnityEngine.UI.IClipper,System.Int32>" } },
- { "pid": 1, "tid": 23, "ts": 2919379.638671875, "dur": 821.9000101089478, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8219000101089478, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>" } },
- { "pid": 1, "tid": 23, "ts": 2920203.369140625, "dur": 629.0000081062317, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6290000081062317, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2920833.984375, "dur": 622.3999857902527, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6223999857902527, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>" } },
- { "pid": 1, "tid": 23, "ts": 2921458.251953125, "dur": 637.3999714851379, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6373999714851379, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,System.String>" } },
- { "pid": 1, "tid": 23, "ts": 2922097.65625, "dur": 660.4999899864197, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6604999899864197, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task>" } },
- { "pid": 1, "tid": 23, "ts": 2922760.009765625, "dur": 657.1000218391418, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6571000218391418, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType>" } },
- { "pid": 1, "tid": 23, "ts": 2923420.41015625, "dur": 571.0999965667725, "ph": "X", "name": "Il2CppGenericComDefinitions2.cpp", "args": { "durationMS": 0.5710999965667725, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 2924009.27734375, "dur": 712.4999761581421, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7124999761581421, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache>" } },
- { "pid": 1, "tid": 23, "ts": 2924723.6328125, "dur": 635.5000138282776, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6355000138282776, "detail": "System.Collections.Generic.Dictionary`2<System.Object,System.Int32>" } },
- { "pid": 1, "tid": 23, "ts": 2925361.572265625, "dur": 622.6999759674072, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6226999759674072, "detail": "System.Collections.Generic.Dictionary`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2925986.328125, "dur": 5513.999938964844, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 5.513999938964844, "detail": "System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 23, "ts": 2931503.41796875, "dur": 812.6999735832214, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8126999735832214, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>" } },
- { "pid": 1, "tid": 23, "ts": 2932318.603515625, "dur": 984.000027179718, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.984000027179718, "detail": "System.Collections.Generic.Dictionary`2<System.String,UnityEngine.GUIStyle>" } },
- { "pid": 1, "tid": 23, "ts": 2933304.6875, "dur": 647.4000215530396, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6474000215530396, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.Int32>" } },
- { "pid": 1, "tid": 23, "ts": 2933954.345703125, "dur": 634.5999836921692, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6345999836921692, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot>" } },
- { "pid": 1, "tid": 23, "ts": 2934591.064453125, "dur": 623.0000257492065, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6230000257492065, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2935217.041015625, "dur": 489.3999993801117, "ph": "X", "name": "Il2CppGenericComDefinitions3.cpp", "args": { "durationMS": 0.4893999993801117, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 2935726.318359375, "dur": 1081.2000036239624, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.0812000036239624, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 23, "ts": 2936810.05859375, "dur": 694.1999793052673, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6941999793052673, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceSet>" } },
- { "pid": 1, "tid": 23, "ts": 2937506.103515625, "dur": 657.4000120162964, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6574000120162964, "detail": "System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>" } },
- { "pid": 1, "tid": 23, "ts": 2938165.283203125, "dur": 619.5999979972839, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6195999979972839, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.String>" } },
- { "pid": 1, "tid": 23, "ts": 2938786.376953125, "dur": 731.1000227928162, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7311000227928162, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.UriParser>" } },
- { "pid": 1, "tid": 23, "ts": 2939520.01953125, "dur": 706.7000269889832, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7067000269889832, "detail": "System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute>" } },
- { "pid": 1, "tid": 23, "ts": 2940229.248046875, "dur": 675.000011920929, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.675000011920929, "detail": "System.Collections.Generic.Dictionary`2<System.Type,System.Runtime.Serialization.Formatters.Binary.TypeInformation>" } },
- { "pid": 1, "tid": 23, "ts": 2940906.25, "dur": 700.2999782562256, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7002999782562256, "detail": "System.Collections.Generic.Dictionary`2<System.Type,System.MonoCustomAttrs/AttributeInfo>" } },
- { "pid": 1, "tid": 23, "ts": 2941955.56640625, "dur": 674.1999983787537, "ph": "X", "name": "Il2CppGenericComDefinitions4.cpp", "args": { "durationMS": 0.6741999983787537, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 2957427.734375, "dur": 1579.3999433517456, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.5793999433517456, "detail": "System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 23, "ts": 2960007.080078125, "dur": 396.2000012397766, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3962000012397766, "detail": "System.Collections.Generic.LinkedList`1/Enumerator<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2962395.5078125, "dur": 571.399986743927, "ph": "X", "name": "Il2CppGenericComDefinitions5.cpp", "args": { "durationMS": 0.571399986743927, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 2964326.416015625, "dur": 518.1000232696533, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5181000232696533, "detail": "System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>" } },
- { "pid": 1, "tid": 23, "ts": 2964845.458984375, "dur": 1367.400050163269, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.367400050163269, "detail": "System.Collections.Generic.LinkedList`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2966460.9375, "dur": 450.5000114440918, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4505000114440918, "detail": "System.RuntimeType/ListBuilder`1<System.Reflection.PropertyInfo>" } },
- { "pid": 1, "tid": 23, "ts": 2967531.494140625, "dur": 372.5000023841858, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3725000023841858, "detail": "System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 23, "ts": 2967905.76171875, "dur": 702.1999955177307, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7021999955177307, "detail": "System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>>" } },
- { "pid": 1, "tid": 23, "ts": 2968609.619140625, "dur": 410.4999899864197, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4104999899864197, "detail": "System.Collections.Generic.List`1<System.AggregateException>" } },
- { "pid": 1, "tid": 23, "ts": 2969022.4609375, "dur": 439.9000108242035, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4399000108242035, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule>" } },
- { "pid": 1, "tid": 23, "ts": 2969464.35546875, "dur": 431.40000104904175, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.43140000104904175, "detail": "System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>" } },
- { "pid": 1, "tid": 23, "ts": 2969897.216796875, "dur": 446.90001010894775, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.44690001010894775, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster>" } },
- { "pid": 1, "tid": 23, "ts": 2970345.947265625, "dur": 405.49999475479126, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.40549999475479126, "detail": "System.Collections.Generic.List`1<UnityEngine.Canvas>" } },
- { "pid": 1, "tid": 23, "ts": 2970752.9296875, "dur": 393.20001006126404, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.39320001006126404, "detail": "System.Collections.Generic.List`1<UnityEngine.CanvasGroup>" } },
- { "pid": 1, "tid": 23, "ts": 2971148.92578125, "dur": 1562.7000331878662, "ph": "X", "name": "Il2CppGenericComDefinitions9.cpp", "args": { "durationMS": 1.5627000331878662, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 2972741.943359375, "dur": 484.20000076293945, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.48420000076293945, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>" } },
- { "pid": 1, "tid": 23, "ts": 2973227.5390625, "dur": 391.0999894142151, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3910999894142151, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Image>" } },
- { "pid": 1, "tid": 23, "ts": 2973620.1171875, "dur": 357.1999967098236, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3571999967098236, "detail": "System.Collections.Generic.List`1<System.Int32>" } },
- { "pid": 1, "tid": 23, "ts": 2973978.271484375, "dur": 346.5000092983246, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3465000092983246, "detail": "System.Collections.Generic.List`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 23, "ts": 2974325.927734375, "dur": 369.80000138282776, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.36980000138282776, "detail": "System.Collections.Generic.List`1<Mono.Globalization.Unicode.Level2Map>" } },
- { "pid": 1, "tid": 23, "ts": 2974697.265625, "dur": 377.4000108242035, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3774000108242035, "detail": "System.Collections.Generic.List`1<System.LocalDataStore>" } },
- { "pid": 1, "tid": 23, "ts": 2975075.927734375, "dur": 490.200012922287, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.490200012922287, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Mask>" } },
- { "pid": 1, "tid": 23, "ts": 2975568.603515625, "dur": 372.90000915527344, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.37290000915527344, "detail": "System.Collections.Generic.List`1<System.Reflection.MethodBase>" } },
- { "pid": 1, "tid": 23, "ts": 2975942.3828125, "dur": 349.0999937057495, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3490999937057495, "detail": "System.Collections.Generic.List`1<System.Reflection.MethodInfo>" } },
- { "pid": 1, "tid": 23, "ts": 2976293.701171875, "dur": 352.49999165534973, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.35249999165534973, "detail": "System.Collections.Generic.List`1<System.ModifierSpec>" } },
- { "pid": 1, "tid": 23, "ts": 2976647.4609375, "dur": 681.8000078201294, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6818000078201294, "detail": "System.Collections.Generic.List`1<System.Reflection.Module>" } },
- { "pid": 1, "tid": 23, "ts": 2977330.56640625, "dur": 339.80000019073486, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.33980000019073486, "detail": "System.Collections.Generic.List`1<System.Object>" } },
- { "pid": 1, "tid": 23, "ts": 2977674.072265625, "dur": 762.0000243186951, "ph": "X", "name": "Il2CppGenericComDefinitions11.cpp", "args": { "durationMS": 0.7620000243186951, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 2978455.56640625, "dur": 375.60001015663147, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.37560001015663147, "detail": "System.Collections.Generic.List`1<System.Threading.Tasks.Task>" } },
- { "pid": 1, "tid": 23, "ts": 2978832.51953125, "dur": 372.5000023841858, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3725000023841858, "detail": "System.Collections.Generic.List`1<System.TimeZoneInfo>" } },
- { "pid": 1, "tid": 23, "ts": 2979206.298828125, "dur": 364.80000615119934, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.36480000615119934, "detail": "System.Collections.Generic.List`1<System.Threading.Timer>" } },
- { "pid": 1, "tid": 23, "ts": 2979572.509765625, "dur": 367.1000003814697, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3671000003814697, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Toggle>" } },
- { "pid": 1, "tid": 23, "ts": 2979940.673828125, "dur": 356.4000129699707, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3564000129699707, "detail": "System.Collections.Generic.List`1<UnityEngine.Transform>" } },
- { "pid": 1, "tid": 23, "ts": 2980298.33984375, "dur": 345.2000021934509, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3452000021934509, "detail": "System.Collections.Generic.List`1<System.Type>" } },
- { "pid": 1, "tid": 23, "ts": 2980644.775390625, "dur": 337.799996137619, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.337799996137619, "detail": "System.Collections.Generic.List`1<System.TypeIdentifier>" } },
- { "pid": 1, "tid": 23, "ts": 2980983.642578125, "dur": 416.5000021457672, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4165000021457672, "detail": "System.Collections.Generic.List`1<System.TypeSpec>" } },
- { "pid": 1, "tid": 23, "ts": 2981401.611328125, "dur": 435.9000027179718, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4359000027179718, "detail": "System.Collections.Generic.List`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 23, "ts": 2981838.37890625, "dur": 432.20001459121704, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.43220001459121704, "detail": "System.Collections.Generic.List`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 23, "ts": 2982271.484375, "dur": 1147.4000215530396, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.1474000215530396, "detail": "System.Collections.Generic.List`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 23, "ts": 2983420.654296875, "dur": 457.39999413490295, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.45739999413490295, "detail": "System.Collections.Generic.List`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 23, "ts": 2983880.859375, "dur": 683.3000183105469, "ph": "X", "name": "Il2CppGenericComDefinitions13.cpp", "args": { "durationMS": 0.6833000183105469, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 2988035.15625, "dur": 335.70000529289246, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.33570000529289246, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 23, "ts": 2988678.466796875, "dur": 529.20001745224, "ph": "X", "name": "Il2CppGenericComDefinitions16.cpp", "args": { "durationMS": 0.52920001745224, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 2989226.318359375, "dur": 361.299991607666, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.361299991607666, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 23, "ts": 2992119.62890625, "dur": 402.7000069618225, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4027000069618225, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 23, "ts": 2999880.615234375, "dur": 646.0999846458435, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6460999846458435, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 23, "ts": 3000528.3203125, "dur": 8815.699577331543, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 8.815699577331543, "detail": "InternalArray__get_Item" } },
- { "pid": 1, "tid": 23, "ts": 3009345.458984375, "dur": 1094.2000150680542, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0942000150680542, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3010440.91796875, "dur": 412.69999742507935, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.41269999742507935, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3010854.4921875, "dur": 413.8999879360199, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4138999879360199, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3011269.53125, "dur": 405.6999981403351, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4056999981403351, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3011676.26953125, "dur": 408.80000591278076, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.40880000591278076, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3012086.42578125, "dur": 1144.5000171661377, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1445000171661377, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3013231.93359375, "dur": 422.89999127388, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.42289999127388, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3013655.76171875, "dur": 404.1999876499176, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4041999876499176, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3014061.03515625, "dur": 557.9000115394592, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5579000115394592, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3014619.873046875, "dur": 625.5999803543091, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6255999803543091, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3015246.337890625, "dur": 582.5999975204468, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5825999975204468, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3015829.833984375, "dur": 580.6999802589417, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5806999802589417, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3016411.62109375, "dur": 573.0000138282776, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5730000138282776, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3016985.595703125, "dur": 565.8000111579895, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5658000111579895, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3017552.24609375, "dur": 377.20000743865967, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37720000743865967, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3017930.419921875, "dur": 501.9000172615051, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5019000172615051, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3018433.10546875, "dur": 572.6000070571899, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5726000070571899, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3019007.080078125, "dur": 442.4000084400177, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4424000084400177, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3019450.439453125, "dur": 380.40000200271606, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38040000200271606, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3019832.03125, "dur": 379.9999952316284, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3799999952316284, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3020212.890625, "dur": 406.8000018596649, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4068000018596649, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3020620.60546875, "dur": 382.2000026702881, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3822000026702881, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3021003.662109375, "dur": 376.7000138759613, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3767000138759613, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3021381.103515625, "dur": 368.4999942779541, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3684999942779541, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3021750.48828125, "dur": 362.8999888896942, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3628999888896942, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3022114.501953125, "dur": 359.6999943256378, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3596999943256378, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3022474.853515625, "dur": 376.5999972820282, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3765999972820282, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3022852.294921875, "dur": 392.8000032901764, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3928000032901764, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3023245.849609375, "dur": 376.800000667572, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.376800000667572, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3023623.53515625, "dur": 368.20000410079956, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36820000410079956, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3023992.919921875, "dur": 368.00000071525574, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36800000071525574, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3024362.060546875, "dur": 378.80000472068787, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37880000472068787, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3024741.69921875, "dur": 365.00000953674316, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36500000953674316, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3025110.107421875, "dur": 407.00000524520874, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.40700000524520874, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3025517.822265625, "dur": 365.2999997138977, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3652999997138977, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3025884.033203125, "dur": 353.39999198913574, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.35339999198913574, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3026238.525390625, "dur": 372.20001220703125, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37220001220703125, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3026611.083984375, "dur": 364.300012588501, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.364300012588501, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3026976.318359375, "dur": 369.10000443458557, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36910000443458557, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3027346.435546875, "dur": 367.900013923645, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.367900013923645, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3027715.33203125, "dur": 361.60001158714294, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36160001158714294, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3028077.392578125, "dur": 379.40001487731934, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37940001487731934, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3028457.763671875, "dur": 365.00000953674316, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36500000953674316, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3028823.73046875, "dur": 375.6999969482422, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3756999969482422, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3029200.1953125, "dur": 361.60001158714294, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36160001158714294, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3029562.744140625, "dur": 360.5000078678131, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3605000078678131, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3029924.072265625, "dur": 410.8999967575073, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4108999967575073, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3030335.9375, "dur": 367.1000003814697, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3671000003814697, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3030703.857421875, "dur": 357.60000348091125, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.35760000348091125, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3031062.255859375, "dur": 375.900000333786, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.375900000333786, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3031438.720703125, "dur": 358.2000136375427, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3582000136375427, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3031797.607421875, "dur": 360.1999878883362, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3601999878883362, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3032158.69140625, "dur": 355.89998960494995, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.35589998960494995, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3032515.625, "dur": 377.20000743865967, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37720000743865967, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3032893.5546875, "dur": 383.1999897956848, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3831999897956848, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3033277.587890625, "dur": 371.8999922275543, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3718999922275543, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3033650.390625, "dur": 367.5000071525574, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3675000071525574, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3034018.798828125, "dur": 373.2999861240387, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3732999861240387, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3034392.822265625, "dur": 368.4999942779541, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3684999942779541, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3034762.451171875, "dur": 377.20000743865967, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37720000743865967, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3035140.380859375, "dur": 377.70000100135803, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37770000100135803, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3035519.287109375, "dur": 370.59998512268066, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37059998512268066, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3035890.869140625, "dur": 377.90000438690186, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37790000438690186, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3036269.53125, "dur": 370.0000047683716, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3700000047683716, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3036640.625, "dur": 372.5999891757965, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3725999891757965, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3037013.916015625, "dur": 381.19998574256897, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38119998574256897, "detail": "InternalArray__set_Item" } },
- { "pid": 1, "tid": 23, "ts": 3037396.240234375, "dur": 456.9000005722046, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4569000005722046, "detail": "LastIndexOf" } },
- { "pid": 1, "tid": 23, "ts": 3037854.00390625, "dur": 509.40001010894775, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5094000101089478, "detail": "LastIndexOf" } },
- { "pid": 1, "tid": 23, "ts": 3038364.501953125, "dur": 777.3000001907349, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7773000001907349, "detail": "LastIndexOf" } },
- { "pid": 1, "tid": 23, "ts": 3039432.861328125, "dur": 639.9000287055969, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6399000287055969, "detail": "Resize" } },
- { "pid": 1, "tid": 23, "ts": 3040073.974609375, "dur": 629.800021648407, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.629800021648407, "detail": "Resize" } },
- { "pid": 1, "tid": 23, "ts": 3041286.62109375, "dur": 730.7999730110168, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7307999730110168, "detail": "Reverse" } },
- { "pid": 1, "tid": 23, "ts": 3042018.310546875, "dur": 1620.4999685287476, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.6204999685287476, "detail": "Reverse" } },
- { "pid": 1, "tid": 23, "ts": 3043639.892578125, "dur": 672.5999712944031, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6725999712944031, "detail": "Reverse" } },
- { "pid": 1, "tid": 23, "ts": 3044313.4765625, "dur": 665.7000184059143, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6657000184059143, "detail": "Reverse" } },
- { "pid": 1, "tid": 23, "ts": 3044980.224609375, "dur": 690.6999945640564, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6906999945640564, "detail": "Reverse" } },
- { "pid": 1, "tid": 23, "ts": 3045671.875, "dur": 666.8999791145325, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6668999791145325, "detail": "Reverse" } },
- { "pid": 1, "tid": 23, "ts": 3046340.087890625, "dur": 952.8999924659729, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9528999924659729, "detail": "Reverse" } },
- { "pid": 1, "tid": 23, "ts": 3047294.189453125, "dur": 690.1999711990356, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6901999711990356, "detail": "Reverse" } },
- { "pid": 1, "tid": 23, "ts": 3047985.595703125, "dur": 674.8999953269958, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6748999953269958, "detail": "Reverse" } },
- { "pid": 1, "tid": 23, "ts": 3048661.62109375, "dur": 950.3999948501587, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9503999948501587, "detail": "Reverse" } },
- { "pid": 1, "tid": 23, "ts": 3049613.037109375, "dur": 861.8999719619751, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8618999719619751, "detail": "Reverse" } },
- { "pid": 1, "tid": 23, "ts": 3050476.318359375, "dur": 724.0999937057495, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7240999937057495, "detail": "Reverse" } },
- { "pid": 1, "tid": 23, "ts": 3051201.416015625, "dur": 760.9999775886536, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7609999775886536, "detail": "Reverse" } },
- { "pid": 1, "tid": 23, "ts": 3051964.111328125, "dur": 767.4999833106995, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7674999833106995, "detail": "Reverse" } },
- { "pid": 1, "tid": 23, "ts": 3052732.421875, "dur": 704.200029373169, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.704200029373169, "detail": "Reverse" } },
- { "pid": 1, "tid": 23, "ts": 3054546.630859375, "dur": 427.7999997138977, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4277999997138977, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3054975.5859375, "dur": 352.2000014781952, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3522000014781952, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3055873.779296875, "dur": 333.4999978542328, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3334999978542328, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3056208.251953125, "dur": 653.8000106811523, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6538000106811523, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3056863.28125, "dur": 624.4000196456909, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6244000196456909, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3057488.525390625, "dur": 674.3000149726868, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6743000149726868, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3058163.818359375, "dur": 627.7999877929688, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6277999877929688, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3058792.96875, "dur": 623.3000159263611, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6233000159263611, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3059416.9921875, "dur": 606.000006198883, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6060000061988831, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3060037.109375, "dur": 629.8999786376953, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6298999786376953, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3060668.45703125, "dur": 669.4999933242798, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6694999933242798, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3061338.623046875, "dur": 604.200005531311, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.604200005531311, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3061943.84765625, "dur": 646.7999815940857, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6467999815940857, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3062591.796875, "dur": 603.2999753952026, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6032999753952026, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3063196.533203125, "dur": 1064.1000270843506, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0641000270843506, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3064265.380859375, "dur": 885.200023651123, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.885200023651123, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3065151.611328125, "dur": 717.4999713897705, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7174999713897705, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3065869.873046875, "dur": 633.8000297546387, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6338000297546387, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3066504.8828125, "dur": 810.8000159263611, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8108000159263611, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3067565.4296875, "dur": 838.699996471405, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.838699996471405, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3068405.029296875, "dur": 884.2999935150146, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8842999935150146, "detail": "Sort" } },
- { "pid": 1, "tid": 23, "ts": 3069290.52734375, "dur": 479.9000024795532, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4799000024795532, "detail": "TrueForAll" } },
- { "pid": 1, "tid": 23, "ts": 3073261.474609375, "dur": 646.8999981880188, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6468999981880188, "detail": "GetCustomAttributeOfType" } },
- { "pid": 1, "tid": 23, "ts": 3073909.1796875, "dur": 681.2000274658203, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6812000274658203, "detail": "ThrowOnInvalidArg" } },
- { "pid": 1, "tid": 23, "ts": 3074591.552734375, "dur": 547.2999811172485, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5472999811172485, "detail": "ThrowOnInvalidArg" } },
- { "pid": 1, "tid": 23, "ts": 3075139.6484375, "dur": 539.6000146865845, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5396000146865845, "detail": "ThrowOnInvalidArg" } },
- { "pid": 1, "tid": 23, "ts": 3075680.17578125, "dur": 18352.3006439209, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 18.3523006439209, "detail": "ThrowOnInvalidArg" } },
- { "pid": 1, "tid": 23, "ts": 3094033.69140625, "dur": 584.3999981880188, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5843999981880188, "detail": "ThrowOnInvalidArg" } },
- { "pid": 1, "tid": 23, "ts": 3094619.384765625, "dur": 584.9999785423279, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5849999785423279, "detail": "ThrowOnInvalidArg" } },
- { "pid": 1, "tid": 23, "ts": 3095205.56640625, "dur": 422.89999127388, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.42289999127388, "detail": "GetValueOrDefault" } },
- { "pid": 1, "tid": 23, "ts": 3095629.150390625, "dur": 370.49999833106995, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37049999833106995, "detail": "GetValueOrDefault" } },
- { "pid": 1, "tid": 23, "ts": 3096001.220703125, "dur": 384.9000036716461, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3849000036716461, "detail": "GetComponent" } },
- { "pid": 1, "tid": 23, "ts": 3096672.8515625, "dur": 356.2000095844269, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3562000095844269, "detail": "GetComponentInParent" } },
- { "pid": 1, "tid": 23, "ts": 3097030.029296875, "dur": 508.49997997283936, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5084999799728394, "detail": "GetComponents" } },
- { "pid": 1, "tid": 23, "ts": 3097539.306640625, "dur": 421.00000381469727, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.42100000381469727, "detail": "GetComponents" } },
- { "pid": 1, "tid": 23, "ts": 3099091.064453125, "dur": 954.5999765396118, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9545999765396118, "detail": "ForAll" } },
- { "pid": 1, "tid": 23, "ts": 3100553.955078125, "dur": 412.4999940395355, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4124999940395355, "detail": "UnboxValues" } },
- { "pid": 1, "tid": 23, "ts": 3101217.28515625, "dur": 3290.1999950408936, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.2901999950408936, "detail": "GetOrAddComponent" } },
- { "pid": 1, "tid": 23, "ts": 3104509.521484375, "dur": 632.6000094413757, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6326000094413757, "detail": "Any" } },
- { "pid": 1, "tid": 23, "ts": 3105143.310546875, "dur": 713.2999897003174, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7132999897003174, "detail": "Any" } },
- { "pid": 1, "tid": 23, "ts": 3105857.177734375, "dur": 559.5999956130981, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5595999956130981, "detail": "CombinePredicates" } },
- { "pid": 1, "tid": 23, "ts": 3106417.96875, "dur": 799.7000217437744, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7997000217437744, "detail": "Count" } },
- { "pid": 1, "tid": 23, "ts": 3107218.75, "dur": 776.0000228881836, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7760000228881836, "detail": "First" } },
- { "pid": 1, "tid": 23, "ts": 3107995.361328125, "dur": 883.400022983551, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.883400022983551, "detail": "SingleOrDefault" } },
- { "pid": 1, "tid": 23, "ts": 3108879.638671875, "dur": 696.0999965667725, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6960999965667725, "detail": "Where" } },
- { "pid": 1, "tid": 23, "ts": 3109576.416015625, "dur": 1524.899959564209, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.524899959564209, "detail": "CanHandleEvent" } },
- { "pid": 1, "tid": 23, "ts": 3111102.5390625, "dur": 1553.3000230789185, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.5533000230789185, "detail": "Execute" } },
- { "pid": 1, "tid": 23, "ts": 3112656.982421875, "dur": 841.1999940872192, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8411999940872192, "detail": "ExecuteHierarchy" } },
- { "pid": 1, "tid": 23, "ts": 3113499.267578125, "dur": 684.0000152587891, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6840000152587891, "detail": "GetEventHandler" } },
- { "pid": 1, "tid": 23, "ts": 3114184.08203125, "dur": 1290.0999784469604, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2900999784469604, "detail": "GetEventList" } },
- { "pid": 1, "tid": 23, "ts": 3115475.09765625, "dur": 443.8000023365021, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4438000023365021, "detail": "ShouldSendToComponent" } },
- { "pid": 1, "tid": 23, "ts": 3115919.921875, "dur": 800.9999990463257, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8009999990463257, "detail": "ValidateEventData" } },
- { "pid": 1, "tid": 23, "ts": 3116721.923828125, "dur": 639.9999856948853, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6399999856948853, "detail": "AddComponent" } },
- { "pid": 1, "tid": 23, "ts": 3117364.013671875, "dur": 478.1000018119812, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4781000018119812, "detail": "GetComponent" } },
- { "pid": 1, "tid": 23, "ts": 3119915.283203125, "dur": 345.8999991416931, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3458999991416931, "detail": "TryGetComponent" } },
- { "pid": 1, "tid": 23, "ts": 3120607.666015625, "dur": 1539.8999452590942, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.5398999452590942, "detail": "SetProperty" } },
- { "pid": 1, "tid": 23, "ts": 3122148.4375, "dur": 438.49998712539673, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.43849998712539673, "detail": "SetProperty" } },
- { "pid": 1, "tid": 23, "ts": 3122587.890625, "dur": 441.5999948978424, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4415999948978424, "detail": "SetProperty" } },
- { "pid": 1, "tid": 23, "ts": 3123030.517578125, "dur": 465.0999903678894, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4650999903678894, "detail": "SetProperty" } },
- { "pid": 1, "tid": 23, "ts": 3123496.337890625, "dur": 428.90000343322754, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.42890000343322754, "detail": "SetProperty" } },
- { "pid": 1, "tid": 23, "ts": 3123926.513671875, "dur": 452.49998569488525, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.45249998569488525, "detail": "SetProperty" } },
- { "pid": 1, "tid": 23, "ts": 3124612.060546875, "dur": 338.6000096797943, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3386000096797943, "detail": "EnsureInitializedCore" } },
- { "pid": 1, "tid": 23, "ts": 3125404.052734375, "dur": 397.19998836517334, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.39719998836517334, "detail": "GetAllocArrayFromChannel" } },
- { "pid": 1, "tid": 23, "ts": 3126300.78125, "dur": 430.59998750686646, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.43059998750686646, "detail": "GetAllocArrayFromChannel" } },
- { "pid": 1, "tid": 23, "ts": 3126731.93359375, "dur": 1733.0000400543213, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.7330000400543213, "detail": "GetAllocArrayFromChannel" } },
- { "pid": 1, "tid": 23, "ts": 3128466.064453125, "dur": 485.1999878883362, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4851999878883362, "detail": "GetAllocArrayFromChannel" } },
- { "pid": 1, "tid": 23, "ts": 3128952.1484375, "dur": 449.6999979019165, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4496999979019165, "detail": "GetAllocArrayFromChannel" } },
- { "pid": 1, "tid": 23, "ts": 3129403.076171875, "dur": 358.0999970436096, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3580999970436096, "detail": "GetListForChannel" } },
- { "pid": 1, "tid": 23, "ts": 3130038.0859375, "dur": 601.1000275611877, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6011000275611877, "detail": "GetListForChannel" } },
- { "pid": 1, "tid": 23, "ts": 3130639.6484375, "dur": 613.099992275238, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.613099992275238, "detail": "GetListForChannel" } },
- { "pid": 1, "tid": 23, "ts": 3131253.90625, "dur": 1515.4000520706177, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.5154000520706177, "detail": "GetUVsImpl" } },
- { "pid": 1, "tid": 23, "ts": 3132770.263671875, "dur": 856.5999865531921, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8565999865531921, "detail": "GetUVsImpl" } },
- { "pid": 1, "tid": 23, "ts": 3133628.41796875, "dur": 472.09998965263367, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.47209998965263367, "detail": "SetListForChannel" } },
- { "pid": 1, "tid": 23, "ts": 3134101.5625, "dur": 598.3999967575073, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5983999967575073, "detail": "SetListForChannel" } },
- { "pid": 1, "tid": 23, "ts": 3134700.68359375, "dur": 372.3999857902527, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3723999857902527, "detail": "SetListForChannel" } },
- { "pid": 1, "tid": 23, "ts": 3135374.267578125, "dur": 334.199994802475, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.334199994802475, "detail": "SetListForChannel" } },
- { "pid": 1, "tid": 23, "ts": 3135709.47265625, "dur": 333.29999446868896, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.33329999446868896, "detail": "SetListForChannel" } },
- { "pid": 1, "tid": 23, "ts": 3136043.701171875, "dur": 540.4000282287598, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5404000282287598, "detail": "SetUvsImpl" } },
- { "pid": 1, "tid": 23, "ts": 3136585.205078125, "dur": 512.6000046730042, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5126000046730042, "detail": "SetUvsImpl" } },
- { "pid": 1, "tid": 23, "ts": 3137464.84375, "dur": 361.0999882221222, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3610999882221222, "detail": "ConvertExistingDataToNativeArray" } },
- { "pid": 1, "tid": 23, "ts": 3138806.396484375, "dur": 495.9999918937683, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4959999918937683, "detail": "EnsureListElemCount" } },
- { "pid": 1, "tid": 23, "ts": 3139303.22265625, "dur": 401.19999647140503, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.40119999647140503, "detail": "EnsureListElemCount" } },
- { "pid": 1, "tid": 23, "ts": 3139705.56640625, "dur": 717.5999879837036, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7175999879837036, "detail": "ResizeList" } },
- { "pid": 1, "tid": 23, "ts": 3140424.072265625, "dur": 665.7999753952026, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6657999753952026, "detail": "ResizeList" } },
- { "pid": 1, "tid": 23, "ts": 3142444.82421875, "dur": 839.2000198364258, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8392000198364258, "detail": "Instantiate" } },
- { "pid": 1, "tid": 23, "ts": 3143560.05859375, "dur": 408.1000089645386, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4081000089645386, "detail": "IsPlayableOfType" } },
- { "pid": 1, "tid": 23, "ts": 3145790.52734375, "dur": 359.29998755455017, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.35929998755455017, "detail": "IsPlayableOfType" } },
- { "pid": 1, "tid": 23, "ts": 3146477.05078125, "dur": 379.59998846054077, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37959998846054077, "detail": "GetBuiltinResource" } },
- { "pid": 1, "tid": 23, "ts": 3146857.666015625, "dur": 612.1000051498413, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6121000051498413, "detail": "IsReferenceOrContainsReferences" } },
- { "pid": 1, "tid": 23, "ts": 3147470.947265625, "dur": 352.2000014781952, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3522000014781952, "detail": "CreateInstance" } },
- { "pid": 1, "tid": 23, "ts": 3147823.974609375, "dur": 730.0000190734863, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7300000190734863, "detail": "SetClass" } },
- { "pid": 1, "tid": 23, "ts": 3148862.79296875, "dur": 338.99998664855957, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.33899998664855957, "detail": "SetStruct" } },
- { "pid": 1, "tid": 23, "ts": 3149202.880859375, "dur": 353.1000018119812, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3531000018119812, "detail": "SetStruct" } },
- { "pid": 1, "tid": 23, "ts": 3149556.640625, "dur": 2630.8000087738037, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.6308000087738037, "detail": "SetStruct" } },
- { "pid": 1, "tid": 23, "ts": 3152189.208984375, "dur": 395.00001072883606, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.39500001072883606, "detail": "SetStruct" } },
- { "pid": 1, "tid": 23, "ts": 3152585.44921875, "dur": 370.0000047683716, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3700000047683716, "detail": "SetStruct" } },
- { "pid": 1, "tid": 23, "ts": 3153286.865234375, "dur": 356.2000095844269, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3562000095844269, "detail": "SetStruct" } },
- { "pid": 1, "tid": 23, "ts": 3153644.04296875, "dur": 394.89999413490295, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.39489999413490295, "detail": "FromCancellation" } },
- { "pid": 1, "tid": 23, "ts": 3154039.794921875, "dur": 389.89999890327454, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38989999890327454, "detail": "FromCancellation" } },
- { "pid": 1, "tid": 23, "ts": 3157895.01953125, "dur": 337.7000093460083, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3377000093460083, "detail": "ReadArrayElement" } },
- { "pid": 1, "tid": 23, "ts": 3158937.98828125, "dur": 885.5000138282776, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8855000138282776, "detail": "ReadArrayElement" } },
- { "pid": 1, "tid": 23, "ts": 3159824.70703125, "dur": 981.5999865531921, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9815999865531921, "detail": "ReadArrayElement" } },
- { "pid": 1, "tid": 23, "ts": 3161722.16796875, "dur": 922.2999811172485, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9222999811172485, "detail": "WriteArrayElement" } },
- { "pid": 1, "tid": 23, "ts": 3163842.28515625, "dur": 80820.60241699219, "ph": "X", "name": "GenericMethods1.cpp", "args": { "durationMS": 80.82060241699219, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 3244679.931640625, "dur": 1157.7999591827393, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1577999591827393, "detail": "System.Resources.ManifestBasedResourceGroveler" } },
- { "pid": 1, "tid": 23, "ts": 3245937.98828125, "dur": 7472.300052642822, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.472300052642822, "detail": "System.Threading.ManualResetEventSlim" } },
- { "pid": 1, "tid": 23, "ts": 3253411.376953125, "dur": 1172.2999811172485, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1722999811172485, "detail": "System.Runtime.InteropServices.Marshal" } },
- { "pid": 1, "tid": 23, "ts": 3254695.556640625, "dur": 702.4999856948853, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7024999856948853, "detail": "System.MarshalByRefObject" } },
- { "pid": 1, "tid": 23, "ts": 3255398.92578125, "dur": 485.39999127388, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.48539999127388, "detail": "System.Runtime.InteropServices.MarshalDirectiveException" } },
- { "pid": 1, "tid": 23, "ts": 3255884.765625, "dur": 40088.401794433594, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 40.088401794433594, "detail": "System.Math" } },
- { "pid": 1, "tid": 23, "ts": 3295974.12109375, "dur": 501.6000270843506, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5016000270843506, "detail": "System.MemberAccessException" } },
- { "pid": 1, "tid": 23, "ts": 3296476.806640625, "dur": 392.300009727478, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.392300009727478, "detail": "System.Reflection.MemberFilter" } },
- { "pid": 1, "tid": 23, "ts": 3296869.62890625, "dur": 585.5000019073486, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5855000019073486, "detail": "System.Runtime.Serialization.MemberHolder" } },
- { "pid": 1, "tid": 23, "ts": 3297455.810546875, "dur": 1690.7999515533447, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6907999515533447, "detail": "System.Reflection.MemberInfo" } },
- { "pid": 1, "tid": 23, "ts": 3299147.94921875, "dur": 6141.300201416016, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.141300201416016, "detail": "System.Reflection.MemberInfoSerializationHolder" } },
- { "pid": 1, "tid": 23, "ts": 3305290.0390625, "dur": 527.5999903678894, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5275999903678894, "detail": "System.Runtime.Serialization.Formatters.Binary.MemberPrimitiveTyped" } },
- { "pid": 1, "tid": 23, "ts": 3305818.359375, "dur": 448.9000141620636, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4489000141620636, "detail": "System.Runtime.Serialization.Formatters.Binary.MemberPrimitiveUnTyped" } },
- { "pid": 1, "tid": 23, "ts": 3306268.06640625, "dur": 363.5999858379364, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3635999858379364, "detail": "System.Runtime.Serialization.Formatters.Binary.MemberReference" } },
- { "pid": 1, "tid": 23, "ts": 3306642.333984375, "dur": 7079.899787902832, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.079899787902832, "detail": "System.IO.MemoryStream" } },
- { "pid": 1, "tid": 23, "ts": 3313722.65625, "dur": 5276.800155639648, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.276800155639648, "detail": "System.Runtime.Remoting.Messaging.MessageDictionary" } },
- { "pid": 1, "tid": 23, "ts": 3319296.875, "dur": 465.2999937534332, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4652999937534332, "detail": "System.MethodAccessException" } },
- { "pid": 1, "tid": 23, "ts": 3319773.681640625, "dur": 4389.400005340576, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.389400005340576, "detail": "System.Reflection.MethodBase" } },
- { "pid": 1, "tid": 23, "ts": 3324455.078125, "dur": 1080.9999704360962, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0809999704360962, "detail": "System.Reflection.Emit.MethodBuilder" } },
- { "pid": 1, "tid": 23, "ts": 3325537.109375, "dur": 21063.501358032227, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 21.063501358032227, "detail": "System.Runtime.Remoting.Messaging.MethodCall" } },
- { "pid": 1, "tid": 23, "ts": 3346611.572265625, "dur": 1323.6000537872314, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3236000537872314, "detail": "System.Reflection.MethodInfo" } },
- { "pid": 1, "tid": 23, "ts": 3347936.279296875, "dur": 6833.799839019775, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.833799839019775, "detail": "System.Runtime.Remoting.Messaging.MethodResponse" } },
- { "pid": 1, "tid": 23, "ts": 3354770.99609375, "dur": 453.0999958515167, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4530999958515167, "detail": "System.Runtime.Remoting.Messaging.MethodReturnDictionary" } },
- { "pid": 1, "tid": 23, "ts": 3355225.09765625, "dur": 521.8999981880188, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5218999981880188, "detail": "System.Reflection.Missing" } },
- { "pid": 1, "tid": 23, "ts": 3355748.046875, "dur": 1154.8000574111938, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1548000574111938, "detail": "System.MissingFieldException" } },
- { "pid": 1, "tid": 23, "ts": 3356903.3203125, "dur": 1834.9000215530396, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8349000215530396, "detail": "System.MissingMemberException" } },
- { "pid": 1, "tid": 23, "ts": 3358739.2578125, "dur": 1086.400032043457, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.086400032043457, "detail": "System.MissingMethodException" } },
- { "pid": 1, "tid": 23, "ts": 3359826.66015625, "dur": 2620.1000213623047, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.6201000213623047, "detail": "System.Reflection.Module" } },
- { "pid": 1, "tid": 23, "ts": 3362463.134765625, "dur": 2225.800037384033, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.225800037384033, "detail": "System.Threading.Monitor" } },
- { "pid": 1, "tid": 23, "ts": 3364690.4296875, "dur": 1366.7999505996704, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3667999505996704, "detail": "System.Reflection.MonoAssembly" } },
- { "pid": 1, "tid": 23, "ts": 3366093.994140625, "dur": 536.0999703407288, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5360999703407288, "detail": "System.MonoAsyncCall" } },
- { "pid": 1, "tid": 23, "ts": 3366630.859375, "dur": 4209.3000411987305, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.2093000411987305, "detail": "System.Reflection.MonoCMethod" } },
- { "pid": 1, "tid": 23, "ts": 3370841.796875, "dur": 40175.00305175781, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 40.17500305175781, "detail": "System.MonoCustomAttrs" } },
- { "pid": 1, "tid": 23, "ts": 3411017.578125, "dur": 2249.3999004364014, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.2493999004364014, "detail": "System.Reflection.MonoEvent" } },
- { "pid": 1, "tid": 23, "ts": 3413268.5546875, "dur": 419.6999967098236, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4196999967098236, "detail": "System.Reflection.MonoEventInfo" } },
- { "pid": 1, "tid": 23, "ts": 3413688.720703125, "dur": 3153.3000469207764, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.1533000469207764, "detail": "System.Reflection.MonoField" } },
- { "pid": 1, "tid": 23, "ts": 3416856.4453125, "dur": 8443.699836730957, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.443699836730957, "detail": "System.IO.MonoIO" } },
- { "pid": 1, "tid": 23, "ts": 3425414.794921875, "dur": 5511.300086975098, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.511300086975098, "detail": "System.Reflection.MonoMethod" } },
- { "pid": 1, "tid": 23, "ts": 3430926.7578125, "dur": 1023.1000185012817, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0231000185012817, "detail": "System.Reflection.MonoMethodInfo" } },
- { "pid": 1, "tid": 23, "ts": 3431951.171875, "dur": 5817.90018081665, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.81790018081665, "detail": "System.Runtime.Remoting.Messaging.MonoMethodMessage" } },
- { "pid": 1, "tid": 23, "ts": 3437770.01953125, "dur": 13989.60018157959, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.98960018157959, "detail": "System.Reflection.MonoModule" } },
- { "pid": 1, "tid": 23, "ts": 3451760.7421875, "dur": 1098.8999605178833, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0988999605178833, "detail": "System.Reflection.MonoParameterInfo" } },
- { "pid": 1, "tid": 23, "ts": 3452860.83984375, "dur": 5435.100078582764, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.435100078582764, "detail": "System.Reflection.MonoProperty" } },
- { "pid": 1, "tid": 23, "ts": 3458296.630859375, "dur": 366.60000681877136, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.36660000681877136, "detail": "System.Reflection.MonoPropertyInfo" } },
- { "pid": 1, "tid": 23, "ts": 3458994.62890625, "dur": 4243.70002746582, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.24370002746582, "detail": "System.MulticastDelegate" } },
- { "pid": 1, "tid": 23, "ts": 3463238.76953125, "dur": 494.59999799728394, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.49459999799728394, "detail": "System.MulticastNotSupportedException" } },
- { "pid": 1, "tid": 23, "ts": 3463745.60546875, "dur": 547.9999780654907, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5479999780654907, "detail": "System.Runtime.Serialization.Formatters.Binary.NameCache" } },
- { "pid": 1, "tid": 23, "ts": 3464294.43359375, "dur": 483.7000072002411, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4837000072002411, "detail": "System.Runtime.Serialization.Formatters.Binary.NameInfo" } },
- { "pid": 1, "tid": 23, "ts": 3464778.564453125, "dur": 696.399986743927, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.696399986743927, "detail": "System.Threading.NativeEventCalls" } },
- { "pid": 1, "tid": 23, "ts": 3466189.94140625, "dur": 9529.399871826172, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.529399871826172, "detail": "System.Text.Normalization" } },
- { "pid": 1, "tid": 23, "ts": 3475735.3515625, "dur": 932.9000115394592, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9329000115394592, "detail": "Mono.Globalization.Unicode.NormalizationTableUtil" } },
- { "pid": 1, "tid": 23, "ts": 3476668.9453125, "dur": 510.20002365112305, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.510200023651123, "detail": "System.NotImplementedException" } },
- { "pid": 1, "tid": 23, "ts": 3477179.6875, "dur": 480.80000281333923, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.48080000281333923, "detail": "System.NotSupportedException" } },
- { "pid": 1, "tid": 23, "ts": 3477661.376953125, "dur": 518.7000036239624, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5187000036239624, "detail": "System.NullConsoleDriver" } },
- { "pid": 1, "tid": 23, "ts": 3478180.17578125, "dur": 482.3000133037567, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4823000133037567, "detail": "System.NullReferenceException" } },
- { "pid": 1, "tid": 23, "ts": 3478663.57421875, "dur": 481.2999963760376, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4812999963760376, "detail": "System.Nullable" } },
- { "pid": 1, "tid": 23, "ts": 3479145.751953125, "dur": 16687.79945373535, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 16.68779945373535, "detail": "System.Number" } },
- { "pid": 1, "tid": 23, "ts": 3495839.84375, "dur": 56058.502197265625, "ph": "X", "name": "mscorlib7.cpp", "args": { "durationMS": 56.058502197265625, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 3552069.580078125, "dur": 6006.00004196167, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.00600004196167, "detail": "System.__DTString" } },
- { "pid": 1, "tid": 23, "ts": 3558076.904296875, "dur": 58115.699768066406, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 58.115699768066406, "detail": "System.IO.__Error" } },
- { "pid": 1, "tid": 23, "ts": 3616193.84765625, "dur": 2494.4000244140625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.4944000244140625, "detail": "System.__Filters" } },
- { "pid": 1, "tid": 23, "ts": 3618689.453125, "dur": 3032.099962234497, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.032099962234497, "detail": "System.__Il2CppComDelegate" } },
- { "pid": 1, "tid": 23, "ts": 3621722.412109375, "dur": 533.8000059127808, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5338000059127808, "detail": "System.__Il2CppComObject" } },
- { "pid": 1, "tid": 23, "ts": 3622470.947265625, "dur": 771.399974822998, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.771399974822998, "detail": "System.Array/ArrayEnumerator" } },
- { "pid": 1, "tid": 23, "ts": 3623242.919921875, "dur": 4647.39990234375, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.64739990234375, "detail": "System.Array/SorterGenericArray" } },
- { "pid": 1, "tid": 23, "ts": 3627891.11328125, "dur": 4007.999897003174, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.007999897003174, "detail": "System.Array/SorterObjectArray" } },
- { "pid": 1, "tid": 23, "ts": 3632143.06640625, "dur": 1410.1999998092651, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4101999998092651, "detail": "System.Collections.ArrayList/ArrayListEnumeratorSimple" } },
- { "pid": 1, "tid": 23, "ts": 3633638.916015625, "dur": 700.9000182151794, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7009000182151794, "detail": "System.Runtime.CompilerServices.AsyncMethodBuilderCore/<>c" } },
- { "pid": 1, "tid": 23, "ts": 3634879.39453125, "dur": 678.6999702453613, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6786999702453613, "detail": "System.Runtime.CompilerServices.AsyncMethodBuilderCore/MoveNextRunner" } },
- { "pid": 1, "tid": 23, "ts": 3635558.837890625, "dur": 648.1000185012817, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6481000185012817, "detail": "System.Threading.Tasks.AwaitTaskContinuation/<>c" } },
- { "pid": 1, "tid": 23, "ts": 3636522.705078125, "dur": 5001.200199127197, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.001200199127197, "detail": "System.Console/InternalCancelHandler" } },
- { "pid": 1, "tid": 23, "ts": 3641525.390625, "dur": 749.1999864578247, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7491999864578247, "detail": "System.Console/WindowsConsole" } },
- { "pid": 1, "tid": 23, "ts": 3642512.20703125, "dur": 2750.200033187866, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.750200033187866, "detail": "System.Runtime.Remoting.Contexts.CrossContextChannel/ContextRestoreSink" } },
- { "pid": 1, "tid": 23, "ts": 3645263.427734375, "dur": 523.5999822616577, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5235999822616577, "detail": "System.Globalization.CultureInfo/Data" } },
- { "pid": 1, "tid": 23, "ts": 3645927.490234375, "dur": 5477.700233459473, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.477700233459473, "detail": "System.DateTimeParse/MatchNumberDelegate" } },
- { "pid": 1, "tid": 23, "ts": 3651886.23046875, "dur": 1052.7000427246094, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0527000427246094, "detail": "System.DelegateSerializationHolder/DelegateEntry" } },
- { "pid": 1, "tid": 23, "ts": 3653131.34765625, "dur": 587.8999829292297, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5878999829292297, "detail": "System.Collections.EmptyReadOnlyDictionaryInternal/NodeEnumerator" } },
- { "pid": 1, "tid": 23, "ts": 3653719.970703125, "dur": 2101.9999980926514, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1019999980926514, "detail": "System.Text.Encoding/DefaultDecoder" } },
- { "pid": 1, "tid": 23, "ts": 3655823.2421875, "dur": 1869.3000078201294, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8693000078201294, "detail": "System.Text.Encoding/DefaultEncoder" } },
- { "pid": 1, "tid": 23, "ts": 3657693.115234375, "dur": 1710.3999853134155, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7103999853134155, "detail": "System.Text.Encoding/EncodingByteBuffer" } },
- { "pid": 1, "tid": 23, "ts": 3659404.78515625, "dur": 1429.7000169754028, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4297000169754028, "detail": "System.Text.Encoding/EncodingCharBuffer" } },
- { "pid": 1, "tid": 23, "ts": 3660968.75, "dur": 408.3000123500824, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4083000123500824, "detail": "System.Reflection.EventInfo/AddEventAdapter" } },
- { "pid": 1, "tid": 23, "ts": 3661377.44140625, "dur": 1201.4000415802002, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2014000415802002, "detail": "System.Security.Policy.Evidence/EvidenceEnumerator" } },
- { "pid": 1, "tid": 23, "ts": 3662600.09765625, "dur": 1406.999945640564, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.406999945640564, "detail": "System.Threading.ExecutionContext/Reader" } },
- { "pid": 1, "tid": 23, "ts": 3664008.056640625, "dur": 529.9000144004822, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5299000144004822, "detail": "System.IO.FileStream/ReadDelegate" } },
- { "pid": 1, "tid": 23, "ts": 3664538.818359375, "dur": 496.6999888420105, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4966999888420105, "detail": "System.IO.FileStream/WriteDelegate" } },
- { "pid": 1, "tid": 23, "ts": 3665241.69921875, "dur": 1771.399974822998, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.771399974822998, "detail": "System.Guid/GuidResult" } },
- { "pid": 1, "tid": 23, "ts": 3667273.4375, "dur": 2009.2999935150146, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0092999935150146, "detail": "System.Collections.Hashtable/HashtableEnumerator" } },
- { "pid": 1, "tid": 23, "ts": 3669283.935546875, "dur": 708.5000276565552, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7085000276565552, "detail": "System.Collections.Hashtable/KeyCollection" } },
- { "pid": 1, "tid": 23, "ts": 3669993.1640625, "dur": 4749.000072479248, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.749000072479248, "detail": "System.Collections.Hashtable/SyncHashtable" } },
- { "pid": 1, "tid": 23, "ts": 3674743.896484375, "dur": 361.4000082015991, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3614000082015991, "detail": "System.Collections.Hashtable/bucket" } },
- { "pid": 1, "tid": 23, "ts": 3675239.2578125, "dur": 345.40000557899475, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.34540000557899475, "detail": "System.Runtime.Remoting.Lifetime.Lease/RenewalDelegate" } },
- { "pid": 1, "tid": 23, "ts": 3675667.236328125, "dur": 1529.8000574111938, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5298000574111938, "detail": "System.Collections.ListDictionaryInternal/NodeEnumerator" } },
- { "pid": 1, "tid": 23, "ts": 3677198.2421875, "dur": 627.4999976158142, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6274999976158142, "detail": "System.Runtime.Remoting.Messaging.LogicalCallContext/Reader" } },
- { "pid": 1, "tid": 23, "ts": 3678140.869140625, "dur": 1578.7999629974365, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5787999629974365, "detail": "System.Runtime.Remoting.Messaging.MessageDictionary/DictionaryEnumerator" } },
- { "pid": 1, "tid": 23, "ts": 3679971.6796875, "dur": 465.49999713897705, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.46549999713897705, "detail": "System.Reflection.MonoProperty/GetterAdapter" } },
- { "pid": 1, "tid": 23, "ts": 3680438.232421875, "dur": 918.6999797821045, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9186999797821045, "detail": "System.Number/NumberBuffer" } },
- { "pid": 1, "tid": 23, "ts": 3681358.154296875, "dur": 5685.9002113342285, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.6859002113342285, "detail": "System.NumberFormatter/CustomInfo" } },
- { "pid": 1, "tid": 23, "ts": 3687494.384765625, "dur": 423.9000082015991, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4239000082015991, "detail": "System.Threading.OSSpecificSynchronizationContext/InvocationEntryDelegate" } },
- { "pid": 1, "tid": 23, "ts": 3688033.447265625, "dur": 363.40001225471497, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.36340001225471497, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectReader/TopLevelAssemblyTypeResolver" } },
- { "pid": 1, "tid": 23, "ts": 3688486.083984375, "dur": 1343.6000347137451, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3436000347137451, "detail": "System.ParameterizedStrings/FormatParam" } },
- { "pid": 1, "tid": 23, "ts": 3689830.810546875, "dur": 987.2000217437744, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9872000217437744, "detail": "System.ParameterizedStrings/LowLevelStack" } },
- { "pid": 1, "tid": 23, "ts": 3691107.177734375, "dur": 1009.0999603271484, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0090999603271484, "detail": "System.Collections.Queue/QueueEnumerator" } },
- { "pid": 1, "tid": 23, "ts": 3692472.65625, "dur": 2458.8000774383545, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.4588000774383545, "detail": "System.Resources.ResourceReader/ResourceEnumerator" } },
- { "pid": 1, "tid": 23, "ts": 3695043.45703125, "dur": 544.0000295639038, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5440000295639038, "detail": "System.Security.SecurityElement/SecurityAttribute" } },
- { "pid": 1, "tid": 23, "ts": 3695588.134765625, "dur": 150824.60021972656, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 150.82460021972656, "detail": "System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31" } },
- { "pid": 1, "tid": 23, "ts": 3847008.544921875, "dur": 907.800018787384, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.907800018787384, "detail": "Mono.Xml.SmallXmlParser/AttrListImpl" } },
- { "pid": 1, "tid": 23, "ts": 3847977.05078125, "dur": 367.900013923645, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.367900013923645, "detail": "System.Collections.SortedList/SortedListDebugView" } },
- { "pid": 1, "tid": 23, "ts": 3848345.703125, "dur": 1650.4000425338745, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6504000425338745, "detail": "System.Collections.SortedList/SortedListEnumerator" } },
- { "pid": 1, "tid": 23, "ts": 3849997.55859375, "dur": 713.8000130653381, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7138000130653381, "detail": "System.Threading.SpinLock/SystemThreading_SpinLockDebugView" } },
- { "pid": 1, "tid": 23, "ts": 3850951.171875, "dur": 947.0999836921692, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9470999836921692, "detail": "System.Collections.Stack/StackEnumerator" } },
- { "pid": 1, "tid": 23, "ts": 3851910.400390625, "dur": 822.3000168800354, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8223000168800354, "detail": "System.IO.Stream/<>c" } },
- { "pid": 1, "tid": 23, "ts": 3852733.642578125, "dur": 1307.0000410079956, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3070000410079956, "detail": "System.IO.Stream/NullStream" } },
- { "pid": 1, "tid": 23, "ts": 3854041.9921875, "dur": 922.2000241279602, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9222000241279602, "detail": "System.IO.Stream/ReadWriteTask" } },
- { "pid": 1, "tid": 23, "ts": 3854964.84375, "dur": 1143.4999704360962, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1434999704360962, "detail": "System.IO.Stream/SynchronousAsyncResult" } },
- { "pid": 1, "tid": 23, "ts": 3856109.619140625, "dur": 480.6999862194061, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.48069998621940613, "detail": "System.IO.StreamReader/NullStreamReader" } },
- { "pid": 1, "tid": 23, "ts": 3856827.63671875, "dur": 487.6999855041504, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4876999855041504, "detail": "System.Threading.Tasks.Task/<>c" } },
- { "pid": 1, "tid": 23, "ts": 3857315.91796875, "dur": 944.0000057220459, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9440000057220459, "detail": "System.Threading.Tasks.Task/<>c__DisplayClass178_0" } },
- { "pid": 1, "tid": 23, "ts": 3858260.7421875, "dur": 368.6999976634979, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3686999976634979, "detail": "System.Threading.Tasks.Task/ContingentProperties" } },
- { "pid": 1, "tid": 23, "ts": 3858630.126953125, "dur": 711.899995803833, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.711899995803833, "detail": "System.Threading.Tasks.Task/DelayPromise" } },
- { "pid": 1, "tid": 23, "ts": 3859507.080078125, "dur": 857.5000166893005, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8575000166893005, "detail": "System.Threading.Tasks.TaskFactory/CompleteOnInvokePromise" } },
- { "pid": 1, "tid": 23, "ts": 3860936.279296875, "dur": 538.8000011444092, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5388000011444092, "detail": "System.IO.TextReader/<>c" } },
- { "pid": 1, "tid": 23, "ts": 3861649.4140625, "dur": 505.5999755859375, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5055999755859375, "detail": "System.IO.TextReader/SyncTextReader" } },
- { "pid": 1, "tid": 23, "ts": 3862156.005859375, "dur": 1137.5999450683594, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1375999450683594, "detail": "System.IO.TextWriter/<>c" } },
- { "pid": 1, "tid": 23, "ts": 3863535.15625, "dur": 1057.1999549865723, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0571999549865723, "detail": "System.IO.TextWriter/SyncTextWriter" } },
- { "pid": 1, "tid": 23, "ts": 3864593.505859375, "dur": 1207.2999477386475, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2072999477386475, "detail": "System.Threading.ThreadPool/<EnumerateQueuedWorkItems>d__21" } },
- { "pid": 1, "tid": 23, "ts": 3865802.24609375, "dur": 2417.0000553131104, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.4170000553131104, "detail": "System.Threading.Tasks.ThreadPoolTaskScheduler/<FilterTasksFromWorkItems>d__7" } },
- { "pid": 1, "tid": 23, "ts": 3868220.703125, "dur": 751.1000037193298, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7511000037193298, "detail": "System.Threading.ThreadPoolWorkQueue/QueueSegment" } },
- { "pid": 1, "tid": 23, "ts": 3868973.14453125, "dur": 1714.4999504089355, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7144999504089355, "detail": "System.Threading.ThreadPoolWorkQueue/WorkStealingQueue" } },
- { "pid": 1, "tid": 23, "ts": 3870688.96484375, "dur": 1716.8999910354614, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7168999910354614, "detail": "System.Globalization.TimeSpanFormat/FormatLiterals" } },
- { "pid": 1, "tid": 23, "ts": 3872595.21484375, "dur": 2972.399950027466, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.972399950027466, "detail": "System.TimeZoneInfo/AdjustmentRule" } },
- { "pid": 1, "tid": 23, "ts": 3875568.84765625, "dur": 937.5, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9375, "detail": "System.TimeZoneInfo/DYNAMIC_TIME_ZONE_INFORMATION" } },
- { "pid": 1, "tid": 23, "ts": 3876519.04296875, "dur": 351.20001435279846, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.35120001435279846, "detail": "System.TimeZoneInfo/TIME_ZONE_INFORMATION" } },
- { "pid": 1, "tid": 23, "ts": 3876870.849609375, "dur": 3878.2999515533447, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.8782999515533447, "detail": "System.TimeZoneInfo/TransitionTime" } },
- { "pid": 1, "tid": 23, "ts": 3880750.244140625, "dur": 5372.099876403809, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.372099876403809, "detail": "System.Threading.Timer/Scheduler" } },
- { "pid": 1, "tid": 23, "ts": 3886125.48828125, "dur": 32482.898712158203, "ph": "X", "name": "mscorlib16.cpp", "args": { "durationMS": 32.4828987121582, "detail": "" } },
- { "pid": 1, "tid": 24, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 24, "ts": 1719453.125, "dur": 11680.6001663208, "ph": "X", "name": "Idle", "args": { "durationMS": 11.6806001663208, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 1845009.6435546875, "dur": 3085.9999656677246, "ph": "X", "name": "Write Assembly", "args": { "durationMS": 3.0859999656677246, "detail": "Mono.Security" } },
- { "pid": 1, "tid": 24, "ts": 1848964.35546875, "dur": 175087.99743652344, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 175.08799743652344, "detail": "System.Configuration" } },
- { "pid": 1, "tid": 24, "ts": 1850035.64453125, "dur": 174016.00646972656, "ph": "X", "name": "System.Configuration_Attr.cpp", "args": { "durationMS": 174.01600646972656, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 2026008.1787109375, "dur": 31245.500564575195, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 31.245500564575195, "detail": "UnityEngine.Physics2DModule" } },
- { "pid": 1, "tid": 24, "ts": 2026023.5595703125, "dur": 31229.402542114258, "ph": "X", "name": "UnityEngine.Physics2DModule_Attr.cpp", "args": { "durationMS": 31.229402542114258, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 2057259.27734375, "dur": 4363.800048828125, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 4.363800048828125, "detail": "UnityEngine" } },
- { "pid": 1, "tid": 24, "ts": 2057311.5234375, "dur": 4310.200214385986, "ph": "X", "name": "UnityEngine_Attr.cpp", "args": { "durationMS": 4.310200214385986, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 2062042.724609375, "dur": 448.7999975681305, "ph": "X", "name": "GenericInstanceTypes", "args": { "durationMS": 0.4487999975681305, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 2063567.3828125, "dur": 4875.899791717529, "ph": "X", "name": "Write Windows Runtime Factories", "args": { "durationMS": 4.875899791717529, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 2075161.62109375, "dur": 1870.8000183105469, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8708000183105469, "detail": "<Module>" } },
- { "pid": 1, "tid": 24, "ts": 2077550.29296875, "dur": 1366.5000200271606, "ph": "X", "name": "UnityEngine.SpriteShapeModule.cpp", "args": { "durationMS": 1.3665000200271606, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 2080618.408203125, "dur": 1104.5000553131104, "ph": "X", "name": "UnityEngine.TilemapModule.cpp", "args": { "durationMS": 1.1045000553131104, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 2081788.818359375, "dur": 98426.50604248047, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 98.42650604248047, "detail": "UnityEngine.Collider" } },
- { "pid": 1, "tid": 24, "ts": 2180217.041015625, "dur": 601.1000275611877, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6011000275611877, "detail": "UnityEngine.Collision" } },
- { "pid": 1, "tid": 24, "ts": 2181020.5078125, "dur": 38119.102478027344, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 38.119102478027344, "detail": "UnityEngine.Physics" } },
- { "pid": 1, "tid": 24, "ts": 2219140.625, "dur": 9035.699844360352, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.035699844360352, "detail": "UnityEngine.PhysicsScene" } },
- { "pid": 1, "tid": 24, "ts": 2228186.767578125, "dur": 1695.7999467849731, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6957999467849731, "detail": "UnityEngine.RaycastHit" } },
- { "pid": 1, "tid": 24, "ts": 2230076.904296875, "dur": 7616.700172424316, "ph": "X", "name": "UnityEngine.PhysicsModule.cpp", "args": { "durationMS": 7.616700172424316, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 2237737.060546875, "dur": 635.5000138282776, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6355000138282776, "detail": "UnityEngine.Animations.AnimationClipPlayable" } },
- { "pid": 1, "tid": 24, "ts": 2238373.779296875, "dur": 2669.6999073028564, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.6696999073028564, "detail": "UnityEngine.AnimationEvent" } },
- { "pid": 1, "tid": 24, "ts": 2241113.525390625, "dur": 4277.8000831604, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.2778000831604, "detail": "UnityEngine.Animations.AnimationLayerMixerPlayable" } },
- { "pid": 1, "tid": 24, "ts": 2245392.08984375, "dur": 1831.3000202178955, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8313000202178955, "detail": "UnityEngine.Animations.AnimationMixerPlayable" } },
- { "pid": 1, "tid": 24, "ts": 2247224.609375, "dur": 1998.2999563217163, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9982999563217163, "detail": "UnityEngine.Animations.AnimationMotionXToDeltaPlayable" } },
- { "pid": 1, "tid": 24, "ts": 2249224.853515625, "dur": 11034.199714660645, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.034199714660645, "detail": "UnityEngine.Animations.AnimationOffsetPlayable" } },
- { "pid": 1, "tid": 24, "ts": 2260286.865234375, "dur": 1334.8000049591064, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3348000049591064, "detail": "UnityEngine.Animations.AnimationPosePlayable" } },
- { "pid": 1, "tid": 24, "ts": 2261623.046875, "dur": 1460.8999490737915, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4608999490737915, "detail": "UnityEngine.Animations.AnimationRemoveScalePlayable" } },
- { "pid": 1, "tid": 24, "ts": 2263084.9609375, "dur": 2384.5999240875244, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.3845999240875244, "detail": "UnityEngine.Animations.AnimationScriptPlayable" } },
- { "pid": 1, "tid": 24, "ts": 2265506.34765625, "dur": 617.900013923645, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.617900013923645, "detail": "UnityEngine.Animator" } },
- { "pid": 1, "tid": 24, "ts": 2266171.142578125, "dur": 18794.300079345703, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.794300079345703, "detail": "UnityEngine.Animations.AnimatorControllerPlayable" } },
- { "pid": 1, "tid": 24, "ts": 2285327.1484375, "dur": 1368.8000440597534, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3688000440597534, "detail": "UnityEngine.AnimatorTransitionInfo" } },
- { "pid": 1, "tid": 24, "ts": 2286697.75390625, "dur": 6882.599830627441, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.882599830627441, "detail": "UnityEngine.HumanBone" } },
- { "pid": 1, "tid": 24, "ts": 2293655.517578125, "dur": 801.1000156402588, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8011000156402588, "detail": "UnityEngine.SkeletonBone" } },
- { "pid": 1, "tid": 24, "ts": 2294458.0078125, "dur": 3096.100091934204, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.096100091934204, "detail": "UnityEngine.StateMachineBehaviour" } },
- { "pid": 1, "tid": 24, "ts": 2297555.419921875, "dur": 524.6999859809875, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5246999859809875, "detail": "UnityEngine.AnimatorOverrideController/OnOverrideControllerDirtyCallback" } },
- { "pid": 1, "tid": 24, "ts": 2298083.0078125, "dur": 52870.80001831055, "ph": "X", "name": "UnityEngine.AnimationModule.cpp", "args": { "durationMS": 52.87080001831055, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 2350977.294921875, "dur": 2043.4000492095947, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0434000492095947, "detail": "UnityEngine.Experimental.GlobalIllumination.RectangleLight" } },
- { "pid": 1, "tid": 24, "ts": 2353021.728515625, "dur": 803.9000034332275, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8039000034332275, "detail": "UnityEngine.ReflectionProbe" } },
- { "pid": 1, "tid": 24, "ts": 2353826.904296875, "dur": 1797.700047492981, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.797700047492981, "detail": "UnityEngine.Rendering.RenderPipeline" } },
- { "pid": 1, "tid": 24, "ts": 2355625.48828125, "dur": 11128.499984741211, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.128499984741211, "detail": "UnityEngine.Rendering.RenderPipelineAsset" } },
- { "pid": 1, "tid": 24, "ts": 2366755.615234375, "dur": 3211.2998962402344, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.2112998962402344, "detail": "UnityEngine.Rendering.RenderPipelineManager" } },
- { "pid": 1, "tid": 24, "ts": 2369980.224609375, "dur": 15393.600463867188, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.393600463867188, "detail": "UnityEngine.RenderTexture" } },
- { "pid": 1, "tid": 24, "ts": 2385389.16015625, "dur": 9289.600372314453, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.289600372314453, "detail": "UnityEngine.RenderTextureDescriptor" } },
- { "pid": 1, "tid": 24, "ts": 2394704.833984375, "dur": 420.10000348091125, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.42010000348091125, "detail": "UnityEngine.Renderer" } },
- { "pid": 1, "tid": 24, "ts": 2395347.900390625, "dur": 472.00000286102295, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.47200000286102295, "detail": "UnityEngine.Resolution" } },
- { "pid": 1, "tid": 24, "ts": 2395820.80078125, "dur": 670.7000136375427, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6707000136375427, "detail": "UnityEngine.ResourceRequest" } },
- { "pid": 1, "tid": 24, "ts": 2396491.943359375, "dur": 834.5000147819519, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8345000147819519, "detail": "UnityEngine.Resources" } },
- { "pid": 1, "tid": 24, "ts": 2397327.63671875, "dur": 784.2000126838684, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7842000126838684, "detail": "UnityEngine.ResourcesAPI" } },
- { "pid": 1, "tid": 24, "ts": 2398261.23046875, "dur": 505.20002841949463, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5052000284194946, "detail": "UnityEngine.RuntimeInitializeOnLoadMethodAttribute" } },
- { "pid": 1, "tid": 24, "ts": 2398779.541015625, "dur": 784.3999862670898, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7843999862670898, "detail": "UnityEngine.SceneManagement.Scene" } },
- { "pid": 1, "tid": 24, "ts": 2399565.185546875, "dur": 3222.5000858306885, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.2225000858306885, "detail": "UnityEngine.SceneManagement.SceneManager" } },
- { "pid": 1, "tid": 24, "ts": 2402788.57421875, "dur": 1016.6000127792358, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0166000127792358, "detail": "UnityEngine.SceneManagement.SceneManagerAPI" } },
- { "pid": 1, "tid": 24, "ts": 2403806.15234375, "dur": 472.79998660087585, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.47279998660087585, "detail": "UnityEngine.SceneManagement.SceneManagerAPIInternal" } },
- { "pid": 1, "tid": 24, "ts": 2404641.845703125, "dur": 1245.4999685287476, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2454999685287476, "detail": "UnityEngine.ScriptableObject" } },
- { "pid": 1, "tid": 24, "ts": 2405887.939453125, "dur": 2224.400043487549, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.224400043487549, "detail": "UnityEngine.Rendering.ScriptableRenderContext" } },
- { "pid": 1, "tid": 24, "ts": 2408113.525390625, "dur": 934.8000288009644, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9348000288009644, "detail": "UnityEngine.Experimental.Rendering.ScriptableRuntimeReflectionSystemSettings" } },
- { "pid": 1, "tid": 24, "ts": 2409049.31640625, "dur": 3049.999952316284, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.049999952316284, "detail": "UnityEngine.Experimental.Rendering.ScriptableRuntimeReflectionSystemWrapper" } },
- { "pid": 1, "tid": 24, "ts": 2412665.283203125, "dur": 1354.599952697754, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.354599952697754, "detail": "UnityEngine.SetupCoroutine" } },
- { "pid": 1, "tid": 24, "ts": 2414204.345703125, "dur": 1703.6999464035034, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7036999464035034, "detail": "UnityEngine.Rendering.ShaderTagId" } },
- { "pid": 1, "tid": 24, "ts": 2416159.912109375, "dur": 3783.4999561309814, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.7834999561309814, "detail": "UnityEngine.SpaceAttribute" } },
- { "pid": 1, "tid": 24, "ts": 2419945.3125, "dur": 1559.499979019165, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.559499979019165, "detail": "UnityEngine.Experimental.GlobalIllumination.SpotLight" } },
- { "pid": 1, "tid": 24, "ts": 2421506.34765625, "dur": 2992.000102996826, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.992000102996826, "detail": "UnityEngine.Sprite" } },
- { "pid": 1, "tid": 24, "ts": 2424638.671875, "dur": 2102.400064468384, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.102400064468384, "detail": "UnityEngine.U2D.SpriteAtlasManager" } },
- { "pid": 1, "tid": 24, "ts": 2426742.431640625, "dur": 671.500027179718, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.671500027179718, "detail": "UnityEngine.U2D.SpriteBone" } },
- { "pid": 1, "tid": 24, "ts": 2427747.0703125, "dur": 10055.299758911133, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.055299758911133, "detail": "UnityEngine.StackTraceUtility" } },
- { "pid": 1, "tid": 24, "ts": 2437814.453125, "dur": 6376.999855041504, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.376999855041504, "detail": "UnityEngine.Rendering.SupportedRenderingFeatures" } },
- { "pid": 1, "tid": 24, "ts": 2444192.3828125, "dur": 1443.3000087738037, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4433000087738037, "detail": "UnityEngine.SystemInfo" } },
- { "pid": 1, "tid": 24, "ts": 2445808.349609375, "dur": 1780.500054359436, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.780500054359436, "detail": "UnityEngine.TextAsset" } },
- { "pid": 1, "tid": 24, "ts": 2447590.33203125, "dur": 2979.7000885009766, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.9797000885009766, "detail": "UnityEngine.Texture" } },
- { "pid": 1, "tid": 24, "ts": 2450570.80078125, "dur": 720.0999855995178, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7200999855995178, "detail": "UnityEngine.Texture2D" } },
- { "pid": 1, "tid": 24, "ts": 2451291.50390625, "dur": 3171.0000038146973, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.1710000038146973, "detail": "UnityEngine.Texture2DArray" } },
- { "pid": 1, "tid": 24, "ts": 2454463.623046875, "dur": 5010.39981842041, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.01039981842041, "detail": "UnityEngine.Texture3D" } },
- { "pid": 1, "tid": 24, "ts": 2459499.0234375, "dur": 584.5999717712402, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5845999717712402, "detail": "UnityEngine.Experimental.Playables.TextureMixerPlayable" } },
- { "pid": 1, "tid": 24, "ts": 2460582.275390625, "dur": 3998.6000061035156, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.9986000061035156, "detail": "UnityEngine.TouchScreenKeyboard" } },
- { "pid": 1, "tid": 24, "ts": 2464624.0234375, "dur": 1125.499963760376, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.125499963760376, "detail": "UnityEngine.TrackedReference" } },
- { "pid": 1, "tid": 24, "ts": 2465750.732421875, "dur": 7671.599864959717, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.671599864959717, "detail": "UnityEngine.Transform" } },
- { "pid": 1, "tid": 24, "ts": 2473423.33984375, "dur": 621.5999722480774, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6215999722480774, "detail": "UnityEngineInternal.TypeInferenceRuleAttribute" } },
- { "pid": 1, "tid": 24, "ts": 2474060.05859375, "dur": 636.6999745368958, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6366999745368958, "detail": "UnityEngine.UnhandledExceptionHandler" } },
- { "pid": 1, "tid": 24, "ts": 2474697.265625, "dur": 801.5999794006348, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8015999794006348, "detail": "UnityEngine.Events.UnityAction" } },
- { "pid": 1, "tid": 24, "ts": 2475500, "dur": 1996.500015258789, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.996500015258789, "detail": "UnityEngine.Events.UnityEvent" } },
- { "pid": 1, "tid": 24, "ts": 2477497.55859375, "dur": 6829.699993133545, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.829699993133545, "detail": "UnityEngine.Events.UnityEventBase" } },
- { "pid": 1, "tid": 24, "ts": 2484349.12109375, "dur": 1492.300033569336, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.492300033569336, "detail": "UnityEngine.Events.UnityEventTools" } },
- { "pid": 1, "tid": 24, "ts": 2485842.7734375, "dur": 582.8999876976013, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5828999876976013, "detail": "UnityEngine.UnityException" } },
- { "pid": 1, "tid": 24, "ts": 2486427.24609375, "dur": 5003.799915313721, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.003799915313721, "detail": "UnityEngine.UnitySynchronizationContext" } },
- { "pid": 1, "tid": 24, "ts": 2491669.189453125, "dur": 34997.29919433594, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 34.99729919433594, "detail": "UnityEngine.Vector2" } },
- { "pid": 1, "tid": 24, "ts": 2526668.45703125, "dur": 2827.399969100952, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.827399969100952, "detail": "UnityEngine.Vector2Int" } },
- { "pid": 1, "tid": 24, "ts": 2529496.826171875, "dur": 11998.600006103516, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.998600006103516, "detail": "UnityEngine.Vector3" } },
- { "pid": 1, "tid": 24, "ts": 2541496.337890625, "dur": 4693.399906158447, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.693399906158447, "detail": "UnityEngine.Vector4" } },
- { "pid": 1, "tid": 24, "ts": 2546615.478515625, "dur": 765.6999826431274, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7656999826431274, "detail": "UnityEngine.WaitForSecondsRealtime" } },
- { "pid": 1, "tid": 24, "ts": 2547693.603515625, "dur": 608.7999939918518, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6087999939918518, "detail": "UnityEngine.Application/LogCallback" } },
- { "pid": 1, "tid": 24, "ts": 2548605.95703125, "dur": 692.0999884605408, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6920999884605408, "detail": "UnityEngine.Rendering.BatchRendererGroup/OnPerformCulling" } },
- { "pid": 1, "tid": 24, "ts": 2549625.244140625, "dur": 347.2000062465668, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3472000062465668, "detail": "UnityEngine.Camera/CameraCallback" } },
- { "pid": 1, "tid": 24, "ts": 2550181.396484375, "dur": 450.5000114440918, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4505000114440918, "detail": "UnityEngine.CullingGroup/StateChanged" } },
- { "pid": 1, "tid": 24, "ts": 2551275.87890625, "dur": 2971.6999530792236, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.9716999530792236, "detail": "UnityEngine.Experimental.GlobalIllumination.Lightmapping/<>c" } },
- { "pid": 1, "tid": 24, "ts": 2554248.53515625, "dur": 460.7999920845032, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4607999920845032, "detail": "UnityEngine.Experimental.GlobalIllumination.Lightmapping/RequestLightsDelegate" } },
- { "pid": 1, "tid": 24, "ts": 2554726.07421875, "dur": 2775.700092315674, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.775700092315674, "detail": "UnityEngine.Playables.PlayableBinding/CreateOutputMethod" } },
- { "pid": 1, "tid": 24, "ts": 2559377.44140625, "dur": 420.89998722076416, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.42089998722076416, "detail": "UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers" } },
- { "pid": 1, "tid": 24, "ts": 2560478.759765625, "dur": 957.4999809265137, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9574999809265137, "detail": "UnityEngine.RectTransform/ReapplyDrivenProperties" } },
- { "pid": 1, "tid": 24, "ts": 2561471.19140625, "dur": 1111.0999584197998, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1110999584197998, "detail": "UnityEngine.TextAsset/EncodingUtility" } },
- { "pid": 1, "tid": 24, "ts": 2562601.5625, "dur": 549.6000051498413, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5496000051498413, "detail": "UnityEngine.Transform/Enumerator" } },
- { "pid": 1, "tid": 24, "ts": 2563152.587890625, "dur": 383.39999318122864, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.38339999318122864, "detail": "UnityEngine.UnhandledExceptionHandler/<>c" } },
- { "pid": 1, "tid": 24, "ts": 2563536.62109375, "dur": 1190.1999711990356, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1901999711990356, "detail": "UnityEngine.UnitySynchronizationContext/WorkRequest" } },
- { "pid": 1, "tid": 24, "ts": 2564762.451171875, "dur": 105647.00317382812, "ph": "X", "name": "UnityEngine.CoreModule1.cpp", "args": { "durationMS": 105.64700317382812, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 2670428.7109375, "dur": 1455.6000232696533, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4556000232696533, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UI.ColorBlock>" } },
- { "pid": 1, "tid": 24, "ts": 2671885.986328125, "dur": 1522.3000049591064, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5223000049591064, "detail": "System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>" } },
- { "pid": 1, "tid": 24, "ts": 2673410.15625, "dur": 1296.0000038146973, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2960000038146973, "detail": "System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>" } },
- { "pid": 1, "tid": 24, "ts": 2674707.763671875, "dur": 1705.6000232696533, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7056000232696533, "detail": "System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>" } },
- { "pid": 1, "tid": 24, "ts": 2676414.794921875, "dur": 1470.6000089645386, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4706000089645386, "detail": "System.Array/InternalEnumerator`1<System.DateTime>" } },
- { "pid": 1, "tid": 24, "ts": 2677887.6953125, "dur": 1425.3000020980835, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4253000020980835, "detail": "System.Array/InternalEnumerator`1<System.Decimal>" } },
- { "pid": 1, "tid": 24, "ts": 2679314.94140625, "dur": 1391.0000324249268, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3910000324249268, "detail": "System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>" } },
- { "pid": 1, "tid": 24, "ts": 2680707.763671875, "dur": 1546.4999675750732, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5464999675750732, "detail": "System.Array/InternalEnumerator`1<System.Double>" } },
- { "pid": 1, "tid": 24, "ts": 2682256.34765625, "dur": 1831.5999507904053, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8315999507904053, "detail": "System.Array/InternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>" } },
- { "pid": 1, "tid": 24, "ts": 2684089.599609375, "dur": 1458.6999416351318, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4586999416351318, "detail": "System.Array/InternalEnumerator`1<System.Int16>" } },
- { "pid": 1, "tid": 24, "ts": 2685550.29296875, "dur": 1441.59996509552, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.44159996509552, "detail": "System.Array/InternalEnumerator`1<System.Int32>" } },
- { "pid": 1, "tid": 24, "ts": 2686993.896484375, "dur": 1470.0000286102295, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4700000286102295, "detail": "System.Array/InternalEnumerator`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 24, "ts": 2688465.576171875, "dur": 1401.800036430359, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4018000364303589, "detail": "System.Array/InternalEnumerator`1<System.Int64>" } },
- { "pid": 1, "tid": 24, "ts": 2689869.140625, "dur": 4496.200084686279, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.496200084686279, "detail": "System.Array/InternalEnumerator`1<System.IntPtr>" } },
- { "pid": 1, "tid": 24, "ts": 2694367.1875, "dur": 1725.600004196167, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.725600004196167, "detail": "System.Array/InternalEnumerator`1<System.Globalization.InternalCodePageDataItem>" } },
- { "pid": 1, "tid": 24, "ts": 2696094.7265625, "dur": 1540.3000116348267, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5403000116348267, "detail": "System.Array/InternalEnumerator`1<System.Globalization.InternalEncodingDataItem>" } },
- { "pid": 1, "tid": 24, "ts": 2697637.20703125, "dur": 1515.4000520706177, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5154000520706177, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Keyframe>" } },
- { "pid": 1, "tid": 24, "ts": 2699154.541015625, "dur": 1669.2999601364136, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6692999601364136, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>" } },
- { "pid": 1, "tid": 24, "ts": 2700825.68359375, "dur": 2190.500020980835, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.190500020980835, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UI.Navigation>" } },
- { "pid": 1, "tid": 24, "ts": 2703017.578125, "dur": 1427.0999431610107, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4270999431610107, "detail": "System.Array/InternalEnumerator`1<System.Object>" } },
- { "pid": 1, "tid": 24, "ts": 2704446.533203125, "dur": 1395.0999975204468, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3950999975204468, "detail": "System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>" } },
- { "pid": 1, "tid": 24, "ts": 2705843.26171875, "dur": 1331.5000534057617, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3315000534057617, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Plane>" } },
- { "pid": 1, "tid": 24, "ts": 2707176.513671875, "dur": 1654.9999713897705, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6549999713897705, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>" } },
- { "pid": 1, "tid": 24, "ts": 2708833.740234375, "dur": 1473.199963569641, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4731999635696411, "detail": "System.Array/InternalEnumerator`1<UnityEngine.LowLevel.PlayerLoopSystem>" } },
- { "pid": 1, "tid": 24, "ts": 2710309.08203125, "dur": 2167.799949645996, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.167799949645996, "detail": "System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>" } },
- { "pid": 1, "tid": 24, "ts": 2712478.271484375, "dur": 1410.3000164031982, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4103000164031982, "detail": "System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>" } },
- { "pid": 1, "tid": 24, "ts": 2713890.869140625, "dur": 1554.4999837875366, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5544999837875366, "detail": "System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 24, "ts": 2715447.265625, "dur": 1395.4999446868896, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3954999446868896, "detail": "System.Array/InternalEnumerator`1<System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 24, "ts": 2716844.482421875, "dur": 1425.6000518798828, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4256000518798828, "detail": "System.Array/InternalEnumerator`1<System.SByte>" } },
- { "pid": 1, "tid": 24, "ts": 2718271.240234375, "dur": 1440.000057220459, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.440000057220459, "detail": "System.Array/InternalEnumerator`1<System.Single>" } },
- { "pid": 1, "tid": 24, "ts": 2719713.37890625, "dur": 1442.3999786376953, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4423999786376953, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UI.SpriteState>" } },
- { "pid": 1, "tid": 24, "ts": 2721157.2265625, "dur": 1896.4999914169312, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8964999914169312, "detail": "System.Array/InternalEnumerator`1<System.TimeSpan>" } },
- { "pid": 1, "tid": 24, "ts": 2723055.419921875, "dur": 1510.9000205993652, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5109000205993652, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 24, "ts": 2724568.115234375, "dur": 1429.9999475479126, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4299999475479126, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 24, "ts": 2725999.51171875, "dur": 1414.9999618530273, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4149999618530273, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 24, "ts": 2727416.015625, "dur": 1358.1000566482544, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3581000566482544, "detail": "System.Array/InternalEnumerator`1<System.UInt16>" } },
- { "pid": 1, "tid": 24, "ts": 2728775.634765625, "dur": 1412.4000072479248, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4124000072479248, "detail": "System.Array/InternalEnumerator`1<System.UInt32>" } },
- { "pid": 1, "tid": 24, "ts": 2730189.208984375, "dur": 2173.099994659424, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.173099994659424, "detail": "System.Array/InternalEnumerator`1<System.UInt64>" } },
- { "pid": 1, "tid": 24, "ts": 2732364.013671875, "dur": 1951.5999555587769, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9515999555587769, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Vector2>" } },
- { "pid": 1, "tid": 24, "ts": 2734317.626953125, "dur": 1406.8000316619873, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4068000316619873, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 24, "ts": 2735726.318359375, "dur": 1405.5999517440796, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4055999517440796, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 24, "ts": 2737133.544921875, "dur": 1426.1000156402588, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4261000156402588, "detail": "System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 24, "ts": 2738561.5234375, "dur": 1424.4999885559082, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4244999885559082, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 24, "ts": 2739987.548828125, "dur": 1704.9000263214111, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7049000263214111, "detail": "System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>" } },
- { "pid": 1, "tid": 24, "ts": 2741694.580078125, "dur": 1434.7000122070312, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4347000122070312, "detail": "System.Array/InternalEnumerator`1<System.Collections.Hashtable/bucket>" } },
- { "pid": 1, "tid": 24, "ts": 2743130.615234375, "dur": 1456.7999839782715, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4567999839782715, "detail": "System.Array/InternalEnumerator`1<System.ParameterizedStrings/FormatParam>" } },
- { "pid": 1, "tid": 24, "ts": 2744589.599609375, "dur": 1413.599967956543, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.413599967956543, "detail": "System.Array/InternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>" } },
- { "pid": 1, "tid": 24, "ts": 2746004.8828125, "dur": 1395.0999975204468, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3950999975204468, "detail": "System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>" } },
- { "pid": 1, "tid": 24, "ts": 2747401.611328125, "dur": 1403.499960899353, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.403499960899353, "detail": "System.Array/InternalEnumerator`1<System.Globalization.UmAlQuraCalendar/DateMapping>" } },
- { "pid": 1, "tid": 24, "ts": 2748806.640625, "dur": 1444.8000192642212, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4448000192642212, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 24, "ts": 2750253.173828125, "dur": 2564.1000270843506, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.5641000270843506, "detail": "UnityEngine.Events.InvokableCall`1<System.Boolean>" } },
- { "pid": 1, "tid": 24, "ts": 2752819.091796875, "dur": 2668.100118637085, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.668100118637085, "detail": "UnityEngine.Events.InvokableCall`1<UnityEngine.Color>" } },
- { "pid": 1, "tid": 24, "ts": 2755488.76953125, "dur": 2584.8000049591064, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.5848000049591064, "detail": "UnityEngine.Events.InvokableCall`1<System.Int32>" } },
- { "pid": 1, "tid": 24, "ts": 2758074.462890625, "dur": 2439.199924468994, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.439199924468994, "detail": "UnityEngine.Events.InvokableCall`1<System.Object>" } },
- { "pid": 1, "tid": 24, "ts": 2760515.13671875, "dur": 2551.3999462127686, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.5513999462127686, "detail": "UnityEngine.Events.InvokableCall`1<System.Single>" } },
- { "pid": 1, "tid": 24, "ts": 2763068.359375, "dur": 2481.1999797821045, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.4811999797821045, "detail": "UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>" } },
- { "pid": 1, "tid": 24, "ts": 2765551.26953125, "dur": 1467.2000408172607, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4672000408172607, "detail": "UnityEngine.Events.InvokableCall`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 24, "ts": 2767020.751953125, "dur": 1559.5999956130981, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5595999956130981, "detail": "UnityEngine.Events.InvokableCall`3<System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 24, "ts": 2768581.787109375, "dur": 1652.500033378601, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.652500033378601, "detail": "UnityEngine.Events.InvokableCall`4<System.Object,System.Object,System.Object,System.Object>" } },
- { "pid": 1, "tid": 24, "ts": 2770236.328125, "dur": 1475.9000539779663, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4759000539779663, "detail": "System.Linq.Enumerable/Iterator`1<System.Object>" } },
- { "pid": 1, "tid": 24, "ts": 2771714.111328125, "dur": 1261.9999647140503, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2619999647140503, "detail": "System.IO.Iterator`1<System.Object>" } },
- { "pid": 1, "tid": 24, "ts": 2773705.56640625, "dur": 768.4000134468079, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7684000134468079, "detail": "System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>" } },
- { "pid": 1, "tid": 24, "ts": 2774475.830078125, "dur": 720.300018787384, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.720300018787384, "detail": "System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>" } },
- { "pid": 1, "tid": 24, "ts": 2775198.2421875, "dur": 711.1999988555908, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7111999988555908, "detail": "System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>" } },
- { "pid": 1, "tid": 24, "ts": 2775910.888671875, "dur": 796.7000007629395, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7967000007629395, "detail": "System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>" } },
- { "pid": 1, "tid": 24, "ts": 2776708.740234375, "dur": 691.2000179290771, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6912000179290771, "detail": "System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 24, "ts": 2777401.85546875, "dur": 746.999979019165, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.746999979019165, "detail": "System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 24, "ts": 2778150.390625, "dur": 620.9999918937683, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6209999918937683, "detail": "System.Collections.Generic.LinkedListNode`1<System.Object>" } },
- { "pid": 1, "tid": 24, "ts": 2778772.4609375, "dur": 11116.100311279297, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 11.116100311279297, "detail": "System.Collections.Generic.LinkedList`1<System.Object>" } },
- { "pid": 1, "tid": 24, "ts": 2789890.13671875, "dur": 2263.6001110076904, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.2636001110076904, "detail": "System.RuntimeType/ListBuilder`1<System.Object>" } },
- { "pid": 1, "tid": 24, "ts": 2792156.005859375, "dur": 1190.7000541687012, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.1907000541687012, "detail": "UnityEngine.UI.ListPool`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 24, "ts": 2793348.14453125, "dur": 733.9000105857849, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7339000105857849, "detail": "UnityEngine.UI.ListPool`1<System.Int32>" } },
- { "pid": 1, "tid": 24, "ts": 2794083.740234375, "dur": 848.9999771118164, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8489999771118164, "detail": "UnityEngine.UI.ListPool`1<System.Object>" } },
- { "pid": 1, "tid": 24, "ts": 2794934.08203125, "dur": 830.3999900817871, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8303999900817871, "detail": "UnityEngine.UI.ListPool`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 24, "ts": 2795765.869140625, "dur": 828.9999961853027, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8289999961853027, "detail": "UnityEngine.UI.ListPool`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 24, "ts": 2796596.435546875, "dur": 803.0999898910522, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8030999898910522, "detail": "UnityEngine.UI.ListPool`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 24, "ts": 2797401.611328125, "dur": 16701.200485229492, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 16.701200485229492, "detail": "System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 24, "ts": 2814105.95703125, "dur": 16419.10171508789, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 16.41910171508789, "detail": "System.Collections.Generic.List`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 24, "ts": 2830526.3671875, "dur": 16298.599243164062, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 16.298599243164062, "detail": "System.Collections.Generic.List`1<System.Int32>" } },
- { "pid": 1, "tid": 24, "ts": 2846827.1484375, "dur": 51582.801818847656, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 51.582801818847656, "detail": "System.Collections.Generic.List`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 24, "ts": 2898411.62109375, "dur": 17734.098434448242, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 17.734098434448242, "detail": "System.Collections.Generic.List`1<System.Object>" } },
- { "pid": 1, "tid": 24, "ts": 2916147.705078125, "dur": 30847.999572753906, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 30.847999572753906, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 24, "ts": 2946998.291015625, "dur": 53456.8977355957, "ph": "X", "name": "Generics3.cpp", "args": { "durationMS": 53.4568977355957, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 3000491.455078125, "dur": 3488.800048828125, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.488800048828125, "detail": "System.Console" } },
- { "pid": 1, "tid": 24, "ts": 3004237.79296875, "dur": 383.70001316070557, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.38370001316070557, "detail": "System.ConsoleCancelEventHandler" } },
- { "pid": 1, "tid": 24, "ts": 3004632.568359375, "dur": 1555.799961090088, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.555799961090088, "detail": "System.ConsoleDriver" } },
- { "pid": 1, "tid": 24, "ts": 3006208.49609375, "dur": 2025.0000953674316, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0250000953674316, "detail": "System.ConsoleKeyInfo" } },
- { "pid": 1, "tid": 24, "ts": 3008280.2734375, "dur": 19737.699508666992, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 19.737699508666992, "detail": "System.Runtime.Remoting.Messaging.ConstructionCall" } },
- { "pid": 1, "tid": 24, "ts": 3028019.04296875, "dur": 1605.3999662399292, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6053999662399292, "detail": "System.Runtime.Remoting.Messaging.ConstructionCallDictionary" } },
- { "pid": 1, "tid": 24, "ts": 3029918.9453125, "dur": 677.3999929428101, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6773999929428101, "detail": "System.Runtime.Remoting.Messaging.ConstructionResponse" } },
- { "pid": 1, "tid": 24, "ts": 3030597.16796875, "dur": 1294.1999435424805, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2941999435424805, "detail": "System.Reflection.Emit.ConstructorBuilder" } },
- { "pid": 1, "tid": 24, "ts": 3031892.08984375, "dur": 2295.5000400543213, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.2955000400543213, "detail": "System.Reflection.ConstructorInfo" } },
- { "pid": 1, "tid": 24, "ts": 3034188.4765625, "dur": 9583.100318908691, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.583100318908691, "detail": "System.Runtime.Remoting.Contexts.Context" } },
- { "pid": 1, "tid": 24, "ts": 3043855.224609375, "dur": 352.8999984264374, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3528999984264374, "detail": "System.Threading.ContextCallback" } },
- { "pid": 1, "tid": 24, "ts": 3044332.763671875, "dur": 673.0999946594238, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6730999946594238, "detail": "System.Runtime.Remoting.Activation.ContextLevelActivator" } },
- { "pid": 1, "tid": 24, "ts": 3045109.619140625, "dur": 586.7000222206116, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5867000222206116, "detail": "System.Threading.Tasks.ContinuationTaskFromTask" } },
- { "pid": 1, "tid": 24, "ts": 3045842.7734375, "dur": 1230.7000160217285, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2307000160217285, "detail": "Mono.Globalization.Unicode.ContractionComparer" } },
- { "pid": 1, "tid": 24, "ts": 3047074.462890625, "dur": 62846.900939941406, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 62.846900939941406, "detail": "System.Convert" } },
- { "pid": 1, "tid": 24, "ts": 3109922.119140625, "dur": 8773.099899291992, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.773099899291992, "detail": "System.Runtime.Serialization.Formatters.Binary.Converter" } },
- { "pid": 1, "tid": 24, "ts": 3118998.779296875, "dur": 1144.700050354004, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.144700050354004, "detail": "System.Runtime.Remoting.Channels.CrossAppDomainChannel" } },
- { "pid": 1, "tid": 24, "ts": 3120407.71484375, "dur": 2850.100040435791, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.850100040435791, "detail": "System.Runtime.Remoting.Channels.CrossAppDomainSink" } },
- { "pid": 1, "tid": 24, "ts": 3123258.7890625, "dur": 1504.4000148773193, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5044000148773193, "detail": "System.Runtime.Remoting.Contexts.CrossContextChannel" } },
- { "pid": 1, "tid": 24, "ts": 3125070.068359375, "dur": 1659.7000360488892, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6597000360488892, "detail": "System.Security.Cryptography.CryptoConfig" } },
- { "pid": 1, "tid": 24, "ts": 3126730.224609375, "dur": 872.5000023841858, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8725000023841858, "detail": "System.Security.Cryptography.CryptographicException" } },
- { "pid": 1, "tid": 24, "ts": 3127603.515625, "dur": 3596.8000888824463, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.5968000888824463, "detail": "System.Security.Cryptography.CryptographicUnexpectedOperationException" } },
- { "pid": 1, "tid": 24, "ts": 3131201.416015625, "dur": 2693.3000087738037, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.6933000087738037, "detail": "System.CultureAwareComparer" } },
- { "pid": 1, "tid": 24, "ts": 3133895.99609375, "dur": 12844.099998474121, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.844099998474121, "detail": "System.Globalization.CultureData" } },
- { "pid": 1, "tid": 24, "ts": 3146740.72265625, "dur": 84065.99426269531, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 84.06599426269531, "detail": "System.Globalization.CultureInfo" } },
- { "pid": 1, "tid": 24, "ts": 3230807.861328125, "dur": 2095.7999229431152, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0957999229431152, "detail": "System.Globalization.CultureNotFoundException" } },
- { "pid": 1, "tid": 24, "ts": 3233152.34375, "dur": 6095.399856567383, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.095399856567383, "detail": "System.Reflection.CustomAttributeData" } },
- { "pid": 1, "tid": 24, "ts": 3239250.9765625, "dur": 75692.69561767578, "ph": "X", "name": "mscorlib2.cpp", "args": { "durationMS": 75.69269561767578, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 3314959.716796875, "dur": 335.00000834465027, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.33500000834465027, "detail": "System.ObsoleteAttribute" } },
- { "pid": 1, "tid": 24, "ts": 3315547.607421875, "dur": 2197.999954223633, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.197999954223633, "detail": "System.OperatingSystem" } },
- { "pid": 1, "tid": 24, "ts": 3317746.826171875, "dur": 1321.7999935150146, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3217999935150146, "detail": "System.OperationCanceledException" } },
- { "pid": 1, "tid": 24, "ts": 3319392.578125, "dur": 1151.2999534606934, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1512999534606934, "detail": "System.OrdinalComparer" } },
- { "pid": 1, "tid": 24, "ts": 3320628.41796875, "dur": 462.3999893665314, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.46239998936653137, "detail": "System.OutOfMemoryException" } },
- { "pid": 1, "tid": 24, "ts": 3321091.30859375, "dur": 584.9000215530396, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5849000215530396, "detail": "System.OverflowException" } },
- { "pid": 1, "tid": 24, "ts": 3321788.330078125, "dur": 3376.499891281128, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.376499891281128, "detail": "System.Reflection.ParameterInfo" } },
- { "pid": 1, "tid": 24, "ts": 3325166.015625, "dur": 379.40001487731934, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.37940001487731934, "detail": "System.Reflection.ParameterModifier" } },
- { "pid": 1, "tid": 24, "ts": 3325546.38671875, "dur": 16318.899154663086, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 16.318899154663086, "detail": "System.ParameterizedStrings" } },
- { "pid": 1, "tid": 24, "ts": 3341865.966796875, "dur": 334.89999175071716, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.33489999175071716, "detail": "System.Threading.ParameterizedThreadStart" } },
- { "pid": 1, "tid": 24, "ts": 3342202.1484375, "dur": 1935.0999593734741, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9350999593734741, "detail": "System.ParamsArray" } },
- { "pid": 1, "tid": 24, "ts": 3344154.052734375, "dur": 9247.099876403809, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.247099876403809, "detail": "System.ParseNumbers" } },
- { "pid": 1, "tid": 24, "ts": 3353401.85546875, "dur": 422.6999878883362, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4226999878883362, "detail": "System.Runtime.Serialization.Formatters.Binary.ParseRecord" } },
- { "pid": 1, "tid": 24, "ts": 3353825.68359375, "dur": 45644.40155029297, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 45.64440155029297, "detail": "System.IO.Path" } },
- { "pid": 1, "tid": 24, "ts": 3399728.271484375, "dur": 504.40001487731934, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5044000148773193, "detail": "System.IO.PathTooLongException" } },
- { "pid": 1, "tid": 24, "ts": 3400233.642578125, "dur": 855.89998960495, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.85589998960495, "detail": "System.IO.PinnedBufferMemoryStream" } },
- { "pid": 1, "tid": 24, "ts": 3401090.576171875, "dur": 398.00000190734863, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.39800000190734863, "detail": "System.Threading.PlatformHelper" } },
- { "pid": 1, "tid": 24, "ts": 3401500, "dur": 1155.6999683380127, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1556999683380127, "detail": "System.PlatformNotSupportedException" } },
- { "pid": 1, "tid": 24, "ts": 3402656.73828125, "dur": 1292.6000356674194, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2926000356674194, "detail": "System.Reflection.Pointer" } },
- { "pid": 1, "tid": 24, "ts": 3403950.1953125, "dur": 541.4999723434448, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5414999723434448, "detail": "System.PointerSpec" } },
- { "pid": 1, "tid": 24, "ts": 3404578.369140625, "dur": 1586.1999988555908, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5861999988555908, "detail": "System.Runtime.Serialization.Formatters.Binary.PrimitiveArray" } },
- { "pid": 1, "tid": 24, "ts": 3406181.15234375, "dur": 1566.59996509552, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.56659996509552, "detail": "System.Reflection.Emit.PropertyBuilder" } },
- { "pid": 1, "tid": 24, "ts": 3407748.779296875, "dur": 4197.999954223633, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.197999954223633, "detail": "System.Reflection.PropertyInfo" } },
- { "pid": 1, "tid": 24, "ts": 3411947.998046875, "dur": 5790.599822998047, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.790599822998047, "detail": "System.Runtime.Remoting.ProviderData" } },
- { "pid": 1, "tid": 24, "ts": 3417739.990234375, "dur": 415.89999198913574, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.41589999198913574, "detail": "System.Runtime.Remoting.Proxies.ProxyAttribute" } },
- { "pid": 1, "tid": 24, "ts": 3418282.71484375, "dur": 4937.79993057251, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.93779993057251, "detail": "System.Collections.Queue" } },
- { "pid": 1, "tid": 24, "ts": 3423221.435546875, "dur": 725.8999943733215, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7258999943733215, "detail": "System.Threading.QueueUserWorkItemCallback" } },
- { "pid": 1, "tid": 24, "ts": 3423948.73046875, "dur": 1451.799988746643, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.451799988746643, "detail": "System.Security.Cryptography.RNGCryptoServiceProvider" } },
- { "pid": 1, "tid": 24, "ts": 3425401.611328125, "dur": 1574.3000507354736, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5743000507354736, "detail": "System.Random" } },
- { "pid": 1, "tid": 24, "ts": 3426976.806640625, "dur": 417.80000925064087, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.41780000925064087, "detail": "System.Security.Cryptography.RandomNumberGenerator" } },
- { "pid": 1, "tid": 24, "ts": 3427395.5078125, "dur": 657.5999855995178, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6575999855995178, "detail": "System.RankException" } },
- { "pid": 1, "tid": 24, "ts": 3428053.955078125, "dur": 9372.699737548828, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.372699737548828, "detail": "System.Runtime.Serialization.Formatters.Binary.ReadObjectInfo" } },
- { "pid": 1, "tid": 24, "ts": 3437427.490234375, "dur": 15854.8002243042, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.8548002243042, "detail": "System.Runtime.Remoting.Proxies.RealProxy" } },
- { "pid": 1, "tid": 24, "ts": 3453543.9453125, "dur": 1180.799961090088, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.180799961090088, "detail": "System.Reflection.ReflectionTypeLoadException" } },
- { "pid": 1, "tid": 24, "ts": 3454725.830078125, "dur": 3292.7000522613525, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.2927000522613525, "detail": "System.Globalization.RegionInfo" } },
- { "pid": 1, "tid": 24, "ts": 3458019.287109375, "dur": 1903.9000272750854, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9039000272750854, "detail": "System.Threading.RegisteredWaitHandle" } },
- { "pid": 1, "tid": 24, "ts": 3460231.201171875, "dur": 3805.5999279022217, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.8055999279022217, "detail": "Microsoft.Win32.RegistryKey" } },
- { "pid": 1, "tid": 24, "ts": 3464037.59765625, "dur": 499.7999966144562, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4997999966144562, "detail": "Microsoft.Win32.RegistryKeyComparer" } },
- { "pid": 1, "tid": 24, "ts": 3464672.8515625, "dur": 7921.700000762939, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.9217000007629395, "detail": "System.Runtime.Remoting.RemotingConfiguration" } },
- { "pid": 1, "tid": 24, "ts": 3472595.458984375, "dur": 519.5000171661377, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5195000171661377, "detail": "System.Runtime.Remoting.RemotingException" } },
- { "pid": 1, "tid": 24, "ts": 3473115.478515625, "dur": 4382.299900054932, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.382299900054932, "detail": "System.Runtime.Remoting.Proxies.RemotingProxy" } },
- { "pid": 1, "tid": 24, "ts": 3477498.291015625, "dur": 31965.999603271484, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 31.965999603271484, "detail": "System.Runtime.Remoting.RemotingServices" } },
- { "pid": 1, "tid": 24, "ts": 3509465.576171875, "dur": 785.6000065803528, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7856000065803528, "detail": "System.Runtime.Remoting.Messaging.RemotingSurrogate" } },
- { "pid": 1, "tid": 24, "ts": 3510251.953125, "dur": 797.1000075340271, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7971000075340271, "detail": "System.Runtime.Remoting.Messaging.RemotingSurrogateSelector" } },
- { "pid": 1, "tid": 24, "ts": 3511303.466796875, "dur": 469.50000524520874, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.46950000524520874, "detail": "System.ResolveEventHandler" } },
- { "pid": 1, "tid": 24, "ts": 3511773.193359375, "dur": 1229.3000221252441, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2293000221252441, "detail": "System.Resources.ResourceLocator" } },
- { "pid": 1, "tid": 24, "ts": 3513003.662109375, "dur": 2636.3000869750977, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.6363000869750977, "detail": "System.Resources.ResourceManager" } },
- { "pid": 1, "tid": 24, "ts": 3515641.11328125, "dur": 16685.800552368164, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 16.685800552368164, "detail": "System.Resources.ResourceReader" } },
- { "pid": 1, "tid": 24, "ts": 3532329.345703125, "dur": 101432.30438232422, "ph": "X", "name": "mscorlib9.cpp", "args": { "durationMS": 101.43230438232422, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 3634003.662109375, "dur": 284797.91259765625, "ph": "X", "name": "Idle", "args": { "durationMS": 284.79791259765625, "detail": "" } },
- { "pid": 1, "tid": 25, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 25, "ts": 1719553.466796875, "dur": 11555.399894714355, "ph": "X", "name": "Idle", "args": { "durationMS": 11.555399894714355, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 1844827.392578125, "dur": 3321.500062942505, "ph": "X", "name": "Write Assembly", "args": { "durationMS": 3.321500062942505, "detail": "UnityEngine.SharedInternalsModule" } },
- { "pid": 1, "tid": 25, "ts": 1848980.1025390625, "dur": 175343.505859375, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 175.343505859375, "detail": "System" } },
- { "pid": 1, "tid": 25, "ts": 1850091.064453125, "dur": 174231.90307617188, "ph": "X", "name": "System_Attr.cpp", "args": { "durationMS": 174.23190307617188, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 2025916.9921875, "dur": 4779.399871826172, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 4.779399871826172, "detail": "UnityEngine.GridModule" } },
- { "pid": 1, "tid": 25, "ts": 2025967.6513671875, "dur": 4728.000164031982, "ph": "X", "name": "UnityEngine.GridModule_Attr.cpp", "args": { "durationMS": 4.728000164031982, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 2030701.171875, "dur": 22883.501052856445, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 22.883501052856445, "detail": "UnityEngine.IMGUIModule" } },
- { "pid": 1, "tid": 25, "ts": 2030727.5390625, "dur": 22856.300354003906, "ph": "X", "name": "UnityEngine.IMGUIModule_Attr.cpp", "args": { "durationMS": 22.856300354003906, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 2053587.40234375, "dur": 9699.899673461914, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 9.699899673461914, "detail": "UnityEngine.UnityAnalyticsModule" } },
- { "pid": 1, "tid": 25, "ts": 2053614.013671875, "dur": 9672.599792480469, "ph": "X", "name": "UnityEngine.UnityAnalyticsModule_Attr.cpp", "args": { "durationMS": 9.672599792480469, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 2074523.92578125, "dur": 6122.000217437744, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.122000217437744, "detail": "<Module>" } },
- { "pid": 1, "tid": 25, "ts": 2080657.958984375, "dur": 15104.498863220215, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.104498863220215, "detail": "UnityEngine.Physics2D" } },
- { "pid": 1, "tid": 25, "ts": 2095763.671875, "dur": 96471.19903564453, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 96.47119903564453, "detail": "UnityEngine.RaycastHit2D" } },
- { "pid": 1, "tid": 25, "ts": 2192259.27734375, "dur": 19061.00082397461, "ph": "X", "name": "UnityEngine.Physics2DModule.cpp", "args": { "durationMS": 19.06100082397461, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 2211380.37109375, "dur": 1363.1000518798828, "ph": "X", "name": "UnityEngine.cpp", "args": { "durationMS": 1.3631000518798828, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 2212786.1328125, "dur": 7685.100078582764, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.685100078582764, "detail": "UnityEngine.Networking.CertificateHandler" } },
- { "pid": 1, "tid": 25, "ts": 2220472.65625, "dur": 616.100013256073, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.616100013256073, "detail": "UnityEngine.Networking.DownloadHandler" } },
- { "pid": 1, "tid": 25, "ts": 2221090.576171875, "dur": 1126.9999742507935, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1269999742507935, "detail": "UnityEngineInternal.WebRequestUtils" } },
- { "pid": 1, "tid": 25, "ts": 2222220.458984375, "dur": 22696.199417114258, "ph": "X", "name": "UnityEngine.UnityWebRequestModule.cpp", "args": { "durationMS": 22.696199417114258, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 2245181.640625, "dur": 393.7000036239624, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3937000036239624, "detail": "UnityEngine.Bindings.FreeFunctionAttribute" } },
- { "pid": 1, "tid": 25, "ts": 2245942.87109375, "dur": 703.7000060081482, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7037000060081482, "detail": "UnityEngine.NativeClassAttribute" } },
- { "pid": 1, "tid": 25, "ts": 2246647.216796875, "dur": 805.2999973297119, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8052999973297119, "detail": "UnityEngine.Bindings.NativeConditionalAttribute" } },
- { "pid": 1, "tid": 25, "ts": 2247453.61328125, "dur": 3439.800024032593, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.4398000240325928, "detail": "UnityEngine.Bindings.NativeHeaderAttribute" } },
- { "pid": 1, "tid": 25, "ts": 2250895.263671875, "dur": 7508.699893951416, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.508699893951416, "detail": "UnityEngine.Bindings.NativeMethodAttribute" } },
- { "pid": 1, "tid": 25, "ts": 2258405.2734375, "dur": 670.3000068664551, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6703000068664551, "detail": "UnityEngine.Bindings.NativeNameAttribute" } },
- { "pid": 1, "tid": 25, "ts": 2259076.416015625, "dur": 788.2000207901001, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7882000207901001, "detail": "UnityEngine.Bindings.NativePropertyAttribute" } },
- { "pid": 1, "tid": 25, "ts": 2259865.478515625, "dur": 658.9000225067139, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6589000225067139, "detail": "UnityEngine.Bindings.NativeThrowsAttribute" } },
- { "pid": 1, "tid": 25, "ts": 2260525.146484375, "dur": 3689.199924468994, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.689199924468994, "detail": "UnityEngine.Bindings.NativeTypeAttribute" } },
- { "pid": 1, "tid": 25, "ts": 2264947.998046875, "dur": 645.6999778747559, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6456999778747559, "detail": "UnityEngine.Bindings.StaticAccessorAttribute" } },
- { "pid": 1, "tid": 25, "ts": 2265609.375, "dur": 415.19999504089355, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.41519999504089355, "detail": "UnityEngine.ThreadAndSerializationSafeAttribute" } },
- { "pid": 1, "tid": 25, "ts": 2266492.67578125, "dur": 479.40000891685486, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.47940000891685486, "detail": "UnityEngine.UnityString" } },
- { "pid": 1, "tid": 25, "ts": 2266973.14453125, "dur": 5093.400001525879, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.093400001525879, "detail": "UnityEngine.Scripting.UsedByNativeCodeAttribute" } },
- { "pid": 1, "tid": 25, "ts": 2272478.515625, "dur": 9355.09967803955, "ph": "X", "name": "UnityEngine.SharedInternalsModule.cpp", "args": { "durationMS": 9.35509967803955, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 2281893.798828125, "dur": 1093.2999849319458, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0932999849319458, "detail": "UnityEngine.EventSystems.AbstractEventData" } },
- { "pid": 1, "tid": 25, "ts": 2282988.28125, "dur": 6641.200065612793, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.641200065612793, "detail": "UnityEngine.UI.AnimationTriggers" } },
- { "pid": 1, "tid": 25, "ts": 2289631.34765625, "dur": 9995.30029296875, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.99530029296875, "detail": "UnityEngine.UI.AspectRatioFitter" } },
- { "pid": 1, "tid": 25, "ts": 2299628.173828125, "dur": 4703.800201416016, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.703800201416016, "detail": "UnityEngine.EventSystems.AxisEventData" } },
- { "pid": 1, "tid": 25, "ts": 2304333.740234375, "dur": 615.7000064849854, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6157000064849854, "detail": "UnityEngine.EventSystems.BaseEventData" } },
- { "pid": 1, "tid": 25, "ts": 2304950.439453125, "dur": 7664.80016708374, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.66480016708374, "detail": "UnityEngine.EventSystems.BaseInput" } },
- { "pid": 1, "tid": 25, "ts": 2312616.69921875, "dur": 21004.199981689453, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 21.004199981689453, "detail": "UnityEngine.EventSystems.BaseInputModule" } },
- { "pid": 1, "tid": 25, "ts": 2333622.55859375, "dur": 3578.900098800659, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.578900098800659, "detail": "UnityEngine.UI.BaseMeshEffect" } },
- { "pid": 1, "tid": 25, "ts": 2337202.880859375, "dur": 3216.599941253662, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.216599941253662, "detail": "UnityEngine.EventSystems.BaseRaycaster" } },
- { "pid": 1, "tid": 25, "ts": 2340549.560546875, "dur": 2078.5000324249268, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0785000324249268, "detail": "UnityEngine.UI.Button" } },
- { "pid": 1, "tid": 25, "ts": 2342629.8828125, "dur": 22303.800582885742, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 22.303800582885742, "detail": "UnityEngine.UI.CanvasScaler" } },
- { "pid": 1, "tid": 25, "ts": 2364948.486328125, "dur": 20196.09832763672, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 20.19609832763672, "detail": "UnityEngine.UI.CanvasUpdateRegistry" } },
- { "pid": 1, "tid": 25, "ts": 2385145.5078125, "dur": 2282.9999923706055, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.2829999923706055, "detail": "UnityEngine.UI.ClipperRegistry" } },
- { "pid": 1, "tid": 25, "ts": 2387429.6875, "dur": 5491.300106048584, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.491300106048584, "detail": "UnityEngine.UI.Clipping" } },
- { "pid": 1, "tid": 25, "ts": 2392922.119140625, "dur": 5524.799823760986, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.524799823760986, "detail": "UnityEngine.UI.ColorBlock" } },
- { "pid": 1, "tid": 25, "ts": 2398448.486328125, "dur": 5445.6000328063965, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.4456000328063965, "detail": "UnityEngine.UI.CoroutineTween.ColorTween" } },
- { "pid": 1, "tid": 25, "ts": 2403895.263671875, "dur": 3477.6999950408936, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.4776999950408936, "detail": "UnityEngine.UI.ContentSizeFitter" } },
- { "pid": 1, "tid": 25, "ts": 2407374.267578125, "dur": 41749.4010925293, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 41.7494010925293, "detail": "UnityEngine.UI.DefaultControls" } },
- { "pid": 1, "tid": 25, "ts": 2449124.755859375, "dur": 34150.10070800781, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 34.15010070800781, "detail": "UnityEngine.UI.Dropdown" } },
- { "pid": 1, "tid": 25, "ts": 2483288.818359375, "dur": 42842.80014038086, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 42.84280014038086, "detail": "UnityEngine.EventSystems.EventSystem" } },
- { "pid": 1, "tid": 25, "ts": 2526133.056640625, "dur": 3735.5000972747803, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.7355000972747803, "detail": "UnityEngine.EventSystems.EventTrigger" } },
- { "pid": 1, "tid": 25, "ts": 2529880.859375, "dur": 9871.399879455566, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.871399879455566, "detail": "UnityEngine.EventSystems.ExecuteEvents" } },
- { "pid": 1, "tid": 25, "ts": 2539753.662109375, "dur": 2355.7000160217285, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.3557000160217285, "detail": "UnityEngine.UI.CoroutineTween.FloatTween" } },
- { "pid": 1, "tid": 25, "ts": 2542110.3515625, "dur": 3469.099998474121, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.469099998474121, "detail": "UnityEngine.UI.FontData" } },
- { "pid": 1, "tid": 25, "ts": 2545580.322265625, "dur": 2924.4000911712646, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.9244000911712646, "detail": "UnityEngine.UI.FontUpdateTracker" } },
- { "pid": 1, "tid": 25, "ts": 2548505.37109375, "dur": 28780.99822998047, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 28.78099822998047, "detail": "UnityEngine.UI.Graphic" } },
- { "pid": 1, "tid": 25, "ts": 2577289.306640625, "dur": 104616.90521240234, "ph": "X", "name": "UnityEngine.UI.cpp", "args": { "durationMS": 104.61690521240234, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 2681926.7578125, "dur": 21002.700805664062, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 21.002700805664062, "detail": "System.Collections.Generic.List`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 25, "ts": 2702930.6640625, "dur": 17443.79997253418, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 17.44379997253418, "detail": "System.Collections.Generic.List`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 25, "ts": 2720376.220703125, "dur": 38714.80178833008, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 38.71480178833008, "detail": "System.Collections.Generic.List`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 25, "ts": 2759093.017578125, "dur": 15885.199546813965, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 15.885199546813965, "detail": "System.Collections.Generic.List`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 25, "ts": 2774979.98046875, "dur": 24056.30111694336, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 24.05630111694336, "detail": "System.Collections.Generic.List`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 25, "ts": 2799108.3984375, "dur": 25290.000915527344, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 25.290000915527344, "detail": "System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 25, "ts": 2824400.634765625, "dur": 18186.498641967773, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 18.186498641967773, "detail": "System.Collections.Generic.List`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 25, "ts": 2842589.84375, "dur": 45213.5009765625, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 45.2135009765625, "detail": "System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 25, "ts": 2887805.17578125, "dur": 474.29999709129333, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.47429999709129333, "detail": "System.Collections.Generic.Mscorlib_CollectionDebugView`1<System.Object>" } },
- { "pid": 1, "tid": 25, "ts": 2888281.25, "dur": 4616.8999671936035, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.6168999671936035, "detail": "Unity.Collections.NativeArray`1<UnityEngine.Rendering.BatchVisibility>" } },
- { "pid": 1, "tid": 25, "ts": 2892899.658203125, "dur": 14300.200462341309, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 14.300200462341309, "detail": "Unity.Collections.NativeArray`1<System.Byte>" } },
- { "pid": 1, "tid": 25, "ts": 2907201.66015625, "dur": 4581.500053405762, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.581500053405762, "detail": "Unity.Collections.NativeArray`1<System.Int32>" } },
- { "pid": 1, "tid": 25, "ts": 2911845.703125, "dur": 5695.099830627441, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.695099830627441, "detail": "Unity.Collections.NativeArray`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>" } },
- { "pid": 1, "tid": 25, "ts": 2917543.212890625, "dur": 4444.900035858154, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.444900035858154, "detail": "Unity.Collections.NativeArray`1<UnityEngine.Plane>" } },
- { "pid": 1, "tid": 25, "ts": 2922220.458984375, "dur": 5454.19979095459, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.45419979095459, "detail": "System.Nullable`1<System.Boolean>" } },
- { "pid": 1, "tid": 25, "ts": 2927676.513671875, "dur": 4818.600177764893, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.818600177764893, "detail": "System.Nullable`1<System.Int32>" } },
- { "pid": 1, "tid": 25, "ts": 2932502.685546875, "dur": 1303.4000396728516, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3034000396728516, "detail": "System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 25, "ts": 2933808.837890625, "dur": 739.7000193595886, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7397000193595886, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 25, "ts": 2934550.048828125, "dur": 667.5999760627747, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6675999760627747, "detail": "System.Collections.Generic.ObjectComparer`1<System.Int32>" } },
- { "pid": 1, "tid": 25, "ts": 2935219.23828125, "dur": 1427.0000457763672, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4270000457763672, "detail": "System.Collections.Generic.ObjectComparer`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 25, "ts": 2936647.705078125, "dur": 665.4999852180481, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6654999852180481, "detail": "System.Collections.Generic.ObjectComparer`1<System.Object>" } },
- { "pid": 1, "tid": 25, "ts": 2937314.453125, "dur": 644.10001039505, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.64410001039505, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit>" } },
- { "pid": 1, "tid": 25, "ts": 2937959.9609375, "dur": 702.0000219345093, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7020000219345093, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 25, "ts": 2938663.818359375, "dur": 627.2000074386597, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6272000074386597, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 25, "ts": 2939292.236328125, "dur": 674.1999983787537, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6741999983787537, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 25, "ts": 2939968.017578125, "dur": 710.6000185012817, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7106000185012817, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 25, "ts": 2940679.6875, "dur": 630.1000118255615, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6301000118255615, "detail": "System.Collections.Generic.ObjectComparer`1<System.UInt64>" } },
- { "pid": 1, "tid": 25, "ts": 2941311.279296875, "dur": 826.200008392334, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.826200008392334, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 25, "ts": 2942138.671875, "dur": 6812.699794769287, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.812699794769287, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 25, "ts": 2948953.857421875, "dur": 4156.799793243408, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.156799793243408, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 25, "ts": 2953112.79296875, "dur": 964.3999934196472, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9643999934196472, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 25, "ts": 2954079.58984375, "dur": 1132.200002670288, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.132200002670288, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 25, "ts": 2955214.84375, "dur": 6110.000133514404, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.110000133514404, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 25, "ts": 2961327.392578125, "dur": 2831.899881362915, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.831899881362915, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>" } },
- { "pid": 1, "tid": 25, "ts": 2964160.888671875, "dur": 3647.39990234375, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.64739990234375, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>" } },
- { "pid": 1, "tid": 25, "ts": 2967810.05859375, "dur": 3725.1999378204346, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.7251999378204346, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Char>" } },
- { "pid": 1, "tid": 25, "ts": 2971537.353515625, "dur": 5470.699787139893, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.470699787139893, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 25, "ts": 2977010.009765625, "dur": 4770.199775695801, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.770199775695801, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>" } },
- { "pid": 1, "tid": 25, "ts": 2981782.2265625, "dur": 3841.099977493286, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.841099977493286, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>" } },
- { "pid": 1, "tid": 25, "ts": 2985625.732421875, "dur": 4256.499767303467, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.256499767303467, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 25, "ts": 2989884.033203125, "dur": 3191.200017929077, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.191200017929077, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.Navigation>" } },
- { "pid": 1, "tid": 25, "ts": 2993076.904296875, "dur": 1735.9999418258667, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7359999418258667, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Object>" } },
- { "pid": 1, "tid": 25, "ts": 2994814.208984375, "dur": 1872.5999593734741, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8725999593734741, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 25, "ts": 2996688.96484375, "dur": 2310.199975967407, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.3101999759674072, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 25, "ts": 2999000.9765625, "dur": 3444.499969482422, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.444499969482422, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Single>" } },
- { "pid": 1, "tid": 25, "ts": 3002447.75390625, "dur": 2632.699966430664, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.632699966430664, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.SpriteState>" } },
- { "pid": 1, "tid": 25, "ts": 3005083.251953125, "dur": 44118.59893798828, "ph": "X", "name": "Generics4.cpp", "args": { "durationMS": 44.11859893798828, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 3049220.703125, "dur": 1455.1000595092773, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4551000595092773, "detail": "System.DateTimeRawInfo" } },
- { "pid": 1, "tid": 25, "ts": 3050676.513671875, "dur": 791.4999723434448, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7914999723434448, "detail": "System.DateTimeResult" } },
- { "pid": 1, "tid": 25, "ts": 3051933.837890625, "dur": 971.1999893188477, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9711999893188477, "detail": "System.Diagnostics.DebuggerBrowsableAttribute" } },
- { "pid": 1, "tid": 25, "ts": 3053705.322265625, "dur": 31207.199096679688, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 31.207199096679688, "detail": "System.Decimal" } },
- { "pid": 1, "tid": 25, "ts": 3085190.185546875, "dur": 2413.100004196167, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.413100004196167, "detail": "System.Text.Decoder" } },
- { "pid": 1, "tid": 25, "ts": 3087604.248046875, "dur": 388.2000148296356, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3882000148296356, "detail": "System.Text.DecoderExceptionFallback" } },
- { "pid": 1, "tid": 25, "ts": 3087993.65234375, "dur": 771.4999914169312, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7714999914169312, "detail": "System.Text.DecoderExceptionFallbackBuffer" } },
- { "pid": 1, "tid": 25, "ts": 3088765.869140625, "dur": 984.3999743461609, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9843999743461609, "detail": "System.Text.DecoderFallback" } },
- { "pid": 1, "tid": 25, "ts": 3089751.220703125, "dur": 3087.3000621795654, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.0873000621795654, "detail": "System.Text.DecoderFallbackBuffer" } },
- { "pid": 1, "tid": 25, "ts": 3092839.111328125, "dur": 534.500002861023, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.534500002861023, "detail": "System.Text.DecoderFallbackException" } },
- { "pid": 1, "tid": 25, "ts": 3093374.267578125, "dur": 3881.7999362945557, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.8817999362945557, "detail": "System.Text.DecoderNLS" } },
- { "pid": 1, "tid": 25, "ts": 3097257.32421875, "dur": 1163.699984550476, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.163699984550476, "detail": "System.Text.DecoderReplacementFallback" } },
- { "pid": 1, "tid": 25, "ts": 3098422.119140625, "dur": 707.3000073432922, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7073000073432922, "detail": "System.Text.DecoderReplacementFallbackBuffer" } },
- { "pid": 1, "tid": 25, "ts": 3099130.126953125, "dur": 37410.59875488281, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 37.41059875488281, "detail": "System.DefaultBinder" } },
- { "pid": 1, "tid": 25, "ts": 3137045.8984375, "dur": 35587.60070800781, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 35.58760070800781, "detail": "System.Delegate" } },
- { "pid": 1, "tid": 25, "ts": 3172777.587890625, "dur": 36193.199157714844, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 36.193199157714844, "detail": "System.DelegateSerializationHolder" } },
- { "pid": 1, "tid": 25, "ts": 3208972.16796875, "dur": 402.30000019073486, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.40230000019073486, "detail": "System.Runtime.Serialization.DeserializationEventHandler" } },
- { "pid": 1, "tid": 25, "ts": 3209375.244140625, "dur": 620.1000213623047, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6201000213623047, "detail": "System.Collections.DictionaryEntry" } },
- { "pid": 1, "tid": 25, "ts": 3210277.34375, "dur": 6035.500049591064, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.0355000495910645, "detail": "System.IO.Directory" } },
- { "pid": 1, "tid": 25, "ts": 3216313.720703125, "dur": 3736.2000942230225, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.7362000942230225, "detail": "System.IO.DirectoryInfo" } },
- { "pid": 1, "tid": 25, "ts": 3220051.025390625, "dur": 564.7000074386597, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5647000074386597, "detail": "System.IO.DirectoryNotFoundException" } },
- { "pid": 1, "tid": 25, "ts": 3220713.134765625, "dur": 352.49999165534973, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.35249999165534973, "detail": "System.Runtime.Remoting.DisposerReplySink" } },
- { "pid": 1, "tid": 25, "ts": 3221065.91796875, "dur": 911.0999703407288, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9110999703407288, "detail": "System.DivideByZeroException" } },
- { "pid": 1, "tid": 25, "ts": 3221978.02734375, "dur": 2013.4000778198242, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.013400077819824, "detail": "System.Runtime.InteropServices.DllImportAttribute" } },
- { "pid": 1, "tid": 25, "ts": 3224002.197265625, "dur": 728.9000153541565, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7289000153541565, "detail": "System.DllNotFoundException" } },
- { "pid": 1, "tid": 25, "ts": 3224731.93359375, "dur": 5820.6000328063965, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.8206000328063965, "detail": "System.Double" } },
- { "pid": 1, "tid": 25, "ts": 3230553.22265625, "dur": 485.5999946594238, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.48559999465942383, "detail": "System.IO.DriveNotFoundException" } },
- { "pid": 1, "tid": 25, "ts": 3231039.794921875, "dur": 1102.4999618530273, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1024999618530273, "detail": "System.Reflection.Emit.DynamicMethod" } },
- { "pid": 1, "tid": 25, "ts": 3232143.06640625, "dur": 2427.4001121520996, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.4274001121520996, "detail": "System.Runtime.Remoting.Contexts.DynamicPropertyCollection" } },
- { "pid": 1, "tid": 25, "ts": 3234571.77734375, "dur": 599.3000268936157, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5993000268936157, "detail": "System.Empty" } },
- { "pid": 1, "tid": 25, "ts": 3235171.630859375, "dur": 1445.7999467849731, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4457999467849731, "detail": "System.Collections.EmptyReadOnlyDictionaryInternal" } },
- { "pid": 1, "tid": 25, "ts": 3236618.896484375, "dur": 1995.300054550171, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.995300054550171, "detail": "System.Text.Encoder" } },
- { "pid": 1, "tid": 25, "ts": 3238614.74609375, "dur": 398.499995470047, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.398499995470047, "detail": "System.Text.EncoderExceptionFallback" } },
- { "pid": 1, "tid": 25, "ts": 3239013.916015625, "dur": 1061.900019645691, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.061900019645691, "detail": "System.Text.EncoderExceptionFallbackBuffer" } },
- { "pid": 1, "tid": 25, "ts": 3240077.1484375, "dur": 1057.8999519348145, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0578999519348145, "detail": "System.Text.EncoderFallback" } },
- { "pid": 1, "tid": 25, "ts": 3241135.986328125, "dur": 1394.5000171661377, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3945000171661377, "detail": "System.Text.EncoderFallbackBuffer" } },
- { "pid": 1, "tid": 25, "ts": 3242531.494140625, "dur": 950.1000046730042, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9501000046730042, "detail": "System.Text.EncoderFallbackException" } },
- { "pid": 1, "tid": 25, "ts": 3243482.421875, "dur": 3978.300094604492, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.978300094604492, "detail": "System.Text.EncoderNLS" } },
- { "pid": 1, "tid": 25, "ts": 3247461.669921875, "dur": 1357.3999404907227, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3573999404907227, "detail": "System.Text.EncoderReplacementFallback" } },
- { "pid": 1, "tid": 25, "ts": 3248820.068359375, "dur": 2041.599988937378, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.041599988937378, "detail": "System.Text.EncoderReplacementFallbackBuffer" } },
- { "pid": 1, "tid": 25, "ts": 3250862.548828125, "dur": 52731.8000793457, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 52.7318000793457, "detail": "System.Text.Encoding" } },
- { "pid": 1, "tid": 25, "ts": 3303595.21484375, "dur": 2448.499917984009, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.448499917984009, "detail": "System.Text.EncodingHelper" } },
- { "pid": 1, "tid": 25, "ts": 3306044.43359375, "dur": 6658.599853515625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.658599853515625, "detail": "System.Text.EncodingNLS" } },
- { "pid": 1, "tid": 25, "ts": 3312703.857421875, "dur": 1299.1000413894653, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2991000413894653, "detail": "System.Text.EncodingProvider" } },
- { "pid": 1, "tid": 25, "ts": 3314003.662109375, "dur": 22790.3995513916, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 22.7903995513916, "detail": "System.Globalization.EncodingTable" } },
- { "pid": 1, "tid": 25, "ts": 3336796.875, "dur": 37890.30075073242, "ph": "X", "name": "mscorlib4.cpp", "args": { "durationMS": 37.89030075073242, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 3374705.56640625, "dur": 5633.500099182129, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.633500099182129, "detail": "System.IO.StreamWriter" } },
- { "pid": 1, "tid": 25, "ts": 3380340.33203125, "dur": 1103.0000448226929, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1030000448226929, "detail": "System.Runtime.Serialization.StreamingContext" } },
- { "pid": 1, "tid": 25, "ts": 3381452.880859375, "dur": 80420.90606689453, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 80.42090606689453, "detail": "System.String" } },
- { "pid": 1, "tid": 25, "ts": 3461874.51171875, "dur": 36452.999114990234, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 36.452999114990234, "detail": "System.Text.StringBuilder" } },
- { "pid": 1, "tid": 25, "ts": 3498328.857421875, "dur": 453.20001244544983, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.45320001244544983, "detail": "System.Text.StringBuilderCache" } },
- { "pid": 1, "tid": 25, "ts": 3498782.2265625, "dur": 1723.6000299453735, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7236000299453735, "detail": "System.StringComparer" } },
- { "pid": 1, "tid": 25, "ts": 3500616.943359375, "dur": 2194.700002670288, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.194700002670288, "detail": "System.IO.StringReader" } },
- { "pid": 1, "tid": 25, "ts": 3502812.255859375, "dur": 725.4999876022339, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7254999876022339, "detail": "System.IO.StringResultHandler" } },
- { "pid": 1, "tid": 25, "ts": 3503548.828125, "dur": 989.0999794006348, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9890999794006348, "detail": "System.Reflection.StrongNameKeyPair" } },
- { "pid": 1, "tid": 25, "ts": 3504549.560546875, "dur": 1740.8000230789185, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7408000230789185, "detail": "System.Threading.SynchronizationContext" } },
- { "pid": 1, "tid": 25, "ts": 3506291.9921875, "dur": 969.2999720573425, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9692999720573425, "detail": "System.Threading.Tasks.SynchronizationContextAwaitTaskContinuation" } },
- { "pid": 1, "tid": 25, "ts": 3507261.962890625, "dur": 585.3000283241272, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5853000283241272, "detail": "System.Threading.SynchronizationLockException" } },
- { "pid": 1, "tid": 25, "ts": 3507847.900390625, "dur": 716.3000106811523, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7163000106811523, "detail": "System.SystemException" } },
- { "pid": 1, "tid": 25, "ts": 3508564.697265625, "dur": 658.29998254776, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.65829998254776, "detail": "System.Threading.Tasks.SystemThreadingTasks_TaskDebugView" } },
- { "pid": 1, "tid": 25, "ts": 3509344.970703125, "dur": 16711.50016784668, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 16.71150016784668, "detail": "System.Globalization.TaiwanCalendar" } },
- { "pid": 1, "tid": 25, "ts": 3526057.6171875, "dur": 416.3999855518341, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4163999855518341, "detail": "System.Reflection.TargetException" } },
- { "pid": 1, "tid": 25, "ts": 3526474.609375, "dur": 495.70000171661377, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.49570000171661377, "detail": "System.Reflection.TargetInvocationException" } },
- { "pid": 1, "tid": 25, "ts": 3526970.947265625, "dur": 474.2000102996826, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4742000102996826, "detail": "System.Reflection.TargetParameterCountException" } },
- { "pid": 1, "tid": 25, "ts": 3527445.80078125, "dur": 105739.70031738281, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 105.73970031738281, "detail": "System.Threading.Tasks.Task" } },
- { "pid": 1, "tid": 25, "ts": 3633192.87109375, "dur": 35255.50079345703, "ph": "X", "name": "mscorlib12.cpp", "args": { "durationMS": 35.25550079345703, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 3668462.40234375, "dur": 250295.91369628906, "ph": "X", "name": "Idle", "args": { "durationMS": 250.29591369628906, "detail": "" } },
- { "pid": 1, "tid": 26, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 26, "ts": 1719684.326171875, "dur": 11465.999603271484, "ph": "X", "name": "Idle", "args": { "durationMS": 11.465999603271484, "detail": "" } },
- { "pid": 1, "tid": 26, "ts": 1844847.0458984375, "dur": 3246.500015258789, "ph": "X", "name": "Write Assembly", "args": { "durationMS": 3.246500015258789, "detail": "System" } },
- { "pid": 1, "tid": 26, "ts": 1848991.0888671875, "dur": 175074.31030273438, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 175.07431030273438, "detail": "UnityEngine.SharedInternalsModule" } },
- { "pid": 1, "tid": 26, "ts": 1850094.3603515625, "dur": 173970.48950195312, "ph": "X", "name": "UnityEngine.SharedInternalsModule_Attr.cpp", "args": { "durationMS": 173.97048950195312, "detail": "" } },
- { "pid": 1, "tid": 26, "ts": 2039308.7158203125, "dur": 19747.299194335938, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 19.747299194335938, "detail": "UnityEngine.SpriteShapeModule" } },
- { "pid": 1, "tid": 26, "ts": 2039325.3173828125, "dur": 19729.900360107422, "ph": "X", "name": "UnityEngine.SpriteShapeModule_Attr.cpp", "args": { "durationMS": 19.729900360107422, "detail": "" } },
- { "pid": 1, "tid": 26, "ts": 2069007.568359375, "dur": 825.8000016212463, "ph": "X", "name": "GenericInstanceMethods", "args": { "durationMS": 0.8258000016212463, "detail": "" } },
- { "pid": 1, "tid": 26, "ts": 2086613.525390625, "dur": 143010.2996826172, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 143.0102996826172, "detail": "System.Xml.DebuggerDisplayXmlNodeProxy" } },
- { "pid": 1, "tid": 26, "ts": 2229625.244140625, "dur": 24198.09913635254, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 24.19809913635254, "detail": "System.Xml.XmlCharType" } },
- { "pid": 1, "tid": 26, "ts": 2253824.951171875, "dur": 4850.900173187256, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.850900173187256, "detail": "System.Xml.XmlConvert" } },
- { "pid": 1, "tid": 26, "ts": 2258677.001953125, "dur": 467.5999879837036, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4675999879837036, "detail": "System.Xml.XmlDocumentType" } },
- { "pid": 1, "tid": 26, "ts": 2259172.8515625, "dur": 547.6999878883362, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5476999878883362, "detail": "System.Xml.XmlNode" } },
- { "pid": 1, "tid": 26, "ts": 2259733.642578125, "dur": 698.0999708175659, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6980999708175659, "detail": "System.Xml.XmlReader" } },
- { "pid": 1, "tid": 26, "ts": 2260443.603515625, "dur": 1753.499984741211, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.753499984741211, "detail": "System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy" } },
- { "pid": 1, "tid": 26, "ts": 2262199.951171875, "dur": 9275.500297546387, "ph": "X", "name": "System.Xml.cpp", "args": { "durationMS": 9.275500297546387, "detail": "" } },
- { "pid": 1, "tid": 26, "ts": 2271665.0390625, "dur": 53493.59893798828, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 53.49359893798828, "detail": "UnityEngine.Event" } },
- { "pid": 1, "tid": 26, "ts": 2325201.904296875, "dur": 12955.599784851074, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.955599784851074, "detail": "UnityEngine.GUI" } },
- { "pid": 1, "tid": 26, "ts": 2338159.1796875, "dur": 5167.699813842773, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.167699813842773, "detail": "UnityEngine.GUIContent" } },
- { "pid": 1, "tid": 26, "ts": 2343328.369140625, "dur": 1672.9999780654907, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6729999780654907, "detail": "UnityEngine.GUILayout" } },
- { "pid": 1, "tid": 26, "ts": 2345003.173828125, "dur": 11214.799880981445, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.214799880981445, "detail": "UnityEngine.GUILayoutEntry" } },
- { "pid": 1, "tid": 26, "ts": 2356219.23828125, "dur": 44941.50161743164, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 44.94150161743164, "detail": "UnityEngine.GUILayoutGroup" } },
- { "pid": 1, "tid": 26, "ts": 2401403.3203125, "dur": 9014.49966430664, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.01449966430664, "detail": "UnityEngine.GUILayoutUtility" } },
- { "pid": 1, "tid": 26, "ts": 2410418.9453125, "dur": 7266.39986038208, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.26639986038208, "detail": "UnityEngine.GUIScrollGroup" } },
- { "pid": 1, "tid": 26, "ts": 2417686.767578125, "dur": 334.69998836517334, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.33469998836517334, "detail": "UnityEngine.GUISettings" } },
- { "pid": 1, "tid": 26, "ts": 2418022.216796875, "dur": 21561.298370361328, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 21.561298370361328, "detail": "UnityEngine.GUISkin" } },
- { "pid": 1, "tid": 26, "ts": 2439584.47265625, "dur": 15897.39990234375, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.89739990234375, "detail": "UnityEngine.GUIStyle" } },
- { "pid": 1, "tid": 26, "ts": 2455483.154296875, "dur": 9137.200355529785, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.137200355529785, "detail": "UnityEngine.GUIStyleState" } },
- { "pid": 1, "tid": 26, "ts": 2464621.09375, "dur": 929.7000169754028, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9297000169754028, "detail": "UnityEngine.GUITargetAttribute" } },
- { "pid": 1, "tid": 26, "ts": 2465552.001953125, "dur": 7254.000186920166, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.254000186920166, "detail": "UnityEngine.GUIUtility" } },
- { "pid": 1, "tid": 26, "ts": 2472807.6171875, "dur": 15243.000030517578, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.243000030517578, "detail": "UnityEngine.GUIWordWrapSizer" } },
- { "pid": 1, "tid": 26, "ts": 2488656.982421875, "dur": 488.29999566078186, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.48829999566078186, "detail": "UnityEngine.TextEditor" } },
- { "pid": 1, "tid": 26, "ts": 2489145.99609375, "dur": 648.2999920845032, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6482999920845032, "detail": "UnityEngine.GUI/WindowFunction" } },
- { "pid": 1, "tid": 26, "ts": 2489807.373046875, "dur": 1659.8999500274658, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6598999500274658, "detail": "UnityEngine.GUILayoutUtility/LayoutCache" } },
- { "pid": 1, "tid": 26, "ts": 2491468.26171875, "dur": 524.399995803833, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.524399995803833, "detail": "UnityEngine.GUILayoutUtility/LayoutCacheState" } },
- { "pid": 1, "tid": 26, "ts": 2491993.65234375, "dur": 660.0000262260437, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6600000262260437, "detail": "UnityEngine.GUISkin/SkinChangedDelegate" } },
- { "pid": 1, "tid": 26, "ts": 2492667.236328125, "dur": 49486.900329589844, "ph": "X", "name": "UnityEngine.IMGUIModule.cpp", "args": { "durationMS": 49.486900329589844, "detail": "" } },
- { "pid": 1, "tid": 26, "ts": 2542186.767578125, "dur": 7075.200080871582, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.075200080871582, "detail": "System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 26, "ts": 2549263.916015625, "dur": 430.50000071525574, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.43050000071525574, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>" } },
- { "pid": 1, "tid": 26, "ts": 2549695.80078125, "dur": 431.8000078201294, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4318000078201294, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>" } },
- { "pid": 1, "tid": 26, "ts": 2550129.150390625, "dur": 457.30000734329224, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.45730000734329224, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>" } },
- { "pid": 1, "tid": 26, "ts": 2550588.37890625, "dur": 455.09999990463257, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.45509999990463257, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>" } },
- { "pid": 1, "tid": 26, "ts": 2551045.166015625, "dur": 800.8000254631042, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8008000254631042, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>" } },
- { "pid": 1, "tid": 26, "ts": 2551847.412109375, "dur": 885.9000205993652, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8859000205993652, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>" } },
- { "pid": 1, "tid": 26, "ts": 2552734.86328125, "dur": 793.2999730110168, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7932999730110168, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>" } },
- { "pid": 1, "tid": 26, "ts": 2553529.78515625, "dur": 717.9999947547913, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7179999947547913, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>" } },
- { "pid": 1, "tid": 26, "ts": 2554249.51171875, "dur": 435.0000023841858, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4350000023841858, "detail": "System.Converter`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 26, "ts": 2554685.546875, "dur": 396.60000801086426, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.39660000801086426, "detail": "System.Runtime.CompilerServices.ConditionalWeakTable`2/CreateValueCallback<System.Object,System.Object>" } },
- { "pid": 1, "tid": 26, "ts": 2555083.49609375, "dur": 1418.5999631881714, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4185999631881714, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<System.Object,System.Object>" } },
- { "pid": 1, "tid": 26, "ts": 2556504.39453125, "dur": 2917.0000553131104, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.9170000553131104, "detail": "System.Collections.Generic.DictionaryKeyCollectionDebugView`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 26, "ts": 2559423.33984375, "dur": 545.0999736785889, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5450999736785889, "detail": "System.Collections.Generic.DictionaryValueCollectionDebugView`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 26, "ts": 2559969.7265625, "dur": 20076.99966430664, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 20.07699966430664, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,System.Object>" } },
- { "pid": 1, "tid": 26, "ts": 2580048.583984375, "dur": 64568.29833984375, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 64.56829833984375, "detail": "System.Collections.Generic.Dictionary`2<System.Object,System.Int32>" } },
- { "pid": 1, "tid": 26, "ts": 2644618.408203125, "dur": 26608.90007019043, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 26.60890007019043, "detail": "System.Collections.Generic.Dictionary`2<System.Object,System.Object>" } },
- { "pid": 1, "tid": 26, "ts": 2671229.248046875, "dur": 29149.900436401367, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 29.149900436401367, "detail": "System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 26, "ts": 2701352.783203125, "dur": 884.7000002861023, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8847000002861023, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>" } },
- { "pid": 1, "tid": 26, "ts": 2702239.013671875, "dur": 775.6999731063843, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7756999731063843, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>" } },
- { "pid": 1, "tid": 26, "ts": 2703016.357421875, "dur": 794.3999767303467, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7943999767303467, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>" } },
- { "pid": 1, "tid": 26, "ts": 2703812.744140625, "dur": 798.30002784729, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.79830002784729, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>" } },
- { "pid": 1, "tid": 26, "ts": 2704612.79296875, "dur": 807.200014591217, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.807200014591217, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 26, "ts": 2705421.630859375, "dur": 789.4999980926514, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7894999980926514, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>" } },
- { "pid": 1, "tid": 26, "ts": 2706212.890625, "dur": 772.4000215530396, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7724000215530396, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>" } },
- { "pid": 1, "tid": 26, "ts": 2706986.81640625, "dur": 822.0999836921692, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8220999836921692, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>" } },
- { "pid": 1, "tid": 26, "ts": 2707811.03515625, "dur": 1255.9000253677368, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2559000253677368, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>" } },
- { "pid": 1, "tid": 26, "ts": 2709069.091796875, "dur": 871.999979019165, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.871999979019165, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>" } },
- { "pid": 1, "tid": 26, "ts": 2709943.115234375, "dur": 865.0000095367432, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8650000095367432, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>" } },
- { "pid": 1, "tid": 26, "ts": 2710809.5703125, "dur": 808.7000250816345, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8087000250816345, "detail": "System.Array/EmptyInternalEnumerator`1<System.Boolean>" } },
- { "pid": 1, "tid": 26, "ts": 2711619.384765625, "dur": 788.9000177383423, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7889000177383423, "detail": "System.Array/EmptyInternalEnumerator`1<System.Byte>" } },
- { "pid": 1, "tid": 26, "ts": 2712410.400390625, "dur": 928.3999800682068, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9283999800682068, "detail": "System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>" } },
- { "pid": 1, "tid": 26, "ts": 2713340.33203125, "dur": 918.7999963760376, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9187999963760376, "detail": "System.Array/EmptyInternalEnumerator`1<System.Char>" } },
- { "pid": 1, "tid": 26, "ts": 2714261.23046875, "dur": 1026.3999700546265, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0263999700546265, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 26, "ts": 2715289.55078125, "dur": 839.1000032424927, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8391000032424927, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>" } },
- { "pid": 1, "tid": 26, "ts": 2716130.615234375, "dur": 871.2999820709229, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8712999820709229, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>" } },
- { "pid": 1, "tid": 26, "ts": 2717003.662109375, "dur": 822.700023651123, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.822700023651123, "detail": "System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>" } },
- { "pid": 1, "tid": 26, "ts": 2717828.125, "dur": 797.5000143051147, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7975000143051147, "detail": "System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>" } },
- { "pid": 1, "tid": 26, "ts": 2718626.953125, "dur": 1000.6999969482422, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0006999969482422, "detail": "System.Array/EmptyInternalEnumerator`1<System.DateTime>" } },
- { "pid": 1, "tid": 26, "ts": 2719629.39453125, "dur": 794.3999767303467, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7943999767303467, "detail": "System.Array/EmptyInternalEnumerator`1<System.Decimal>" } },
- { "pid": 1, "tid": 26, "ts": 2720425.537109375, "dur": 900.2000093460083, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9002000093460083, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>" } },
- { "pid": 1, "tid": 26, "ts": 2721327.1484375, "dur": 939.0000104904175, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9390000104904175, "detail": "System.Array/EmptyInternalEnumerator`1<System.Double>" } },
- { "pid": 1, "tid": 26, "ts": 2722268.06640625, "dur": 1563.7999773025513, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5637999773025513, "detail": "System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>" } },
- { "pid": 1, "tid": 26, "ts": 2723833.740234375, "dur": 887.8999948501587, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8878999948501587, "detail": "System.Array/EmptyInternalEnumerator`1<System.Int16>" } },
- { "pid": 1, "tid": 26, "ts": 2724723.14453125, "dur": 1249.1999864578247, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2491999864578247, "detail": "System.Array/EmptyInternalEnumerator`1<System.Int32>" } },
- { "pid": 1, "tid": 26, "ts": 2725974.12109375, "dur": 901.7999768257141, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9017999768257141, "detail": "System.Array/EmptyInternalEnumerator`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 26, "ts": 2726877.197265625, "dur": 804.099977016449, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.804099977016449, "detail": "System.Array/EmptyInternalEnumerator`1<System.Int64>" } },
- { "pid": 1, "tid": 26, "ts": 2727683.59375, "dur": 1205.8000564575195, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2058000564575195, "detail": "System.Array/EmptyInternalEnumerator`1<System.IntPtr>" } },
- { "pid": 1, "tid": 26, "ts": 2728891.11328125, "dur": 898.5999822616577, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8985999822616577, "detail": "System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>" } },
- { "pid": 1, "tid": 26, "ts": 2729791.748046875, "dur": 945.9999799728394, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9459999799728394, "detail": "System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>" } },
- { "pid": 1, "tid": 26, "ts": 2730739.2578125, "dur": 880.4000020027161, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8804000020027161, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>" } },
- { "pid": 1, "tid": 26, "ts": 2731621.58203125, "dur": 8605.899810791016, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 8.605899810791016, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>" } },
- { "pid": 1, "tid": 26, "ts": 2740229.4921875, "dur": 1809.499979019165, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.809499979019165, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>" } },
- { "pid": 1, "tid": 26, "ts": 2742040.283203125, "dur": 880.5999755859375, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8805999755859375, "detail": "System.Array/EmptyInternalEnumerator`1<System.Object>" } },
- { "pid": 1, "tid": 26, "ts": 2742922.8515625, "dur": 831.7000269889832, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8317000269889832, "detail": "System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>" } },
- { "pid": 1, "tid": 26, "ts": 2743756.34765625, "dur": 871.5999722480774, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8715999722480774, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>" } },
- { "pid": 1, "tid": 26, "ts": 2744629.638671875, "dur": 882.3999762535095, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8823999762535095, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>" } },
- { "pid": 1, "tid": 26, "ts": 2745513.671875, "dur": 876.9999742507935, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8769999742507935, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.LowLevel.PlayerLoopSystem>" } },
- { "pid": 1, "tid": 26, "ts": 2746392.333984375, "dur": 804.4000267982483, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8044000267982483, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>" } },
- { "pid": 1, "tid": 26, "ts": 2747198.73046875, "dur": 770.9000110626221, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7709000110626221, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>" } },
- { "pid": 1, "tid": 26, "ts": 2747971.19140625, "dur": 848.1000065803528, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8481000065803528, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 26, "ts": 2748821.2890625, "dur": 1905.400037765503, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.905400037765503, "detail": "System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 26, "ts": 2750728.515625, "dur": 929.1999936103821, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9291999936103821, "detail": "System.Array/EmptyInternalEnumerator`1<System.SByte>" } },
- { "pid": 1, "tid": 26, "ts": 2751658.935546875, "dur": 692.2000050544739, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6922000050544739, "detail": "System.Array/EmptyInternalEnumerator`1<System.Single>" } },
- { "pid": 1, "tid": 26, "ts": 2752352.783203125, "dur": 680.1999807357788, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6801999807357788, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>" } },
- { "pid": 1, "tid": 26, "ts": 2753034.1796875, "dur": 690.500020980835, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.690500020980835, "detail": "System.Array/EmptyInternalEnumerator`1<System.TimeSpan>" } },
- { "pid": 1, "tid": 26, "ts": 2753726.07421875, "dur": 1519.2999839782715, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5192999839782715, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 26, "ts": 2755247.0703125, "dur": 796.4000105857849, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7964000105857849, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 26, "ts": 2756044.921875, "dur": 885.5000138282776, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8855000138282776, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 26, "ts": 2756931.884765625, "dur": 692.799985408783, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.692799985408783, "detail": "System.Array/EmptyInternalEnumerator`1<System.UInt16>" } },
- { "pid": 1, "tid": 26, "ts": 2757625.9765625, "dur": 685.4000091552734, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6854000091552734, "detail": "System.Array/EmptyInternalEnumerator`1<System.UInt32>" } },
- { "pid": 1, "tid": 26, "ts": 2758312.255859375, "dur": 671.7000007629395, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6717000007629395, "detail": "System.Array/EmptyInternalEnumerator`1<System.UInt64>" } },
- { "pid": 1, "tid": 26, "ts": 2758985.595703125, "dur": 706.7000269889832, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7067000269889832, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>" } },
- { "pid": 1, "tid": 26, "ts": 2759693.115234375, "dur": 794.7999835014343, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7947999835014343, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 26, "ts": 2760489.501953125, "dur": 1033.400058746338, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.033400058746338, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 26, "ts": 2761524.90234375, "dur": 954.4000029563904, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9544000029563904, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 26, "ts": 2762480.95703125, "dur": 784.500002861023, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.784500002861023, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 26, "ts": 2763266.845703125, "dur": 790.1999950408936, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7901999950408936, "detail": "System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>" } },
- { "pid": 1, "tid": 26, "ts": 2764058.349609375, "dur": 799.4999885559082, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7994999885559082, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>" } },
- { "pid": 1, "tid": 26, "ts": 2764860.3515625, "dur": 790.7999753952026, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7907999753952026, "detail": "System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>" } },
- { "pid": 1, "tid": 26, "ts": 2765652.83203125, "dur": 1515.1000022888184, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5151000022888184, "detail": "System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>" } },
- { "pid": 1, "tid": 26, "ts": 2767169.677734375, "dur": 827.7999758720398, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8277999758720398, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>" } },
- { "pid": 1, "tid": 26, "ts": 2767999.51171875, "dur": 876.800000667572, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.876800000667572, "detail": "System.Array/EmptyInternalEnumerator`1<System.Globalization.UmAlQuraCalendar/DateMapping>" } },
- { "pid": 1, "tid": 26, "ts": 2768879.638671875, "dur": 843.2000279426575, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8432000279426575, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 26, "ts": 2769737.548828125, "dur": 1840.000033378601, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.840000033378601, "detail": "System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>" } },
- { "pid": 1, "tid": 26, "ts": 2771580.810546875, "dur": 3023.2999324798584, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.0232999324798584, "detail": "System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
- { "pid": 1, "tid": 26, "ts": 2774606.4453125, "dur": 10401.100158691406, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 10.401100158691406, "detail": "Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>" } },
- { "pid": 1, "tid": 26, "ts": 2785008.7890625, "dur": 3380.500078201294, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.380500078201294, "detail": "Unity.Collections.NativeArray`1/Enumerator<System.Byte>" } },
- { "pid": 1, "tid": 26, "ts": 2788391.11328125, "dur": 22935.501098632812, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 22.935501098632812, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>" } },
- { "pid": 1, "tid": 26, "ts": 2811328.61328125, "dur": 1707.1000337600708, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7071000337600708, "detail": "System.Collections.Generic.List`1/Enumerator<System.Int32>" } },
- { "pid": 1, "tid": 26, "ts": 2813037.109375, "dur": 1189.5999908447266, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.1895999908447266, "detail": "Unity.Collections.NativeArray`1/Enumerator<System.Int32>" } },
- { "pid": 1, "tid": 26, "ts": 2814228.759765625, "dur": 1547.7999448776245, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5477999448776245, "detail": "System.Collections.Generic.List`1/Enumerator<System.Int32Enum>" } },
- { "pid": 1, "tid": 26, "ts": 2815778.3203125, "dur": 1146.9999551773071, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.1469999551773071, "detail": "Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>" } },
- { "pid": 1, "tid": 26, "ts": 2816927.24609375, "dur": 4839.900016784668, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.839900016784668, "detail": "System.Collections.Generic.HashSet`1/Enumerator<System.Object>" } },
- { "pid": 1, "tid": 26, "ts": 2821769.287109375, "dur": 3304.3999671936035, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.3043999671936035, "detail": "System.Collections.Generic.LinkedList`1/Enumerator<System.Object>" } },
- { "pid": 1, "tid": 26, "ts": 2825075.1953125, "dur": 1745.8000183105469, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7458000183105469, "detail": "System.Collections.Generic.List`1/Enumerator<System.Object>" } },
- { "pid": 1, "tid": 26, "ts": 2826822.75390625, "dur": 2185.8999729156494, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.1858999729156494, "detail": "System.Collections.Generic.Stack`1/Enumerator<System.Object>" } },
- { "pid": 1, "tid": 26, "ts": 2829010.25390625, "dur": 1257.7999830245972, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2577999830245972, "detail": "Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Plane>" } },
- { "pid": 1, "tid": 26, "ts": 2830270.01953125, "dur": 3631.4001083374023, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.6314001083374023, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>" } },
- { "pid": 1, "tid": 26, "ts": 2833904.052734375, "dur": 1980.7000160217285, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9807000160217285, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>" } },
- { "pid": 1, "tid": 26, "ts": 2835885.986328125, "dur": 1621.7000484466553, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6217000484466553, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>" } },
- { "pid": 1, "tid": 26, "ts": 2837509.033203125, "dur": 1947.1999406814575, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9471999406814575, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>" } },
- { "pid": 1, "tid": 26, "ts": 2839458.49609375, "dur": 1545.6000566482544, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5456000566482544, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>" } },
- { "pid": 1, "tid": 26, "ts": 2841006.103515625, "dur": 1834.2000246047974, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8342000246047974, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 26, "ts": 2842841.796875, "dur": 2036.7999076843262, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.036799907684326, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 26, "ts": 2844880.37109375, "dur": 30441.79916381836, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 30.44179916381836, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 26, "ts": 2875323.974609375, "dur": 1905.400037765503, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.905400037765503, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
- { "pid": 1, "tid": 26, "ts": 2877231.201171875, "dur": 3509.200096130371, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.509200096130371, "detail": "System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>" } },
- { "pid": 1, "tid": 26, "ts": 2880742.1875, "dur": 1731.0999631881714, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7310999631881714, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>" } },
- { "pid": 1, "tid": 26, "ts": 2882474.853515625, "dur": 3544.5001125335693, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.5445001125335693, "detail": "System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>" } },
- { "pid": 1, "tid": 26, "ts": 2886021.728515625, "dur": 1784.3999862670898, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7843999862670898, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>" } },
- { "pid": 1, "tid": 26, "ts": 2887808.10546875, "dur": 3458.6000442504883, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.4586000442504883, "detail": "System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>" } },
- { "pid": 1, "tid": 26, "ts": 2891269.53125, "dur": 61423.60305786133, "ph": "X", "name": "Generics1.cpp", "args": { "durationMS": 61.42360305786133, "detail": "" } },
- { "pid": 1, "tid": 26, "ts": 2952713.134765625, "dur": 533.1000089645386, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5331000089645386, "detail": "System.Collections.Generic.HashSet`1<UnityEngine.UI.MaskableGraphic>" } },
- { "pid": 1, "tid": 26, "ts": 2953248.046875, "dur": 513.1999850273132, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5131999850273132, "detail": "System.Collections.Generic.HashSet`1<System.Object>" } },
- { "pid": 1, "tid": 26, "ts": 2953763.18359375, "dur": 870.0000047683716, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8700000047683716, "detail": "System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>" } },
- { "pid": 1, "tid": 26, "ts": 2956896.484375, "dur": 336.8000090122223, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3368000090122223, "detail": "System.Collections.Generic.ICollection`1<System.IComparable`1<System.UInt64>>" } },
- { "pid": 1, "tid": 26, "ts": 2972671.630859375, "dur": 745.9999918937683, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7459999918937683, "detail": "System.Collections.Generic.ICollection`1<System.Threading.WaitHandle>" } },
- { "pid": 1, "tid": 26, "ts": 2974580.322265625, "dur": 373.6000061035156, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3736000061035156, "detail": "System.Collections.Generic.ICollection`1<System.Collections.Hashtable/bucket>" } },
- { "pid": 1, "tid": 26, "ts": 2975142.822265625, "dur": 341.8999910354614, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3418999910354614, "detail": "System.Collections.Generic.ICollection`1<System.ParameterizedStrings/FormatParam>" } },
- { "pid": 1, "tid": 26, "ts": 2986118.896484375, "dur": 19192.60025024414, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 19.19260025024414, "detail": "System.Collections.Generic.IEqualityComparer`1<System.Resources.ResourceLocator>" } },
- { "pid": 1, "tid": 26, "ts": 3009070.556640625, "dur": 793.2999730110168, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7932999730110168, "detail": "System.Collections.Generic.IList`1<System.IComparable`1<System.Char>>" } },
- { "pid": 1, "tid": 26, "ts": 3010097.900390625, "dur": 780.7000279426575, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7807000279426575, "detail": "System.Collections.Generic.IList`1<System.IComparable`1<System.Decimal>>" } },
- { "pid": 1, "tid": 26, "ts": 3010880.615234375, "dur": 890.6000256538391, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8906000256538391, "detail": "System.Collections.Generic.IList`1<System.IComparable`1<System.Double>>" } },
- { "pid": 1, "tid": 26, "ts": 3011774.169921875, "dur": 346.3999927043915, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3463999927043915, "detail": "System.Collections.Generic.IList`1<System.IComparable`1<System.Int16>>" } },
- { "pid": 1, "tid": 26, "ts": 3015683.349609375, "dur": 830.9000134468079, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8309000134468079, "detail": "System.Collections.Generic.IList`1<System.Globalization.CalendarData>" } },
- { "pid": 1, "tid": 26, "ts": 3016625.48828125, "dur": 341.39999747276306, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.34139999747276306, "detail": "System.Collections.Generic.IList`1<System.Threading.CancellationTokenRegistration>" } },
- { "pid": 1, "tid": 26, "ts": 3018083.984375, "dur": 1014.4000053405762, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.0144000053405762, "detail": "System.Collections.Generic.IList`1<System.Delegate>" } },
- { "pid": 1, "tid": 26, "ts": 3019100.830078125, "dur": 395.3999876976013, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3953999876976013, "detail": "System.Collections.Generic.IList`1<System.Collections.DictionaryEntry>" } },
- { "pid": 1, "tid": 26, "ts": 3022786.865234375, "dur": 352.400004863739, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.352400004863739, "detail": "System.Collections.Generic.IList`1<System.Globalization.InternalCodePageDataItem>" } },
- { "pid": 1, "tid": 26, "ts": 3029112.79296875, "dur": 402.3999869823456, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4023999869823456, "detail": "System.Collections.Generic.IList`1<System.Threading.WaitHandle>" } },
- { "pid": 1, "tid": 26, "ts": 3030050.537109375, "dur": 341.8999910354614, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3418999910354614, "detail": "System.Collections.Generic.IList`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 26, "ts": 3042988.037109375, "dur": 2644.5000171661377, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 2.6445000171661377, "detail": "UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.IClipper>" } },
- { "pid": 1, "tid": 26, "ts": 3046396.728515625, "dur": 420.89998722076416, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.42089998722076416, "detail": "System.Array/InternalEnumerator`1<System.IComparable`1<System.DateTime>>" } },
- { "pid": 1, "tid": 26, "ts": 3052519.287109375, "dur": 595.3999757766724, "ph": "X", "name": "Il2CppGenericComDefinitions7.cpp", "args": { "durationMS": 0.5953999757766724, "detail": "" } },
- { "pid": 1, "tid": 26, "ts": 3053132.080078125, "dur": 531.5999984741211, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5315999984741211, "detail": "System.IO.EndOfStreamException" } },
- { "pid": 1, "tid": 26, "ts": 3053664.55078125, "dur": 494.1999912261963, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4941999912261963, "detail": "System.EntryPointNotFoundException" } },
- { "pid": 1, "tid": 26, "ts": 3054159.1796875, "dur": 9345.399856567383, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.345399856567383, "detail": "System.Enum" } },
- { "pid": 1, "tid": 26, "ts": 3063505.615234375, "dur": 3252.000093460083, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.252000093460083, "detail": "System.Reflection.Emit.EnumBuilder" } },
- { "pid": 1, "tid": 26, "ts": 3066758.544921875, "dur": 8339.200019836426, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.339200019836426, "detail": "System.Environment" } },
- { "pid": 1, "tid": 26, "ts": 3075264.404296875, "dur": 458.90000462532043, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.45890000462532043, "detail": "System.Runtime.Remoting.Messaging.EnvoyTerminatorSink" } },
- { "pid": 1, "tid": 26, "ts": 3076051.26953125, "dur": 426.0999858379364, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4260999858379364, "detail": "System.Globalization.EraInfo" } },
- { "pid": 1, "tid": 26, "ts": 3076478.02734375, "dur": 685.8999729156494, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6858999729156494, "detail": "System.Runtime.Remoting.Messaging.ErrorMessage" } },
- { "pid": 1, "tid": 26, "ts": 3077364.501953125, "dur": 373.6000061035156, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3736000061035156, "detail": "System.EventHandler" } },
- { "pid": 1, "tid": 26, "ts": 3077738.76953125, "dur": 11297.200202941895, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.297200202941895, "detail": "System.Reflection.EventInfo" } },
- { "pid": 1, "tid": 26, "ts": 3089047.8515625, "dur": 573.8999843597412, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5738999843597412, "detail": "System.Diagnostics.Tracing.EventSource" } },
- { "pid": 1, "tid": 26, "ts": 3089622.802734375, "dur": 1810.1999759674072, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8101999759674072, "detail": "System.Threading.EventWaitHandle" } },
- { "pid": 1, "tid": 26, "ts": 3091434.08203125, "dur": 6824.20015335083, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.82420015335083, "detail": "System.Security.Policy.Evidence" } },
- { "pid": 1, "tid": 26, "ts": 3098259.27734375, "dur": 10774.800300598145, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.774800300598145, "detail": "System.Exception" } },
- { "pid": 1, "tid": 26, "ts": 3109047.607421875, "dur": 1001.0000467300415, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0010000467300415, "detail": "System.Runtime.ExceptionServices.ExceptionDispatchInfo" } },
- { "pid": 1, "tid": 26, "ts": 3110049.560546875, "dur": 731.4000129699707, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7314000129699707, "detail": "System.Reflection.ExceptionHandlingClause" } },
- { "pid": 1, "tid": 26, "ts": 3110799.560546875, "dur": 11761.59954071045, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.76159954071045, "detail": "System.Threading.ExecutionContext" } },
- { "pid": 1, "tid": 26, "ts": 3122562.255859375, "dur": 803.3000230789185, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8033000230789185, "detail": "System.Threading.ExecutionContextSwitcher" } },
- { "pid": 1, "tid": 26, "ts": 3123366.455078125, "dur": 731.1999797821045, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7311999797821045, "detail": "System.ExecutionEngineException" } },
- { "pid": 1, "tid": 26, "ts": 3124098.6328125, "dur": 877.6999711990356, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8776999711990356, "detail": "Microsoft.Win32.ExpandString" } },
- { "pid": 1, "tid": 26, "ts": 3125080.322265625, "dur": 1185.8999729156494, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1858999729156494, "detail": "System.Runtime.InteropServices.ExternalException" } },
- { "pid": 1, "tid": 26, "ts": 3126275.390625, "dur": 3305.999994277954, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.305999994277954, "detail": "System.Resources.FastResourceComparer" } },
- { "pid": 1, "tid": 26, "ts": 3129582.275390625, "dur": 582.4999809265137, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5824999809265137, "detail": "System.FieldAccessException" } },
- { "pid": 1, "tid": 26, "ts": 3130175.29296875, "dur": 6386.099815368652, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.386099815368652, "detail": "System.Reflection.Emit.FieldBuilder" } },
- { "pid": 1, "tid": 26, "ts": 3136562.255859375, "dur": 3763.0999088287354, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.7630999088287354, "detail": "System.Reflection.FieldInfo" } },
- { "pid": 1, "tid": 26, "ts": 3140446.533203125, "dur": 1925.5000352859497, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9255000352859497, "detail": "System.IO.File" } },
- { "pid": 1, "tid": 26, "ts": 3142516.357421875, "dur": 3205.4998874664307, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.2054998874664307, "detail": "System.IO.FileLoadException" } },
- { "pid": 1, "tid": 26, "ts": 3145733.154296875, "dur": 3206.199884414673, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.206199884414673, "detail": "System.IO.FileNotFoundException" } },
- { "pid": 1, "tid": 26, "ts": 3148962.158203125, "dur": 71099.30419921875, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 71.09930419921875, "detail": "System.IO.FileStream" } },
- { "pid": 1, "tid": 26, "ts": 3220062.5, "dur": 619.4999814033508, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6194999814033508, "detail": "System.IO.FileStreamAsyncResult" } },
- { "pid": 1, "tid": 26, "ts": 3220682.861328125, "dur": 338.09998631477356, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.33809998631477356, "detail": "System.IO.FileSystemEnumerableFactory" } },
- { "pid": 1, "tid": 26, "ts": 3221021.484375, "dur": 992.3999905586243, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9923999905586243, "detail": "System.IO.FileSystemEnumerableHelpers" } },
- { "pid": 1, "tid": 26, "ts": 3222014.892578125, "dur": 1834.3000411987305, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8343000411987305, "detail": "System.IO.FileSystemInfo" } },
- { "pid": 1, "tid": 26, "ts": 3224341.064453125, "dur": 1727.5999784469604, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7275999784469604, "detail": "System.Runtime.Serialization.FixupHolderList" } },
- { "pid": 1, "tid": 26, "ts": 3226169.921875, "dur": 795.7000136375427, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7957000136375427, "detail": "System.FormatException" } },
- { "pid": 1, "tid": 26, "ts": 3226974.853515625, "dur": 1414.0000343322754, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4140000343322754, "detail": "System.Runtime.Serialization.FormatterConverter" } },
- { "pid": 1, "tid": 26, "ts": 3228475.09765625, "dur": 10118.1001663208, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.1181001663208, "detail": "System.Runtime.Serialization.FormatterServices" } },
- { "pid": 1, "tid": 26, "ts": 3238688.4765625, "dur": 2135.0998878479004, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1350998878479004, "detail": "System.GC" } },
- { "pid": 1, "tid": 26, "ts": 3240824.462890625, "dur": 3239.3999099731445, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.2393999099731445, "detail": "System.Runtime.InteropServices.GCHandle" } },
- { "pid": 1, "tid": 26, "ts": 3244079.833984375, "dur": 5230.599880218506, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.230599880218506, "detail": "System.Reflection.Emit.GenericTypeParameterBuilder" } },
- { "pid": 1, "tid": 26, "ts": 3249311.5234375, "dur": 45518.39828491211, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 45.51839828491211, "detail": "System.Globalization.GregorianCalendar" } },
- { "pid": 1, "tid": 26, "ts": 3294831.54296875, "dur": 8331.999778747559, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.331999778747559, "detail": "System.Globalization.GregorianCalendarHelper" } },
- { "pid": 1, "tid": 26, "ts": 3303173.828125, "dur": 18936.100006103516, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.936100006103516, "detail": "System.Guid" } },
- { "pid": 1, "tid": 26, "ts": 3322112.79296875, "dur": 42857.601165771484, "ph": "X", "name": "mscorlib5.cpp", "args": { "durationMS": 42.857601165771484, "detail": "" } },
- { "pid": 1, "tid": 26, "ts": 3364989.501953125, "dur": 1327.9000520706177, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3279000520706177, "detail": "System.Runtime.Serialization.SerializationInfoEnumerator" } },
- { "pid": 1, "tid": 26, "ts": 3366318.603515625, "dur": 851.1000275611877, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8511000275611877, "detail": "System.Runtime.Serialization.SerializationObjectManager" } },
- { "pid": 1, "tid": 26, "ts": 3367170.41015625, "dur": 422.39999771118164, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.42239999771118164, "detail": "System.Runtime.Remoting.Messaging.ServerContextTerminatorSink" } },
- { "pid": 1, "tid": 26, "ts": 3367593.26171875, "dur": 1654.0000438690186, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6540000438690186, "detail": "System.Runtime.Remoting.ServerIdentity" } },
- { "pid": 1, "tid": 26, "ts": 3369248.046875, "dur": 6174.699783325195, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.174699783325195, "detail": "System.Runtime.Remoting.Messaging.ServerObjectReplySink" } },
- { "pid": 1, "tid": 26, "ts": 3375423.828125, "dur": 652.899980545044, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.652899980545044, "detail": "System.Runtime.Remoting.Messaging.ServerObjectTerminatorSink" } },
- { "pid": 1, "tid": 26, "ts": 3376088.37890625, "dur": 68601.60064697266, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 68.60160064697266, "detail": "Mono.Globalization.Unicode.SimpleCollator" } },
- { "pid": 1, "tid": 26, "ts": 3444691.40625, "dur": 5070.899963378906, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.070899963378906, "detail": "System.Single" } },
- { "pid": 1, "tid": 26, "ts": 3449762.939453125, "dur": 1437.2999668121338, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4372999668121338, "detail": "System.Runtime.Remoting.SingleCallIdentity" } },
- { "pid": 1, "tid": 26, "ts": 3451201.416015625, "dur": 1097.3999500274658, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0973999500274658, "detail": "System.Runtime.Remoting.SingletonIdentity" } },
- { "pid": 1, "tid": 26, "ts": 3452585.205078125, "dur": 1784.500002861023, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.784500002861023, "detail": "System.Runtime.Serialization.Formatters.Binary.SizedArray" } },
- { "pid": 1, "tid": 26, "ts": 3454387.6953125, "dur": 8599.800109863281, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.599800109863281, "detail": "Mono.Xml.SmallXmlParser" } },
- { "pid": 1, "tid": 26, "ts": 3463474.365234375, "dur": 355.10000586509705, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.35510000586509705, "detail": "System.Runtime.Remoting.Metadata.SoapFieldAttribute" } },
- { "pid": 1, "tid": 26, "ts": 3463830.322265625, "dur": 749.4999766349792, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7494999766349792, "detail": "System.Runtime.Remoting.Metadata.SoapMethodAttribute" } },
- { "pid": 1, "tid": 26, "ts": 3464674.560546875, "dur": 4580.399990081787, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.580399990081787, "detail": "System.Runtime.Remoting.SoapServices" } },
- { "pid": 1, "tid": 26, "ts": 3469255.859375, "dur": 1075.5000114440918, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0755000114440918, "detail": "System.Runtime.Remoting.Metadata.SoapTypeAttribute" } },
- { "pid": 1, "tid": 26, "ts": 3470331.787109375, "dur": 2505.8999061584473, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.5058999061584473, "detail": "System.Globalization.SortKey" } },
- { "pid": 1, "tid": 26, "ts": 3472838.623046875, "dur": 17091.800689697266, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 17.091800689697266, "detail": "Mono.Globalization.Unicode.SortKeyBuffer" } },
- { "pid": 1, "tid": 26, "ts": 3489941.89453125, "dur": 6203.89986038208, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.20389986038208, "detail": "System.Collections.SortedList" } },
- { "pid": 1, "tid": 26, "ts": 3496146.484375, "dur": 5684.100151062012, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.684100151062012, "detail": "System.Threading.SpinLock" } },
- { "pid": 1, "tid": 26, "ts": 3501832.275390625, "dur": 707.8999876976013, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7078999876976013, "detail": "System.Threading.SpinWait" } },
- { "pid": 1, "tid": 26, "ts": 3502540.771484375, "dur": 4056.2000274658203, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.05620002746582, "detail": "System.Collections.Stack" } },
- { "pid": 1, "tid": 26, "ts": 3506597.412109375, "dur": 2193.3999061584473, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1933999061584473, "detail": "System.Runtime.Remoting.Messaging.StackBuilderSink" } },
- { "pid": 1, "tid": 26, "ts": 3508802.24609375, "dur": 1866.0000562667847, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8660000562667847, "detail": "System.Diagnostics.StackFrame" } },
- { "pid": 1, "tid": 26, "ts": 3510669.43359375, "dur": 442.4999952316284, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4424999952316284, "detail": "System.Threading.Tasks.StackGuard" } },
- { "pid": 1, "tid": 26, "ts": 3511112.548828125, "dur": 518.999993801117, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5189999938011169, "detail": "System.StackOverflowException" } },
- { "pid": 1, "tid": 26, "ts": 3511631.8359375, "dur": 5529.399871826172, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.529399871826172, "detail": "System.Diagnostics.StackTrace" } },
- { "pid": 1, "tid": 26, "ts": 3517162.353515625, "dur": 1084.3000411987305, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0843000411987305, "detail": "System.Threading.Tasks.StandardTaskContinuation" } },
- { "pid": 1, "tid": 26, "ts": 3518462.890625, "dur": 9098.299980163574, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.098299980163574, "detail": "System.IO.Stream" } },
- { "pid": 1, "tid": 26, "ts": 3527562.01171875, "dur": 10832.099914550781, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.832099914550781, "detail": "System.IO.StreamReader" } },
- { "pid": 1, "tid": 26, "ts": 3538397.216796875, "dur": 95288.00201416016, "ph": "X", "name": "mscorlib11.cpp", "args": { "durationMS": 95.28800201416016, "detail": "" } },
- { "pid": 1, "tid": 26, "ts": 3634012.939453125, "dur": 284768.798828125, "ph": "X", "name": "Idle", "args": { "durationMS": 284.768798828125, "detail": "" } },
- { "pid": 1, "tid": 27, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 27, "ts": 1719869.62890625, "dur": 11263.999938964844, "ph": "X", "name": "Idle", "args": { "durationMS": 11.263999938964844, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 1845005.4931640625, "dur": 3088.0000591278076, "ph": "X", "name": "Write Assembly", "args": { "durationMS": 3.0880000591278076, "detail": "System.Xml" } },
- { "pid": 1, "tid": 27, "ts": 1848930.5419921875, "dur": 175365.90576171875, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 175.36590576171875, "detail": "mscorlib" } },
- { "pid": 1, "tid": 27, "ts": 1850030.517578125, "dur": 174265.59448242188, "ph": "X", "name": "mscorlib_Attr.cpp", "args": { "durationMS": 174.26559448242188, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 2039466.796875, "dur": 8657.500267028809, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 8.657500267028809, "detail": "UnityEngine.TilemapModule" } },
- { "pid": 1, "tid": 27, "ts": 2039484.619140625, "dur": 8638.799667358398, "ph": "X", "name": "UnityEngine.TilemapModule_Attr.cpp", "args": { "durationMS": 8.638799667358398, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 2048129.150390625, "dur": 15177.000045776367, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 15.177000045776367, "detail": "UnityEngine.UIModule" } },
- { "pid": 1, "tid": 27, "ts": 2048157.2265625, "dur": 15148.700714111328, "ph": "X", "name": "UnityEngine.UIModule_Attr.cpp", "args": { "durationMS": 15.148700714111328, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 2077972.900390625, "dur": 102314.89562988281, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 102.31489562988281, "detail": "UnityEngine.CameraRaycastHelper" } },
- { "pid": 1, "tid": 27, "ts": 2180302.001953125, "dur": 1341.0999774932861, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3410999774932861, "detail": "UnityEngine.Input" } },
- { "pid": 1, "tid": 27, "ts": 2181644.04296875, "dur": 39463.199615478516, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 39.463199615478516, "detail": "UnityEngine.SendMouseEvents" } },
- { "pid": 1, "tid": 27, "ts": 2221107.91015625, "dur": 937.6000165939331, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9376000165939331, "detail": "UnityEngine.Touch" } },
- { "pid": 1, "tid": 27, "ts": 2222061.279296875, "dur": 1032.6000452041626, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0326000452041626, "detail": "UnityEngine.SendMouseEvents/HitInfo" } },
- { "pid": 1, "tid": 27, "ts": 2223095.703125, "dur": 7677.800178527832, "ph": "X", "name": "UnityEngine.InputLegacyModule.cpp", "args": { "durationMS": 7.677800178527832, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 2230810.791015625, "dur": 653.1000137329102, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6531000137329102, "detail": "UnityEngine.Analytics.AnalyticsSessionInfo" } },
- { "pid": 1, "tid": 27, "ts": 2231483.88671875, "dur": 1634.0999603271484, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6340999603271484, "detail": "UnityEngine.RemoteConfigSettings" } },
- { "pid": 1, "tid": 27, "ts": 2233131.103515625, "dur": 1906.1000347137451, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9061000347137451, "detail": "UnityEngine.RemoteSettings" } },
- { "pid": 1, "tid": 27, "ts": 2235039.306640625, "dur": 32036.197662353516, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 32.036197662353516, "detail": "UnityEngine.Analytics.AnalyticsSessionInfo/IdentityTokenChanged" } },
- { "pid": 1, "tid": 27, "ts": 2267076.904296875, "dur": 2434.999942779541, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.434999942779541, "detail": "UnityEngine.Analytics.AnalyticsSessionInfo/SessionStateChanged" } },
- { "pid": 1, "tid": 27, "ts": 2269818.84765625, "dur": 10950.400352478027, "ph": "X", "name": "UnityEngine.UnityAnalyticsModule.cpp", "args": { "durationMS": 10.950400352478027, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 2280790.0390625, "dur": 10500.499725341797, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.500499725341797, "detail": "cubeController" } },
- { "pid": 1, "tid": 27, "ts": 2291291.9921875, "dur": 889.5000219345093, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8895000219345093, "detail": "doSomething" } },
- { "pid": 1, "tid": 27, "ts": 2292182.861328125, "dur": 894.8000073432922, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8948000073432922, "detail": "dragPicture" } },
- { "pid": 1, "tid": 27, "ts": 2293079.345703125, "dur": 1532.5000286102295, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5325000286102295, "detail": "homeScript" } },
- { "pid": 1, "tid": 27, "ts": 2294612.3046875, "dur": 11868.900299072266, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.868900299072266, "detail": "move" } },
- { "pid": 1, "tid": 27, "ts": 2306482.91015625, "dur": 1410.3000164031982, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4103000164031982, "detail": "task" } },
- { "pid": 1, "tid": 27, "ts": 2307894.775390625, "dur": 790.3000116348267, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7903000116348267, "detail": "testMove" } },
- { "pid": 1, "tid": 27, "ts": 2308686.279296875, "dur": 3064.199924468994, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.064199924468994, "detail": "testMove/<OnMouseDown>d__7" } },
- { "pid": 1, "tid": 27, "ts": 2311753.41796875, "dur": 26398.49853515625, "ph": "X", "name": "Assembly-CSharp1.cpp", "args": { "durationMS": 26.39849853515625, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 2338197.265625, "dur": 2828.2999992370605, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.8282999992370605, "detail": "UnityEngine._Scripting.APIUpdating.APIUpdaterRuntimeHelpers" } },
- { "pid": 1, "tid": 27, "ts": 2341027.099609375, "dur": 382.80001282691956, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.38280001282691956, "detail": "UnityEngine.AddComponentMenu" } },
- { "pid": 1, "tid": 27, "ts": 2341427.978515625, "dur": 2392.1000957489014, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.3921000957489014, "detail": "UnityEngine.AnimationCurve" } },
- { "pid": 1, "tid": 27, "ts": 2343821.044921875, "dur": 9565.199851989746, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.565199851989746, "detail": "UnityEngine.Application" } },
- { "pid": 1, "tid": 27, "ts": 2353387.451171875, "dur": 1130.6999921798706, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1306999921798706, "detail": "UnityEngine.Events.ArgumentCache" } },
- { "pid": 1, "tid": 27, "ts": 2354579.58984375, "dur": 1229.3000221252441, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2293000221252441, "detail": "UnityEngine.AsyncOperation" } },
- { "pid": 1, "tid": 27, "ts": 2355809.814453125, "dur": 12898.300170898438, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.898300170898438, "detail": "Unity.IO.LowLevel.Unsafe.AsyncReadManagerMetricsFilters" } },
- { "pid": 1, "tid": 27, "ts": 2368709.716796875, "dur": 1439.1000270843506, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4391000270843506, "detail": "Unity.IO.LowLevel.Unsafe.AsyncReadManagerRequestMetric" } },
- { "pid": 1, "tid": 27, "ts": 2370149.658203125, "dur": 5434.000015258789, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.434000015258789, "detail": "UnityEngine.AttributeHelperEngine" } },
- { "pid": 1, "tid": 27, "ts": 2375584.9609375, "dur": 5685.699939727783, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.685699939727783, "detail": "UnityEngine.Events.BaseInvokableCall" } },
- { "pid": 1, "tid": 27, "ts": 2381272.216796875, "dur": 649.9999761581421, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6499999761581421, "detail": "UnityEngine.Rendering.BatchCullingContext" } },
- { "pid": 1, "tid": 27, "ts": 2382024.4140625, "dur": 1971.60005569458, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.97160005569458, "detail": "UnityEngine.Rendering.BatchRendererGroup" } },
- { "pid": 1, "tid": 27, "ts": 2384023.193359375, "dur": 1081.5999507904053, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0815999507904053, "detail": "UnityEngine.BeforeRenderHelper" } },
- { "pid": 1, "tid": 27, "ts": 2385402.099609375, "dur": 638.5999917984009, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6385999917984009, "detail": "UnityEngine.BootConfigData" } },
- { "pid": 1, "tid": 27, "ts": 2386041.748046875, "dur": 9692.19970703125, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.69219970703125, "detail": "UnityEngine.Bounds" } },
- { "pid": 1, "tid": 27, "ts": 2395734.375, "dur": 845.7000255584717, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8457000255584717, "detail": "UnityEngine.Experimental.Rendering.BuiltinRuntimeReflectionSystem" } },
- { "pid": 1, "tid": 27, "ts": 2396581.0546875, "dur": 4418.700218200684, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.418700218200684, "detail": "UnityEngine.Camera" } },
- { "pid": 1, "tid": 27, "ts": 2401010.986328125, "dur": 1245.5999851226807, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2455999851226807, "detail": "UnityEngine.Experimental.Playables.CameraPlayable" } },
- { "pid": 1, "tid": 27, "ts": 2402407.470703125, "dur": 5421.10013961792, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.42110013961792, "detail": "UnityEngine.Color" } },
- { "pid": 1, "tid": 27, "ts": 2407829.58984375, "dur": 2391.0000324249268, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.3910000324249268, "detail": "UnityEngine.Color32" } },
- { "pid": 1, "tid": 27, "ts": 2410245.60546875, "dur": 1424.6000051498413, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4246000051498413, "detail": "UnityEngine.Component" } },
- { "pid": 1, "tid": 27, "ts": 2411806.396484375, "dur": 983.7999939918518, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9837999939918518, "detail": "UnityEngine.Coroutine" } },
- { "pid": 1, "tid": 27, "ts": 2412791.259765625, "dur": 4987.8997802734375, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.9878997802734375, "detail": "UnityEngine.Cubemap" } },
- { "pid": 1, "tid": 27, "ts": 2417780.029296875, "dur": 11403.800010681152, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.403800010681152, "detail": "UnityEngine.CubemapArray" } },
- { "pid": 1, "tid": 27, "ts": 2429185.546875, "dur": 949.999988079071, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.949999988079071, "detail": "UnityEngine.CullingGroup" } },
- { "pid": 1, "tid": 27, "ts": 2430260.7421875, "dur": 688.0999803543091, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6880999803543091, "detail": "UnityEngine.CustomRenderTextureManager" } },
- { "pid": 1, "tid": 27, "ts": 2430949.462890625, "dur": 3785.399913787842, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.785399913787842, "detail": "UnityEngine.CustomYieldInstruction" } },
- { "pid": 1, "tid": 27, "ts": 2434736.328125, "dur": 932.5000047683716, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9325000047683716, "detail": "UnityEngine.Sprites.DataUtility" } },
- { "pid": 1, "tid": 27, "ts": 2435682.6171875, "dur": 4693.600177764893, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.693600177764893, "detail": "UnityEngine.Debug" } },
- { "pid": 1, "tid": 27, "ts": 2440377.197265625, "dur": 1036.0000133514404, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0360000133514404, "detail": "UnityEngine.DebugLogHandler" } },
- { "pid": 1, "tid": 27, "ts": 2441414.55078125, "dur": 693.1999921798706, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6931999921798706, "detail": "UnityEngine.Profiling.Experimental.DebugScreenCapture" } },
- { "pid": 1, "tid": 27, "ts": 2442262.6953125, "dur": 1227.3000478744507, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2273000478744507, "detail": "UnityEngine.Internal.DefaultValueAttribute" } },
- { "pid": 1, "tid": 27, "ts": 2443491.2109375, "dur": 1247.7999925613403, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2477999925613403, "detail": "UnityEngine.Experimental.GlobalIllumination.DirectionalLight" } },
- { "pid": 1, "tid": 27, "ts": 2444860.595703125, "dur": 1233.1000566482544, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2331000566482544, "detail": "UnityEngine.Experimental.GlobalIllumination.DiscLight" } },
- { "pid": 1, "tid": 27, "ts": 2446094.7265625, "dur": 3427.0999431610107, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.4270999431610107, "detail": "UnityEngine.Display" } },
- { "pid": 1, "tid": 27, "ts": 2449523.193359375, "dur": 418.5999929904938, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4185999929904938, "detail": "UnityEngine.DrivenRectTransformTracker" } },
- { "pid": 1, "tid": 27, "ts": 2450857.666015625, "dur": 398.4000086784363, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3984000086784363, "detail": "UnityEngine.FailedToLoadScriptObject" } },
- { "pid": 1, "tid": 27, "ts": 2451570.068359375, "dur": 2671.0000038146973, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.6710000038146973, "detail": "UnityEngine.GameObject" } },
- { "pid": 1, "tid": 27, "ts": 2454363.037109375, "dur": 2426.0001182556152, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.4260001182556152, "detail": "UnityEngine.Gradient" } },
- { "pid": 1, "tid": 27, "ts": 2456808.837890625, "dur": 1802.1999597549438, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8021999597549438, "detail": "UnityEngine.Experimental.Rendering.GraphicsFormatUtility" } },
- { "pid": 1, "tid": 27, "ts": 2459377.197265625, "dur": 2633.899927139282, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.6338999271392822, "detail": "UnityEngine.Events.InvokableCall" } },
- { "pid": 1, "tid": 27, "ts": 2462012.451171875, "dur": 4120.999813079834, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.120999813079834, "detail": "UnityEngine.Events.InvokableCallList" } },
- { "pid": 1, "tid": 27, "ts": 2466456.787109375, "dur": 1751.2999773025513, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7512999773025513, "detail": "UnityEngine.Rendering.LODParameters" } },
- { "pid": 1, "tid": 27, "ts": 2468209.228515625, "dur": 2345.7000255584717, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.3457000255584717, "detail": "UnityEngine.LayerMask" } },
- { "pid": 1, "tid": 27, "ts": 2470556.15234375, "dur": 2465.60001373291, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.46560001373291, "detail": "UnityEngine.Light" } },
- { "pid": 1, "tid": 27, "ts": 2473022.94921875, "dur": 841.8999910354614, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8418999910354614, "detail": "UnityEngine.LightBakingOutput" } },
- { "pid": 1, "tid": 27, "ts": 2473865.72265625, "dur": 6059.000015258789, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.059000015258789, "detail": "UnityEngine.Experimental.GlobalIllumination.LightDataGI" } },
- { "pid": 1, "tid": 27, "ts": 2479938.720703125, "dur": 2210.599899291992, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.210599899291992, "detail": "UnityEngine.LightProbes" } },
- { "pid": 1, "tid": 27, "ts": 2482471.435546875, "dur": 11237.899780273438, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.237899780273438, "detail": "UnityEngine.Experimental.GlobalIllumination.LightmapperUtils" } },
- { "pid": 1, "tid": 27, "ts": 2493710.693359375, "dur": 1148.4999656677246, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1484999656677246, "detail": "UnityEngine.Experimental.GlobalIllumination.Lightmapping" } },
- { "pid": 1, "tid": 27, "ts": 2494877.685546875, "dur": 50439.002990722656, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 50.439002990722656, "detail": "UnityEngine.Experimental.GlobalIllumination.LinearColor" } },
- { "pid": 1, "tid": 27, "ts": 2545583.740234375, "dur": 3011.6000175476074, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.0116000175476074, "detail": "UnityEngine.Logger" } },
- { "pid": 1, "tid": 27, "ts": 2548746.337890625, "dur": 2110.100030899048, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.110100030899048, "detail": "UnityEngine.ManagedStreamHelpers" } },
- { "pid": 1, "tid": 27, "ts": 2550857.177734375, "dur": 3805.0999641418457, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.8050999641418457, "detail": "UnityEngine.Material" } },
- { "pid": 1, "tid": 27, "ts": 2554663.0859375, "dur": 506.09999895095825, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5060999989509583, "detail": "UnityEngine.Experimental.Playables.MaterialEffectPlayable" } },
- { "pid": 1, "tid": 27, "ts": 2555169.921875, "dur": 6066.999912261963, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.066999912261963, "detail": "UnityEngine.Mathf" } },
- { "pid": 1, "tid": 27, "ts": 2561464.84375, "dur": 7068.79997253418, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.06879997253418, "detail": "UnityEngine.Matrix4x4" } },
- { "pid": 1, "tid": 27, "ts": 2568535.15625, "dur": 5280.900001525879, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.280900001525879, "detail": "UnityEngine.Profiling.Memory.Experimental.MemoryProfiler" } },
- { "pid": 1, "tid": 27, "ts": 2573818.115234375, "dur": 12371.999740600586, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.371999740600586, "detail": "UnityEngine.Mesh" } },
- { "pid": 1, "tid": 27, "ts": 2586699.951171875, "dur": 4764.500141143799, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.764500141143799, "detail": "UnityEngine.MonoBehaviour" } },
- { "pid": 1, "tid": 27, "ts": 2591755.126953125, "dur": 662.8000140190125, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6628000140190125, "detail": "UnityEngine.Scripting.APIUpdating.MovedFromAttributeData" } },
- { "pid": 1, "tid": 27, "ts": 2593343.26171875, "dur": 5616.199970245361, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.616199970245361, "detail": "UnityEngine.Object" } },
- { "pid": 1, "tid": 27, "ts": 2598960.44921875, "dur": 456.0999870300293, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4560999870300293, "detail": "UnityEngine.Rendering.OnDemandRendering" } },
- { "pid": 1, "tid": 27, "ts": 2599428.22265625, "dur": 4506.499767303467, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.506499767303467, "detail": "UnityEngine.Events.PersistentCall" } },
- { "pid": 1, "tid": 27, "ts": 2603936.279296875, "dur": 931.9000244140625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9319000244140625, "detail": "UnityEngine.Events.PersistentCallGroup" } },
- { "pid": 1, "tid": 27, "ts": 2604880.37109375, "dur": 1434.499979019165, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.434499979019165, "detail": "UnityEngine.Plane" } },
- { "pid": 1, "tid": 27, "ts": 2606315.4296875, "dur": 825.3999948501587, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8253999948501587, "detail": "UnityEngine.Playables.Playable" } },
- { "pid": 1, "tid": 27, "ts": 2607142.08984375, "dur": 938.0000233650208, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9380000233650208, "detail": "UnityEngine.Playables.PlayableAsset" } },
- { "pid": 1, "tid": 27, "ts": 2608081.0546875, "dur": 780.7999849319458, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7807999849319458, "detail": "UnityEngine.Playables.PlayableBehaviour" } },
- { "pid": 1, "tid": 27, "ts": 2608862.548828125, "dur": 452.39999890327454, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.45239999890327454, "detail": "UnityEngine.Playables.PlayableBinding" } },
- { "pid": 1, "tid": 27, "ts": 2609333.984375, "dur": 1968.2999849319458, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9682999849319458, "detail": "UnityEngine.Playables.PlayableHandle" } },
- { "pid": 1, "tid": 27, "ts": 2611303.955078125, "dur": 759.0000033378601, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7590000033378601, "detail": "UnityEngine.Playables.PlayableOutput" } },
- { "pid": 1, "tid": 27, "ts": 2612063.96484375, "dur": 28953.298568725586, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 28.953298568725586, "detail": "UnityEngine.Playables.PlayableOutputHandle" } },
- { "pid": 1, "tid": 27, "ts": 2641019.287109375, "dur": 15969.599723815918, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.969599723815918, "detail": "UnityEngine.Networking.PlayerConnection.PlayerConnection" } },
- { "pid": 1, "tid": 27, "ts": 2656989.501953125, "dur": 1895.300030708313, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.895300030708313, "detail": "UnityEngine.PlayerConnectionInternal" } },
- { "pid": 1, "tid": 27, "ts": 2658886.474609375, "dur": 2834.5000743865967, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.8345000743865967, "detail": "UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents" } },
- { "pid": 1, "tid": 27, "ts": 2661721.923828125, "dur": 481.59998655319214, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.48159998655319214, "detail": "UnityEngine.LowLevel.PlayerLoopSystem" } },
- { "pid": 1, "tid": 27, "ts": 2662389.6484375, "dur": 1017.0999765396118, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0170999765396118, "detail": "UnityEngine.Experimental.GlobalIllumination.PointLight" } },
- { "pid": 1, "tid": 27, "ts": 2663620.60546875, "dur": 621.2999820709229, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6212999820709229, "detail": "UnityEngine.Profiling.Profiler" } },
- { "pid": 1, "tid": 27, "ts": 2664404.052734375, "dur": 6580.50012588501, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.58050012588501, "detail": "UnityEngine.Quaternion" } },
- { "pid": 1, "tid": 27, "ts": 2671188.96484375, "dur": 388.5999917984009, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3885999917984009, "detail": "UnityEngine.RangeInt" } },
- { "pid": 1, "tid": 27, "ts": 2671578.369140625, "dur": 1487.5999689102173, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4875999689102173, "detail": "UnityEngine.Ray" } },
- { "pid": 1, "tid": 27, "ts": 2673080.078125, "dur": 8131.099700927734, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.131099700927734, "detail": "UnityEngine.Rect" } },
- { "pid": 1, "tid": 27, "ts": 2681212.40234375, "dur": 6414.5002365112305, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.4145002365112305, "detail": "UnityEngine.RectOffset" } },
- { "pid": 1, "tid": 27, "ts": 2687628.173828125, "dur": 10388.400077819824, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.388400077819824, "detail": "UnityEngine.RectTransform" } },
- { "pid": 1, "tid": 27, "ts": 2698019.287109375, "dur": 64214.89715576172, "ph": "X", "name": "UnityEngine.CoreModule.cpp", "args": { "durationMS": 64.21489715576172, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 2762249.755859375, "dur": 7980.599880218506, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.980599880218506, "detail": "System.Text.RegularExpressions.RegexNode" } },
- { "pid": 1, "tid": 27, "ts": 2770242.431640625, "dur": 31808.700561523438, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 31.808700561523438, "detail": "System.Text.RegularExpressions.RegexParser" } },
- { "pid": 1, "tid": 27, "ts": 2802052.24609375, "dur": 458.99999141693115, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.45899999141693115, "detail": "System.Text.RegularExpressions.RegexPrefix" } },
- { "pid": 1, "tid": 27, "ts": 2802737.060546875, "dur": 8736.800193786621, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.736800193786621, "detail": "System.Text.RegularExpressions.RegexWriter" } },
- { "pid": 1, "tid": 27, "ts": 2811474.853515625, "dur": 410.19999980926514, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.41019999980926514, "detail": "SR" } },
- { "pid": 1, "tid": 27, "ts": 2812672.36328125, "dur": 2391.9999599456787, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.3919999599456787, "detail": "System.Net.Sockets.SocketException" } },
- { "pid": 1, "tid": 27, "ts": 2815065.185546875, "dur": 1600.9999513626099, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6009999513626099, "detail": "System.Diagnostics.Stopwatch" } },
- { "pid": 1, "tid": 27, "ts": 2817012.6953125, "dur": 909.6999764442444, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9096999764442444, "detail": "System.ComponentModel.TypeConverterAttribute" } },
- { "pid": 1, "tid": 27, "ts": 2817923.583984375, "dur": 2350.100040435791, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.350100040435791, "detail": "System.UncNameHelper" } },
- { "pid": 1, "tid": 27, "ts": 2820287.59765625, "dur": 133159.60693359375, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 133.15960693359375, "detail": "System.Uri" } },
- { "pid": 1, "tid": 27, "ts": 2953450.439453125, "dur": 27263.200759887695, "ph": "X", "name": "System1.cpp", "args": { "durationMS": 27.263200759887695, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 2980732.91015625, "dur": 773.5999822616577, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7735999822616577, "detail": "System.Collections.Generic.List`1<UnityEngine.Vector4>" } },
- { "pid": 1, "tid": 27, "ts": 2981508.30078125, "dur": 3704.900026321411, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 3.704900026321411, "detail": "System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
- { "pid": 1, "tid": 27, "ts": 2985217.28515625, "dur": 680.400013923645, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.680400013923645, "detail": "System.Collections.Generic.List`1<UnityEngine.Camera/RenderRequest>" } },
- { "pid": 1, "tid": 27, "ts": 2985898.681640625, "dur": 436.1000061035156, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4361000061035156, "detail": "System.Collections.Generic.List`1<System.IO.Directory/SearchData>" } },
- { "pid": 1, "tid": 27, "ts": 2986336.669921875, "dur": 411.5000069141388, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4115000069141388, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/DropdownItem>" } },
- { "pid": 1, "tid": 27, "ts": 2986749.51171875, "dur": 394.89999413490295, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.39489999413490295, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/OptionData>" } },
- { "pid": 1, "tid": 27, "ts": 2987146.97265625, "dur": 812.5, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8125, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger/Entry>" } },
- { "pid": 1, "tid": 27, "ts": 2987961.181640625, "dur": 391.9999897480011, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3919999897480011, "detail": "System.Collections.Generic.List`1<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers>" } },
- { "pid": 1, "tid": 27, "ts": 2988354.736328125, "dur": 352.400004863739, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.352400004863739, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.PointerInputModule/ButtonState>" } },
- { "pid": 1, "tid": 27, "ts": 2988709.228515625, "dur": 729.200005531311, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.729200005531311, "detail": "System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>" } },
- { "pid": 1, "tid": 27, "ts": 2989440.4296875, "dur": 386.2000107765198, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3862000107765198, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.StencilMaterial/MatEntry>" } },
- { "pid": 1, "tid": 27, "ts": 2989828.369140625, "dur": 360.5000078678131, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3605000078678131, "detail": "System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>" } },
- { "pid": 1, "tid": 27, "ts": 2990191.162109375, "dur": 647.7000117301941, "ph": "X", "name": "Il2CppGenericComDefinitions14.cpp", "args": { "durationMS": 0.6477000117301941, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 2991095.703125, "dur": 471.5000092983246, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4715000092983246, "detail": "<PrivateImplementationDetails>" } },
- { "pid": 1, "tid": 27, "ts": 2991567.87109375, "dur": 23651.29852294922, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 23.65129852294922, "detail": "System.Text.ASCIIEncoding" } },
- { "pid": 1, "tid": 27, "ts": 3015219.970703125, "dur": 892.799973487854, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.892799973487854, "detail": "System.Threading.AbandonedMutexException" } },
- { "pid": 1, "tid": 27, "ts": 3016113.525390625, "dur": 382.099986076355, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.382099986076355, "detail": "System.Action" } },
- { "pid": 1, "tid": 27, "ts": 3016496.337890625, "dur": 683.899998664856, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.683899998664856, "detail": "System.Runtime.Remoting.ActivatedClientTypeEntry" } },
- { "pid": 1, "tid": 27, "ts": 3017181.15234375, "dur": 513.8000249862671, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5138000249862671, "detail": "System.Runtime.Remoting.ActivatedServiceTypeEntry" } },
- { "pid": 1, "tid": 27, "ts": 3017696.044921875, "dur": 4107.200145721436, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.1072001457214355, "detail": "System.Runtime.Remoting.Activation.ActivationServices" } },
- { "pid": 1, "tid": 27, "ts": 3021803.955078125, "dur": 1485.5999946594238, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4855999946594238, "detail": "System.Activator" } },
- { "pid": 1, "tid": 27, "ts": 3023290.52734375, "dur": 11786.600112915039, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.786600112915039, "detail": "System.AggregateException" } },
- { "pid": 1, "tid": 27, "ts": 3035078.369140625, "dur": 2905.9998989105225, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.9059998989105225, "detail": "System.Reflection.AmbiguousMatchException" } },
- { "pid": 1, "tid": 27, "ts": 3037995.1171875, "dur": 6638.999938964844, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.638999938964844, "detail": "System.AppDomain" } },
- { "pid": 1, "tid": 27, "ts": 3044635.009765625, "dur": 801.6999959945679, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8016999959945679, "detail": "System.Runtime.Remoting.Activation.AppDomainLevelActivator" } },
- { "pid": 1, "tid": 27, "ts": 3045740.72265625, "dur": 410.8000099658966, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4108000099658966, "detail": "System.AppDomainUnloadedException" } },
- { "pid": 1, "tid": 27, "ts": 3046152.34375, "dur": 6589.499950408936, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.5894999504089355, "detail": "System.ApplicationException" } },
- { "pid": 1, "tid": 27, "ts": 3052742.919921875, "dur": 1209.4000577926636, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2094000577926636, "detail": "System.Runtime.Remoting.Messaging.ArgInfo" } },
- { "pid": 1, "tid": 27, "ts": 3054266.357421875, "dur": 1385.4000568389893, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3854000568389893, "detail": "System.ArgumentException" } },
- { "pid": 1, "tid": 27, "ts": 3055652.83203125, "dur": 685.5999827384949, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6855999827384949, "detail": "System.ArgumentNullException" } },
- { "pid": 1, "tid": 27, "ts": 3056338.8671875, "dur": 9142.000198364258, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.142000198364258, "detail": "System.ArgumentOutOfRangeException" } },
- { "pid": 1, "tid": 27, "ts": 3065481.93359375, "dur": 1743.1000471115112, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7431000471115112, "detail": "System.ArithmeticException" } },
- { "pid": 1, "tid": 27, "ts": 3067225.830078125, "dur": 32060.60028076172, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 32.06060028076172, "detail": "System.Array" } },
- { "pid": 1, "tid": 27, "ts": 3099287.353515625, "dur": 9352.60009765625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.35260009765625, "detail": "System.Collections.ArrayList" } },
- { "pid": 1, "tid": 27, "ts": 3108640.869140625, "dur": 683.0000281333923, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6830000281333923, "detail": "System.ArraySpec" } },
- { "pid": 1, "tid": 27, "ts": 3109324.70703125, "dur": 393.29999685287476, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.39329999685287476, "detail": "System.ArrayTypeMismatchException" } },
- { "pid": 1, "tid": 27, "ts": 3109718.75, "dur": 4289.000034332275, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.289000034332275, "detail": "System.Reflection.Assembly" } },
- { "pid": 1, "tid": 27, "ts": 3115092.7734375, "dur": 377.20000743865967, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.37720000743865967, "detail": "System.AssemblyLoadEventHandler" } },
- { "pid": 1, "tid": 27, "ts": 3115470.947265625, "dur": 9815.400123596191, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.815400123596191, "detail": "System.Reflection.AssemblyName" } },
- { "pid": 1, "tid": 27, "ts": 3125633.056640625, "dur": 400.0000059604645, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4000000059604645, "detail": "System.AsyncCallback" } },
- { "pid": 1, "tid": 27, "ts": 3126042.724609375, "dur": 461.40000224113464, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.46140000224113464, "detail": "System.Threading.Tasks.AsyncCausalityTracer" } },
- { "pid": 1, "tid": 27, "ts": 3126504.8828125, "dur": 4263.400077819824, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.263400077819824, "detail": "System.Runtime.CompilerServices.AsyncMethodBuilderCore" } },
- { "pid": 1, "tid": 27, "ts": 3130906.73828125, "dur": 5017.7001953125, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.0177001953125, "detail": "System.Runtime.Remoting.Messaging.AsyncResult" } },
- { "pid": 1, "tid": 27, "ts": 3136042.48046875, "dur": 562.3999834060669, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5623999834060669, "detail": "System.Runtime.CompilerServices.AsyncTaskCache" } },
- { "pid": 1, "tid": 27, "ts": 3136605.712890625, "dur": 8086.400032043457, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.086400032043457, "detail": "System.Attribute" } },
- { "pid": 1, "tid": 27, "ts": 3144708.984375, "dur": 563.4999871253967, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5634999871253967, "detail": "System.AttributeUsageAttribute" } },
- { "pid": 1, "tid": 27, "ts": 3145273.193359375, "dur": 3952.899932861328, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.952899932861328, "detail": "System.Threading.Tasks.AwaitTaskContinuation" } },
- { "pid": 1, "tid": 27, "ts": 3149245.60546875, "dur": 5652.8000831604, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.6528000831604, "detail": "System.BadImageFormatException" } },
- { "pid": 1, "tid": 27, "ts": 3154911.376953125, "dur": 2659.899950027466, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.659899950027466, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryArray" } },
- { "pid": 1, "tid": 27, "ts": 3157582.763671875, "dur": 498.2999861240387, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4982999861240387, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryAssembly" } },
- { "pid": 1, "tid": 27, "ts": 3158082.03125, "dur": 603.5000085830688, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6035000085830688, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryAssemblyInfo" } },
- { "pid": 1, "tid": 27, "ts": 3158982.421875, "dur": 4576.499938964844, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.576499938964844, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryConverter" } },
- { "pid": 1, "tid": 27, "ts": 3164352.294921875, "dur": 3340.89994430542, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.34089994430542, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryFormatter" } },
- { "pid": 1, "tid": 27, "ts": 3167708.0078125, "dur": 782.0000052452087, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7820000052452087, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryMethodCall" } },
- { "pid": 1, "tid": 27, "ts": 3168490.966796875, "dur": 923.9000082015991, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9239000082015991, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryMethodReturn" } },
- { "pid": 1, "tid": 27, "ts": 3169415.771484375, "dur": 602.8000116348267, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6028000116348267, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryObject" } },
- { "pid": 1, "tid": 27, "ts": 3170020.01953125, "dur": 559.4000220298767, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5594000220298767, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryObjectString" } },
- { "pid": 1, "tid": 27, "ts": 3170580.322265625, "dur": 1299.2000579833984, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2992000579833984, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryObjectWithMap" } },
- { "pid": 1, "tid": 27, "ts": 3171880.37109375, "dur": 2022.7999687194824, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0227999687194824, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryObjectWithMapTyped" } },
- { "pid": 1, "tid": 27, "ts": 3173906.005859375, "dur": 156043.30444335938, "ph": "X", "name": "mscorlib.cpp", "args": { "durationMS": 156.04330444335938, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 3329967.7734375, "dur": 3928.600072860718, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.9286000728607178, "detail": "System.Resources.ResourceSet" } },
- { "pid": 1, "tid": 27, "ts": 3333913.818359375, "dur": 2646.8000411987305, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.6468000411987305, "detail": "System.Runtime.Remoting.Messaging.ReturnMessage" } },
- { "pid": 1, "tid": 27, "ts": 3336561.767578125, "dur": 1102.9000282287598, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1029000282287598, "detail": "System.Reflection.RtFieldInfo" } },
- { "pid": 1, "tid": 27, "ts": 3337666.015625, "dur": 365.5000030994415, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.36550000309944153, "detail": "Mono.Runtime" } },
- { "pid": 1, "tid": 27, "ts": 3338047.36328125, "dur": 872.6000189781189, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8726000189781189, "detail": "System.Reflection.RuntimeAssembly" } },
- { "pid": 1, "tid": 27, "ts": 3338920.41015625, "dur": 895.9000110626221, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8959000110626221, "detail": "Mono.RuntimeClassHandle" } },
- { "pid": 1, "tid": 27, "ts": 3339959.228515625, "dur": 1273.1000185012817, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2731000185012817, "detail": "System.Reflection.RuntimeConstructorInfo" } },
- { "pid": 1, "tid": 27, "ts": 3341233.154296875, "dur": 599.6000170707703, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5996000170707703, "detail": "Mono.RuntimeEventHandle" } },
- { "pid": 1, "tid": 27, "ts": 3341833.740234375, "dur": 934.5999956130981, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9345999956130981, "detail": "System.Reflection.RuntimeEventInfo" } },
- { "pid": 1, "tid": 27, "ts": 3342769.04296875, "dur": 2154.599905014038, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.154599905014038, "detail": "System.RuntimeFieldHandle" } },
- { "pid": 1, "tid": 27, "ts": 3344924.560546875, "dur": 933.7000250816345, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9337000250816345, "detail": "System.Reflection.RuntimeFieldInfo" } },
- { "pid": 1, "tid": 27, "ts": 3345858.88671875, "dur": 751.2000203132629, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7512000203132629, "detail": "Mono.RuntimeGPtrArrayHandle" } },
- { "pid": 1, "tid": 27, "ts": 3346610.83984375, "dur": 1522.7999687194824, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5227999687194824, "detail": "Mono.RuntimeGenericParamInfoHandle" } },
- { "pid": 1, "tid": 27, "ts": 3348134.521484375, "dur": 481.2000095844269, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4812000095844269, "detail": "System.Runtime.CompilerServices.RuntimeHelpers" } },
- { "pid": 1, "tid": 27, "ts": 3348616.455078125, "dur": 1967.3999547958374, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9673999547958374, "detail": "Mono.RuntimeMarshal" } },
- { "pid": 1, "tid": 27, "ts": 3350585.205078125, "dur": 2283.900022506714, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.283900022506714, "detail": "System.RuntimeMethodHandle" } },
- { "pid": 1, "tid": 27, "ts": 3352870.60546875, "dur": 2010.4999542236328, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.010499954223633, "detail": "System.Reflection.RuntimeMethodInfo" } },
- { "pid": 1, "tid": 27, "ts": 3355061.279296875, "dur": 599.5000004768372, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5995000004768372, "detail": "Mono.RuntimePropertyHandle" } },
- { "pid": 1, "tid": 27, "ts": 3355661.62109375, "dur": 1425.6999492645264, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4256999492645264, "detail": "System.Reflection.RuntimePropertyInfo" } },
- { "pid": 1, "tid": 27, "ts": 3357087.890625, "dur": 544.7999835014343, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5447999835014343, "detail": "Mono.RuntimeRemoteClassHandle" } },
- { "pid": 1, "tid": 27, "ts": 3357633.544921875, "dur": 14088.199615478516, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.088199615478516, "detail": "System.Resources.RuntimeResourceSet" } },
- { "pid": 1, "tid": 27, "ts": 3371732.666015625, "dur": 66719.10095214844, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 66.71910095214844, "detail": "System.RuntimeType" } },
- { "pid": 1, "tid": 27, "ts": 3438452.63671875, "dur": 3591.7999744415283, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.5917999744415283, "detail": "System.RuntimeTypeHandle" } },
- { "pid": 1, "tid": 27, "ts": 3442045.654296875, "dur": 1486.899971961975, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.486899971961975, "detail": "System.Runtime.CompilerServices.RuntimeWrappedException" } },
- { "pid": 1, "tid": 27, "ts": 3443533.447265625, "dur": 5207.699775695801, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.207699775695801, "detail": "System.SByte" } },
- { "pid": 1, "tid": 27, "ts": 3448932.373046875, "dur": 621.8000054359436, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6218000054359436, "detail": "System.Security.Cryptography.SHA1CryptoServiceProvider" } },
- { "pid": 1, "tid": 27, "ts": 3449554.931640625, "dur": 16331.69937133789, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 16.33169937133789, "detail": "System.Security.Cryptography.SHA1Internal" } },
- { "pid": 1, "tid": 27, "ts": 3465887.451171875, "dur": 552.299976348877, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.552299976348877, "detail": "SR" } },
- { "pid": 1, "tid": 27, "ts": 3466532.470703125, "dur": 437.2999966144562, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4372999966144562, "detail": "System.Runtime.InteropServices.SafeBuffer" } },
- { "pid": 1, "tid": 27, "ts": 3467411.376953125, "dur": 437.5999867916107, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4375999867916107, "detail": "Mono.SafeGPtrArrayHandle" } },
- { "pid": 1, "tid": 27, "ts": 3467850.09765625, "dur": 2434.7000122070312, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.4347000122070312, "detail": "System.Runtime.InteropServices.SafeHandle" } },
- { "pid": 1, "tid": 27, "ts": 3470716.552734375, "dur": 384.0999901294708, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3840999901294708, "detail": "System.Runtime.Serialization.SafeSerializationEventArgs" } },
- { "pid": 1, "tid": 27, "ts": 3471101.07421875, "dur": 3203.7999629974365, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.2037999629974365, "detail": "System.Runtime.Serialization.SafeSerializationManager" } },
- { "pid": 1, "tid": 27, "ts": 3474306.15234375, "dur": 1231.0999631881714, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2310999631881714, "detail": "Mono.SafeStringMarshal" } },
- { "pid": 1, "tid": 27, "ts": 3476143.310546875, "dur": 6463.699817657471, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.463699817657471, "detail": "System.Security.SecurityElement" } },
- { "pid": 1, "tid": 27, "ts": 3482608.3984375, "dur": 1863.8999462127686, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8638999462127686, "detail": "System.Security.SecurityException" } },
- { "pid": 1, "tid": 27, "ts": 3484574.462890625, "dur": 1215.1000499725342, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2151000499725342, "detail": "Mono.Xml.SecurityParser" } },
- { "pid": 1, "tid": 27, "ts": 3485801.7578125, "dur": 376.7000138759613, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3767000138759613, "detail": "System.Threading.SemaphoreFullException" } },
- { "pid": 1, "tid": 27, "ts": 3486179.443359375, "dur": 20986.799240112305, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 20.986799240112305, "detail": "System.Threading.SemaphoreSlim" } },
- { "pid": 1, "tid": 27, "ts": 3507166.748046875, "dur": 370.70000171661377, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.37070000171661377, "detail": "System.Threading.SendOrPostCallback" } },
- { "pid": 1, "tid": 27, "ts": 3508012.6953125, "dur": 944.5000290870667, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9445000290870667, "detail": "System.Runtime.Serialization.Formatters.Binary.SerStack" } },
- { "pid": 1, "tid": 27, "ts": 3509249.267578125, "dur": 445.6999897956848, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4456999897956848, "detail": "System.Runtime.Serialization.SerializationEntry" } },
- { "pid": 1, "tid": 27, "ts": 3509695.3125, "dur": 4557.700157165527, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.557700157165527, "detail": "System.Runtime.Serialization.SerializationEventHandler" } },
- { "pid": 1, "tid": 27, "ts": 3514254.638671875, "dur": 4308.499813079834, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.308499813079834, "detail": "System.Runtime.Serialization.SerializationEvents" } },
- { "pid": 1, "tid": 27, "ts": 3518563.4765625, "dur": 722.2999930381775, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7222999930381775, "detail": "System.Runtime.Serialization.SerializationEventsCache" } },
- { "pid": 1, "tid": 27, "ts": 3519287.353515625, "dur": 837.8999829292297, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8378999829292297, "detail": "System.Runtime.Serialization.SerializationException" } },
- { "pid": 1, "tid": 27, "ts": 3520126.220703125, "dur": 1974.6999740600586, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9746999740600586, "detail": "System.Runtime.Serialization.SerializationFieldInfo" } },
- { "pid": 1, "tid": 27, "ts": 3522102.05078125, "dur": 1144.8999643325806, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1448999643325806, "detail": "System.Runtime.Serialization.Formatters.Binary.SerializationHeaderRecord" } },
- { "pid": 1, "tid": 27, "ts": 3523248.53515625, "dur": 8243.800163269043, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.243800163269043, "detail": "System.Runtime.Serialization.SerializationInfo" } },
- { "pid": 1, "tid": 27, "ts": 3531499.0234375, "dur": 92975.60119628906, "ph": "X", "name": "mscorlib10.cpp", "args": { "durationMS": 92.97560119628906, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 3624493.408203125, "dur": 348.60000014305115, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.34860000014305115, "detail": "System.Threading.Timer/TimerComparer" } },
- { "pid": 1, "tid": 27, "ts": 3625173.095703125, "dur": 461.29998564720154, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.46129998564720154, "detail": "System.TypeNames/ATypeName" } },
- { "pid": 1, "tid": 27, "ts": 3625963.623046875, "dur": 1220.0000286102295, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2200000286102295, "detail": "System.Text.UTF7Encoding/Decoder" } },
- { "pid": 1, "tid": 27, "ts": 3627504.39453125, "dur": 558.6000084877014, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5586000084877014, "detail": "System.Text.UTF7Encoding/DecoderUTF7FallbackBuffer" } },
- { "pid": 1, "tid": 27, "ts": 3628063.96484375, "dur": 1174.9000549316406, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1749000549316406, "detail": "System.Text.UTF7Encoding/Encoder" } },
- { "pid": 1, "tid": 27, "ts": 3629239.990234375, "dur": 1296.3000535964966, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2963000535964966, "detail": "System.Text.UTF8Encoding/UTF8Decoder" } },
- { "pid": 1, "tid": 27, "ts": 3630537.109375, "dur": 1333.799958229065, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.333799958229065, "detail": "System.Text.UTF8Encoding/UTF8Encoder" } },
- { "pid": 1, "tid": 27, "ts": 3631871.58203125, "dur": 2947.700023651123, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.947700023651123, "detail": "System.Globalization.UmAlQuraCalendar/DateMapping" } },
- { "pid": 1, "tid": 27, "ts": 3634820.3125, "dur": 2088.7999534606934, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0887999534606934, "detail": "System.Text.UnicodeEncoding/Decoder" } },
- { "pid": 1, "tid": 27, "ts": 3636987.548828125, "dur": 392.59999990463257, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.39259999990463257, "detail": "System.Console/WindowsConsole/WindowsCancelHandler" } },
- { "pid": 1, "tid": 27, "ts": 3637622.314453125, "dur": 6494.100093841553, "ph": "X", "name": "mscorlib17.cpp", "args": { "durationMS": 6.494100093841553, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 3644133.056640625, "dur": 274631.103515625, "ph": "X", "name": "Idle", "args": { "durationMS": 274.631103515625, "detail": "" } },
- { "pid": 1, "tid": 18, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 18, "ts": 4021696.044921875, "dur": 13242.600440979004, "ph": "X", "name": "Idle", "args": { "durationMS": 13.242600440979004, "detail": "" } },
- { "pid": 1, "tid": 18, "ts": 4072284.1796875, "dur": 4137.599945068359, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 4.137599945068359, "detail": "mscorlib" } },
- { "pid": 1, "tid": 18, "ts": 4076522.705078125, "dur": 162170.7000732422, "ph": "X", "name": "Idle", "args": { "durationMS": 162.1707000732422, "detail": "" } },
- { "pid": 1, "tid": 17, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 17, "ts": 4021787.353515625, "dur": 13132.30037689209, "ph": "X", "name": "Idle", "args": { "durationMS": 13.13230037689209, "detail": "" } },
- { "pid": 1, "tid": 17, "ts": 4056143.06640625, "dur": 17293.500900268555, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 17.293500900268555, "detail": "System.Xml" } },
- { "pid": 1, "tid": 17, "ts": 4073901.3671875, "dur": 650.9000062942505, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 0.6509000062942505, "detail": "UnityEngine.IMGUIModule" } },
- { "pid": 1, "tid": 17, "ts": 4075315.91796875, "dur": 25797.698974609375, "ph": "X", "name": "Collect Method Tables", "args": { "durationMS": 25.797698974609375, "detail": "" } },
- { "pid": 1, "tid": 17, "ts": 4101120.60546875, "dur": 137573.1964111328, "ph": "X", "name": "Idle", "args": { "durationMS": 137.5731964111328, "detail": "" } },
- { "pid": 1, "tid": 16, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 16, "ts": 4021881.591796875, "dur": 13038.49983215332, "ph": "X", "name": "Idle", "args": { "durationMS": 13.03849983215332, "detail": "" } },
- { "pid": 1, "tid": 16, "ts": 4045524.90234375, "dur": 9782.400131225586, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 9.782400131225586, "detail": "UnityEngine.SharedInternalsModule" } },
- { "pid": 1, "tid": 16, "ts": 4055455.322265625, "dur": 32859.397888183594, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 32.859397888183594, "detail": "mscorlib" } },
- { "pid": 1, "tid": 16, "ts": 4088329.833984375, "dur": 150388.5040283203, "ph": "X", "name": "Idle", "args": { "durationMS": 150.3885040283203, "detail": "" } },
- { "pid": 1, "tid": 15, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 15, "ts": 4022006.591796875, "dur": 12913.999557495117, "ph": "X", "name": "Idle", "args": { "durationMS": 12.913999557495117, "detail": "" } },
- { "pid": 1, "tid": 15, "ts": 4045424.31640625, "dur": 9954.099655151367, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 9.954099655151367, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 15, "ts": 4056423.583984375, "dur": 16994.199752807617, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 16.994199752807617, "detail": "System.Configuration" } },
- { "pid": 1, "tid": 15, "ts": 4073544.43359375, "dur": 3868.799924850464, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 3.868799924850464, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 15, "ts": 4077420.8984375, "dur": 161271.69799804688, "ph": "X", "name": "Idle", "args": { "durationMS": 161.27169799804688, "detail": "" } },
- { "pid": 1, "tid": 14, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 14, "ts": 4022156.005859375, "dur": 12788.49983215332, "ph": "X", "name": "Idle", "args": { "durationMS": 12.78849983215332, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 4044968.75, "dur": 4478.300094604492, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 4.478300094604492, "detail": "System" } },
- { "pid": 1, "tid": 14, "ts": 4049671.875, "dur": 423.40001463890076, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 0.42340001463890076, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 14, "ts": 4050233.3984375, "dur": 188388.19885253906, "ph": "X", "name": "All Collect Metadata", "args": { "durationMS": 188.38819885253906, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 4053784.1796875, "dur": 82294.29626464844, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 82.29429626464844, "detail": "mscorlib" } },
- { "pid": 1, "tid": 14, "ts": 4054133.544921875, "dur": 26769.19937133789, "ph": "X", "name": "UpdateEmptyTokens", "args": { "durationMS": 26.76919937133789, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 4080903.3203125, "dur": 13865.69881439209, "ph": "X", "name": "ValidateTokens", "args": { "durationMS": 13.86569881439209, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 4136463.37890625, "dur": 2745.699882507324, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 2.745699882507324, "detail": "System" } },
- { "pid": 1, "tid": 14, "ts": 4139210.44921875, "dur": 383.59999656677246, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 0.38359999656677246, "detail": "System.Core" } },
- { "pid": 1, "tid": 14, "ts": 4139920.41015625, "dur": 7886.300086975098, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 7.886300086975098, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 14, "ts": 4139920.41015625, "dur": 828.5999894142151, "ph": "X", "name": "UpdateEmptyTokens", "args": { "durationMS": 0.8285999894142151, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 4140749.0234375, "dur": 869.4999814033508, "ph": "X", "name": "ValidateTokens", "args": { "durationMS": 0.8694999814033508, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 4148419.43359375, "dur": 350.1000106334686, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 0.35010001063346863, "detail": "UnityEngine.AnimationModule" } },
- { "pid": 1, "tid": 14, "ts": 4148770.01953125, "dur": 1474.9000072479248, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 1.4749000072479248, "detail": "UnityEngine.IMGUIModule" } },
- { "pid": 1, "tid": 14, "ts": 4150246.58203125, "dur": 480.80000281333923, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 0.48080000281333923, "detail": "UnityEngine.PhysicsModule" } },
- { "pid": 1, "tid": 14, "ts": 4150797.36328125, "dur": 446.09999656677246, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 0.44609999656677246, "detail": "UnityEngine.UIModule" } },
- { "pid": 1, "tid": 14, "ts": 4151406.25, "dur": 6246.500015258789, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 6.246500015258789, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 14, "ts": 4151406.25, "dur": 684.0999722480774, "ph": "X", "name": "UpdateEmptyTokens", "args": { "durationMS": 0.6840999722480774, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 4152090.33203125, "dur": 612.500011920929, "ph": "X", "name": "ValidateTokens", "args": { "durationMS": 0.612500011920929, "detail": "" } },
- { "pid": 1, "tid": 14, "ts": 4157948.73046875, "dur": 599.0999937057495, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 0.5990999937057495, "detail": "Assembly-CSharp" } },
- { "pid": 1, "tid": 13, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 13, "ts": 4022288.330078125, "dur": 12631.600379943848, "ph": "X", "name": "Idle", "args": { "durationMS": 12.631600379943848, "detail": "" } },
- { "pid": 1, "tid": 13, "ts": 4072551.26953125, "dur": 839.6999835968018, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 0.8396999835968018, "detail": "System.Core" } },
- { "pid": 1, "tid": 13, "ts": 4073405.76171875, "dur": 2496.2000846862793, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 2.4962000846862793, "detail": "System" } },
- { "pid": 1, "tid": 13, "ts": 4075937.01171875, "dur": 162756.69860839844, "ph": "X", "name": "Idle", "args": { "durationMS": 162.75669860839844, "detail": "" } },
- { "pid": 1, "tid": 12, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 12, "ts": 4022433.349609375, "dur": 12486.900329589844, "ph": "X", "name": "Idle", "args": { "durationMS": 12.486900329589844, "detail": "" } },
- { "pid": 1, "tid": 12, "ts": 4045128.90625, "dur": 9516.200065612793, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 9.516200065612793, "detail": "System.Configuration" } },
- { "pid": 1, "tid": 12, "ts": 4055379.150390625, "dur": 42541.297912597656, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 42.541297912597656, "detail": "Generic Methods" } },
- { "pid": 1, "tid": 12, "ts": 4099170.41015625, "dur": 17340.40069580078, "ph": "X", "name": "Merge Invokers", "args": { "durationMS": 17.34040069580078, "detail": "" } },
- { "pid": 1, "tid": 12, "ts": 4116520.01953125, "dur": 122172.19543457031, "ph": "X", "name": "Idle", "args": { "durationMS": 122.17219543457031, "detail": "" } },
- { "pid": 1, "tid": 36, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 36, "ts": 4022553.466796875, "dur": 12391.200065612793, "ph": "X", "name": "Idle", "args": { "durationMS": 12.391200065612793, "detail": "" } },
- { "pid": 1, "tid": 36, "ts": 4056095.21484375, "dur": 17330.799102783203, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 17.330799102783203, "detail": "Mono.Security" } },
- { "pid": 1, "tid": 36, "ts": 4073962.40234375, "dur": 347.2000062465668, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 0.3472000062465668, "detail": "UnityEngine.PhysicsModule" } },
- { "pid": 1, "tid": 36, "ts": 4074604.4921875, "dur": 3836.899995803833, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 3.836899995803833, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 36, "ts": 4078449.462890625, "dur": 160243.6981201172, "ph": "X", "name": "Idle", "args": { "durationMS": 160.2436981201172, "detail": "" } },
- { "pid": 1, "tid": 27, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 27, "ts": 4265895.99609375, "dur": 14059.29946899414, "ph": "X", "name": "Idle", "args": { "durationMS": 14.05929946899414, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 4291181.15234375, "dur": 106354.20227050781, "ph": "X", "name": "Write Global Metadata", "args": { "durationMS": 106.35420227050781, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 4291876.953125, "dur": 105657.2036743164, "ph": "X", "name": "WriteMetadata", "args": { "durationMS": 105.6572036743164, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 4305316.40625, "dur": 85366.00494384766, "ph": "X", "name": "Il2CppMetadataUsage.c", "args": { "durationMS": 85.36600494384766, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 4390683.59375, "dur": 4914.400100708008, "ph": "X", "name": "Il2CppGenericInstCollectorComponent", "args": { "durationMS": 4.914400100708008, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 4403136.71875, "dur": 86936.59973144531, "ph": "X", "name": "CompilerCalculateFieldValues", "args": { "durationMS": 86.93659973144531, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 4403146.97265625, "dur": 86918.89953613281, "ph": "X", "name": "Il2CppCCFieldValuesTable.cpp", "args": { "durationMS": 86.91889953613281, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 4423927.734375, "dur": 57529.701232910156, "ph": "X", "name": "Il2CppCCalculateFieldValues.cpp", "args": { "durationMS": 57.529701232910156, "detail": "" } },
- { "pid": 1, "tid": 27, "ts": 4490095.21484375, "dur": 42950.00076293945, "ph": "X", "name": "Idle", "args": { "durationMS": 42.95000076293945, "detail": "" } },
- { "pid": 1, "tid": 26, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 26, "ts": 4265989.74609375, "dur": 13944.600105285645, "ph": "X", "name": "Idle", "args": { "durationMS": 13.944600105285645, "detail": "" } },
- { "pid": 1, "tid": 26, "ts": 4279987.79296875, "dur": 1381.1999559402466, "ph": "X", "name": "Idle", "args": { "durationMS": 1.3811999559402466, "detail": "" } },
- { "pid": 1, "tid": 26, "ts": 4303514.6484375, "dur": 40122.29919433594, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 40.12229919433594, "detail": "Mono.Security" } },
- { "pid": 1, "tid": 26, "ts": 4305512.20703125, "dur": 38123.00109863281, "ph": "X", "name": "Mono.Security_CodeGen.c", "args": { "durationMS": 38.12300109863281, "detail": "" } },
- { "pid": 1, "tid": 26, "ts": 4343649.4140625, "dur": 3806.299924850464, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 3.806299924850464, "detail": "UnityEngine.GridModule" } },
- { "pid": 1, "tid": 26, "ts": 4343666.9921875, "dur": 3788.0001068115234, "ph": "X", "name": "UnityEngine.GridModule_CodeGen.c", "args": { "durationMS": 3.7880001068115234, "detail": "" } },
- { "pid": 1, "tid": 26, "ts": 4347462.40234375, "dur": 4131.199836730957, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 4.131199836730957, "detail": "UnityEngine.IMGUIModule" } },
- { "pid": 1, "tid": 26, "ts": 4347491.2109375, "dur": 4101.200103759766, "ph": "X", "name": "UnityEngine.IMGUIModule_CodeGen.c", "args": { "durationMS": 4.101200103759766, "detail": "" } },
- { "pid": 1, "tid": 26, "ts": 4351600.09765625, "dur": 2269.5000171661377, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 2.2695000171661377, "detail": "UnityEngine.TilemapModule" } },
- { "pid": 1, "tid": 26, "ts": 4351630.37109375, "dur": 2239.000082015991, "ph": "X", "name": "UnityEngine.TilemapModule_CodeGen.c", "args": { "durationMS": 2.239000082015991, "detail": "" } },
- { "pid": 1, "tid": 26, "ts": 4353872.55859375, "dur": 2328.900098800659, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 2.328900098800659, "detail": "UnityEngine.UnityWebRequestModule" } },
- { "pid": 1, "tid": 26, "ts": 4353885.7421875, "dur": 2314.300060272217, "ph": "X", "name": "UnityEngine.UnityWebRequestModule_CodeGen.c", "args": { "durationMS": 2.314300060272217, "detail": "" } },
- { "pid": 1, "tid": 26, "ts": 4356207.51953125, "dur": 41253.902435302734, "ph": "X", "name": "Idle", "args": { "durationMS": 41.253902435302734, "detail": "" } },
- { "pid": 1, "tid": 26, "ts": 4398671.38671875, "dur": 79359.4970703125, "ph": "X", "name": "Il2CppTypeDefinitions.c", "args": { "durationMS": 79.3594970703125, "detail": "" } },
- { "pid": 1, "tid": 26, "ts": 4478052.734375, "dur": 55094.200134277344, "ph": "X", "name": "Idle", "args": { "durationMS": 55.094200134277344, "detail": "" } },
- { "pid": 1, "tid": 25, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 25, "ts": 4266057.6171875, "dur": 13876.700401306152, "ph": "X", "name": "Idle", "args": { "durationMS": 13.876700401306152, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 4279966.30859375, "dur": 1430.5000305175781, "ph": "X", "name": "Idle", "args": { "durationMS": 1.4305000305175781, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 4290937.01171875, "dur": 106536.69738769531, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 106.53669738769531, "detail": "mscorlib" } },
- { "pid": 1, "tid": 25, "ts": 4305255.859375, "dur": 92217.20123291016, "ph": "X", "name": "mscorlib_CodeGen.c", "args": { "durationMS": 92.21720123291016, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 4398068.359375, "dur": 134724.70092773438, "ph": "X", "name": "Write Global Code Metadata", "args": { "durationMS": 134.72470092773438, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 4401201.66015625, "dur": 3190.2999877929688, "ph": "X", "name": "Il2CppReversePInvokeWrapperTable.cpp", "args": { "durationMS": 3.1902999877929688, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 4404653.3203125, "dur": 40166.70227050781, "ph": "X", "name": "Il2CppGenericMethodPointerTable.cpp", "args": { "durationMS": 40.16670227050781, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 4445201.66015625, "dur": 4057.300090789795, "ph": "X", "name": "Il2CppGenericAdjustorThunkTable.cpp", "args": { "durationMS": 4.057300090789795, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 4449681.15234375, "dur": 55458.40072631836, "ph": "X", "name": "Il2CppInvokerTable.cpp", "args": { "durationMS": 55.45840072631836, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 4508971.19140625, "dur": 15735.50033569336, "ph": "X", "name": "Il2CppInteropDataTable.cpp", "args": { "durationMS": 15.73550033569336, "detail": "" } },
- { "pid": 1, "tid": 25, "ts": 4530640.625, "dur": 2147.700071334839, "ph": "X", "name": "Il2CppCodeRegistration.cpp", "args": { "durationMS": 2.147700071334839, "detail": "" } },
- { "pid": 1, "tid": 24, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 24, "ts": 4266131.8359375, "dur": 13833.399772644043, "ph": "X", "name": "Idle", "args": { "durationMS": 13.833399772644043, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 4279969.23828125, "dur": 1416.100025177002, "ph": "X", "name": "Idle", "args": { "durationMS": 1.416100025177002, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 4290921.875, "dur": 53699.302673339844, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 53.699302673339844, "detail": "System.Core" } },
- { "pid": 1, "tid": 24, "ts": 4305179.6875, "dur": 39439.89944458008, "ph": "X", "name": "System.Core_CodeGen.c", "args": { "durationMS": 39.43989944458008, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 4344637.20703125, "dur": 8270.000457763672, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 8.270000457763672, "detail": "UnityEngine.Physics2DModule" } },
- { "pid": 1, "tid": 24, "ts": 4344657.2265625, "dur": 8248.900413513184, "ph": "X", "name": "UnityEngine.Physics2DModule_CodeGen.c", "args": { "durationMS": 8.248900413513184, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 4352913.0859375, "dur": 3506.4001083374023, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 3.5064001083374023, "detail": "UnityEngine.UIModule" } },
- { "pid": 1, "tid": 24, "ts": 4352941.40625, "dur": 3477.60009765625, "ph": "X", "name": "UnityEngine.UIModule_CodeGen.c", "args": { "durationMS": 3.47760009765625, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 4356424.31640625, "dur": 41123.50082397461, "ph": "X", "name": "Idle", "args": { "durationMS": 41.12350082397461, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 4403122.0703125, "dur": 95332.80181884766, "ph": "X", "name": "CompilerCalculateTypeValues", "args": { "durationMS": 95.33280181884766, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 4403144.04296875, "dur": 95307.99865722656, "ph": "X", "name": "Il2CppCCTypeValuesTable.cpp", "args": { "durationMS": 95.30799865722656, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 4439289.55078125, "dur": 53658.50067138672, "ph": "X", "name": "Il2CppCCalculateTypeValues.cpp", "args": { "durationMS": 53.65850067138672, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 4515426.26953125, "dur": 3203.0999660491943, "ph": "X", "name": "Il2CppMetadataRegistration.c", "args": { "durationMS": 3.2030999660491943, "detail": "" } },
- { "pid": 1, "tid": 24, "ts": 4518635.25390625, "dur": 14447.501182556152, "ph": "X", "name": "Idle", "args": { "durationMS": 14.447501182556152, "detail": "" } },
- { "pid": 1, "tid": 23, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 23, "ts": 4266285.64453125, "dur": 13648.098945617676, "ph": "X", "name": "Idle", "args": { "durationMS": 13.648098945617676, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 4279979.00390625, "dur": 1406.1000347137451, "ph": "X", "name": "Idle", "args": { "durationMS": 1.4061000347137451, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 4299696.77734375, "dur": 45001.89971923828, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 45.00189971923828, "detail": "UnityEngine.SharedInternalsModule" } },
- { "pid": 1, "tid": 23, "ts": 4304227.5390625, "dur": 40469.90203857422, "ph": "X", "name": "UnityEngine.SharedInternalsModule_CodeGen.c", "args": { "durationMS": 40.46990203857422, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 4344709.9609375, "dur": 2905.6999683380127, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 2.9056999683380127, "detail": "UnityEngine.TextRenderingModule" } },
- { "pid": 1, "tid": 23, "ts": 4344722.65625, "dur": 2891.9999599456787, "ph": "X", "name": "UnityEngine.TextRenderingModule_CodeGen.c", "args": { "durationMS": 2.8919999599456787, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 4347619.140625, "dur": 5316.89977645874, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 5.31689977645874, "detail": "UnityEngine.PhysicsModule" } },
- { "pid": 1, "tid": 23, "ts": 4348836.42578125, "dur": 4098.499774932861, "ph": "X", "name": "UnityEngine.PhysicsModule_CodeGen.c", "args": { "durationMS": 4.098499774932861, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 4352938.96484375, "dur": 1917.4000024795532, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 1.9174000024795532, "detail": "UnityEngine.AudioModule" } },
- { "pid": 1, "tid": 23, "ts": 4352954.58984375, "dur": 1901.1000394821167, "ph": "X", "name": "UnityEngine.AudioModule_CodeGen.c", "args": { "durationMS": 1.9011000394821167, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 4354860.83984375, "dur": 574.8000144958496, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 0.5748000144958496, "detail": "UnityEngine" } },
- { "pid": 1, "tid": 23, "ts": 4354895.99609375, "dur": 539.3999814987183, "ph": "X", "name": "UnityEngine_CodeGen.c", "args": { "durationMS": 0.5393999814987183, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 4355449.21875, "dur": 42012.59994506836, "ph": "X", "name": "Idle", "args": { "durationMS": 42.01259994506836, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 4400064.94140625, "dur": 33406.497955322266, "ph": "X", "name": "Il2CppGenericMethodDefinitions.c", "args": { "durationMS": 33.406497955322266, "detail": "" } },
- { "pid": 1, "tid": 23, "ts": 4433487.3046875, "dur": 99720.00122070312, "ph": "X", "name": "Idle", "args": { "durationMS": 99.72000122070312, "detail": "" } },
- { "pid": 1, "tid": 22, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 22, "ts": 4266381.8359375, "dur": 13552.800178527832, "ph": "X", "name": "Idle", "args": { "durationMS": 13.552800178527832, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 4279991.69921875, "dur": 1377.2000074386597, "ph": "X", "name": "Idle", "args": { "durationMS": 1.3772000074386597, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 4290918.9453125, "dur": 52288.0973815918, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 52.2880973815918, "detail": "System.Xml" } },
- { "pid": 1, "tid": 22, "ts": 4304160.15625, "dur": 39044.898986816406, "ph": "X", "name": "System.Xml_CodeGen.c", "args": { "durationMS": 39.044898986816406, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 4343277.34375, "dur": 17620.100021362305, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 17.620100021362305, "detail": "UnityEngine.CoreModule" } },
- { "pid": 1, "tid": 22, "ts": 4343304.6875, "dur": 17591.999053955078, "ph": "X", "name": "UnityEngine.CoreModule_CodeGen.c", "args": { "durationMS": 17.591999053955078, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 4360905.76171875, "dur": 36536.89956665039, "ph": "X", "name": "Idle", "args": { "durationMS": 36.53689956665039, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 4398651.85546875, "dur": 36976.69982910156, "ph": "X", "name": "Il2CppGenericInstDefinitions.c", "args": { "durationMS": 36.97669982910156, "detail": "" } },
- { "pid": 1, "tid": 22, "ts": 4435644.53125, "dur": 97534.29412841797, "ph": "X", "name": "Idle", "args": { "durationMS": 97.53429412841797, "detail": "" } },
- { "pid": 1, "tid": 21, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 21, "ts": 4266471.19140625, "dur": 13463.000297546387, "ph": "X", "name": "Idle", "args": { "durationMS": 13.463000297546387, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 4279973.14453125, "dur": 1396.1000442504883, "ph": "X", "name": "Idle", "args": { "durationMS": 1.3961000442504883, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 4298240.72265625, "dur": 45495.50247192383, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 45.49550247192383, "detail": "System.Configuration" } },
- { "pid": 1, "tid": 21, "ts": 4304213.37890625, "dur": 39522.39990234375, "ph": "X", "name": "System.Configuration_CodeGen.c", "args": { "durationMS": 39.52239990234375, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 4343750, "dur": 4117.199897766113, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 4.117199897766113, "detail": "UnityEngine.InputLegacyModule" } },
- { "pid": 1, "tid": 21, "ts": 4343765.625, "dur": 4101.29976272583, "ph": "X", "name": "UnityEngine.InputLegacyModule_CodeGen.c", "args": { "durationMS": 4.10129976272583, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 4347870.60546875, "dur": 5952.499866485596, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 5.952499866485596, "detail": "UnityEngine.SpriteShapeModule" } },
- { "pid": 1, "tid": 21, "ts": 4347891.11328125, "dur": 5931.79988861084, "ph": "X", "name": "UnityEngine.SpriteShapeModule_CodeGen.c", "args": { "durationMS": 5.93179988861084, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 4353826.66015625, "dur": 1505.4999589920044, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 1.5054999589920044, "detail": "UnityEngine.UnityAnalyticsModule" } },
- { "pid": 1, "tid": 21, "ts": 4353842.28515625, "dur": 1489.300012588501, "ph": "X", "name": "UnityEngine.UnityAnalyticsModule_CodeGen.c", "args": { "durationMS": 1.489300012588501, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 4355336.42578125, "dur": 1269.700050354004, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 1.269700050354004, "detail": "Assembly-CSharp" } },
- { "pid": 1, "tid": 21, "ts": 4355352.05078125, "dur": 1253.000020980835, "ph": "X", "name": "Assembly-CSharp_CodeGen.c", "args": { "durationMS": 1.253000020980835, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 4356609.375, "dur": 40833.40072631836, "ph": "X", "name": "Idle", "args": { "durationMS": 40.83340072631836, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 4399297.36328125, "dur": 7889.699935913086, "ph": "X", "name": "Il2CppGenericClassTable.c", "args": { "durationMS": 7.889699935913086, "detail": "" } },
- { "pid": 1, "tid": 21, "ts": 4412832.03125, "dur": 120241.30249023438, "ph": "X", "name": "Idle", "args": { "durationMS": 120.24130249023438, "detail": "" } },
- { "pid": 1, "tid": 20, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
- { "pid": 1, "tid": 20, "ts": 4266569.82421875, "dur": 13396.100044250488, "ph": "X", "name": "Idle", "args": { "durationMS": 13.396100044250488, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 4279969.23828125, "dur": 1415.1999950408936, "ph": "X", "name": "Idle", "args": { "durationMS": 1.4151999950408936, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 4290929.6875, "dur": 53816.60079956055, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 53.81660079956055, "detail": "System" } },
- { "pid": 1, "tid": 20, "ts": 4304153.80859375, "dur": 40592.30041503906, "ph": "X", "name": "System_CodeGen.c", "args": { "durationMS": 40.59230041503906, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 4344756.8359375, "dur": 8600.199699401855, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 8.600199699401855, "detail": "UnityEngine.AnimationModule" } },
- { "pid": 1, "tid": 20, "ts": 4344768.06640625, "dur": 8588.10043334961, "ph": "X", "name": "UnityEngine.AnimationModule_CodeGen.c", "args": { "durationMS": 8.58810043334961, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 4353360.83984375, "dur": 20576.30157470703, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 20.57630157470703, "detail": "UnityEngine.UI" } },
- { "pid": 1, "tid": 20, "ts": 4353376.46484375, "dur": 20559.900283813477, "ph": "X", "name": "UnityEngine.UI_CodeGen.c", "args": { "durationMS": 20.559900283813477, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 4373946.2890625, "dur": 23496.301651000977, "ph": "X", "name": "Idle", "args": { "durationMS": 23.496301651000977, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 4398802.24609375, "dur": 32677.29949951172, "ph": "X", "name": "Il2CppGenericMethodTable.c", "args": { "durationMS": 32.67729949951172, "detail": "" } },
- { "pid": 1, "tid": 20, "ts": 4431833.0078125, "dur": 101222.00012207031, "ph": "X", "name": "Idle", "args": { "durationMS": 101.22200012207031, "detail": "" } },
- { "pid": 1, "tid": 12, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 12, "ts": 4903109.375, "dur": 289084.9914550781, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 289.0849914550781, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include" } },
- { "pid": 1, "tid": 12, "ts": 4904151.85546875, "dur": 286931.7932128906, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 286.9317932128906, "detail": ".h E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include" } },
- { "pid": 1, "tid": 12, "ts": 5191092.7734375, "dur": 1096.6999530792236, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 1.0966999530792236, "detail": ".inc E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include" } },
- { "pid": 1, "tid": 13, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 13, "ts": 4903113.28125, "dur": 28190.000534057617, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 28.190000534057617, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include" } },
- { "pid": 1, "tid": 13, "ts": 4904121.58203125, "dur": 25189.699172973633, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 25.189699172973633, "detail": ".h E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include" } },
- { "pid": 1, "tid": 13, "ts": 4929324.70703125, "dur": 1975.2999544143677, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 1.9752999544143677, "detail": ".inc E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include" } },
- { "pid": 1, "tid": 14, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 14, "ts": 4903121.58203125, "dur": 135523.8037109375, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 135.5238037109375, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include" } },
- { "pid": 1, "tid": 14, "ts": 4904127.44140625, "dur": 132115.4022216797, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 132.1154022216797, "detail": ".h E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include" } },
- { "pid": 1, "tid": 14, "ts": 5036248.046875, "dur": 2391.5998935699463, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 2.3915998935699463, "detail": ".inc E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include" } },
- { "pid": 1, "tid": 16, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 16, "ts": 4903126.46484375, "dur": 18960.599899291992, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 18.960599899291992, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\xxHash" } },
- { "pid": 1, "tid": 16, "ts": 4904187.5, "dur": 13392.000198364258, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 13.392000198364258, "detail": ".h E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\xxHash" } },
- { "pid": 1, "tid": 16, "ts": 4917584.47265625, "dur": 4499.100208282471, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 4.499100208282471, "detail": ".inc E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\xxHash" } },
- { "pid": 1, "tid": 15, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 15, "ts": 4903135.25390625, "dur": 214579.9102783203, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 214.5799102783203, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src" } },
- { "pid": 1, "tid": 15, "ts": 4904191.40625, "dur": 212131.3018798828, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 212.1313018798828, "detail": ".h E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src" } },
- { "pid": 1, "tid": 15, "ts": 5116340.8203125, "dur": 1367.300033569336, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 1.367300033569336, "detail": ".inc E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src" } },
- { "pid": 1, "tid": 17, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 17, "ts": 4903136.23046875, "dur": 929448.2421875, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 929.4482421875, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp" } },
- { "pid": 1, "tid": 17, "ts": 4904198.73046875, "dur": 925797.607421875, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 925.797607421875, "detail": ".h E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp" } },
- { "pid": 1, "tid": 17, "ts": 5830002.9296875, "dur": 2570.6000328063965, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 2.5706000328063965, "detail": ".inc E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp" } },
- { "pid": 1, "tid": 18, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 18, "ts": 4903136.71875, "dur": 20357.40089416504, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 20.35740089416504, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\pch" } },
- { "pid": 1, "tid": 18, "ts": 4904232.91015625, "dur": 13774.00016784668, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 13.77400016784668, "detail": ".h E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\pch" } },
- { "pid": 1, "tid": 18, "ts": 4918013.671875, "dur": 5477.200031280518, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 5.477200031280518, "detail": ".inc E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\pch" } },
- { "pid": 1, "tid": 36, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 36, "ts": 4903253.41796875, "dur": 5197.400093078613, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 5.197400093078613, "detail": "F:\\cocorobo2\\cocorobo-unity\\Library\\Il2cppBuildCache\\WebGL\\il2cppOutput" } },
- { "pid": 1, "tid": 36, "ts": 4904235.3515625, "dur": 2572.5998878479004, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 2.5725998878479004, "detail": ".h F:\\cocorobo2\\cocorobo-unity\\Library\\Il2cppBuildCache\\WebGL\\il2cppOutput" } },
- { "pid": 1, "tid": 36, "ts": 4906821.77734375, "dur": 1625.100016593933, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 1.625100016593933, "detail": ".inc F:\\cocorobo2\\cocorobo-unity\\Library\\Il2cppBuildCache\\WebGL\\il2cppOutput" } },
- { "pid": 1, "tid": 45, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 45, "ts": 4906897.4609375, "dur": 12207.799911499023, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.207799911499023, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops.h" } },
- { "pid": 1, "tid": 45, "ts": 4919111.328125, "dur": 7669.700145721436, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.6697001457214355, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\generalize-arithm.h" } },
- { "pid": 1, "tid": 45, "ts": 4926786.1328125, "dur": 5969.900131225586, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.969900131225586, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\generalize.h" } },
- { "pid": 1, "tid": 45, "ts": 4932759.27734375, "dur": 6911.900043487549, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.911900043487549, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\all_aligned_atomic_load_store.h" } },
- { "pid": 1, "tid": 45, "ts": 4939673.828125, "dur": 6422.999858856201, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.422999858856201, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\ao_t_is_int.h" } },
- { "pid": 1, "tid": 45, "ts": 4946100.09765625, "dur": 7051.799774169922, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.051799774169922, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\emul_cas.h" } },
- { "pid": 1, "tid": 45, "ts": 4953154.78515625, "dur": 5578.700065612793, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.578700065612793, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\alpha.h" } },
- { "pid": 1, "tid": 45, "ts": 4958737.3046875, "dur": 6586.800098419189, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.5868000984191895, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\avr32.h" } },
- { "pid": 1, "tid": 45, "ts": 4965331.0546875, "dur": 7613.500118255615, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.613500118255615, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\generic-arithm.h" } },
- { "pid": 1, "tid": 45, "ts": 4972947.265625, "dur": 7092.899799346924, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.092899799346924, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\generic.h" } },
- { "pid": 1, "tid": 45, "ts": 4980043.9453125, "dur": 7776.299953460693, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.776299953460693, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\hppa.h" } },
- { "pid": 1, "tid": 45, "ts": 4987822.75390625, "dur": 8064.800262451172, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.064800262451172, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\m68k.h" } },
- { "pid": 1, "tid": 45, "ts": 4995890.625, "dur": 10717.300415039062, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.717300415039062, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\powerpc.h" } },
- { "pid": 1, "tid": 45, "ts": 5006613.76953125, "dur": 6944.399833679199, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.944399833679199, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\sh.h" } },
- { "pid": 1, "tid": 45, "ts": 5013562.01171875, "dur": 6245.500087738037, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.245500087738037, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\x86.h" } },
- { "pid": 1, "tid": 45, "ts": 5019812.01171875, "dur": 6676.700115203857, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.676700115203857, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\hpc\\hppa.h" } },
- { "pid": 1, "tid": 45, "ts": 5026492.1875, "dur": 7187.099933624268, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.187099933624268, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\ibmc\\powerpc.h" } },
- { "pid": 1, "tid": 45, "ts": 5033684.08203125, "dur": 6088.699817657471, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.088699817657471, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\acquire_release_volatile.h" } },
- { "pid": 1, "tid": 45, "ts": 5039776.85546875, "dur": 5936.9001388549805, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.9369001388549805, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\atomic_store.h" } },
- { "pid": 1, "tid": 45, "ts": 5045718.26171875, "dur": 6338.200092315674, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.338200092315674, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\char_atomic_load.h" } },
- { "pid": 1, "tid": 45, "ts": 5052070.3125, "dur": 6836.800098419189, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.8368000984191895, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\double_atomic_load_store.h" } },
- { "pid": 1, "tid": 45, "ts": 5058909.66796875, "dur": 5000.500202178955, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.000500202178955, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\int_atomic_store.h" } },
- { "pid": 1, "tid": 45, "ts": 5063915.52734375, "dur": 5180.300235748291, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.180300235748291, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\ordered_loads_only.h" } },
- { "pid": 1, "tid": 45, "ts": 5069098.6328125, "dur": 5624.199867248535, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.624199867248535, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\short_acquire_release_volatile.h" } },
- { "pid": 1, "tid": 45, "ts": 5074725.09765625, "dur": 4480.000019073486, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.480000019073486, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\short_atomic_store.h" } },
- { "pid": 1, "tid": 45, "ts": 5079207.03125, "dur": 8910.099983215332, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.910099983215332, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\msftc\\common32_defs.h" } },
- { "pid": 1, "tid": 45, "ts": 5088120.1171875, "dur": 6171.10013961792, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.17110013961792, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\msftc\\x86_64.h" } },
- { "pid": 1, "tid": 45, "ts": 5094294.921875, "dur": 5472.499847412109, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.472499847412109, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\ordered_except_wr.h" } },
- { "pid": 1, "tid": 45, "ts": 5099769.53125, "dur": 7836.699962615967, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.836699962615967, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\standard_ao_double_t.h" } },
- { "pid": 1, "tid": 45, "ts": 5107610.3515625, "dur": 5647.200107574463, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.647200107574463, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\test_and_set_t_is_ao_t.h" } },
- { "pid": 1, "tid": 37, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 37, "ts": 4906931.15234375, "dur": 9635.700225830078, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.635700225830078, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\pch\\pch-c.h" } },
- { "pid": 1, "tid": 39, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 39, "ts": 4906938.4765625, "dur": 9628.299713134766, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.628299713134766, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\xxHash\\xxh3.h" } },
- { "pid": 1, "tid": 43, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 43, "ts": 4906939.94140625, "dur": 9627.099990844727, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.627099990844727, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\cord.h" } },
- { "pid": 1, "tid": 43, "ts": 4916570.3125, "dur": 6533.500194549561, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.5335001945495605, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\ec.h" } },
- { "pid": 1, "tid": 43, "ts": 4923107.421875, "dur": 8917.3002243042, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.9173002243042, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc.h" } },
- { "pid": 1, "tid": 43, "ts": 4932027.83203125, "dur": 6880.70011138916, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.88070011138916, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_allocator.h" } },
- { "pid": 1, "tid": 43, "ts": 4938911.1328125, "dur": 6561.600208282471, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.561600208282471, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_cpp.h" } },
- { "pid": 1, "tid": 43, "ts": 4945475.09765625, "dur": 6683.800220489502, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.683800220489502, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_gcj.h" } },
- { "pid": 1, "tid": 43, "ts": 4952162.109375, "dur": 6902.8000831604, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.9028000831604, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_mark.h" } },
- { "pid": 1, "tid": 43, "ts": 4959067.87109375, "dur": 6342.899799346924, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.342899799346924, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_tiny_fl.h" } },
- { "pid": 1, "tid": 43, "ts": 4965413.0859375, "dur": 8396.300315856934, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.396300315856934, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_vector.h" } },
- { "pid": 1, "tid": 43, "ts": 4973813.96484375, "dur": 7273.70023727417, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.27370023727417, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\javaxfc.h" } },
- { "pid": 1, "tid": 43, "ts": 4981089.35546875, "dur": 6407.599925994873, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.407599925994873, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\darwin_semaphore.h" } },
- { "pid": 1, "tid": 43, "ts": 4987499.51171875, "dur": 8453.300476074219, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.453300476074219, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\dbg_mlc.h" } },
- { "pid": 1, "tid": 43, "ts": 4995955.078125, "dur": 8056.20002746582, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.05620002746582, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\gc_hdrs.h" } },
- { "pid": 1, "tid": 43, "ts": 5004016.6015625, "dur": 6544.700145721436, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.5447001457214355, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\gc_pmark.h" } },
- { "pid": 1, "tid": 43, "ts": 5010564.94140625, "dur": 6726.900100708008, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.726900100708008, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\gcconfig.h" } },
- { "pid": 1, "tid": 43, "ts": 5017294.921875, "dur": 6172.800064086914, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.172800064086914, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\pthread_stop_world.h" } },
- { "pid": 1, "tid": 43, "ts": 5023470.21484375, "dur": 5912.799835205078, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.912799835205078, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\specific.h" } },
- { "pid": 1, "tid": 43, "ts": 5029392.578125, "dur": 6723.899841308594, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.723899841308594, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\weakpointer.h" } },
- { "pid": 1, "tid": 38, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 38, "ts": 4906951.171875, "dur": 10952.699661254883, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.952699661254883, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include\\BaselibPlatformSpecificEnvironment.h" } },
- { "pid": 1, "tid": 38, "ts": 4918037.59765625, "dur": 6085.299968719482, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.085299968719482, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include\\C\\Baselib_ErrorState.inl.h" } },
- { "pid": 1, "tid": 42, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 42, "ts": 4906956.54296875, "dur": 10042.3002243042, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.0423002243042, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\xxHash\\xxhash.h" } },
- { "pid": 1, "tid": 49, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 49, "ts": 4906957.03125, "dur": 9609.90047454834, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.60990047454834, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Baselib.h" } },
- { "pid": 1, "tid": 49, "ts": 4916570.3125, "dur": 6533.500194549561, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.5335001945495605, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Atomic.h" } },
- { "pid": 1, "tid": 49, "ts": 4923107.421875, "dur": 7068.299770355225, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.068299770355225, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Atomic_Macros.h" } },
- { "pid": 1, "tid": 49, "ts": 4930178.7109375, "dur": 6587.699890136719, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.587699890136719, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_CappedSemaphore.h" } },
- { "pid": 1, "tid": 49, "ts": 4936769.53125, "dur": 4803.599834442139, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.803599834442139, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Debug.h" } },
- { "pid": 1, "tid": 49, "ts": 4941577.63671875, "dur": 5425.7001876831055, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.4257001876831055, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_ErrorCode.h" } },
- { "pid": 1, "tid": 49, "ts": 4947005.37109375, "dur": 6496.600151062012, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.496600151062012, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_EventSemaphore.h" } },
- { "pid": 1, "tid": 49, "ts": 4953505.37109375, "dur": 5938.300132751465, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.938300132751465, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_HighCapacitySemaphore.h" } },
- { "pid": 1, "tid": 49, "ts": 4959445.3125, "dur": 6059.599876403809, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.059599876403809, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Memory.h" } },
- { "pid": 1, "tid": 49, "ts": 4965509.765625, "dur": 6770.100116729736, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.770100116729736, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_NetworkAddress.h" } },
- { "pid": 1, "tid": 49, "ts": 4972282.71484375, "dur": 5704.699993133545, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.704699993133545, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_RegisteredNetwork.h" } },
- { "pid": 1, "tid": 49, "ts": 4977992.1875, "dur": 7235.099792480469, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.235099792480469, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Semaphore.h" } },
- { "pid": 1, "tid": 49, "ts": 4985229.4921875, "dur": 5777.699947357178, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.777699947357178, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_StaticAssert.h" } },
- { "pid": 1, "tid": 49, "ts": 4991012.6953125, "dur": 6869.800090789795, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.869800090789795, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_SystemFutex.h" } },
- { "pid": 1, "tid": 49, "ts": 4997886.71875, "dur": 9327.400207519531, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.327400207519531, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Thread.h" } },
- { "pid": 1, "tid": 49, "ts": 5007216.796875, "dur": 6341.000080108643, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.341000080108643, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Timer.h" } },
- { "pid": 1, "tid": 49, "ts": 5013562.01171875, "dur": 6624.800205230713, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.624800205230713, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_CappedSemaphore_FutexBased.inl.h" } },
- { "pid": 1, "tid": 49, "ts": 5020189.453125, "dur": 4516.39986038208, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.51639986038208, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_EnumSizeCheck.h" } },
- { "pid": 1, "tid": 49, "ts": 5024709.47265625, "dur": 5737.500190734863, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.737500190734863, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_EventSemaphore_SemaphoreBased.inl.h" } },
- { "pid": 1, "tid": 49, "ts": 5030451.171875, "dur": 5246.9000816345215, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.2469000816345215, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_HighCapacitySemaphore_SemaphoreBased.inl.h" } },
- { "pid": 1, "tid": 49, "ts": 5035704.58984375, "dur": 6005.799770355225, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.005799770355225, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_Lock_FutexBased.inl.h" } },
- { "pid": 1, "tid": 49, "ts": 5041712.890625, "dur": 5344.299793243408, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.344299793243408, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_Semaphore_FutexBased.inl.h" } },
- { "pid": 1, "tid": 49, "ts": 5047059.08203125, "dur": 5652.500152587891, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.652500152587891, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_Semaphore_SemaphoreBased.inl.h" } },
- { "pid": 1, "tid": 49, "ts": 5052714.35546875, "dur": 5283.999919891357, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.283999919891357, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Compiler\\Baselib_Atomic_Gcc_Apple_LLVM_Patch.h" } },
- { "pid": 1, "tid": 49, "ts": 5058001.953125, "dur": 5071.700096130371, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.071700096130371, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Compiler\\Baselib_Atomic_LLSC_Gcc.inl.h" } },
- { "pid": 1, "tid": 49, "ts": 5063075.68359375, "dur": 5533.500194549561, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.5335001945495605, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Compiler\\Baselib_Atomic_MsvcIntrinsics.h" } },
- { "pid": 1, "tid": 49, "ts": 5068611.81640625, "dur": 6027.200222015381, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.027200222015381, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Atomic.h" } },
- { "pid": 1, "tid": 49, "ts": 5074645.01953125, "dur": 7223.700046539307, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.223700046539307, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\BinarySemaphore.h" } },
- { "pid": 1, "tid": 49, "ts": 5081871.09375, "dur": 6076.200008392334, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.076200008392334, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\ConditionVariable.h" } },
- { "pid": 1, "tid": 49, "ts": 5087952.63671875, "dur": 6338.799953460693, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.338799953460693, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\EventSemaphore.h" } },
- { "pid": 1, "tid": 49, "ts": 5094294.921875, "dur": 5286.900043487549, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.286900043487549, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Internal\\Compiler\\ClangOrGcc\\AlgorithmClangOrGcc.inl.h" } },
- { "pid": 1, "tid": 49, "ts": 5099585.44921875, "dur": 5834.199905395508, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.834199905395508, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Internal\\ConditionVariableData_FutexBased.inl.h" } },
- { "pid": 1, "tid": 49, "ts": 5105423.828125, "dur": 5297.599792480469, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.297599792480469, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Internal\\ConditionVariable_FutexBased.inl.h" } },
- { "pid": 1, "tid": 49, "ts": 5110724.12109375, "dur": 4946.499824523926, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.946499824523926, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Internal\\TypeTraits.h" } },
- { "pid": 1, "tid": 49, "ts": 5115677.24609375, "dur": 5494.200229644775, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.494200229644775, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Lock.h" } },
- { "pid": 1, "tid": 49, "ts": 5121173.33984375, "dur": 3823.6000537872314, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8236000537872314, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Stopwatch.h" } },
- { "pid": 1, "tid": 49, "ts": 5125000, "dur": 4718.800067901611, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.718800067901611, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Thread.h" } },
- { "pid": 1, "tid": 49, "ts": 5129721.6796875, "dur": 4568.20011138916, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.56820011138916, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Time.h" } },
- { "pid": 1, "tid": 49, "ts": 5134297.8515625, "dur": 3846.4999198913574, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8464999198913574, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\mpmc_node.h" } },
- { "pid": 1, "tid": 49, "ts": 5138147.4609375, "dur": 4622.300148010254, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.622300148010254, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\mpmc_node_stack.h" } },
- { "pid": 1, "tid": 49, "ts": 5142771.484375, "dur": 3884.0999603271484, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8840999603271484, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\mpsc_node.h" } },
- { "pid": 1, "tid": 49, "ts": 5146657.71484375, "dur": 5098.599910736084, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.098599910736084, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\mpsc_node_stack.h" } },
- { "pid": 1, "tid": 49, "ts": 5151757.8125, "dur": 4532.800197601318, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.532800197601318, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\Assert.h" } },
- { "pid": 1, "tid": 49, "ts": 5156292.48046875, "dur": 5257.500171661377, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.257500171661377, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\Compiler\\CompilerEnvironmentGcc.h" } },
- { "pid": 1, "tid": 49, "ts": 5161552.24609375, "dur": 4800.300121307373, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.800300121307373, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\CoreMacros.h" } },
- { "pid": 1, "tid": 49, "ts": 5166357.421875, "dur": 4682.09981918335, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.68209981918335, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\PlatformDetection.h" } },
- { "pid": 1, "tid": 49, "ts": 5171042.48046875, "dur": 4804.699897766113, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.804699897766113, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\RedefinePlatforms.h" } },
- { "pid": 1, "tid": 49, "ts": 5175849.609375, "dur": 5762.700080871582, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.762700080871582, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\UndefineCoreMacros.h" } },
- { "pid": 1, "tid": 49, "ts": 5181617.1875, "dur": 4869.100093841553, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.869100093841553, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\VerifyPlatformEnvironment.h" } },
- { "pid": 1, "tid": 49, "ts": 5186489.74609375, "dur": 4353.600025177002, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.353600025177002, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\PreExternalInclude.h" } },
- { "pid": 1, "tid": 46, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 46, "ts": 4906957.51953125, "dur": 12526.100158691406, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.526100158691406, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\ao_version.h" } },
- { "pid": 1, "tid": 46, "ts": 4919486.328125, "dur": 8121.299743652344, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.121299743652344, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\generalize-small.h" } },
- { "pid": 1, "tid": 46, "ts": 4927610.83984375, "dur": 6176.499843597412, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.176499843597412, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\all_acquire_release_volatile.h" } },
- { "pid": 1, "tid": 46, "ts": 4933791.9921875, "dur": 5652.9998779296875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.6529998779296875, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\all_atomic_load_store.h" } },
- { "pid": 1, "tid": 46, "ts": 4939447.265625, "dur": 5593.900203704834, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.593900203704834, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\all_atomic_only_load.h" } },
- { "pid": 1, "tid": 46, "ts": 4945044.921875, "dur": 5943.900108337402, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.943900108337402, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\armcc\\arm_v6.h" } },
- { "pid": 1, "tid": 46, "ts": 4950992.1875, "dur": 6402.8000831604, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.4028000831604, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\aarch64.h" } },
- { "pid": 1, "tid": 46, "ts": 4957397.94921875, "dur": 6883.299827575684, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.883299827575684, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\arm.h" } },
- { "pid": 1, "tid": 46, "ts": 4964285.64453125, "dur": 8010.6000900268555, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.010600090026855, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\cris.h" } },
- { "pid": 1, "tid": 46, "ts": 4972298.33984375, "dur": 6801.000118255615, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.801000118255615, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\generic-small.h" } },
- { "pid": 1, "tid": 46, "ts": 4979102.5390625, "dur": 7968.800067901611, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.968800067901611, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\hexagon.h" } },
- { "pid": 1, "tid": 46, "ts": 4987075.68359375, "dur": 6605.400085449219, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.605400085449219, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\ia64.h" } },
- { "pid": 1, "tid": 46, "ts": 4993691.89453125, "dur": 7205.50012588501, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.20550012588501, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\mips.h" } },
- { "pid": 1, "tid": 46, "ts": 5000901.3671875, "dur": 7085.400104522705, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.085400104522705, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\s390.h" } },
- { "pid": 1, "tid": 46, "ts": 5007990.72265625, "dur": 5699.6002197265625, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.6996002197265625, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\sparc.h" } },
- { "pid": 1, "tid": 46, "ts": 5013692.87109375, "dur": 6570.000171661377, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.570000171661377, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\generic_pthread.h" } },
- { "pid": 1, "tid": 46, "ts": 5020265.13671875, "dur": 6327.099800109863, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.327099800109863, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\hpc\\ia64.h" } },
- { "pid": 1, "tid": 46, "ts": 5026594.23828125, "dur": 7200.399875640869, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.200399875640869, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\icc\\ia64.h" } },
- { "pid": 1, "tid": 46, "ts": 5033797.36328125, "dur": 6621.500015258789, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.621500015258789, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\atomic_load.h" } },
- { "pid": 1, "tid": 46, "ts": 5040422.36328125, "dur": 5440.299987792969, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.440299987792969, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\char_acquire_release_volatile.h" } },
- { "pid": 1, "tid": 46, "ts": 5045865.234375, "dur": 6262.599945068359, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.262599945068359, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\char_atomic_store.h" } },
- { "pid": 1, "tid": 46, "ts": 5052130.37109375, "dur": 6679.599761962891, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.679599761962891, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\int_acquire_release_volatile.h" } },
- { "pid": 1, "tid": 46, "ts": 5058817.87109375, "dur": 5442.500114440918, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.442500114440918, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\int_atomic_load.h" } },
- { "pid": 1, "tid": 46, "ts": 5064262.6953125, "dur": 5123.899936676025, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.123899936676025, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\ordered_stores_only.h" } },
- { "pid": 1, "tid": 46, "ts": 5069389.16015625, "dur": 5592.599868774414, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.592599868774414, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\short_atomic_load.h" } },
- { "pid": 1, "tid": 46, "ts": 5074986.81640625, "dur": 6880.70011138916, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.88070011138916, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\msftc\\arm.h" } },
- { "pid": 1, "tid": 46, "ts": 5081871.09375, "dur": 7539.000034332275, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.539000034332275, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\msftc\\x86.h" } },
- { "pid": 1, "tid": 46, "ts": 5089414.0625, "dur": 5565.800189971924, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.565800189971924, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\ordered.h" } },
- { "pid": 1, "tid": 46, "ts": 5094981.4453125, "dur": 5050.3997802734375, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.0503997802734375, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\read_ordered.h" } },
- { "pid": 1, "tid": 46, "ts": 5100034.66796875, "dur": 5413.599967956543, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.413599967956543, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\sunc\\sparc.h" } },
- { "pid": 1, "tid": 46, "ts": 5105450.68359375, "dur": 5264.200210571289, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.264200210571289, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\sunc\\x86.h" } },
- { "pid": 1, "tid": 46, "ts": 5110718.26171875, "dur": 5274.300098419189, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.2743000984191895, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\test_and_set_t_is_char.h" } },
- { "pid": 1, "tid": 44, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 44, "ts": 4906961.42578125, "dur": 9853.099822998047, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.853099822998047, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\cord_pos.h" } },
- { "pid": 1, "tid": 44, "ts": 4916816.89453125, "dur": 4934.299945831299, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.934299945831299, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\extra\\gc.h" } },
- { "pid": 1, "tid": 44, "ts": 4921754.39453125, "dur": 5211.699962615967, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.211699962615967, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\extra\\gc_cpp.h" } },
- { "pid": 1, "tid": 44, "ts": 4926968.75, "dur": 5397.799968719482, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.397799968719482, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_alloc_ptrs.h" } },
- { "pid": 1, "tid": 44, "ts": 4932369.62890625, "dur": 6106.99987411499, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.10699987411499, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_backptr.h" } },
- { "pid": 1, "tid": 44, "ts": 4938479.98046875, "dur": 5774.600028991699, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.774600028991699, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_config_macros.h" } },
- { "pid": 1, "tid": 44, "ts": 4944256.8359375, "dur": 6019.400119781494, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.019400119781494, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_disclaim.h" } },
- { "pid": 1, "tid": 44, "ts": 4950281.25, "dur": 5821.899890899658, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.821899890899658, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_inline.h" } },
- { "pid": 1, "tid": 44, "ts": 4956105.95703125, "dur": 6058.899879455566, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.058899879455566, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_pthread_redirects.h" } },
- { "pid": 1, "tid": 44, "ts": 4962167.48046875, "dur": 5966.400146484375, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.966400146484375, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_typed.h" } },
- { "pid": 1, "tid": 44, "ts": 4968136.23046875, "dur": 5729.1998863220215, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.7291998863220215, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_version.h" } },
- { "pid": 1, "tid": 44, "ts": 4973868.1640625, "dur": 7063.499927520752, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.063499927520752, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\leak_detector.h" } },
- { "pid": 1, "tid": 44, "ts": 4980934.08203125, "dur": 6386.499881744385, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.386499881744385, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\new_gc_alloc.h" } },
- { "pid": 1, "tid": 44, "ts": 4987331.54296875, "dur": 6204.400062561035, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.204400062561035, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\darwin_stop_world.h" } },
- { "pid": 1, "tid": 44, "ts": 4993540.0390625, "dur": 6522.200107574463, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.522200107574463, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\gc_atomic_ops.h" } },
- { "pid": 1, "tid": 44, "ts": 5000067.3828125, "dur": 7114.799976348877, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.114799976348877, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\gc_locks.h" } },
- { "pid": 1, "tid": 44, "ts": 5007185.546875, "dur": 6830.2001953125, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.8302001953125, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\gc_priv.h" } },
- { "pid": 1, "tid": 44, "ts": 5014021.97265625, "dur": 6333.700180053711, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.333700180053711, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\msvc_dbg.h" } },
- { "pid": 1, "tid": 44, "ts": 5020356.4453125, "dur": 6016.09992980957, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.01609992980957, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\pthread_support.h" } },
- { "pid": 1, "tid": 44, "ts": 5026377.9296875, "dur": 5688.300132751465, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.688300132751465, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\thread_local_alloc.h" } },
- { "pid": 1, "tid": 40, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 40, "ts": 4906964.84375, "dur": 13246.899604797363, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 13.246899604797363, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include\\C\\Baselib_Atomic_Platform.inl.h" } },
- { "pid": 1, "tid": 40, "ts": 4920214.84375, "dur": 8907.19985961914, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.90719985961914, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include\\C\\Baselib_ThreadLocalStorage.inl.h" } },
- { "pid": 1, "tid": 50, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 50, "ts": 4906972.16796875, "dur": 10438.599586486816, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.438599586486816, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Alignment.h" } },
- { "pid": 1, "tid": 50, "ts": 4917413.57421875, "dur": 9745.200157165527, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.745200157165527, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Atomic_LLSC.h" } },
- { "pid": 1, "tid": 50, "ts": 4927161.62109375, "dur": 6625.699996948242, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.625699996948242, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Atomic_TypeSafe.h" } },
- { "pid": 1, "tid": 50, "ts": 4933791.9921875, "dur": 6070.099830627441, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.070099830627441, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_CountdownTimer.h" } },
- { "pid": 1, "tid": 50, "ts": 4939864.74609375, "dur": 6749.899864196777, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.749899864196777, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_DynamicLibrary.h" } },
- { "pid": 1, "tid": 50, "ts": 4946618.1640625, "dur": 6271.699905395508, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.271699905395508, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_ErrorState.h" } },
- { "pid": 1, "tid": 50, "ts": 4952893.06640625, "dur": 5878.0999183654785, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.8780999183654785, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_FileIO.h" } },
- { "pid": 1, "tid": 50, "ts": 4958774.4140625, "dur": 6781.400203704834, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.781400203704834, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Lock.h" } },
- { "pid": 1, "tid": 50, "ts": 4965558.10546875, "dur": 6184.4000816345215, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.1844000816345215, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Process.h" } },
- { "pid": 1, "tid": 50, "ts": 4971750, "dur": 7216.100215911865, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.216100215911865, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_ReentrantLock.h" } },
- { "pid": 1, "tid": 50, "ts": 4978969.7265625, "dur": 6228.000164031982, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.228000164031982, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Socket.h" } },
- { "pid": 1, "tid": 50, "ts": 4985202.1484375, "dur": 6579.2999267578125, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.5792999267578125, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_SourceLocation.h" } },
- { "pid": 1, "tid": 50, "ts": 4991786.62109375, "dur": 8885.000228881836, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.885000228881836, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_SystemSemaphore.h" } },
- { "pid": 1, "tid": 50, "ts": 5000676.7578125, "dur": 8157.600402832031, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.157600402832031, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_ThreadLocalStorage.h" } },
- { "pid": 1, "tid": 50, "ts": 5008837.40234375, "dur": 5815.199851989746, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.815199851989746, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_WakeupFallbackStrategy.h" } },
- { "pid": 1, "tid": 50, "ts": 5014655.76171875, "dur": 7867.8998947143555, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.8678998947143555, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_CappedSemaphore_SemaphoreBased.inl.h" } },
- { "pid": 1, "tid": 50, "ts": 5022528.80859375, "dur": 6603.300094604492, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.603300094604492, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_EventSemaphore_FutexBased.inl.h" } },
- { "pid": 1, "tid": 50, "ts": 5029134.765625, "dur": 6730.899810791016, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.730899810791016, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_HighCapacitySemaphore_FutexBased.inl.h" } },
- { "pid": 1, "tid": 50, "ts": 5035868.1640625, "dur": 5712.200164794922, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.712200164794922, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_Lock_SemaphoreBased.inl.h" } },
- { "pid": 1, "tid": 50, "ts": 5041583.49609375, "dur": 5557.09981918335, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.55709981918335, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_ReentrantLock.inl.h" } },
- { "pid": 1, "tid": 50, "ts": 5047146.484375, "dur": 5694.699764251709, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.694699764251709, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Compiler\\Baselib_Atomic_Gcc.h" } },
- { "pid": 1, "tid": 50, "ts": 5052843.75, "dur": 5223.299980163574, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.223299980163574, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Compiler\\Baselib_Atomic_Gcc_Apple_LLVM_Patch_PostInclude.h" } },
- { "pid": 1, "tid": 50, "ts": 5058069.3359375, "dur": 5363.29984664917, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.36329984664917, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Compiler\\Baselib_Atomic_Msvc.h" } },
- { "pid": 1, "tid": 50, "ts": 5063435.05859375, "dur": 5759.200096130371, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.759200096130371, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Algorithm.h" } },
- { "pid": 1, "tid": 50, "ts": 5069197.75390625, "dur": 5732.600212097168, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.732600212097168, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Barrier.h" } },
- { "pid": 1, "tid": 50, "ts": 5074932.12890625, "dur": 8158.80012512207, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.15880012512207, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\CappedSemaphore.h" } },
- { "pid": 1, "tid": 50, "ts": 5083095.21484375, "dur": 9136.500358581543, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.136500358581543, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\CountdownTimer.h" } },
- { "pid": 1, "tid": 50, "ts": 5092241.2109375, "dur": 5504.600048065186, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.5046000480651855, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\HighCapacitySemaphore.h" } },
- { "pid": 1, "tid": 50, "ts": 5097751.46484375, "dur": 5879.499912261963, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.879499912261963, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Internal\\Compiler\\Msvc\\AlgorithmMsvc.inl.h" } },
- { "pid": 1, "tid": 50, "ts": 5103635.25390625, "dur": 5637.1002197265625, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.6371002197265625, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Internal\\ConditionVariableData_SemaphoreBased.inl.h" } },
- { "pid": 1, "tid": 50, "ts": 5109276.3671875, "dur": 6442.699909210205, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.442699909210205, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Internal\\ConditionVariable_SemaphoreBased.inl.h" } },
- { "pid": 1, "tid": 50, "ts": 5115722.65625, "dur": 5321.199893951416, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.321199893951416, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\ReentrantLock.h" } },
- { "pid": 1, "tid": 50, "ts": 5121045.8984375, "dur": 5576.600074768066, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.576600074768066, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Semaphore.h" } },
- { "pid": 1, "tid": 50, "ts": 5126626.953125, "dur": 4674.799919128418, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.674799919128418, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\ThreadLocalStorage.h" } },
- { "pid": 1, "tid": 50, "ts": 5131305.6640625, "dur": 5935.299873352051, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.935299873352051, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\mpmc_fixed_queue.h" } },
- { "pid": 1, "tid": 50, "ts": 5137245.1171875, "dur": 5711.50016784668, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.71150016784668, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\mpmc_node_queue.h" } },
- { "pid": 1, "tid": 50, "ts": 5142958.49609375, "dur": 4981.99987411499, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.98199987411499, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\mpsc_node_queue.h" } },
- { "pid": 1, "tid": 50, "ts": 5147944.3359375, "dur": 3994.29988861084, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.99429988861084, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\ArchitectureDetection.h" } },
- { "pid": 1, "tid": 50, "ts": 5151940.4296875, "dur": 4016.900062561035, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.016900062561035, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\BasicTypes.h" } },
- { "pid": 1, "tid": 50, "ts": 5155960.44921875, "dur": 5562.699794769287, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.562699794769287, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\Compiler\\CompilerEnvironmentClang.h" } },
- { "pid": 1, "tid": 50, "ts": 5161527.34375, "dur": 4976.900100708008, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.976900100708008, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\Compiler\\CompilerEnvironmentMsvc.h" } },
- { "pid": 1, "tid": 50, "ts": 5166506.34765625, "dur": 4409.10005569458, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.40910005569458, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\PlatformEnvironment.h" } },
- { "pid": 1, "tid": 50, "ts": 5170921.38671875, "dur": 4920.7000732421875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.9207000732421875, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\RedefineCompilerMacros.h" } },
- { "pid": 1, "tid": 50, "ts": 5175846.19140625, "dur": 4557.000160217285, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.557000160217285, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\UndefineCompilerMacros.h" } },
- { "pid": 1, "tid": 50, "ts": 5180407.2265625, "dur": 4362.69998550415, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.36269998550415, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\UndefinePlatforms.h" } },
- { "pid": 1, "tid": 50, "ts": 5184772.94921875, "dur": 4057.300090789795, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.057300090789795, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\PostExternalInclude.h" } },
- { "pid": 1, "tid": 53, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 53, "ts": 4914984.375, "dur": 6458.3001136779785, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.4583001136779785, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\char-conversions.h" } },
- { "pid": 1, "tid": 53, "ts": 4921445.80078125, "dur": 9128.499984741211, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.128499984741211, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-common-small.h" } },
- { "pid": 1, "tid": 53, "ts": 4930576.171875, "dur": 7205.699920654297, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.205699920654297, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-tiny.h" } },
- { "pid": 1, "tid": 53, "ts": 4937785.64453125, "dur": 6215.099811553955, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.215099811553955, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\debugger\\il2cpp-c-types.h" } },
- { "pid": 1, "tid": 53, "ts": 4944004.8828125, "dur": 6472.400188446045, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.472400188446045, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\Allocator.h" } },
- { "pid": 1, "tid": 53, "ts": 4950479.98046875, "dur": 5719.5000648498535, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.7195000648498535, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\GCHandle.h" } },
- { "pid": 1, "tid": 53, "ts": 4956201.171875, "dur": 5756.499767303467, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.756499767303467, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\WriteBarrier.h" } },
- { "pid": 1, "tid": 53, "ts": 4961961.42578125, "dur": 6052.599906921387, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.052599906921387, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\WriteBarrierValidation.h" } },
- { "pid": 1, "tid": 53, "ts": 4968018.5546875, "dur": 6954.500198364258, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.954500198364258, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System.Core\\System.IO.MemoryMappedFiles\\MemoryMapImpl.h" } },
- { "pid": 1, "tid": 53, "ts": 4974977.5390625, "dur": 5817.200183868408, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.817200183868408, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\Microsoft.Win32\\NativeMethods.h" } },
- { "pid": 1, "tid": 53, "ts": 4980797.8515625, "dur": 7119.59981918335, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.11959981918335, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.ComponentModel\\Win32Exception.h" } },
- { "pid": 1, "tid": 53, "ts": 4987920.41015625, "dur": 7976.29976272583, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.97629976272583, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Configuration\\InternalConfigurationHost.h" } },
- { "pid": 1, "tid": 53, "ts": 4995898.92578125, "dur": 7701.7998695373535, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.7017998695373535, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\PerformanceCounter.h" } },
- { "pid": 1, "tid": 53, "ts": 5003612.3046875, "dur": 6028.600215911865, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.028600215911865, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\PerformanceCounterCategory.h" } },
- { "pid": 1, "tid": 53, "ts": 5009644.53125, "dur": 5394.999980926514, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.394999980926514, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\Process.h" } },
- { "pid": 1, "tid": 53, "ts": 5015042.96875, "dur": 7988.800048828125, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.988800048828125, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\perfcounters-def.h" } },
- { "pid": 1, "tid": 53, "ts": 5023033.69140625, "dur": 5539.999961853027, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.539999961853027, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.IO\\InotifyWatcher.h" } },
- { "pid": 1, "tid": 53, "ts": 5028579.1015625, "dur": 6137.700080871582, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.137700080871582, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.IO\\KqueueMonitor.h" } },
- { "pid": 1, "tid": 53, "ts": 5034719.23828125, "dur": 5375.100135803223, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.375100135803223, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net.Sockets\\SocketException.h" } },
- { "pid": 1, "tid": 53, "ts": 5040096.6796875, "dur": 5820.400238037109, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.820400238037109, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net\\Dns.h" } },
- { "pid": 1, "tid": 53, "ts": 5045919.921875, "dur": 5598.999977111816, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.598999977111816, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System\\IOSelector.h" } },
- { "pid": 1, "tid": 53, "ts": 5051523.92578125, "dur": 5956.399917602539, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.956399917602539, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono.Interop\\ComInteropProxy.h" } },
- { "pid": 1, "tid": 53, "ts": 5057486.328125, "dur": 5369.200229644775, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.369200229644775, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono.Unity\\UnityTls.h" } },
- { "pid": 1, "tid": 53, "ts": 5062859.375, "dur": 5259.300231933594, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.259300231933594, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\RuntimeClassHandle.h" } },
- { "pid": 1, "tid": 53, "ts": 5068123.53515625, "dur": 5760.6000900268555, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.7606000900268555, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\RuntimeMarshal.h" } },
- { "pid": 1, "tid": 53, "ts": 5073886.23046875, "dur": 4925.79984664917, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.92579984664917, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\Debugger.h" } },
- { "pid": 1, "tid": 53, "ts": 5078814.453125, "dur": 5714.700222015381, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.714700222015381, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\StackTrace.h" } },
- { "pid": 1, "tid": 53, "ts": 5084533.203125, "dur": 5530.4999351501465, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.5304999351501465, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CompareInfo.h" } },
- { "pid": 1, "tid": 53, "ts": 5090070.80078125, "dur": 4715.4998779296875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.7154998779296875, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CultureData.h" } },
- { "pid": 1, "tid": 53, "ts": 5094788.0859375, "dur": 5310.400009155273, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.310400009155273, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CultureInfoInternals.h" } },
- { "pid": 1, "tid": 53, "ts": 5100101.07421875, "dur": 5432.600021362305, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.432600021362305, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CultureInfoTables.h" } },
- { "pid": 1, "tid": 53, "ts": 5105536.1328125, "dur": 13347.100257873535, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 13.347100257873535, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\Generated\\CultureInfoTablesNet_4_0.h" } },
- { "pid": 1, "tid": 53, "ts": 5118887.20703125, "dur": 5063.0998611450195, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.0630998611450195, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.IO\\Path.h" } },
- { "pid": 1, "tid": 53, "ts": 5123953.61328125, "dur": 4601.500034332275, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.601500034332275, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\CustomAttributeBuilder.h" } },
- { "pid": 1, "tid": 53, "ts": 5128559.08203125, "dur": 4655.399799346924, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.655399799346924, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\DynamicMethod.h" } },
- { "pid": 1, "tid": 53, "ts": 5133224.609375, "dur": 4306.399822235107, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.306399822235107, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\GenericTypeParameterBuilder.h" } },
- { "pid": 1, "tid": 53, "ts": 5137532.71484375, "dur": 4779.799938201904, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.779799938201904, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\SignatureHelper.h" } },
- { "pid": 1, "tid": 53, "ts": 5142314.453125, "dur": 4727.90002822876, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.72790002822876, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\TypeBuilder.h" } },
- { "pid": 1, "tid": 53, "ts": 5147045.41015625, "dur": 4485.899925231934, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.485899925231934, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\AssemblyName.h" } },
- { "pid": 1, "tid": 53, "ts": 5151534.1796875, "dur": 4584.700107574463, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.584700107574463, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\EventInfo.h" } },
- { "pid": 1, "tid": 53, "ts": 5156121.58203125, "dur": 4054.1000366210938, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.054100036621094, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\FieldInfo.h" } },
- { "pid": 1, "tid": 53, "ts": 5160179.19921875, "dur": 4757.299900054932, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.757299900054932, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MethodBase.h" } },
- { "pid": 1, "tid": 53, "ts": 5164940.91796875, "dur": 4719.600200653076, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.719600200653076, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoCMethod.h" } },
- { "pid": 1, "tid": 53, "ts": 5169664.55078125, "dur": 4987.500190734863, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.987500190734863, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoField.h" } },
- { "pid": 1, "tid": 53, "ts": 5174656.25, "dur": 4689.400196075439, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.6894001960754395, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoGenericClass.h" } },
- { "pid": 1, "tid": 53, "ts": 5179349.609375, "dur": 4545.400142669678, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.545400142669678, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoMethod.h" } },
- { "pid": 1, "tid": 53, "ts": 5183899.90234375, "dur": 4721.000194549561, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.7210001945495605, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoPropertyInfo.h" } },
- { "pid": 1, "tid": 53, "ts": 5188623.046875, "dur": 4584.099769592285, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.584099769592285, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\RtFieldInfo.h" } },
- { "pid": 1, "tid": 53, "ts": 5193209.47265625, "dur": 3972.1999168395996, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9721999168395996, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.CompilerServices\\RuntimeHelpers.h" } },
- { "pid": 1, "tid": 53, "ts": 5197185.546875, "dur": 3869.6000576019287, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8696000576019287, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.InteropServices\\Marshal.h" } },
- { "pid": 1, "tid": 53, "ts": 5201060.546875, "dur": 3571.0999965667725, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5710999965667725, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Contexts\\Context.h" } },
- { "pid": 1, "tid": 53, "ts": 5204633.7890625, "dur": 3914.400100708008, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.914400100708008, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Messaging\\MonoMethodMessage.h" } },
- { "pid": 1, "tid": 53, "ts": 5208550.78125, "dur": 3609.8999977111816, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6098999977111816, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting\\RemotingServices.h" } },
- { "pid": 1, "tid": 53, "ts": 5212163.57421875, "dur": 3778.0001163482666, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7780001163482666, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Versioning\\VersioningHelper.h" } },
- { "pid": 1, "tid": 53, "ts": 5215943.359375, "dur": 4056.9000244140625, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.0569000244140625, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Principal\\WindowsIdentity.h" } },
- { "pid": 1, "tid": 53, "ts": 5220003.90625, "dur": 4151.000022888184, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.151000022888184, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Principal\\WindowsImpersonationContext.h" } },
- { "pid": 1, "tid": 53, "ts": 5224158.69140625, "dur": 3832.0999145507812, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8320999145507812, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security\\SecurityFrame.h" } },
- { "pid": 1, "tid": 53, "ts": 5227996.58203125, "dur": 3745.300054550171, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.745300054550171, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Text\\EncodingHelper.h" } },
- { "pid": 1, "tid": 53, "ts": 5231743.65234375, "dur": 4044.8999404907227, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.044899940490723, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\InternalThread.h" } },
- { "pid": 1, "tid": 53, "ts": 5235794.43359375, "dur": 3836.9998931884766, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8369998931884766, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Monitor.h" } },
- { "pid": 1, "tid": 53, "ts": 5239633.30078125, "dur": 3451.1001110076904, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4511001110076904, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\OSSpecificSynchronizationContext.h" } },
- { "pid": 1, "tid": 53, "ts": 5243087.40234375, "dur": 3883.8000297546387, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8838000297546387, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Thread.h" } },
- { "pid": 1, "tid": 53, "ts": 5246974.609375, "dur": 5284.599781036377, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.284599781036377, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\WaitHandle.h" } },
- { "pid": 1, "tid": 53, "ts": 5252262.20703125, "dur": 3630.8999061584473, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6308999061584473, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\AppDomain.h" } },
- { "pid": 1, "tid": 53, "ts": 5255896.484375, "dur": 3619.1000938415527, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6191000938415527, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Array.h" } },
- { "pid": 1, "tid": 53, "ts": 5259518.5546875, "dur": 3264.3001079559326, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.2643001079559326, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\CLRConfig.h" } },
- { "pid": 1, "tid": 53, "ts": 5262786.62109375, "dur": 4132.500171661377, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.132500171661377, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\ConsoleDriver.h" } },
- { "pid": 1, "tid": 53, "ts": 5266920.41015625, "dur": 3517.699956893921, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.517699956893921, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\DateTime.h" } },
- { "pid": 1, "tid": 53, "ts": 5270441.40625, "dur": 3749.2001056671143, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7492001056671143, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Decimal.h" } },
- { "pid": 1, "tid": 53, "ts": 5274194.82421875, "dur": 3752.300024032593, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7523000240325928, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Double.h" } },
- { "pid": 1, "tid": 53, "ts": 5277951.171875, "dur": 3480.09991645813, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.48009991645813, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Environment.h" } },
- { "pid": 1, "tid": 53, "ts": 5281433.59375, "dur": 3669.8999404907227, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6698999404907227, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\MissingMemberException.h" } },
- { "pid": 1, "tid": 53, "ts": 5285105.46875, "dur": 4270.500183105469, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.270500183105469, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\MonoType.h" } },
- { "pid": 1, "tid": 53, "ts": 5289378.41796875, "dur": 4064.000129699707, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.064000129699707, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\NumberFormatter.h" } },
- { "pid": 1, "tid": 53, "ts": 5293445.3125, "dur": 3985.599994659424, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.985599994659424, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Object.h" } },
- { "pid": 1, "tid": 53, "ts": 5297433.10546875, "dur": 4512.00008392334, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.51200008392334, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\RuntimeType.h" } },
- { "pid": 1, "tid": 53, "ts": 5301951.171875, "dur": 3743.4000968933105, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7434000968933105, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\SizedReference.h" } },
- { "pid": 1, "tid": 53, "ts": 5305698.2421875, "dur": 3690.500020980835, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.690500020980835, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\String.h" } },
- { "pid": 1, "tid": 53, "ts": 5309390.625, "dur": 3697.5998878479004, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6975998878479004, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Type.h" } },
- { "pid": 1, "tid": 53, "ts": 5313091.796875, "dur": 3753.9000511169434, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7539000511169434, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\TypedReference.h" } },
- { "pid": 1, "tid": 53, "ts": 5316854.00390625, "dur": 3947.000026702881, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.947000026702881, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\__ComObject.h" } },
- { "pid": 1, "tid": 53, "ts": 5320804.19921875, "dur": 3648.6001014709473, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6486001014709473, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-api-types.h" } },
- { "pid": 1, "tid": 53, "ts": 5324454.58984375, "dur": 3223.9999771118164, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.2239999771118164, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-blob.h" } },
- { "pid": 1, "tid": 53, "ts": 5327680.6640625, "dur": 3735.6998920440674, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7356998920440674, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-config-api.h" } },
- { "pid": 1, "tid": 53, "ts": 5331422.8515625, "dur": 4311.800003051758, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.311800003051758, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-config.h" } },
- { "pid": 1, "tid": 53, "ts": 5335737.3046875, "dur": 4420.199871063232, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.420199871063232, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-number-formatter.h" } },
- { "pid": 1, "tid": 53, "ts": 5340160.64453125, "dur": 5647.600173950195, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.647600173950195, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-object-internals.h" } },
- { "pid": 1, "tid": 53, "ts": 5345812.01171875, "dur": 4116.199970245361, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.116199970245361, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-pinvoke-support.h" } },
- { "pid": 1, "tid": 53, "ts": 5349936.5234375, "dur": 4309.700012207031, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.309700012207031, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-runtime-metadata.h" } },
- { "pid": 1, "tid": 53, "ts": 5354248.53515625, "dur": 3503.7999153137207, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5037999153137207, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-string-types.h" } },
- { "pid": 1, "tid": 53, "ts": 5357755.37109375, "dur": 4017.000198364258, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.017000198364258, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-tabledefs.h" } },
- { "pid": 1, "tid": 53, "ts": 5361774.4140625, "dur": 3869.4000244140625, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8694000244140625, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-windowsruntime-types.h" } },
- { "pid": 1, "tid": 53, "ts": 5365647.4609375, "dur": 3725.100040435791, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.725100040435791, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\ArrayMetadata.h" } },
- { "pid": 1, "tid": 53, "ts": 5369375, "dur": 3820.3999996185303, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8203999996185303, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\GenericMetadata.h" } },
- { "pid": 1, "tid": 53, "ts": 5373199.21875, "dur": 4173.2001304626465, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.1732001304626465, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\GenericSharing.h" } },
- { "pid": 1, "tid": 53, "ts": 5377374.0234375, "dur": 3741.1999702453613, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7411999702453613, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericContextCompare.h" } },
- { "pid": 1, "tid": 53, "ts": 5381120.1171875, "dur": 4252.500057220459, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.252500057220459, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericContextHash.h" } },
- { "pid": 1, "tid": 53, "ts": 5385374.51171875, "dur": 3956.399917602539, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.956399917602539, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericMethodCompare.h" } },
- { "pid": 1, "tid": 53, "ts": 5389334.47265625, "dur": 3766.7999267578125, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7667999267578125, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericMethodHash.h" } },
- { "pid": 1, "tid": 53, "ts": 5393103.02734375, "dur": 3659.8000526428223, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6598000526428223, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppTypeHash.h" } },
- { "pid": 1, "tid": 53, "ts": 5396766.11328125, "dur": 3510.9000205993652, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5109000205993652, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppTypeVector.h" } },
- { "pid": 1, "tid": 53, "ts": 5400280.76171875, "dur": 3502.7999877929688, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5027999877929688, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\MonoPosixHelper.h" } },
- { "pid": 1, "tid": 53, "ts": 5403787.109375, "dur": 3527.4999141693115, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5274999141693115, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\ThreadPoolMacros.h" } },
- { "pid": 1, "tid": 53, "ts": 5407317.87109375, "dur": 3761.8000507354736, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7618000507354736, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\threadpool-ms-io-poll.h" } },
- { "pid": 1, "tid": 53, "ts": 5411083.0078125, "dur": 3532.7000617980957, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5327000617980957, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\threadpool-ms.h" } },
- { "pid": 1, "tid": 53, "ts": 5414617.67578125, "dur": 3684.7000122070312, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6847000122070312, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Atomic.h" } },
- { "pid": 1, "tid": 53, "ts": 5418304.19921875, "dur": 3265.700101852417, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.265700101852417, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ConditionVariable.h" } },
- { "pid": 1, "tid": 53, "ts": 5421573.2421875, "dur": 3595.2999591827393, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5952999591827393, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Console.h" } },
- { "pid": 1, "tid": 53, "ts": 5425170.41015625, "dur": 4688.700199127197, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.688700199127197, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\CrashHelpers.h" } },
- { "pid": 1, "tid": 53, "ts": 5429861.328125, "dur": 4772.39990234375, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.77239990234375, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Debug.h" } },
- { "pid": 1, "tid": 53, "ts": 5434638.18359375, "dur": 4408.599853515625, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.408599853515625, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Encoding.h" } },
- { "pid": 1, "tid": 53, "ts": 5439050.29296875, "dur": 4135.000228881836, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.135000228881836, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Environment.h" } },
- { "pid": 1, "tid": 53, "ts": 5443188.4765625, "dur": 4342.199802398682, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.342199802398682, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ErrorCodes.h" } },
- { "pid": 1, "tid": 53, "ts": 5447532.2265625, "dur": 3684.299945831299, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.684299945831299, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\FileSystemWatcher.h" } },
- { "pid": 1, "tid": 53, "ts": 5451220.21484375, "dur": 3402.6999473571777, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4026999473571777, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Handle.h" } },
- { "pid": 1, "tid": 53, "ts": 5454625.48828125, "dur": 3311.3999366760254, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.3113999366760254, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Image.h" } },
- { "pid": 1, "tid": 53, "ts": 5457940.4296875, "dur": 3264.19997215271, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.26419997215271, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\LastError.h" } },
- { "pid": 1, "tid": 53, "ts": 5461208.0078125, "dur": 3556.6999912261963, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5566999912261963, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Locale.h" } },
- { "pid": 1, "tid": 53, "ts": 5464767.08984375, "dur": 3600.6999015808105, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6006999015808105, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\Lifecycle.h" } },
- { "pid": 1, "tid": 53, "ts": 5468371.09375, "dur": 3633.5999965667725, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6335999965667725, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\MarshalStringAlloc.h" } },
- { "pid": 1, "tid": 53, "ts": 5472006.34765625, "dur": 3608.599901199341, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.608599901199341, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\MemoryMappedFile.h" } },
- { "pid": 1, "tid": 53, "ts": 5475616.2109375, "dur": 3280.600070953369, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.280600070953369, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Mutex.h" } },
- { "pid": 1, "tid": 53, "ts": 5478899.4140625, "dur": 3551.3999462127686, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5513999462127686, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Path.h" } },
- { "pid": 1, "tid": 53, "ts": 5482454.1015625, "dur": 3749.000072479248, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.749000072479248, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\ConditionVariableImpl.h" } },
- { "pid": 1, "tid": 53, "ts": 5486207.03125, "dur": 3735.3999614715576, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7353999614715576, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\EventImpl.h" } },
- { "pid": 1, "tid": 53, "ts": 5489945.80078125, "dur": 3555.999994277954, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.555999994277954, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\MutexImpl.h" } },
- { "pid": 1, "tid": 53, "ts": 5493504.39453125, "dur": 3524.8000621795654, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5248000621795654, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\PosixWaitObject.h" } },
- { "pid": 1, "tid": 53, "ts": 5497031.73828125, "dur": 3463.599920272827, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.463599920272827, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\SemaphoreImpl.h" } },
- { "pid": 1, "tid": 53, "ts": 5500498.53515625, "dur": 4438.799858093262, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.438799858093262, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\ThreadImpl.h" } },
- { "pid": 1, "tid": 53, "ts": 5504939.453125, "dur": 3646.1000442504883, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6461000442504883, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ReaderWriterLock.h" } },
- { "pid": 1, "tid": 53, "ts": 5508589.35546875, "dur": 3748.699903488159, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.748699903488159, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ReaderWriterLockImpl.h" } },
- { "pid": 1, "tid": 53, "ts": 5512353.515625, "dur": 4818.600177764893, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.818600177764893, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Socket.h" } },
- { "pid": 1, "tid": 53, "ts": 5517175.78125, "dur": 3688.6000633239746, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6886000633239746, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Std\\ThreadImpl.h" } },
- { "pid": 1, "tid": 53, "ts": 5520867.1875, "dur": 3465.5001163482666, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4655001163482666, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\SystemCertificates.h" } },
- { "pid": 1, "tid": 53, "ts": 5524334.9609375, "dur": 3809.799909591675, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.809799909591675, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ThreadLocalValue.h" } },
- { "pid": 1, "tid": 53, "ts": 5528149.90234375, "dur": 3564.500093460083, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.564500093460083, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\TimeZone.h" } },
- { "pid": 1, "tid": 53, "ts": 5531718.26171875, "dur": 3844.0001010894775, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8440001010894775, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WaitStatus.h" } },
- { "pid": 1, "tid": 53, "ts": 5535563.96484375, "dur": 3253.999948501587, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.253999948501587, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\DllMain.h" } },
- { "pid": 1, "tid": 53, "ts": 5538820.80078125, "dur": 3503.4000873565674, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5034000873565674, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\EventImpl.h" } },
- { "pid": 1, "tid": 53, "ts": 5542330.56640625, "dur": 3621.2000846862793, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6212000846862793, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\SemaphoreImpl.h" } },
- { "pid": 1, "tid": 53, "ts": 5545955.078125, "dur": 3718.4998989105225, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7184998989105225, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\ThreadImpl.h" } },
- { "pid": 1, "tid": 53, "ts": 5549675.29296875, "dur": 3693.000078201294, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.693000078201294, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\WindowsHeaders.h" } },
- { "pid": 1, "tid": 53, "ts": 5553372.0703125, "dur": 3647.700071334839, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.647700071334839, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\WindowsHelpers.h" } },
- { "pid": 1, "tid": 53, "ts": 5557026.3671875, "dur": 3825.900077819824, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.825900077819824, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\ReferenceCounter.h" } },
- { "pid": 1, "tid": 53, "ts": 5560854.4921875, "dur": 4108.2000732421875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.1082000732421875, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Win32ApiWinRTEmulation.h" } },
- { "pid": 1, "tid": 53, "ts": 5564966.30859375, "dur": 4298.500061035156, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.298500061035156, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WindowsGames\\Win32ApiWindowsGamesEmulation.h" } },
- { "pid": 1, "tid": 53, "ts": 5569266.6015625, "dur": 4343.100070953369, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.343100070953369, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Atomic-c-api.h" } },
- { "pid": 1, "tid": 53, "ts": 5573616.69921875, "dur": 3858.5000038146973, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8585000038146973, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\COM-c-api.h" } },
- { "pid": 1, "tid": 53, "ts": 5577477.5390625, "dur": 4127.099990844727, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.127099990844727, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\CpuInfo-c-api.h" } },
- { "pid": 1, "tid": 53, "ts": 5581606.93359375, "dur": 4052.999973297119, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.052999973297119, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Debug-c-api.h" } },
- { "pid": 1, "tid": 53, "ts": 5585663.0859375, "dur": 3705.699920654297, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.705699920654297, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Directory-c-api.h" } },
- { "pid": 1, "tid": 53, "ts": 5589372.0703125, "dur": 3563.499927520752, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.563499927520752, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Error-c-api.h" } },
- { "pid": 1, "tid": 53, "ts": 5592938.4765625, "dur": 3589.4999504089355, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5894999504089355, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Handle-c-api.h" } },
- { "pid": 1, "tid": 53, "ts": 5596532.71484375, "dur": 3660.7000827789307, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6607000827789307, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\LibraryLoader-c-api.h" } },
- { "pid": 1, "tid": 53, "ts": 5600195.3125, "dur": 3519.0999507904053, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5190999507904053, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\MemoryMappedFile-c-api.h" } },
- { "pid": 1, "tid": 53, "ts": 5603717.7734375, "dur": 3333.4999084472656, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.3334999084472656, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Messages-c-api.h" } },
- { "pid": 1, "tid": 53, "ts": 5607054.6875, "dur": 3216.599941253662, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.216599941253662, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\NativeMethods-c-api.h" } },
- { "pid": 1, "tid": 53, "ts": 5610272.94921875, "dur": 3477.2000312805176, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4772000312805176, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Path-c-api.h" } },
- { "pid": 1, "tid": 53, "ts": 5613753.41796875, "dur": 3754.199981689453, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.754199981689453, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Semaphore-c-api.h" } },
- { "pid": 1, "tid": 53, "ts": 5617511.23046875, "dur": 3618.5998916625977, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6185998916625977, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\SystemCertificates-c-api.h" } },
- { "pid": 1, "tid": 53, "ts": 5621132.32421875, "dur": 3663.300037384033, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.663300037384033, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Time-c-api.h" } },
- { "pid": 1, "tid": 53, "ts": 5624798.33984375, "dur": 3103.100061416626, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.103100061416626, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\TimeZone-c-api.h" } },
- { "pid": 1, "tid": 53, "ts": 5627904.296875, "dur": 3057.300090789795, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.057300090789795, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\WaitStatus-c-api.h" } },
- { "pid": 1, "tid": 53, "ts": 5630965.33203125, "dur": 3828.9999961853027, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8289999961853027, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\il2cpp-config-platforms.h" } },
- { "pid": 1, "tid": 53, "ts": 5634907.2265625, "dur": 3082.40008354187, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.08240008354187, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\plugin\\UnityPlugin.h" } },
- { "pid": 1, "tid": 53, "ts": 5637991.69921875, "dur": 3266.9999599456787, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.2669999599456787, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\CallOnce.h" } },
- { "pid": 1, "tid": 53, "ts": 5641260.7421875, "dur": 3158.400058746338, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.158400058746338, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\DirectoryUtils.h" } },
- { "pid": 1, "tid": 53, "ts": 5644422.36328125, "dur": 3485.3999614715576, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4853999614715576, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Environment.h" } },
- { "pid": 1, "tid": 53, "ts": 5647911.1328125, "dur": 3824.50008392334, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.82450008392334, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\ExtendedAtomicTypes.h" } },
- { "pid": 1, "tid": 53, "ts": 5651739.2578125, "dur": 3622.6000785827637, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6226000785827637, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Functional.h" } },
- { "pid": 1, "tid": 53, "ts": 5655364.74609375, "dur": 3467.7000045776367, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4677000045776367, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Il2CppHStringReference.h" } },
- { "pid": 1, "tid": 53, "ts": 5658835.9375, "dur": 3655.6999683380127, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6556999683380127, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\KeyWrapper.h" } },
- { "pid": 1, "tid": 53, "ts": 5662494.140625, "dur": 3615.499973297119, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.615499973297119, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Logging.h" } },
- { "pid": 1, "tid": 53, "ts": 5666113.76953125, "dur": 3635.2999210357666, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6352999210357666, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MathUtils.h" } },
- { "pid": 1, "tid": 53, "ts": 5669750.9765625, "dur": 3436.7001056671143, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4367001056671143, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MemoryPool.h" } },
- { "pid": 1, "tid": 53, "ts": 5673190.4296875, "dur": 3650.5000591278076, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6505000591278076, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MemoryRead.h" } },
- { "pid": 1, "tid": 53, "ts": 5676844.7265625, "dur": 3656.5001010894775, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6565001010894775, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\New.h" } },
- { "pid": 1, "tid": 53, "ts": 5680504.8828125, "dur": 4071.3000297546387, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.071300029754639, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\PathUtils.h" } },
- { "pid": 1, "tid": 53, "ts": 5684578.125, "dur": 3802.9000759124756, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8029000759124756, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\StringUtils.h" } },
- { "pid": 1, "tid": 53, "ts": 5688382.8125, "dur": 4440.400123596191, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.440400123596191, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\StringViewUtils.h" } },
- { "pid": 1, "tid": 53, "ts": 5692826.66015625, "dur": 3610.100030899048, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.610100030899048, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\TemplateUtils.h" } },
- { "pid": 1, "tid": 53, "ts": 5696440.4296875, "dur": 4028.2998085021973, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.028299808502197, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\dynamic_array.h" } },
- { "pid": 1, "tid": 53, "ts": 5700470.703125, "dur": 4953.999996185303, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.953999996185303, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\utf8-cpp\\source\\utf8\\checked.h" } },
- { "pid": 1, "tid": 53, "ts": 5705427.24609375, "dur": 5387.800216674805, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.387800216674805, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\utf8-cpp\\source\\utf8\\unchecked.h" } },
- { "pid": 1, "tid": 53, "ts": 5710817.87109375, "dur": 3854.7000885009766, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8547000885009766, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\Debugger.h" } },
- { "pid": 1, "tid": 53, "ts": 5714675.78125, "dur": 4032.599925994873, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.032599925994873, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\NativeSymbol.h" } },
- { "pid": 1, "tid": 53, "ts": 5718711.42578125, "dur": 4141.300201416016, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.141300201416016, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\icalls\\mscorlib\\System.Threading\\Interlocked.h" } },
- { "pid": 1, "tid": 53, "ts": 5722854.4921875, "dur": 3993.499994277954, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.993499994277954, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Array.h" } },
- { "pid": 1, "tid": 53, "ts": 5726851.5625, "dur": 3475.100040435791, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.475100040435791, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Assembly.h" } },
- { "pid": 1, "tid": 53, "ts": 5730333.49609375, "dur": 3877.19988822937, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.87719988822937, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\CCW.h" } },
- { "pid": 1, "tid": 53, "ts": 5734212.890625, "dur": 3543.4999465942383, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5434999465942383, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\COMEntryPoints.h" } },
- { "pid": 1, "tid": 53, "ts": 5737759.765625, "dur": 4134.6001625061035, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.1346001625061035, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\CachedCCWBase.h" } },
- { "pid": 1, "tid": 53, "ts": 5741896.97265625, "dur": 3660.900115966797, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.660900115966797, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ComObjectBase.h" } },
- { "pid": 1, "tid": 53, "ts": 5745566.89453125, "dur": 3551.800012588501, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.551800012588501, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Domain.h" } },
- { "pid": 1, "tid": 53, "ts": 5749121.58203125, "dur": 4019.199848175049, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.019199848175049, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Event.h" } },
- { "pid": 1, "tid": 53, "ts": 5753143.06640625, "dur": 3690.0999546051025, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6900999546051025, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\GenericClass.h" } },
- { "pid": 1, "tid": 53, "ts": 5756834.47265625, "dur": 4162.199974060059, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.162199974060059, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\GlobalMetadata.h" } },
- { "pid": 1, "tid": 53, "ts": 5761002.44140625, "dur": 3652.2998809814453, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6522998809814453, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Image.h" } },
- { "pid": 1, "tid": 53, "ts": 5764658.203125, "dur": 3922.800064086914, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.922800064086914, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\InternalCalls.h" } },
- { "pid": 1, "tid": 53, "ts": 5768582.51953125, "dur": 3818.700075149536, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.818700075149536, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MarshalAlloc.h" } },
- { "pid": 1, "tid": 53, "ts": 5772405.2734375, "dur": 3752.19988822937, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.75219988822937, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MemoryInformation.h" } },
- { "pid": 1, "tid": 53, "ts": 5776164.55078125, "dur": 3861.7000579833984, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8617000579833984, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MetadataCache.h" } },
- { "pid": 1, "tid": 53, "ts": 5780027.83203125, "dur": 4017.0998573303223, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.017099857330322, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Method.h" } },
- { "pid": 1, "tid": 53, "ts": 5784047.36328125, "dur": 4155.00020980835, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.15500020980835, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Monitor.h" } },
- { "pid": 1, "tid": 53, "ts": 5788206.0546875, "dur": 3911.29994392395, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.91129994392395, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Object.h" } },
- { "pid": 1, "tid": 53, "ts": 5792124.0234375, "dur": 3471.299886703491, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.471299886703491, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Parameter.h" } },
- { "pid": 1, "tid": 53, "ts": 5795598.14453125, "dur": 4286.399841308594, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.286399841308594, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\PlatformInvoke.h" } },
- { "pid": 1, "tid": 53, "ts": 5799888.18359375, "dur": 3714.900016784668, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.714900016784668, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\RCW.h" } },
- { "pid": 1, "tid": 53, "ts": 5803604.98046875, "dur": 3734.499931335449, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.734499931335449, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Reflection.h" } },
- { "pid": 1, "tid": 53, "ts": 5807343.26171875, "dur": 3069.499969482422, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.069499969482422, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ScopedThreadAttacher.h" } },
- { "pid": 1, "tid": 53, "ts": 5810415.52734375, "dur": 3628.499984741211, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.628499984741211, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\String.h" } },
- { "pid": 1, "tid": 53, "ts": 5814045.8984375, "dur": 4030.399799346924, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.030399799346924, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ThreadPool.h" } },
- { "pid": 1, "tid": 53, "ts": 5818081.0546875, "dur": 4030.3001403808594, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.030300140380859, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ThreadPoolMs.h" } },
- { "pid": 1, "tid": 53, "ts": 5822118.65234375, "dur": 3797.100067138672, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.797100067138672, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\WaitHandle.h" } },
- { "pid": 1, "tid": 54, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 54, "ts": 4917109.375, "dur": 6966.499805450439, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.9664998054504395, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-common-big.h" } },
- { "pid": 1, "tid": 54, "ts": 4924079.58984375, "dur": 6476.900100708008, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.476900100708008, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-il2cpp.h" } },
- { "pid": 1, "tid": 54, "ts": 4930559.08203125, "dur": 5779.900074005127, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.779900074005127, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-metadata.h" } },
- { "pid": 1, "tid": 54, "ts": 4936343.26171875, "dur": 5367.599964141846, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.367599964141846, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen.h" } },
- { "pid": 1, "tid": 54, "ts": 4941713.37890625, "dur": 6750.899791717529, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.750899791717529, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\debugger\\il2cpp-compat.h" } },
- { "pid": 1, "tid": 54, "ts": 4948468.75, "dur": 7625.400066375732, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.625400066375732, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\AppendOnlyGCHashMap.h" } },
- { "pid": 1, "tid": 54, "ts": 4956098.14453125, "dur": 6257.599830627441, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.257599830627441, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\GarbageCollector.h" } },
- { "pid": 1, "tid": 54, "ts": 4962358.3984375, "dur": 5655.900001525879, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.655900001525879, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\gc_wrapper.h" } },
- { "pid": 1, "tid": 54, "ts": 4968018.5546875, "dur": 7657.100200653076, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.657100200653076, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System.Configuration\\System.Configuration\\InternalConfigurationHost.h" } },
- { "pid": 1, "tid": 54, "ts": 4975680.6640625, "dur": 5535.299777984619, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.535299777984619, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\Mono.Net.Security\\MonoTlsProviderFactory.h" } },
- { "pid": 1, "tid": 54, "ts": 4981218.75, "dur": 6776.199817657471, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.776199817657471, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Configuration\\DefaultConfig.h" } },
- { "pid": 1, "tid": 54, "ts": 4987997.55859375, "dur": 7727.099895477295, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.727099895477295, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\DefaultTraceListener.h" } },
- { "pid": 1, "tid": 54, "ts": 4995729.4921875, "dur": 9075.200080871582, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.075200080871582, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\FileVersionInfo.h" } },
- { "pid": 1, "tid": 54, "ts": 5004808.59375, "dur": 6964.300155639648, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.964300155639648, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\PerformanceCounterUtils.h" } },
- { "pid": 1, "tid": 54, "ts": 5011777.34375, "dur": 5306.20002746582, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.30620002746582, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\Stopwatch.h" } },
- { "pid": 1, "tid": 54, "ts": 5017087.890625, "dur": 5918.700218200684, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.918700218200684, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.IO\\FAMWatcher.h" } },
- { "pid": 1, "tid": 54, "ts": 5023009.765625, "dur": 5791.299819946289, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.791299819946289, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.IO\\FileSystemWatcher.h" } },
- { "pid": 1, "tid": 54, "ts": 5028803.7109375, "dur": 5692.200183868408, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.692200183868408, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net.NetworkInformation\\MacOsIPInterfaceProperties.h" } },
- { "pid": 1, "tid": 54, "ts": 5034499.0234375, "dur": 7102.30016708374, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.10230016708374, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net.Sockets\\Socket.h" } },
- { "pid": 1, "tid": 54, "ts": 5041604.00390625, "dur": 5170.80020904541, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.17080020904541, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Threading\\Semaphore.h" } },
- { "pid": 1, "tid": 54, "ts": 5046777.83203125, "dur": 5760.0998878479, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.7600998878479, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono.Globalization.Unicode\\Normalization.h" } },
- { "pid": 1, "tid": 54, "ts": 5052541.50390625, "dur": 5321.199893951416, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.321199893951416, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono.Security.Cryptography\\KeyPairPersistence.h" } },
- { "pid": 1, "tid": 54, "ts": 5057864.74609375, "dur": 4990.699768066406, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.990699768066406, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\Runtime.h" } },
- { "pid": 1, "tid": 54, "ts": 5062859.375, "dur": 5532.299995422363, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.532299995422363, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\RuntimeGPtrArrayHandle.h" } },
- { "pid": 1, "tid": 54, "ts": 5068394.53125, "dur": 5257.599830627441, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.257599830627441, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\SafeStringMarshal.h" } },
- { "pid": 1, "tid": 54, "ts": 5073655.2734375, "dur": 4721.099853515625, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.721099853515625, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\Assert.h" } },
- { "pid": 1, "tid": 54, "ts": 5078380.859375, "dur": 5753.300189971924, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.753300189971924, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\StackFrame.h" } },
- { "pid": 1, "tid": 54, "ts": 5084138.671875, "dur": 5581.600189208984, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.581600189208984, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CalendarData.h" } },
- { "pid": 1, "tid": 54, "ts": 5089723.14453125, "dur": 4969.299793243408, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.969299793243408, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CompareOptions.h" } },
- { "pid": 1, "tid": 54, "ts": 5094694.82421875, "dur": 5438.600063323975, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.438600063323975, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CultureInfo.h" } },
- { "pid": 1, "tid": 54, "ts": 5100136.23046875, "dur": 5617.599964141846, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.617599964141846, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\Generated\\CultureInfoInternalsNet_4_0.h" } },
- { "pid": 1, "tid": 54, "ts": 5105756.34765625, "dur": 4545.300006866455, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.545300006866455, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\RegionInfo.h" } },
- { "pid": 1, "tid": 54, "ts": 5110304.6875, "dur": 5513.999938964844, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.513999938964844, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.IO\\DriveInfo.h" } },
- { "pid": 1, "tid": 54, "ts": 5115821.2890625, "dur": 4942.999839782715, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.942999839782715, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.IO\\MonoIO.h" } },
- { "pid": 1, "tid": 54, "ts": 5120767.578125, "dur": 4304.599761962891, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.304599761962891, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\AssemblyBuilder.h" } },
- { "pid": 1, "tid": 54, "ts": 5125076.171875, "dur": 3531.100034713745, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.531100034713745, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\DerivedType.h" } },
- { "pid": 1, "tid": 54, "ts": 5128609.375, "dur": 4802.000045776367, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.802000045776367, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\EnumBuilder.h" } },
- { "pid": 1, "tid": 54, "ts": 5133413.57421875, "dur": 4081.9997787475586, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.081999778747559, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\MethodBuilder.h" } },
- { "pid": 1, "tid": 54, "ts": 5137501.953125, "dur": 4760.39981842041, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.76039981842041, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\ModuleBuilder.h" } },
- { "pid": 1, "tid": 54, "ts": 5142265.625, "dur": 4106.299877166748, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.106299877166748, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\SymbolType.h" } },
- { "pid": 1, "tid": 54, "ts": 5146375.9765625, "dur": 4999.4001388549805, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.9994001388549805, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\Assembly.h" } },
- { "pid": 1, "tid": 54, "ts": 5151378.90625, "dur": 4929.599761962891, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.929599761962891, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\CustomAttributeData.h" } },
- { "pid": 1, "tid": 54, "ts": 5156311.03515625, "dur": 3864.500045776367, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.864500045776367, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MemberInfo.h" } },
- { "pid": 1, "tid": 54, "ts": 5160179.19921875, "dur": 4992.8998947143555, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.9928998947143555, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\Module.h" } },
- { "pid": 1, "tid": 54, "ts": 5165175.29296875, "dur": 4518.3000564575195, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.5183000564575195, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoEventInfo.h" } },
- { "pid": 1, "tid": 54, "ts": 5169695.80078125, "dur": 5137.00008392334, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.13700008392334, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoGenericCMethod.h" } },
- { "pid": 1, "tid": 54, "ts": 5174834.9609375, "dur": 4616.199970245361, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.616199970245361, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoGenericMethod.h" } },
- { "pid": 1, "tid": 54, "ts": 5179453.61328125, "dur": 4505.499839782715, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.505499839782715, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoMethodInfo.h" } },
- { "pid": 1, "tid": 54, "ts": 5183960.44921875, "dur": 4569.799900054932, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.569799900054932, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\ParameterInfo.h" } },
- { "pid": 1, "tid": 54, "ts": 5188535.15625, "dur": 4683.000087738037, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.683000087738037, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\PropertyInfo.h" } },
- { "pid": 1, "tid": 54, "ts": 5193220.703125, "dur": 3961.6000652313232, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9616000652313232, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.InteropServices.WindowsRuntime\\UnsafeNativeMethods.h" } },
- { "pid": 1, "tid": 54, "ts": 5197185.546875, "dur": 3621.999979019165, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.621999979019165, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.InteropServices\\GCHandle.h" } },
- { "pid": 1, "tid": 54, "ts": 5200811.03515625, "dur": 3804.30006980896, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.80430006980896, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Activation\\ActivationServices.h" } },
- { "pid": 1, "tid": 54, "ts": 5204618.65234375, "dur": 3837.6998901367188, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8376998901367188, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Messaging\\AsyncResult.h" } },
- { "pid": 1, "tid": 54, "ts": 5208459.9609375, "dur": 3732.0001125335693, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7320001125335693, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Proxies\\RealProxy.h" } },
- { "pid": 1, "tid": 54, "ts": 5212193.84765625, "dur": 3616.6999340057373, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6166999340057373, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Cryptography\\RNGCryptoServiceProvider.h" } },
- { "pid": 1, "tid": 54, "ts": 5215814.453125, "dur": 4202.300071716309, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.202300071716309, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Policy\\Evidence.h" } },
- { "pid": 1, "tid": 54, "ts": 5220019.04296875, "dur": 4136.300086975098, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.136300086975098, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Principal\\WindowsPrincipal.h" } },
- { "pid": 1, "tid": 54, "ts": 5224158.69140625, "dur": 3832.0000171661377, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8320000171661377, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security\\SecurityManager.h" } },
- { "pid": 1, "tid": 54, "ts": 5227994.140625, "dur": 3743.7000274658203, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7437000274658203, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Text\\Encoding.h" } },
- { "pid": 1, "tid": 54, "ts": 5231741.2109375, "dur": 4061.2998008728027, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.061299800872803, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Text\\Normalization.h" } },
- { "pid": 1, "tid": 54, "ts": 5235805.17578125, "dur": 3800.49991607666, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.80049991607666, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Mutex.h" } },
- { "pid": 1, "tid": 54, "ts": 5239608.88671875, "dur": 3499.7000694274902, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4997000694274902, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\NativeEventCalls.h" } },
- { "pid": 1, "tid": 54, "ts": 5243112.79296875, "dur": 3858.299970626831, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.858299970626831, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\ThreadPool.h" } },
- { "pid": 1, "tid": 54, "ts": 5246974.609375, "dur": 3462.8000259399414, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4628000259399414, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Timer.h" } },
- { "pid": 1, "tid": 54, "ts": 5250441.40625, "dur": 3422.3999977111816, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4223999977111816, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Activator.h" } },
- { "pid": 1, "tid": 54, "ts": 5253865.72265625, "dur": 3341.7999744415283, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.3417999744415283, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\ArgIterator.h" } },
- { "pid": 1, "tid": 54, "ts": 5257213.37890625, "dur": 3137.00008392334, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.13700008392334, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Buffer.h" } },
- { "pid": 1, "tid": 54, "ts": 5260352.5390625, "dur": 3184.0999126434326, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.1840999126434326, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Char.h" } },
- { "pid": 1, "tid": 54, "ts": 5263539.55078125, "dur": 3290.10009765625, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.29010009765625, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Convert.h" } },
- { "pid": 1, "tid": 54, "ts": 5266833.0078125, "dur": 3636.399984359741, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.636399984359741, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\CurrentSystemTimeZone.h" } },
- { "pid": 1, "tid": 54, "ts": 5270471.19140625, "dur": 3763.700008392334, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.763700008392334, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Delegate.h" } },
- { "pid": 1, "tid": 54, "ts": 5274237.3046875, "dur": 3754.199981689453, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.754199981689453, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Enum.h" } },
- { "pid": 1, "tid": 54, "ts": 5277993.1640625, "dur": 3301.7001152038574, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.3017001152038574, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Exception.h" } },
- { "pid": 1, "tid": 54, "ts": 5281297.8515625, "dur": 3797.100067138672, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.797100067138672, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\GC.h" } },
- { "pid": 1, "tid": 54, "ts": 5285098.6328125, "dur": 4268.499851226807, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.268499851226807, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\MonoCustomAttrs.h" } },
- { "pid": 1, "tid": 54, "ts": 5289371.58203125, "dur": 4070.199966430664, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.070199966430664, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Number.h" } },
- { "pid": 1, "tid": 54, "ts": 5293445.3125, "dur": 3971.1999893188477, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9711999893188477, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\RuntimeFieldHandle.h" } },
- { "pid": 1, "tid": 54, "ts": 5297420.41015625, "dur": 4156.899929046631, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.156899929046631, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\RuntimeMethodHandle.h" } },
- { "pid": 1, "tid": 54, "ts": 5301581.54296875, "dur": 4112.8997802734375, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.1128997802734375, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\RuntimeTypeHandle.h" } },
- { "pid": 1, "tid": 54, "ts": 5305699.70703125, "dur": 3666.8999195098877, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6668999195098877, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\TimeSpan.h" } },
- { "pid": 1, "tid": 54, "ts": 5309370.60546875, "dur": 3717.7000045776367, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7177000045776367, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\TimeZoneInfo.h" } },
- { "pid": 1, "tid": 54, "ts": 5313091.796875, "dur": 3951.4000415802, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9514000415802, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\ValueType.h" } },
- { "pid": 1, "tid": 54, "ts": 5317045.41015625, "dur": 3760.200023651123, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.760200023651123, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-api-functions.h" } },
- { "pid": 1, "tid": 54, "ts": 5320807.6171875, "dur": 3641.4999961853027, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6414999961853027, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-api.h" } },
- { "pid": 1, "tid": 54, "ts": 5324451.66015625, "dur": 3128.000020980835, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.128000020980835, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-benchmark-support.h" } },
- { "pid": 1, "tid": 54, "ts": 5327583.984375, "dur": 3984.2000007629395, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9842000007629395, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-class-internals.h" } },
- { "pid": 1, "tid": 54, "ts": 5331571.2890625, "dur": 4092.8001403808594, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.092800140380859, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-metadata.h" } },
- { "pid": 1, "tid": 54, "ts": 5335666.9921875, "dur": 14963.900566101074, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 14.963900566101074, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-normalization-tables.h" } },
- { "pid": 1, "tid": 54, "ts": 5350633.30078125, "dur": 3610.599994659424, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.610599994659424, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-runtime-stats.h" } },
- { "pid": 1, "tid": 54, "ts": 5354249.0234375, "dur": 3516.0000324249268, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5160000324249268, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-sanitizers.h" } },
- { "pid": 1, "tid": 54, "ts": 5357766.6015625, "dur": 3177.9000759124756, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.1779000759124756, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-tokentype.h" } },
- { "pid": 1, "tid": 54, "ts": 5360947.75390625, "dur": 5347.599983215332, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.347599983215332, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-vm-support.h" } },
- { "pid": 1, "tid": 54, "ts": 5366297.36328125, "dur": 3209.5999717712402, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.2095999717712402, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\FieldLayout.h" } },
- { "pid": 1, "tid": 54, "ts": 5369511.23046875, "dur": 3687.5, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6875, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\GenericMethod.h" } },
- { "pid": 1, "tid": 54, "ts": 5373200.1953125, "dur": 4154.300212860107, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.154300212860107, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericClassCompare.h" } },
- { "pid": 1, "tid": 54, "ts": 5377358.88671875, "dur": 3756.200075149536, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.756200075149536, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericClassHash.h" } },
- { "pid": 1, "tid": 54, "ts": 5381120.1171875, "dur": 4243.500232696533, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.243500232696533, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericInstCompare.h" } },
- { "pid": 1, "tid": 54, "ts": 5385369.62890625, "dur": 3995.1000213623047, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9951000213623047, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericInstHash.h" } },
- { "pid": 1, "tid": 54, "ts": 5389366.69921875, "dur": 3674.2000579833984, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6742000579833984, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppSignature.h" } },
- { "pid": 1, "tid": 54, "ts": 5393044.921875, "dur": 3718.1999683380127, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7181999683380127, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppTypeCompare.h" } },
- { "pid": 1, "tid": 54, "ts": 5396766.11328125, "dur": 3526.0000228881836, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5260000228881836, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono-structs.h" } },
- { "pid": 1, "tid": 54, "ts": 5400297.36328125, "dur": 3518.699884414673, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.518699884414673, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\ThreadPoolDataStructures.h" } },
- { "pid": 1, "tid": 54, "ts": 5403818.359375, "dur": 3496.0999488830566, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4960999488830566, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\ThreadPoolMonitorThread.h" } },
- { "pid": 1, "tid": 54, "ts": 5407317.87109375, "dur": 3761.699914932251, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.761699914932251, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\ThreadPoolWorkerThread.h" } },
- { "pid": 1, "tid": 54, "ts": 5411083.0078125, "dur": 3450.4001140594482, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4504001140594482, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\threadpool-ms-io.h" } },
- { "pid": 1, "tid": 54, "ts": 5414536.62109375, "dur": 3474.100112915039, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.474100112915039, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Assert.h" } },
- { "pid": 1, "tid": 54, "ts": 5418014.6484375, "dur": 3555.299997329712, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.555299997329712, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\COM.h" } },
- { "pid": 1, "tid": 54, "ts": 5421573.2421875, "dur": 3534.600019454956, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.534600019454956, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ConsoleExtension.h" } },
- { "pid": 1, "tid": 54, "ts": 5425110.83984375, "dur": 3421.4000701904297, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4214000701904297, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\CpuInfo.h" } },
- { "pid": 1, "tid": 54, "ts": 5428535.64453125, "dur": 3729.8998832702637, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7298998832702637, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Cryptography.h" } },
- { "pid": 1, "tid": 54, "ts": 5432271.97265625, "dur": 6816.999912261963, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.816999912261963, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Directory.h" } },
- { "pid": 1, "tid": 54, "ts": 5439090.8203125, "dur": 4094.099998474121, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.094099998474121, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Error.h" } },
- { "pid": 1, "tid": 54, "ts": 5443188.4765625, "dur": 4021.900177001953, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.021900177001953, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Event.h" } },
- { "pid": 1, "tid": 54, "ts": 5447213.37890625, "dur": 4002.699851989746, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.002699851989746, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\File.h" } },
- { "pid": 1, "tid": 54, "ts": 5451220.21484375, "dur": 3600.300073623657, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6003000736236572, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\SocketImpl.h" } },
- { "pid": 1, "tid": 54, "ts": 5454822.265625, "dur": 3115.299940109253, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.115299940109253, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Initialize.h" } },
- { "pid": 1, "tid": 54, "ts": 5457940.4296875, "dur": 3545.5000400543213, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5455000400543213, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\LibraryLoader.h" } },
- { "pid": 1, "tid": 54, "ts": 5461487.79296875, "dur": 3274.199962615967, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.274199962615967, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\Automation.h" } },
- { "pid": 1, "tid": 54, "ts": 5464765.13671875, "dur": 3602.60009765625, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.60260009765625, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\File.h" } },
- { "pid": 1, "tid": 54, "ts": 5468371.58203125, "dur": 3557.800054550171, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.557800054550171, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\MarshalAlloc.h" } },
- { "pid": 1, "tid": 54, "ts": 5471932.6171875, "dur": 3342.9999351501465, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.3429999351501465, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Memory.h" } },
- { "pid": 1, "tid": 54, "ts": 5475278.3203125, "dur": 3506.00004196167, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.50600004196167, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Messages.h" } },
- { "pid": 1, "tid": 54, "ts": 5478788.0859375, "dur": 3676.800012588501, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.676800012588501, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\NativeMethods.h" } },
- { "pid": 1, "tid": 54, "ts": 5482467.28515625, "dur": 3754.1000843048096, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7541000843048096, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Error.h" } },
- { "pid": 1, "tid": 54, "ts": 5486223.14453125, "dur": 3790.9998893737793, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7909998893737793, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\FileHandle.h" } },
- { "pid": 1, "tid": 54, "ts": 5490015.625, "dur": 3485.3999614715576, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4853999614715576, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\PosixHelpers.h" } },
- { "pid": 1, "tid": 54, "ts": 5493504.39453125, "dur": 3524.8000621795654, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5248000621795654, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\ReaderWriterLockImpl.h" } },
- { "pid": 1, "tid": 54, "ts": 5497031.73828125, "dur": 3651.599884033203, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.651599884033203, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\SocketImpl.h" } },
- { "pid": 1, "tid": 54, "ts": 5500685.546875, "dur": 4231.99987411499, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.23199987411499, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\ThreadLocalValueImpl.h" } },
- { "pid": 1, "tid": 54, "ts": 5504921.38671875, "dur": 3664.2000675201416, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6642000675201416, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Process.h" } },
- { "pid": 1, "tid": 54, "ts": 5508589.35546875, "dur": 3748.800039291382, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.748800039291382, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Semaphore.h" } },
- { "pid": 1, "tid": 54, "ts": 5512341.30859375, "dur": 3453.399896621704, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.453399896621704, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\SocketBridge.h" } },
- { "pid": 1, "tid": 54, "ts": 5515798.33984375, "dur": 3914.9999618530273, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9149999618530273, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\StackTrace.h" } },
- { "pid": 1, "tid": 54, "ts": 5519716.796875, "dur": 3697.999954223633, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.697999954223633, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\SynchronizationContext.h" } },
- { "pid": 1, "tid": 54, "ts": 5523418.45703125, "dur": 4705.900192260742, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.705900192260742, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Thread.h" } },
- { "pid": 1, "tid": 54, "ts": 5528126.953125, "dur": 3587.199926376343, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5871999263763428, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Time.h" } },
- { "pid": 1, "tid": 54, "ts": 5531718.26171875, "dur": 3812.0999336242676, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8120999336242676, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\TimeZoneInfo.h" } },
- { "pid": 1, "tid": 54, "ts": 5535534.66796875, "dur": 3293.9999103546143, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.2939999103546143, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\ConditionVariableImpl.h" } },
- { "pid": 1, "tid": 54, "ts": 5538831.0546875, "dur": 3493.299961090088, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.493299961090088, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\MutexImpl.h" } },
- { "pid": 1, "tid": 54, "ts": 5542327.63671875, "dur": 3624.300003051758, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.624300003051758, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\ReaderWriterLockImpl.h" } },
- { "pid": 1, "tid": 54, "ts": 5545955.078125, "dur": 3713.5000228881836, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7135000228881836, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\SocketImpl.h" } },
- { "pid": 1, "tid": 54, "ts": 5549671.38671875, "dur": 4242.000102996826, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.242000102996826, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\ThreadLocalValueImpl.h" } },
- { "pid": 1, "tid": 54, "ts": 5553915.52734375, "dur": 3497.2000122070312, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4972000122070312, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\BrokeredFileSystem.h" } },
- { "pid": 1, "tid": 54, "ts": 5557414.55078125, "dur": 3402.899980545044, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.402899980545044, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\SynchronousOperation.h" } },
- { "pid": 1, "tid": 54, "ts": 5560821.77734375, "dur": 4181.399822235107, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.181399822235107, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Win32ApiSharedEmulation.h" } },
- { "pid": 1, "tid": 54, "ts": 5565004.8828125, "dur": 4240.3998374938965, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.2403998374938965, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WindowsRuntime.h" } },
- { "pid": 1, "tid": 54, "ts": 5569249.0234375, "dur": 4530.4999351501465, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.5304999351501465, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Allocator.h" } },
- { "pid": 1, "tid": 54, "ts": 5573781.73828125, "dur": 3692.1000480651855, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6921000480651855, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\ConditionVariable-c-api.h" } },
- { "pid": 1, "tid": 54, "ts": 5577477.05078125, "dur": 4107.699871063232, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.107699871063232, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Console-c-api.h" } },
- { "pid": 1, "tid": 54, "ts": 5581588.8671875, "dur": 4078.89986038208, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.07889986038208, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Cryptography-c-api.h" } },
- { "pid": 1, "tid": 54, "ts": 5585669.921875, "dur": 3736.3998889923096, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7363998889923096, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Environment-c-api.h" } },
- { "pid": 1, "tid": 54, "ts": 5589408.203125, "dur": 3527.600049972534, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.527600049972534, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Event-c-api.h" } },
- { "pid": 1, "tid": 54, "ts": 5592941.89453125, "dur": 3610.8999252319336, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6108999252319336, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\File-c-api.h" } },
- { "pid": 1, "tid": 54, "ts": 5596554.6875, "dur": 3459.399938583374, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.459399938583374, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Locale-c-api.h" } },
- { "pid": 1, "tid": 54, "ts": 5600017.578125, "dur": 3712.199926376343, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7121999263763428, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Memory-c-api.h" } },
- { "pid": 1, "tid": 54, "ts": 5603731.4453125, "dur": 3368.799924850464, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.368799924850464, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Mutex-c-api.h" } },
- { "pid": 1, "tid": 54, "ts": 5607105.95703125, "dur": 3408.2000255584717, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4082000255584717, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\OSGlobalEnums.h" } },
- { "pid": 1, "tid": 54, "ts": 5610515.13671875, "dur": 3254.699945449829, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.254699945449829, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Process-c-api.h" } },
- { "pid": 1, "tid": 54, "ts": 5613771.97265625, "dur": 3735.8999252319336, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7358999252319336, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Socket-c-api.h" } },
- { "pid": 1, "tid": 54, "ts": 5617511.23046875, "dur": 3606.800079345703, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.606800079345703, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Thread-c-api.h" } },
- { "pid": 1, "tid": 54, "ts": 5621123.53515625, "dur": 3692.3000812530518, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6923000812530518, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\ThreadLocalValue-c-api.h" } },
- { "pid": 1, "tid": 54, "ts": 5624817.87109375, "dur": 5007.500171661377, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.007500171661377, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\TimeZoneInfo-c-api.h" } },
- { "pid": 1, "tid": 54, "ts": 5629828.125, "dur": 3877.000093460083, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.877000093460083, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\il2cpp-config-api-platforms.h" } },
- { "pid": 1, "tid": 54, "ts": 5633708.984375, "dur": 3265.7999992370605, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.2657999992370605, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\PathHelper.h" } },
- { "pid": 1, "tid": 54, "ts": 5636979.4921875, "dur": 3053.299903869629, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.053299903869629, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\plugin\\plugin.h" } },
- { "pid": 1, "tid": 54, "ts": 5640036.1328125, "dur": 4397.299766540527, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.397299766540527, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Collections.h" } },
- { "pid": 1, "tid": 54, "ts": 5644435.05859375, "dur": 3472.899913787842, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.472899913787842, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Exception.h" } },
- { "pid": 1, "tid": 54, "ts": 5647911.1328125, "dur": 3824.899911880493, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.824899911880493, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\ExceptionSupportStack.h" } },
- { "pid": 1, "tid": 54, "ts": 5651740.234375, "dur": 3625.499963760376, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.625499963760376, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\HashUtils.h" } },
- { "pid": 1, "tid": 54, "ts": 5655368.1640625, "dur": 3464.400053024292, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.464400053024292, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Il2CppHashMap.h" } },
- { "pid": 1, "tid": 54, "ts": 5658835.9375, "dur": 3655.6999683380127, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6556999683380127, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Il2CppHashSet.h" } },
- { "pid": 1, "tid": 54, "ts": 5662494.140625, "dur": 3705.4998874664307, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7054998874664307, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MarshalingUtils.h" } },
- { "pid": 1, "tid": 54, "ts": 5666202.63671875, "dur": 3445.8999633789062, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4458999633789062, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Memory.h" } },
- { "pid": 1, "tid": 54, "ts": 5669651.3671875, "dur": 3536.2000465393066, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5362000465393066, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MemoryMappedFile.h" } },
- { "pid": 1, "tid": 54, "ts": 5673190.4296875, "dur": 3694.9000358581543, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6949000358581543, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MemoryUtils.h" } },
- { "pid": 1, "tid": 54, "ts": 5676887.20703125, "dur": 3613.6999130249023, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6136999130249023, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\NonCopyable.h" } },
- { "pid": 1, "tid": 54, "ts": 5680504.8828125, "dur": 3725.1999378204346, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7251999378204346, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Output.h" } },
- { "pid": 1, "tid": 54, "ts": 5684233.3984375, "dur": 3561.7001056671143, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5617001056671143, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Runtime.h" } },
- { "pid": 1, "tid": 54, "ts": 5687798.33984375, "dur": 5073.400020599365, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.073400020599365, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\StringView.h" } },
- { "pid": 1, "tid": 54, "ts": 5692873.53515625, "dur": 3667.2000885009766, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6672000885009766, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\ThreadSafeFreeList.h" } },
- { "pid": 1, "tid": 54, "ts": 5696542.48046875, "dur": 3255.8999061584473, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.2558999061584473, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\sha1.h" } },
- { "pid": 1, "tid": 54, "ts": 5699802.734375, "dur": 4707.399845123291, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.707399845123291, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\utf8-cpp\\source\\utf8.h" } },
- { "pid": 1, "tid": 54, "ts": 5704514.16015625, "dur": 4100.599765777588, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.100599765777588, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\utf8-cpp\\source\\utf8\\core.h" } },
- { "pid": 1, "tid": 54, "ts": 5708617.67578125, "dur": 3197.9000568389893, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.1979000568389893, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\BlobReader.h" } },
- { "pid": 1, "tid": 54, "ts": 5711817.3828125, "dur": 3659.1999530792236, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6591999530792236, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\NativeDelegateMethodCache.h" } },
- { "pid": 1, "tid": 54, "ts": 5715479.4921875, "dur": 3627.3999214172363, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6273999214172363, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\VmStringUtils.h" } },
- { "pid": 1, "tid": 54, "ts": 5719108.3984375, "dur": 3627.5999546051025, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6275999546051025, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\icalls\\mscorlib\\System\\Math.h" } },
- { "pid": 1, "tid": 54, "ts": 5722739.74609375, "dur": 4143.499851226807, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.143499851226807, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ActivationFactoryBase.h" } },
- { "pid": 1, "tid": 54, "ts": 5726885.25390625, "dur": 3551.800012588501, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.551800012588501, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\AssemblyName.h" } },
- { "pid": 1, "tid": 54, "ts": 5730439.453125, "dur": 3737.799882888794, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.737799882888794, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\CCWBase.h" } },
- { "pid": 1, "tid": 54, "ts": 5734181.15234375, "dur": 3712.899923324585, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.712899923324585, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\COM.h" } },
- { "pid": 1, "tid": 54, "ts": 5737895.99609375, "dur": 3974.299907684326, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.974299907684326, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Class.h" } },
- { "pid": 1, "tid": 54, "ts": 5741873.53515625, "dur": 3831.7999839782715, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8317999839782715, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ClassInlines.h" } },
- { "pid": 1, "tid": 54, "ts": 5745707.03125, "dur": 3487.299919128418, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.487299919128418, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Enum.h" } },
- { "pid": 1, "tid": 54, "ts": 5749196.77734375, "dur": 3931.2000274658203, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9312000274658203, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Exception.h" } },
- { "pid": 1, "tid": 54, "ts": 5753130.859375, "dur": 3665.10009765625, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.66510009765625, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Field.h" } },
- { "pid": 1, "tid": 54, "ts": 5756800.29296875, "dur": 3971.1999893188477, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9711999893188477, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\GenericContainer.h" } },
- { "pid": 1, "tid": 54, "ts": 5760775.390625, "dur": 3929.8999309539795, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9298999309539795, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\GlobalMetadataFileInternals.h" } },
- { "pid": 1, "tid": 54, "ts": 5764706.54296875, "dur": 3859.6999645233154, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8596999645233154, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\LastError.h" } },
- { "pid": 1, "tid": 54, "ts": 5768569.82421875, "dur": 3914.9999618530273, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9149999618530273, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Liveness.h" } },
- { "pid": 1, "tid": 54, "ts": 5772487.3046875, "dur": 3687.4001026153564, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6874001026153564, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MetadataAlloc.h" } },
- { "pid": 1, "tid": 54, "ts": 5776176.7578125, "dur": 3586.899995803833, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.586899995803833, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MetadataLoader.h" } },
- { "pid": 1, "tid": 54, "ts": 5779767.578125, "dur": 4232.500076293945, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.232500076293945, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MetadataLock.h" } },
- { "pid": 1, "tid": 54, "ts": 5784003.90625, "dur": 4198.500156402588, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.198500156402588, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Module.h" } },
- { "pid": 1, "tid": 54, "ts": 5788206.0546875, "dur": 3975.8999347686768, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9758999347686768, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\NonCachedCCWBase.h" } },
- { "pid": 1, "tid": 54, "ts": 5792184.08203125, "dur": 3500.0998973846436, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5000998973846436, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Path.h" } },
- { "pid": 1, "tid": 54, "ts": 5795686.5234375, "dur": 3552.7000427246094, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5527000427246094, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Profiler.h" } },
- { "pid": 1, "tid": 54, "ts": 5799243.1640625, "dur": 3787.600040435791, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.787600040435791, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Property.h" } },
- { "pid": 1, "tid": 54, "ts": 5803034.1796875, "dur": 3408.6999893188477, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4086999893188477, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Random.h" } },
- { "pid": 1, "tid": 54, "ts": 5806447.75390625, "dur": 3964.6999835968018, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9646999835968018, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Runtime.h" } },
- { "pid": 1, "tid": 54, "ts": 5810416.015625, "dur": 3577.1000385284424, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5771000385284424, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\StackTrace.h" } },
- { "pid": 1, "tid": 54, "ts": 5813996.58203125, "dur": 4096.000194549561, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.0960001945495605, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Thread.h" } },
- { "pid": 1, "tid": 54, "ts": 5818095.21484375, "dur": 4248.799800872803, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.248799800872803, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Type.h" } },
- { "pid": 1, "tid": 54, "ts": 5822346.19140625, "dur": 3564.5999908447266, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5645999908447266, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\WeakReference.h" } },
- { "pid": 1, "tid": 54, "ts": 5825914.55078125, "dur": 3894.5999145507812, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8945999145507812, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\WindowsRuntime.h" } },
- { "pid": 1, "tid": 69, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 69, "ts": 5833729.00390625, "dur": 279054.01611328125, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 279.05401611328125, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc" } },
- { "pid": 1, "tid": 69, "ts": 5833741.69921875, "dur": 6386.7998123168945, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 6.3867998123168945, "detail": ".cpp E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc" } },
- { "pid": 1, "tid": 69, "ts": 5840137.20703125, "dur": 272642.08984375, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 272.64208984375, "detail": ".c E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc" } },
- { "pid": 1, "tid": 70, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 70, "ts": 5833894.04296875, "dur": 22692.09861755371, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 22.69209861755371, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen" } },
- { "pid": 1, "tid": 70, "ts": 5833904.296875, "dur": 20645.299911499023, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 20.645299911499023, "detail": ".cpp E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen" } },
- { "pid": 1, "tid": 70, "ts": 5854560.05859375, "dur": 2023.4999656677246, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 2.0234999656677246, "detail": ".c E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen" } },
- { "pid": 1, "tid": 70, "ts": 5856588.37890625, "dur": 15516.400337219238, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 15.516400337219238, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\plugin" } },
- { "pid": 1, "tid": 70, "ts": 5856596.6796875, "dur": 7544.7998046875, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 7.5447998046875, "detail": ".cpp E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\plugin" } },
- { "pid": 1, "tid": 70, "ts": 5864159.66796875, "dur": 7942.500114440918, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 7.942500114440918, "detail": ".c E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\plugin" } },
- { "pid": 1, "tid": 70, "ts": 5872106.93359375, "dur": 219553.69567871094, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 219.55369567871094, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm" } },
- { "pid": 1, "tid": 70, "ts": 5872114.74609375, "dur": 214063.29345703125, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 214.06329345703125, "detail": ".cpp E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm" } },
- { "pid": 1, "tid": 70, "ts": 6086187.01171875, "dur": 5462.900161743164, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 5.462900161743164, "detail": ".c E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm" } },
- { "pid": 1, "tid": 71, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 71, "ts": 5833973.6328125, "dur": 29270.597457885742, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 29.270597457885742, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\debugger" } },
- { "pid": 1, "tid": 71, "ts": 5833980.95703125, "dur": 8680.299758911133, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 8.680299758911133, "detail": ".cpp E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\debugger" } },
- { "pid": 1, "tid": 71, "ts": 5842668.9453125, "dur": 20572.498321533203, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 20.572498321533203, "detail": ".c E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\debugger" } },
- { "pid": 1, "tid": 71, "ts": 5863246.09375, "dur": 81529.40368652344, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 81.52940368652344, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils" } },
- { "pid": 1, "tid": 71, "ts": 5863254.8828125, "dur": 78487.3046875, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 78.4873046875, "detail": ".cpp E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils" } },
- { "pid": 1, "tid": 71, "ts": 5941854.00390625, "dur": 2916.8999195098877, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 2.9168999195098877, "detail": ".c E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils" } },
- { "pid": 1, "tid": 72, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 72, "ts": 5834077.63671875, "dur": 43872.89810180664, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 43.87289810180664, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc" } },
- { "pid": 1, "tid": 72, "ts": 5834085.44921875, "dur": 33738.70086669922, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 33.73870086669922, "detail": ".cpp E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc" } },
- { "pid": 1, "tid": 72, "ts": 5867833.0078125, "dur": 10114.700317382812, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 10.114700317382812, "detail": ".c E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc" } },
- { "pid": 1, "tid": 72, "ts": 5877953.125, "dur": 46939.10217285156, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 46.93910217285156, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils" } },
- { "pid": 1, "tid": 72, "ts": 5877960.9375, "dur": 42077.20184326172, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 42.07720184326172, "detail": ".cpp E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils" } },
- { "pid": 1, "tid": 72, "ts": 5920046.875, "dur": 4831.900119781494, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 4.831900119781494, "detail": ".c E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils" } },
- { "pid": 1, "tid": 73, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 73, "ts": 5834174.31640625, "dur": 437107.91015625, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 437.10791015625, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls" } },
- { "pid": 1, "tid": 73, "ts": 5834188.96484375, "dur": 435021.728515625, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 435.021728515625, "detail": ".cpp E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls" } },
- { "pid": 1, "tid": 73, "ts": 6269217.7734375, "dur": 2054.1999340057373, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 2.0541999340057373, "detail": ".c E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls" } },
- { "pid": 1, "tid": 77, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 77, "ts": 5834202.63671875, "dur": 8341.500282287598, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.341500282287598, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-common.cpp" } },
- { "pid": 1, "tid": 77, "ts": 5842547.36328125, "dur": 11444.499969482422, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.444499969482422, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-tiny.cpp" } },
- { "pid": 1, "tid": 79, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 79, "ts": 5834240.234375, "dur": 8151.100158691406, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.151100158691406, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\debugger\\il2cpp-stubs.cpp" } },
- { "pid": 1, "tid": 74, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 74, "ts": 5834387.20703125, "dur": 90533.40148925781, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 90.53340148925781, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata" } },
- { "pid": 1, "tid": 74, "ts": 5834395.01953125, "dur": 85705.2993774414, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 85.7052993774414, "detail": ".cpp E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata" } },
- { "pid": 1, "tid": 74, "ts": 5920106.4453125, "dur": 4811.200141906738, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 4.811200141906738, "detail": ".c E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata" } },
- { "pid": 1, "tid": 78, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 78, "ts": 5834485.83984375, "dur": 11174.699783325195, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.174699783325195, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-il2cpp.cpp" } },
- { "pid": 1, "tid": 81, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 81, "ts": 5834575.1953125, "dur": 7710.599899291992, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.710599899291992, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\BoehmGC.cpp" } },
- { "pid": 1, "tid": 81, "ts": 5842289.0625, "dur": 7199.20015335083, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.19920015335083, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\GarbageCollector.cpp" } },
- { "pid": 1, "tid": 81, "ts": 5849490.72265625, "dur": 6758.200168609619, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.758200168609619, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\WriteBarrier.cpp" } },
- { "pid": 1, "tid": 81, "ts": 5856251.953125, "dur": 9169.099807739258, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.169099807739258, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\WriteBarrierValidation.cpp" } },
- { "pid": 1, "tid": 75, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 75, "ts": 5834622.0703125, "dur": 52835.601806640625, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 52.835601806640625, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono" } },
- { "pid": 1, "tid": 75, "ts": 5834632.8125, "dur": 41985.599517822266, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 41.985599517822266, "detail": ".cpp E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono" } },
- { "pid": 1, "tid": 75, "ts": 5876631.8359375, "dur": 10822.799682617188, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 10.822799682617188, "detail": ".c E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono" } },
- { "pid": 1, "tid": 82, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 82, "ts": 5834727.05078125, "dur": 11002.20012664795, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.00220012664795, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\GCHandle.cpp" } },
- { "pid": 1, "tid": 82, "ts": 5845731.93359375, "dur": 21319.698333740234, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 21.319698333740234, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\NullGC.cpp" } },
- { "pid": 1, "tid": 83, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 83, "ts": 5835222.16796875, "dur": 11931.599617004395, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.931599617004395, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\ArrayMetadata.cpp" } },
- { "pid": 1, "tid": 83, "ts": 5847156.25, "dur": 13733.500480651855, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 13.733500480651855, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\GenericMethod.cpp" } },
- { "pid": 1, "tid": 83, "ts": 5860893.06640625, "dur": 11184.700012207031, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.184700012207031, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericClassHash.cpp" } },
- { "pid": 1, "tid": 83, "ts": 5872080.56640625, "dur": 17452.600479125977, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 17.452600479125977, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericInstCompare.cpp" } },
- { "pid": 1, "tid": 83, "ts": 5889535.64453125, "dur": 12456.999778747559, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.456999778747559, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericMethodHash.cpp" } },
- { "pid": 1, "tid": 83, "ts": 5901995.60546875, "dur": 17853.200912475586, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 17.853200912475586, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppTypeCompare.cpp" } },
- { "pid": 1, "tid": 87, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 87, "ts": 5835238.76953125, "dur": 10192.099571228027, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.192099571228027, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\MonoPosixHelper.cpp" } },
- { "pid": 1, "tid": 87, "ts": 5845433.59375, "dur": 13912.799835205078, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 13.912799835205078, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\ThreadPoolWorkerThread.cpp" } },
- { "pid": 1, "tid": 87, "ts": 5859349.12109375, "dur": 16826.200485229492, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 16.826200485229492, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\threadpool-ms.cpp" } },
- { "pid": 1, "tid": 76, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 76, "ts": 5836034.66796875, "dur": 720423.0346679688, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 720.4230346679688, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os" } },
- { "pid": 1, "tid": 76, "ts": 5836047.36328125, "dur": 719562.5, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 719.5625, "detail": ".cpp E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os" } },
- { "pid": 1, "tid": 76, "ts": 6555616.69921875, "dur": 832.4999809265137, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 0.8324999809265137, "detail": ".c E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os" } },
- { "pid": 1, "tid": 88, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 88, "ts": 5838678.22265625, "dur": 7227.30016708374, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.22730016708374, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\ThreadPoolMonitorThread.cpp" } },
- { "pid": 1, "tid": 88, "ts": 5845907.71484375, "dur": 7236.899852752686, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.2368998527526855, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\threadpool-ms-io-poll.cpp" } },
- { "pid": 1, "tid": 88, "ts": 5853147.94921875, "dur": 9961.899757385254, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.961899757385254, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\threadpool-ms-io.cpp" } },
- { "pid": 1, "tid": 84, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 84, "ts": 5838833.49609375, "dur": 7975.299835205078, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.975299835205078, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\FieldLayout.cpp" } },
- { "pid": 1, "tid": 84, "ts": 5846811.5234375, "dur": 6493.70002746582, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.49370002746582, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\GenericMetadata.cpp" } },
- { "pid": 1, "tid": 84, "ts": 5853308.10546875, "dur": 5883.500099182129, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.883500099182129, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\GenericSharing.cpp" } },
- { "pid": 1, "tid": 84, "ts": 5859194.3359375, "dur": 6887.599945068359, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.887599945068359, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericClassCompare.cpp" } },
- { "pid": 1, "tid": 84, "ts": 5866084.9609375, "dur": 5415.40002822876, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.41540002822876, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericContextCompare.cpp" } },
- { "pid": 1, "tid": 84, "ts": 5871504.8828125, "dur": 6548.299789428711, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.548299789428711, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericContextHash.cpp" } },
- { "pid": 1, "tid": 84, "ts": 5878056.15234375, "dur": 8469.599723815918, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.469599723815918, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericInstHash.cpp" } },
- { "pid": 1, "tid": 84, "ts": 5886528.3203125, "dur": 8814.200401306152, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.814200401306152, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericMethodCompare.cpp" } },
- { "pid": 1, "tid": 84, "ts": 5895345.703125, "dur": 9558.799743652344, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.558799743652344, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppSignature.cpp" } },
- { "pid": 1, "tid": 84, "ts": 5904910.15625, "dur": 8810.999870300293, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.810999870300293, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppTypeHash.cpp" } },
- { "pid": 1, "tid": 89, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 89, "ts": 5839226.5625, "dur": 7132.199764251709, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.132199764251709, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Android\\ConsoleExtension.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5846361.81640625, "dur": 6652.8000831604, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.6528000831604, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Android\\Locale.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5853018.06640625, "dur": 6655.600070953369, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.655600070953369, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Android\\TimeZoneInfo.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5859675.78125, "dur": 6634.500026702881, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.634500026702881, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\CrashHelpers.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5866312.5, "dur": 5534.800052642822, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.534800052642822, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Error.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5871850.09765625, "dur": 6476.399898529053, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.476399898529053, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\Assert.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5878329.1015625, "dur": 6948.500156402588, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.948500156402588, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\CpuInfo.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5885281.73828125, "dur": 7134.799957275391, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.134799957275391, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\Debug.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5892429.19921875, "dur": 5871.9000816345215, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.8719000816345215, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\Environment.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5898305.6640625, "dur": 8012.999534606934, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.012999534606934, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\Handle.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5906321.2890625, "dur": 9424.500465393066, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.424500465393066, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\LibraryLoader.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5915748.53515625, "dur": 6345.099925994873, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.345099925994873, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\MemoryMappedFile.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5922097.65625, "dur": 5806.399822235107, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.806399822235107, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\SocketBridge.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5927910.15625, "dur": 6408.500194549561, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.4085001945495605, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\SystemCertificates.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5934323.2421875, "dur": 7381.999969482422, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.381999969482422, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\WindowsRuntime.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5941710.44921875, "dur": 7750.5998611450195, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.7505998611450195, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\LibraryLoader.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5949465.33203125, "dur": 6578.299999237061, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.5782999992370605, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\Debug.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5956077.1484375, "dur": 7596.799850463867, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.596799850463867, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\File.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5963678.7109375, "dur": 9660.499572753906, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.660499572753906, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\Lifecycle.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5973342.7734375, "dur": 7035.999774932861, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.035999774932861, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\TimeZoneInfo.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5980381.8359375, "dur": 7883.900165557861, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.883900165557861, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Mutex.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5988274.4140625, "dur": 10330.699920654297, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.330699920654297, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\OSX\\Process.cpp" } },
- { "pid": 1, "tid": 89, "ts": 5998607.91015625, "dur": 6878.799915313721, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.878799915313721, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Path.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6005489.74609375, "dur": 6215.700149536133, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.215700149536133, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Console.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6011708.984375, "dur": 7078.000068664551, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.078000068664551, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\CrashHelpers.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6018795.8984375, "dur": 6632.800102233887, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.632800102233887, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Directory.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6025432.6171875, "dur": 6581.500053405762, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.581500053405762, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Environment.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6032017.578125, "dur": 6039.000034332275, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.039000034332275, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\EventImpl.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6038061.5234375, "dur": 5911.099910736084, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.911099910736084, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\FileSystemWatcher.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6043976.07421875, "dur": 5249.599933624268, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.249599933624268, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\LastError.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6049230.46875, "dur": 7046.999931335449, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.046999931335449, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Locale.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6056280.76171875, "dur": 4952.700138092041, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.952700138092041, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Memory.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6061237.3046875, "dur": 299178.4973144531, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 299.1784973144531, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\MutexImpl.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6360422.8515625, "dur": 11184.800148010254, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.184800148010254, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\NativeMethods.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6371615.72265625, "dur": 12207.099914550781, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.207099914550781, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Process.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6383831.0546875, "dur": 11968.099594116211, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.968099594116211, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\SocketImpl.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6395802.734375, "dur": 5240.699768066406, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.240699768066406, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\SystemCertificates.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6401045.8984375, "dur": 3970.9999561309814, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9709999561309814, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Time.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6405020.5078125, "dur": 3861.500024795532, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8615000247955322, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\TimeZone.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6408884.765625, "dur": 4845.799922943115, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.845799922943115, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\WindowsRuntime.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6413733.88671875, "dur": 3995.500087738037, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.995500087738037, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Cryptography.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6417732.91015625, "dur": 4224.800109863281, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.224800109863281, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\File.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6421960.44921875, "dur": 3882.4000358581543, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8824000358581543, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Locale.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6425845.21484375, "dur": 3954.400062561035, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.954400062561035, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Win32ApiSharedEmulation.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6429801.7578125, "dur": 6276.000022888184, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.276000022888184, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WindowsGames\\Win32ApiWindowsGamesEmulation.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6436082.03125, "dur": 5119.999885559082, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.119999885559082, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Allocator.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6441203.61328125, "dur": 4499.300003051758, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.499300003051758, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Console.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6445704.58984375, "dur": 4084.4998359680176, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.084499835968018, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Cryptography.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6449791.9921875, "dur": 4246.9000816345215, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.2469000816345215, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Debug.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6454041.9921875, "dur": 4073.500156402588, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.073500156402588, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Directory.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6458117.1875, "dur": 3385.499954223633, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.385499954223633, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Event.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6461505.37109375, "dur": 3972.1999168395996, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9721999168395996, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\File.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6465479.00390625, "dur": 4035.600185394287, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.035600185394287, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Locale.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6469519.04296875, "dur": 4405.399799346924, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.405399799346924, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Memory.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6473925.29296875, "dur": 4081.5000534057617, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.081500053405762, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Mutex.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6478011.23046875, "dur": 3801.0001182556152, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8010001182556152, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\NativeMethods.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6481815.4296875, "dur": 4416.900157928467, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.416900157928467, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Process.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6486234.375, "dur": 3773.9999294281006, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7739999294281006, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\SystemCertificates.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6490011.23046875, "dur": 3674.2000579833984, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6742000579833984, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Thread.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6493687.5, "dur": 3784.600019454956, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.784600019454956, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\TimeZone.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6497479.00390625, "dur": 4520.599842071533, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.520599842071533, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\TimeZoneInfo.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6502002.9296875, "dur": 4114.200115203857, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.114200115203857, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\ConditionVariableTests.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6506121.09375, "dur": 5485.400199890137, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.485400199890137, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\CpuInfoTests.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6511608.3984375, "dur": 5637.899875640869, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.637899875640869, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\DirectoryTests.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6517253.90625, "dur": 4158.100128173828, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.158100128173828, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\ErrorTests.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6521415.52734375, "dur": 4560.699939727783, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.560699939727783, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\FileTests.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6525979.4921875, "dur": 3749.3999004364014, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7493999004364014, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\LocaleTests.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6529732.421875, "dur": 4139.800071716309, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.139800071716309, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\MemoryMappedFileTests.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6533876.953125, "dur": 3603.6999225616455, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6036999225616455, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\MutexTests.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6537482.421875, "dur": 3684.6001148223877, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6846001148223877, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\PathTests.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6541168.9453125, "dur": 3537.4999046325684, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5374999046325684, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\SemaphoreTests.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6544708.49609375, "dur": 3738.300085067749, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.738300085067749, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\ThreadLocalValueTests.cpp" } },
- { "pid": 1, "tid": 89, "ts": 6548449.70703125, "dur": 3719.399929046631, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.719399929046631, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\ThreadTests.cpp" } },
- { "pid": 1, "tid": 90, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 90, "ts": 5842592.28515625, "dur": 6673.999786376953, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.673999786376953, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Android\\Initialize.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5849270.5078125, "dur": 8293.399810791016, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.293399810791016, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Android\\StackTrace.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5857566.89453125, "dur": 5612.199783325195, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.612199783325195, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ConditionVariable.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5863183.10546875, "dur": 5585.100173950195, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.585100173950195, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Emscripten\\SocketBridge.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5868770.99609375, "dur": 6314.799785614014, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.314799785614014, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Event.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5875089.35546875, "dur": 8028.400421142578, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.028400421142578, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\COM.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5883121.09375, "dur": 9575.699806213379, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.575699806213379, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\CrashHelpers.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5892699.70703125, "dur": 6697.700023651123, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.697700023651123, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\File.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5899400.87890625, "dur": 7461.699962615967, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.461699962615967, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\Initialize.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5906865.234375, "dur": 10158.300399780273, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.158300399780273, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\MarshalStringAlloc.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5917025.87890625, "dur": 6168.300151824951, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.168300151824951, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\Process.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5923199.21875, "dur": 8326.000213623047, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.326000213623047, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\SocketImpl.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5931528.80859375, "dur": 6652.299880981445, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.652299880981445, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\TimeZoneInfo.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5938184.5703125, "dur": 6906.300067901611, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.906300067901611, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Image.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5945094.7265625, "dur": 6154.200077056885, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.154200077056885, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\Automation.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5951251.46484375, "dur": 6414.899826049805, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.414899826049805, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\Environment.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5957670.41015625, "dur": 6011.499881744385, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.011499881744385, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\Initialize.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5963688.96484375, "dur": 8828.700065612793, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.828700065612793, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\Process.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5972521.97265625, "dur": 7243.70002746582, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.24370002746582, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\StackTrace.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5979768.5546875, "dur": 7251.200199127197, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.251200199127197, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Messages.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5987022.4609375, "dur": 7853.799819946289, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.853799819946289, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\OSX\\Image.cpp" } },
- { "pid": 1, "tid": 90, "ts": 5994883.7890625, "dur": 6221.399784088135, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.221399784088135, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\OSX\\SystemCertificates.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6001108.3984375, "dur": 5431.399822235107, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.431399822235107, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\ConditionVariableImpl.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6006542.96875, "dur": 6729.400157928467, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.729400157928467, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\CpuInfo.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6013275.87890625, "dur": 6904.799938201904, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.904799938201904, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Cryptography.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6020187.98828125, "dur": 6222.499847412109, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.222499847412109, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Encoding.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6026414.0625, "dur": 8073.699951171875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.073699951171875, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Error.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6034492.1875, "dur": 7565.299987792969, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.565299987792969, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\File.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6042061.03515625, "dur": 5487.199783325195, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.487199783325195, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Image.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6047556.15234375, "dur": 7253.300189971924, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.253300189971924, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\LibraryLoader.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6054814.94140625, "dur": 5097.499847412109, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.097499847412109, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\MarshalAlloc.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6059915.0390625, "dur": 6239.3999099731445, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.2393999099731445, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\MemoryMappedFile.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6066158.69140625, "dur": 5008.200168609619, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.008200168609619, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\NativeMethods.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6071169.43359375, "dur": 5423.2001304626465, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.4232001304626465, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Path.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6076595.21484375, "dur": 5833.399772644043, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.833399772644043, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\PosixHelpers.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6082431.640625, "dur": 6106.99987411499, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.10699987411499, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\PosixWaitObject.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6088541.9921875, "dur": 4977.200031280518, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.977200031280518, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Process.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6093520.99609375, "dur": 4341.300010681152, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.341300010681152, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\SemaphoreImpl.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6097864.74609375, "dur": 5455.299854278564, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.4552998542785645, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\SocketImpl.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6103323.2421875, "dur": 4181.399822235107, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.181399822235107, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\StackTrace.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6107506.34765625, "dur": 4215.400218963623, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.215400218963623, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\SystemCertificates.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6111725.5859375, "dur": 4413.49983215332, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.41349983215332, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\ThreadImpl.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6116141.6015625, "dur": 3978.1999588012695, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9781999588012695, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Time.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6120122.0703125, "dur": 4092.0000076293945, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.0920000076293945, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\TimeZone.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6124215.8203125, "dur": 3904.599905014038, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.904599905014038, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ReaderWriterLock.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6128124.0234375, "dur": 4277.200222015381, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.277200222015381, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Semaphore.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6132402.83203125, "dur": 3953.2999992370605, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9532999992370605, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Socket.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6136358.3984375, "dur": 3547.8999614715576, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5478999614715576, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\StackTrace.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6139910.15625, "dur": 4074.1000175476074, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.074100017547607, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Std\\ThreadImpl.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6143987.79296875, "dur": 4297.800064086914, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.297800064086914, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Thread.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6148287.109375, "dur": 3469.599962234497, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.469599962234497, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Assert.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6151760.25390625, "dur": 3964.7998809814453, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9647998809814453, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\COM.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6155728.515625, "dur": 4114.799976348877, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.114799976348877, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\ConditionVariableImpl.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6159845.703125, "dur": 4314.499855041504, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.314499855041504, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Console.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6164163.57421875, "dur": 4195.799827575684, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.195799827575684, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\CpuInfo.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6168361.81640625, "dur": 4208.499908447266, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.208499908447266, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\CrashHelpers.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6172572.265625, "dur": 3914.7000312805176, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9147000312805176, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Cryptography.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6176489.2578125, "dur": 3643.699884414673, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.643699884414673, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Debug.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6180136.71875, "dur": 4139.500141143799, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.139500141143799, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Directory.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6184277.83203125, "dur": 4034.9998474121094, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.034999847412109, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\DllMain.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6188318.359375, "dur": 4194.200038909912, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.194200038909912, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Encoding.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6192516.11328125, "dur": 4738.2001876831055, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.7382001876831055, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Environment.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6197256.8359375, "dur": 3440.3998851776123, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4403998851776123, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\EventImpl.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6200698.2421875, "dur": 4134.500026702881, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.134500026702881, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\File.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6204840.33203125, "dur": 3231.300115585327, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.231300115585327, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\FileSystemWatcher.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6208073.73046875, "dur": 3866.1999702453613, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8661999702453613, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Handle.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6211944.82421875, "dur": 5039.80016708374, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.03980016708374, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Image.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6216989.2578125, "dur": 4409.599781036377, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.409599781036377, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Initialize.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6221406.25, "dur": 4025.3000259399414, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.025300025939941, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\LastError.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6225435.05859375, "dur": 5247.200012207031, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.247200012207031, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\LibraryLoader.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6230684.5703125, "dur": 4470.399856567383, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.470399856567383, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Locale.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6235158.203125, "dur": 3993.0999279022217, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9930999279022217, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\MarshalAlloc.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6239159.66796875, "dur": 4169.7998046875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.1697998046875, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\MarshalStringAlloc.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6243331.0546875, "dur": 3783.600091934204, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.783600091934204, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Memory.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6247118.1640625, "dur": 5141.39986038208, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.14139986038208, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\MemoryMappedFile.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6252261.71875, "dur": 108343.79577636719, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 108.34379577636719, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\MutexImpl.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6360610.3515625, "dur": 11471.599578857422, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.471599578857422, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Path.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6372087.40234375, "dur": 12067.79956817627, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.06779956817627, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\SemaphoreImpl.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6384161.62109375, "dur": 10725.799560546875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.725799560546875, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\StackTrace.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6394893.5546875, "dur": 5917.799949645996, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.917799949645996, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\SynchronizationContext.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6400816.40625, "dur": 5440.999984741211, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.440999984741211, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\ThreadImpl.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6406259.765625, "dur": 3675.8999824523926, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6758999824523926, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\WindowsHelpers.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6409937.98828125, "dur": 4164.5002365112305, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.1645002365112305, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\BrokeredFileSystem.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6414104.00390625, "dur": 4091.1002159118652, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.091100215911865, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Environment.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6418196.77734375, "dur": 3796.2000370025635, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7962000370025635, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Initialize.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6421995.1171875, "dur": 3806.6000938415527, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8066000938415527, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\MarshalAlloc.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6425804.6875, "dur": 3980.4000854492188, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9804000854492188, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Process.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6429788.57421875, "dur": 6468.800067901611, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.468800067901611, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Win32ApiWinRTEmulation.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6436258.7890625, "dur": 4887.30001449585, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.88730001449585, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\COM.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6441150.390625, "dur": 4521.100044250488, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.521100044250488, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\ConditionVariable.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6445674.8046875, "dur": 3938.1000995635986, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9381000995635986, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\CpuInfo.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6449617.67578125, "dur": 4468.400001525879, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.468400001525879, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\CultureInfo.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6454087.890625, "dur": 3761.899948120117, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.761899948120117, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Environment.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6457852.5390625, "dur": 3694.000005722046, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.694000005722046, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Error.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6461548.33984375, "dur": 3622.299909591675, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.622299909591675, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Handle.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6465174.31640625, "dur": 4421.700000762939, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.4217000007629395, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\LibraryLoader.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6469597.65625, "dur": 4207.300186157227, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.207300186157227, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\MemoryMappedFile.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6473809.5703125, "dur": 4236.999988555908, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.236999988555908, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Messages.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6478047.8515625, "dur": 3772.0000743865967, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7720000743865967, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Path.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6481822.265625, "dur": 4363.699913024902, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.363699913024902, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Semaphore.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6486189.453125, "dur": 3864.000082015991, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.864000082015991, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Socket.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6490055.6640625, "dur": 3530.6999683380127, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5306999683380127, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\ThreadLocalValue.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6493589.35546875, "dur": 3909.4998836517334, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9094998836517334, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Time.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6497501.953125, "dur": 4498.099803924561, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.4980998039245605, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\COMTests.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6502002.9296875, "dur": 4161.499977111816, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.161499977111816, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\ConsoleTests.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6506166.50390625, "dur": 4800.099849700928, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.800099849700928, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\CryptographyTests.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6510971.19140625, "dur": 3729.3999195098877, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7293999195098877, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\DebugTests.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6514710.44921875, "dur": 4057.6000213623047, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.057600021362305, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\EnvironmentTests.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6518770.5078125, "dur": 3821.5999603271484, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8215999603271484, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\EventTests.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6522594.7265625, "dur": 4119.200229644775, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.119200229644775, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\LibraryLoaderTests.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6526715.33203125, "dur": 3259.5999240875244, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.2595999240875244, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\MainTestRunner.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6529980.95703125, "dur": 3684.0999126434326, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6840999126434326, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\MemoryTests.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6533669.921875, "dur": 3769.90008354187, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.76990008354187, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\MessagesTests.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6537442.87109375, "dur": 3383.5999965667725, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.3835999965667725, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\NativeMethodsTests.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6540830.078125, "dur": 3759.2999935150146, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7592999935150146, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\ProcessTests.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6544592.28515625, "dur": 3896.8000411987305, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8968000411987305, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\SocketTests.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6548490.72265625, "dur": 3677.999973297119, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.677999973297119, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\TimeTests.cpp" } },
- { "pid": 1, "tid": 90, "ts": 6552172.36328125, "dur": 3315.2999877929688, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.3152999877929688, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\TimeZoneInfoTests.cpp" } },
- { "pid": 1, "tid": 93, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 93, "ts": 5845820.80078125, "dur": 6771.599769592285, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.771599769592285, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\allchblk.c" } },
- { "pid": 1, "tid": 93, "ts": 5852595.703125, "dur": 7162.799835205078, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.162799835205078, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\alloc.c" } },
- { "pid": 1, "tid": 93, "ts": 5859761.71875, "dur": 7561.9001388549805, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.5619001388549805, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\blacklst.c" } },
- { "pid": 1, "tid": 93, "ts": 5867325.68359375, "dur": 8597.800254821777, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.597800254821777, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\cord\\cordbscs.c" } },
- { "pid": 1, "tid": 93, "ts": 5875927.24609375, "dur": 7067.200183868408, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.067200183868408, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\cord\\cordprnt.c" } },
- { "pid": 1, "tid": 93, "ts": 5882999.51171875, "dur": 9061.599731445312, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.061599731445312, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\cord\\tests\\cordtest.c" } },
- { "pid": 1, "tid": 93, "ts": 5892065.4296875, "dur": 9276.599884033203, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.276599884033203, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\cord\\tests\\de.c" } },
- { "pid": 1, "tid": 93, "ts": 5901343.75, "dur": 8976.799964904785, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.976799964904785, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\darwin_stop_world.c" } },
- { "pid": 1, "tid": 93, "ts": 5910323.2421875, "dur": 8915.300369262695, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.915300369262695, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\dyn_load.c" } },
- { "pid": 1, "tid": 93, "ts": 5919243.1640625, "dur": 6616.700172424316, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.616700172424316, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\AmigaOS.c" } },
- { "pid": 1, "tid": 93, "ts": 5925862.79296875, "dur": 5951.300144195557, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.951300144195557, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\MacOS.c" } },
- { "pid": 1, "tid": 93, "ts": 5931817.87109375, "dur": 6782.100200653076, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.782100200653076, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\Mac_files\\datastart.c" } },
- { "pid": 1, "tid": 93, "ts": 5938602.5390625, "dur": 7546.40007019043, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.54640007019043, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\krait_signal_handler.c" } },
- { "pid": 1, "tid": 93, "ts": 5946152.34375, "dur": 5943.20011138916, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.94320011138916, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\pcr_interface.c" } },
- { "pid": 1, "tid": 93, "ts": 5952097.65625, "dur": 7620.299816131592, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.620299816131592, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\finalize.c" } },
- { "pid": 1, "tid": 93, "ts": 5959721.19140625, "dur": 6038.400173187256, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.038400173187256, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\fnlz_mlc.c" } },
- { "pid": 1, "tid": 93, "ts": 5965763.671875, "dur": 7119.900226593018, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.119900226593018, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\gcj_mlc.c" } },
- { "pid": 1, "tid": 93, "ts": 5972886.23046875, "dur": 6586.900234222412, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.586900234222412, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\heapsections.c" } },
- { "pid": 1, "tid": 93, "ts": 5979477.5390625, "dur": 7352.399826049805, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.352399826049805, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\mach_dep.c" } },
- { "pid": 1, "tid": 93, "ts": 5986835.44921875, "dur": 7478.000164031982, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.478000164031982, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\mallocx.c" } },
- { "pid": 1, "tid": 93, "ts": 5994316.40625, "dur": 6880.70011138916, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.88070011138916, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\mark.c" } },
- { "pid": 1, "tid": 93, "ts": 6001199.70703125, "dur": 6453.299999237061, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.4532999992370605, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\misc.c" } },
- { "pid": 1, "tid": 93, "ts": 6007656.25, "dur": 5899.300098419189, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.8993000984191895, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\obj_map.c" } },
- { "pid": 1, "tid": 93, "ts": 6013557.6171875, "dur": 6695.300102233887, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.695300102233887, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\pthread_start.c" } },
- { "pid": 1, "tid": 93, "ts": 6020255.859375, "dur": 6647.299766540527, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.647299766540527, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\pthread_support.c" } },
- { "pid": 1, "tid": 93, "ts": 6026906.25, "dur": 5460.899829864502, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.460899829864502, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\ptr_chck.c" } },
- { "pid": 1, "tid": 93, "ts": 6032369.62890625, "dur": 6496.300220489502, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.496300220489502, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\specific.c" } },
- { "pid": 1, "tid": 93, "ts": 6038868.65234375, "dur": 6489.699840545654, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.489699840545654, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\disclaim_test.c" } },
- { "pid": 1, "tid": 93, "ts": 6045362.3046875, "dur": 7427.700042724609, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.427700042724609, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\initsecondarythread.c" } },
- { "pid": 1, "tid": 93, "ts": 6052791.9921875, "dur": 5378.699779510498, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.378699779510498, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\middle.c" } },
- { "pid": 1, "tid": 93, "ts": 6058172.8515625, "dur": 6120.60022354126, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.12060022354126, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\smash_test.c" } },
- { "pid": 1, "tid": 93, "ts": 6064295.8984375, "dur": 5730.000019073486, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.730000019073486, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\staticrootstest.c" } },
- { "pid": 1, "tid": 93, "ts": 6070028.3203125, "dur": 6359.7002029418945, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.3597002029418945, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\test.c" } },
- { "pid": 1, "tid": 93, "ts": 6076395.5078125, "dur": 5748.300075531006, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.748300075531006, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\thread_leak_test.c" } },
- { "pid": 1, "tid": 93, "ts": 6082148.4375, "dur": 5928.599834442139, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.928599834442139, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\threadkey_test.c" } },
- { "pid": 1, "tid": 93, "ts": 6088081.0546875, "dur": 5518.799781799316, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.518799781799316, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\thread_local_alloc.c" } },
- { "pid": 1, "tid": 93, "ts": 6093602.5390625, "dur": 4191.5998458862305, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.1915998458862305, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tools\\if_not_there.c" } },
- { "pid": 1, "tid": 93, "ts": 6097801.26953125, "dur": 4696.000099182129, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.696000099182129, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tools\\threadlibs.c" } },
- { "pid": 1, "tid": 93, "ts": 6102499.0234375, "dur": 4959.59997177124, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.95959997177124, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\vector_mlc.c" } },
- { "pid": 1, "tid": 93, "ts": 6107461.42578125, "dur": 5227.799892425537, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.227799892425537, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\win32_threads.c" } },
- { "pid": 1, "tid": 95, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 95, "ts": 5851105.46875, "dur": 8500.100135803223, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.500100135803223, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System.Configuration\\System.Configuration\\InternalConfigurationHost.cpp" } },
- { "pid": 1, "tid": 95, "ts": 5859826.66015625, "dur": 8748.200416564941, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.748200416564941, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\Microsoft.Win32\\NativeMethods.cpp" } },
- { "pid": 1, "tid": 95, "ts": 5868577.63671875, "dur": 7736.800193786621, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.736800193786621, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\Mono.Net.Security\\MonoTlsProviderFactory.cpp" } },
- { "pid": 1, "tid": 95, "ts": 5876317.87109375, "dur": 13214.500427246094, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 13.214500427246094, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Configuration\\DefaultConfig.cpp" } },
- { "pid": 1, "tid": 95, "ts": 5889535.64453125, "dur": 15999.600410461426, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 15.999600410461426, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\DefaultTraceListener.cpp" } },
- { "pid": 1, "tid": 95, "ts": 5905538.0859375, "dur": 14872.30110168457, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 14.87230110168457, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\PerformanceCounter.cpp" } },
- { "pid": 1, "tid": 95, "ts": 5920413.57421875, "dur": 8270.299911499023, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.270299911499023, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\PerformanceCounterUtils.cpp" } },
- { "pid": 1, "tid": 95, "ts": 5928687.01171875, "dur": 11126.099586486816, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.126099586486816, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\Stopwatch.cpp" } },
- { "pid": 1, "tid": 95, "ts": 5939815.91796875, "dur": 7664.899826049805, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.664899826049805, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.IO\\InotifyWatcher.cpp" } },
- { "pid": 1, "tid": 95, "ts": 5947546.875, "dur": 11709.799766540527, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.709799766540527, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net.NetworkInformation\\MacOsIPInterfaceProperties.cpp" } },
- { "pid": 1, "tid": 95, "ts": 5959261.71875, "dur": 9013.699531555176, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.013699531555176, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net.Sockets\\SocketException.cpp" } },
- { "pid": 1, "tid": 95, "ts": 5968280.2734375, "dur": 5978.600025177002, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.978600025177002, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Threading\\Semaphore.cpp" } },
- { "pid": 1, "tid": 95, "ts": 5974262.6953125, "dur": 6606.800079345703, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.606800079345703, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono.Globalization.Unicode\\Normalization.cpp" } },
- { "pid": 1, "tid": 95, "ts": 5980871.09375, "dur": 10471.89998626709, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.47189998626709, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono.Security.Cryptography\\KeyPairPersistence.cpp" } },
- { "pid": 1, "tid": 95, "ts": 5991349.12109375, "dur": 6688.000202178955, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.688000202178955, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\Runtime.cpp" } },
- { "pid": 1, "tid": 95, "ts": 5998042.48046875, "dur": 6912.499904632568, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.912499904632568, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\RuntimeGPtrArrayHandle.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6004957.51953125, "dur": 5274.199962615967, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.274199962615967, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\SafeStringMarshal.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6010236.328125, "dur": 6644.999980926514, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.644999980926514, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\Debugger.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6016885.7421875, "dur": 7246.300220489502, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.246300220489502, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\StackTrace.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6024135.25390625, "dur": 11852.800369262695, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.852800369262695, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CompareInfo.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6035991.2109375, "dur": 10294.599533081055, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.294599533081055, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CultureInfo.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6046289.55078125, "dur": 9155.699729919434, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.155699729919434, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.IO\\MonoIO.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6055449.21875, "dur": 5796.000003814697, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.796000003814697, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\AssemblyBuilder.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6061258.30078125, "dur": 6445.199966430664, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.445199966430664, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\DerivedType.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6067708.0078125, "dur": 4796.999931335449, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.796999931335449, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\EnumBuilder.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6072507.8125, "dur": 5227.60009765625, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.22760009765625, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\MethodBuilder.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6077738.76953125, "dur": 7148.900032043457, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.148900032043457, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\SignatureHelper.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6084891.6015625, "dur": 6485.7001304626465, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.4857001304626465, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\TypeBuilder.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6091381.34765625, "dur": 5049.399852752686, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.0493998527526855, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\AssemblyName.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6096435.05859375, "dur": 5472.400188446045, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.472400188446045, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\CustomAttributeData.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6101910.15625, "dur": 4445.099830627441, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.445099830627441, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MemberInfo.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6106359.375, "dur": 5451.499938964844, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.451499938964844, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MethodBase.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6111813.4765625, "dur": 3994.6999549865723, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9946999549865723, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoCMethod.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6115811.5234375, "dur": 4295.7000732421875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.2957000732421875, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoGenericCMethod.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6120115.234375, "dur": 4058.499813079834, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.058499813079834, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoGenericClass.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6124175.29296875, "dur": 3945.3999996185303, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9453999996185303, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoMethodInfo.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6128124.0234375, "dur": 4093.9998626708984, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.093999862670898, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoPropertyInfo.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6132221.6796875, "dur": 3980.4000854492188, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9804000854492188, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\PropertyInfo.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6136205.56640625, "dur": 3958.400011062622, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.958400011062622, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.CompilerServices\\RuntimeHelpers.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6140166.015625, "dur": 3881.4001083374023, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8814001083374023, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.InteropServices\\GCHandle.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6144051.26953125, "dur": 3986.7000579833984, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9867000579833984, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Activation\\ActivationServices.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6148045.41015625, "dur": 4066.699981689453, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.066699981689453, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Messaging\\AsyncResult.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6152115.234375, "dur": 3610.5000972747803, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6105000972747803, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Proxies\\RealProxy.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6155728.515625, "dur": 4114.200115203857, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.114200115203857, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Versioning\\VersioningHelper.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6159845.703125, "dur": 4414.999961853027, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.414999961853027, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Principal\\WindowsIdentity.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6164262.6953125, "dur": 4065.8998489379883, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.065899848937988, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Principal\\WindowsPrincipal.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6168332.03125, "dur": 3885.699987411499, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.885699987411499, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security\\SecurityFrame.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6172221.6796875, "dur": 4140.200138092041, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.140200138092041, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Text\\Encoding.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6176363.28125, "dur": 3769.7999477386475, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7697999477386475, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\InternalThread.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6180136.71875, "dur": 3929.30006980896, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.92930006980896, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Monitor.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6184069.3359375, "dur": 4179.699897766113, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.179699897766113, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\NativeEventCalls.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6188253.41796875, "dur": 5178.199768066406, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.178199768066406, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Thread.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6193436.03515625, "dur": 3726.0000705718994, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7260000705718994, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\WaitHandle.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6197164.0625, "dur": 4144.2999839782715, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.1442999839782715, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\AppDomain.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6201311.03515625, "dur": 4177.700042724609, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.177700042724609, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Array.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6205490.72265625, "dur": 3829.6000957489014, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8296000957489014, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\CLRConfig.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6209328.61328125, "dur": 4132.800102233887, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.132800102233887, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\ConsoleDriver.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6213464.84375, "dur": 5165.900230407715, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.165900230407715, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\CurrentSystemTimeZone.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6218635.25390625, "dur": 4185.500144958496, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.185500144958496, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Decimal.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6222824.70703125, "dur": 3714.400053024292, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.714400053024292, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Double.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6226541.50390625, "dur": 3902.2998809814453, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9022998809814453, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Environment.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6230445.80078125, "dur": 3856.800079345703, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.856800079345703, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\GC.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6234306.640625, "dur": 4844.799995422363, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.844799995422363, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\MonoCustomAttrs.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6239154.78515625, "dur": 4132.500171661377, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.132500171661377, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Number.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6243291.015625, "dur": 3823.6000537872314, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8236000537872314, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\NumberFormatter.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6247118.65234375, "dur": 4109.399795532227, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.109399795532227, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\RuntimeFieldHandle.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6251231.4453125, "dur": 4350.200176239014, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.350200176239014, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\RuntimeType.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6255583.0078125, "dur": 3808.500051498413, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.808500051498413, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\String.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6259395.5078125, "dur": 4701.700210571289, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.701700210571289, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Type.cpp" } },
- { "pid": 1, "tid": 95, "ts": 6264100.09765625, "dur": 4260.799884796143, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.260799884796143, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\ValueType.cpp" } },
- { "pid": 1, "tid": 94, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 94, "ts": 5856251.46484375, "dur": 9611.39965057373, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.61139965057373, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\backgraph.c" } },
- { "pid": 1, "tid": 94, "ts": 5865866.2109375, "dur": 11523.40030670166, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.52340030670166, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\checksums.c" } },
- { "pid": 1, "tid": 94, "ts": 5877393.06640625, "dur": 17746.700286865234, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 17.746700286865234, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\cord\\cordxtra.c" } },
- { "pid": 1, "tid": 94, "ts": 5895142.578125, "dur": 13144.399642944336, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 13.144399642944336, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\cord\\tests\\de_win.c" } },
- { "pid": 1, "tid": 94, "ts": 5908291.015625, "dur": 18858.301162719727, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 18.858301162719727, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\dbg_mlc.c" } },
- { "pid": 1, "tid": 94, "ts": 5927153.3203125, "dur": 8157.899856567383, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.157899856567383, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\Mac_files\\dataend.c" } },
- { "pid": 1, "tid": 94, "ts": 5935315.4296875, "dur": 8431.900024414062, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.431900024414062, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\gc.c" } },
- { "pid": 1, "tid": 94, "ts": 5943749.51171875, "dur": 8145.400047302246, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.145400047302246, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\msvc_dbg.c" } },
- { "pid": 1, "tid": 94, "ts": 5951899.4140625, "dur": 8767.800331115723, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.767800331115723, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\real_malloc.c" } },
- { "pid": 1, "tid": 94, "ts": 5960670.8984375, "dur": 8946.100234985352, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.946100234985352, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\gc_dlopen.c" } },
- { "pid": 1, "tid": 94, "ts": 5969621.09375, "dur": 8550.299644470215, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.550299644470215, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\headers.c" } },
- { "pid": 1, "tid": 94, "ts": 5978173.33984375, "dur": 6615.200042724609, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.615200042724609, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops.c" } },
- { "pid": 1, "tid": 94, "ts": 5984791.015625, "dur": 10504.799842834473, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.504799842834473, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\malloc.c" } },
- { "pid": 1, "tid": 94, "ts": 5995298.33984375, "dur": 6997.099876403809, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.997099876403809, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\mark_rts.c" } },
- { "pid": 1, "tid": 94, "ts": 6002298.828125, "dur": 8231.200218200684, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.231200218200684, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\new_hblk.c" } },
- { "pid": 1, "tid": 94, "ts": 6010532.71484375, "dur": 8885.499954223633, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.885499954223633, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\os_dep.c" } },
- { "pid": 1, "tid": 94, "ts": 6019421.875, "dur": 9059.499740600586, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.059499740600586, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\pthread_stop_world.c" } },
- { "pid": 1, "tid": 94, "ts": 6028485.3515625, "dur": 7475.200176239014, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.475200176239014, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\reclaim.c" } },
- { "pid": 1, "tid": 94, "ts": 6035965.33203125, "dur": 7610.099792480469, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.610099792480469, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\disclaim_bench.c" } },
- { "pid": 1, "tid": 94, "ts": 6043579.58984375, "dur": 8896.80004119873, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.89680004119873, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\huge_test.c" } },
- { "pid": 1, "tid": 94, "ts": 6052479.4921875, "dur": 5592.700004577637, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.592700004577637, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\leak_test.c" } },
- { "pid": 1, "tid": 94, "ts": 6058076.66015625, "dur": 6016.200065612793, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.016200065612793, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\realloc_test.c" } },
- { "pid": 1, "tid": 94, "ts": 6064095.703125, "dur": 5867.700099945068, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.867700099945068, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\staticrootslib.c" } },
- { "pid": 1, "tid": 94, "ts": 6069967.7734375, "dur": 5798.500061035156, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.798500061035156, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\subthread_create.c" } },
- { "pid": 1, "tid": 94, "ts": 6075770.99609375, "dur": 6802.199840545654, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.802199840545654, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\test_atomic_ops.c" } },
- { "pid": 1, "tid": 94, "ts": 6082580.078125, "dur": 10133.600234985352, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.133600234985352, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\trace_test.c" } },
- { "pid": 1, "tid": 94, "ts": 6092717.28515625, "dur": 4355.899810791016, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.355899810791016, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tools\\if_mach.c" } },
- { "pid": 1, "tid": 94, "ts": 6097075.68359375, "dur": 5215.000152587891, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.215000152587891, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tools\\setjmp_t.c" } },
- { "pid": 1, "tid": 94, "ts": 6102293.45703125, "dur": 5406.899929046631, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.406899929046631, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\typd_mlc.c" } },
- { "pid": 1, "tid": 94, "ts": 6107704.1015625, "dur": 4424.399852752686, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.4243998527526855, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\windows-untested\\stdafx.c" } },
- { "pid": 1, "tid": 96, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 96, "ts": 5860895.5078125, "dur": 11875.900268554688, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.875900268554688, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System.Core\\System.IO.MemoryMappedFiles\\MemoryMapImpl.cpp" } },
- { "pid": 1, "tid": 96, "ts": 5872774.4140625, "dur": 8038.900375366211, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.038900375366211, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.ComponentModel\\Win32Exception.cpp" } },
- { "pid": 1, "tid": 96, "ts": 5880815.91796875, "dur": 17756.200790405273, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 17.756200790405273, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Configuration\\InternalConfigurationHost.cpp" } },
- { "pid": 1, "tid": 96, "ts": 5898575.1953125, "dur": 16595.901489257812, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 16.595901489257812, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\FileVersionInfo.cpp" } },
- { "pid": 1, "tid": 96, "ts": 5915174.31640625, "dur": 7542.500019073486, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.542500019073486, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\PerformanceCounterCategory.cpp" } },
- { "pid": 1, "tid": 96, "ts": 5922722.65625, "dur": 9241.800308227539, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.241800308227539, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\Process.cpp" } },
- { "pid": 1, "tid": 96, "ts": 5931967.28515625, "dur": 7317.599773406982, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.317599773406982, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.IO\\FAMWatcher.cpp" } },
- { "pid": 1, "tid": 96, "ts": 5939287.109375, "dur": 6128.399848937988, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.128399848937988, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.IO\\FileSystemWatcher.cpp" } },
- { "pid": 1, "tid": 96, "ts": 5945418.45703125, "dur": 10392.399787902832, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.392399787902832, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.IO\\KqueueMonitor.cpp" } },
- { "pid": 1, "tid": 96, "ts": 5955816.89453125, "dur": 8439.900398254395, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.439900398254395, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net.Sockets\\Socket.cpp" } },
- { "pid": 1, "tid": 96, "ts": 5964260.7421875, "dur": 9135.000228881836, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.135000228881836, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net\\Dns.cpp" } },
- { "pid": 1, "tid": 96, "ts": 5973398.4375, "dur": 7304.800033569336, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.304800033569336, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System\\IOSelector.cpp" } },
- { "pid": 1, "tid": 96, "ts": 5980706.54296875, "dur": 6525.300025939941, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.525300025939941, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono.Interop\\ComInteropProxy.cpp" } },
- { "pid": 1, "tid": 96, "ts": 5987234.375, "dur": 7340.4998779296875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.3404998779296875, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono.Unity\\UnityTls.cpp" } },
- { "pid": 1, "tid": 96, "ts": 5994578.61328125, "dur": 6169.7998046875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.1697998046875, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\RuntimeClassHandle.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6000753.41796875, "dur": 6251.900196075439, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.2519001960754395, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\RuntimeMarshal.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6007007.8125, "dur": 6665.800094604492, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.665800094604492, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\Assert.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6013676.26953125, "dur": 10126.399993896484, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.126399993896484, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\StackFrame.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6023807.6171875, "dur": 7948.400020599365, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.948400020599365, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CalendarData.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6031761.23046875, "dur": 7191.5998458862305, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.1915998458862305, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CultureData.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6038960.44921875, "dur": 6571.300029754639, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.571300029754639, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\RegionInfo.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6045534.1796875, "dur": 6241.199970245361, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.241199970245361, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.IO\\DriveInfo.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6051780.2734375, "dur": 6652.599811553955, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.652599811553955, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.IO\\Path.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6058435.546875, "dur": 5822.5998878479, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.8225998878479, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\CustomAttributeBuilder.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6064260.25390625, "dur": 6677.299976348877, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.677299976348877, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\DynamicMethod.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6070940.91796875, "dur": 5528.900146484375, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.528900146484375, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\GenericTypeParameterBuilder.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6076472.16796875, "dur": 6712.900161743164, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.712900161743164, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\ModuleBuilder.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6083188.4765625, "dur": 5382.299900054932, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.382299900054932, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\SymbolType.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6088574.21875, "dur": 8403.300285339355, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.403300285339355, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\Assembly.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6096979.4921875, "dur": 4780.900001525879, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.780900001525879, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\EventInfo.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6101765.625, "dur": 4807.09981918335, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.80709981918335, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\FieldInfo.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6106578.61328125, "dur": 5350.99983215332, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.35099983215332, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\Module.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6111931.15234375, "dur": 3863.600015640259, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.863600015640259, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoEventInfo.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6115798.33984375, "dur": 4365.600109100342, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.365600109100342, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoField.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6120166.015625, "dur": 4004.3997764587402, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.00439977645874, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoGenericMethod.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6124174.31640625, "dur": 5096.199989318848, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.096199989318848, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoMethod.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6129272.94921875, "dur": 4219.299793243408, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.219299793243408, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\ParameterInfo.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6133495.60546875, "dur": 3448.8000869750977, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4488000869750977, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\RtFieldInfo.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6136945.3125, "dur": 3444.499969482422, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.444499969482422, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.InteropServices.WindowsRuntime\\UnsafeNativeMethods.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6140391.6015625, "dur": 4183.700084686279, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.183700084686279, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.InteropServices\\Marshal.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6144576.66015625, "dur": 3489.799976348877, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.489799976348877, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Contexts\\Context.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6148068.84765625, "dur": 4493.899822235107, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.493899822235107, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Messaging\\MonoMethodMessage.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6152564.94140625, "dur": 3360.5000972747803, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.3605000972747803, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting\\RemotingServices.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6155927.24609375, "dur": 3915.1999950408936, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9151999950408936, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Cryptography\\RNGCryptoServiceProvider.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6159846.19140625, "dur": 4314.199924468994, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.314199924468994, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Policy\\Evidence.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6164165.52734375, "dur": 4162.799835205078, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.162799835205078, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Principal\\WindowsImpersonationContext.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6168331.54296875, "dur": 3956.700086593628, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.956700086593628, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security\\SecurityManager.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6172290.0390625, "dur": 3790.600061416626, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.790600061416626, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Text\\EncodingHelper.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6176084.47265625, "dur": 4142.600059509277, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.142600059509277, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Text\\Normalization.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6180228.515625, "dur": 4143.899917602539, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.143899917602539, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Mutex.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6184374.51171875, "dur": 3937.2000694274902, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9372000694274902, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\OSSpecificSynchronizationContext.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6188313.96484375, "dur": 4311.100006103516, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.311100006103516, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\ThreadPool.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6192630.37109375, "dur": 3529.2000770568848, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5292000770568848, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Timer.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6196163.57421875, "dur": 4097.599983215332, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.097599983215332, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Activator.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6200263.671875, "dur": 3876.3999938964844, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8763999938964844, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\ArgIterator.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6204144.04296875, "dur": 3750.999927520752, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.750999927520752, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Buffer.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6207902.34375, "dur": 4335.400104522705, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.335400104522705, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Char.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6212241.2109375, "dur": 4751.399993896484, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.751399993896484, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Convert.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6216994.62890625, "dur": 4481.900215148926, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.481900215148926, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\DateTime.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6221478.515625, "dur": 3953.200101852417, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.953200101852417, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Delegate.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6225435.05859375, "dur": 4009.3002319335938, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.009300231933594, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Enum.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6229447.75390625, "dur": 3644.399881362915, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.644399881362915, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Exception.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6233096.6796875, "dur": 4373.499870300293, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.373499870300293, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\MissingMemberException.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6237473.6328125, "dur": 6629.199981689453, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.629199981689453, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\MonoType.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6244104.4921875, "dur": 3417.29998588562, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.41729998588562, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Object.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6247523.92578125, "dur": 3703.2999992370605, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7032999992370605, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\RuntimeMethodHandle.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6251231.4453125, "dur": 4058.000087738037, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.058000087738037, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\RuntimeTypeHandle.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6255292.48046875, "dur": 3396.3000774383545, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.3963000774383545, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\SizedReference.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6258692.87109375, "dur": 3378.4000873565674, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.3784000873565674, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\TimeSpan.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6262074.70703125, "dur": 3611.2000942230225, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6112000942230225, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\TypedReference.cpp" } },
- { "pid": 1, "tid": 96, "ts": 6265689.453125, "dur": 3432.6999187469482, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4326999187469482, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\__ComObject.cpp" } },
- { "pid": 1, "tid": 103, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 103, "ts": 5867316.40625, "dur": 6897.600173950195, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.897600173950195, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\DirectoryUtils.cpp" } },
- { "pid": 1, "tid": 103, "ts": 5874217.7734375, "dur": 6388.000011444092, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.388000011444092, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Exception.cpp" } },
- { "pid": 1, "tid": 103, "ts": 5880609.375, "dur": 10532.099723815918, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.532099723815918, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Logging.cpp" } },
- { "pid": 1, "tid": 103, "ts": 5891146.484375, "dur": 9077.500343322754, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.077500343322754, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MarshalingUtils.cpp" } },
- { "pid": 1, "tid": 103, "ts": 5900227.05078125, "dur": 10052.599906921387, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.052599906921387, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MemoryMappedFile.cpp" } },
- { "pid": 1, "tid": 103, "ts": 5910283.69140625, "dur": 9397.899627685547, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.397899627685547, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MemoryPool.cpp" } },
- { "pid": 1, "tid": 103, "ts": 5919684.08203125, "dur": 5631.899833679199, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.631899833679199, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\PathUtils.cpp" } },
- { "pid": 1, "tid": 103, "ts": 5925319.3359375, "dur": 6878.200054168701, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.878200054168701, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\StringUtils.cpp" } },
- { "pid": 1, "tid": 103, "ts": 5932200.1953125, "dur": 7874.199867248535, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.874199867248535, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\sha1.cpp" } },
- { "pid": 1, "tid": 104, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 104, "ts": 5871896.484375, "dur": 7453.89986038208, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.45389986038208, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Environment.cpp" } },
- { "pid": 1, "tid": 104, "ts": 5879353.02734375, "dur": 20569.900512695312, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 20.569900512695312, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Il2CppHStringReference.cpp" } },
- { "pid": 1, "tid": 104, "ts": 5899930.17578125, "dur": 10884.400367736816, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.884400367736816, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Memory.cpp" } },
- { "pid": 1, "tid": 104, "ts": 5910817.3828125, "dur": 9809.399604797363, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.809399604797363, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Output.cpp" } },
- { "pid": 1, "tid": 104, "ts": 5920628.90625, "dur": 8312.199592590332, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.312199592590332, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Runtime.cpp" } },
- { "pid": 1, "tid": 104, "ts": 5928943.84765625, "dur": 10691.900253295898, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.691900253295898, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\mono-structs.cpp" } },
- { "pid": 1, "tid": 107, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 107, "ts": 5876142.08984375, "dur": 7441.999912261963, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.441999912261963, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Array.cpp" } },
- { "pid": 1, "tid": 107, "ts": 5883587.890625, "dur": 13478.301048278809, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 13.478301048278809, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\AssemblyName.cpp" } },
- { "pid": 1, "tid": 107, "ts": 5897069.82421875, "dur": 9207.799911499023, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.207799911499023, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\CCWBase.cpp" } },
- { "pid": 1, "tid": 107, "ts": 5906282.2265625, "dur": 10626.399993896484, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.626399993896484, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\COMEntryPoints.cpp" } },
- { "pid": 1, "tid": 107, "ts": 5916913.0859375, "dur": 6381.499767303467, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.381499767303467, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ClassInlines.cpp" } },
- { "pid": 1, "tid": 107, "ts": 5923297.8515625, "dur": 5917.099952697754, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.917099952697754, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ComObjectBase.cpp" } },
- { "pid": 1, "tid": 107, "ts": 5929217.28515625, "dur": 8453.00006866455, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.45300006866455, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Enum.cpp" } },
- { "pid": 1, "tid": 107, "ts": 5937674.31640625, "dur": 5992.700099945068, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.992700099945068, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Event.cpp" } },
- { "pid": 1, "tid": 107, "ts": 5943671.38671875, "dur": 7324.699878692627, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.324699878692627, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Field.cpp" } },
- { "pid": 1, "tid": 107, "ts": 5951000, "dur": 6715.799808502197, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.715799808502197, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\GenericContainer.cpp" } },
- { "pid": 1, "tid": 107, "ts": 5957718.26171875, "dur": 6923.699855804443, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.923699855804443, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\GlobalMetadata.cpp" } },
- { "pid": 1, "tid": 107, "ts": 5964644.53125, "dur": 7320.099830627441, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.320099830627441, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\InternalCalls.cpp" } },
- { "pid": 1, "tid": 107, "ts": 5971969.23828125, "dur": 6147.299766540527, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.147299766540527, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\LastError.cpp" } },
- { "pid": 1, "tid": 107, "ts": 5978120.1171875, "dur": 6482.500076293945, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.482500076293945, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MarshalAlloc.cpp" } },
- { "pid": 1, "tid": 107, "ts": 5984607.421875, "dur": 7423.999786376953, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.423999786376953, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MemoryInformation.cpp" } },
- { "pid": 1, "tid": 107, "ts": 5992035.15625, "dur": 6103.499889373779, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.103499889373779, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MetadataCache.cpp" } },
- { "pid": 1, "tid": 107, "ts": 5998142.08984375, "dur": 6395.899772644043, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.395899772644043, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Method.cpp" } },
- { "pid": 1, "tid": 107, "ts": 6004542.48046875, "dur": 7172.2002029418945, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.1722002029418945, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Monitor.cpp" } },
- { "pid": 1, "tid": 107, "ts": 6011717.7734375, "dur": 5634.6001625061035, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.6346001625061035, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Parameter.cpp" } },
- { "pid": 1, "tid": 107, "ts": 6017354.98046875, "dur": 6967.400074005127, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.967400074005127, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\PlatformInvoke.cpp" } },
- { "pid": 1, "tid": 107, "ts": 6024324.21875, "dur": 5324.80001449585, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.32480001449585, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Property.cpp" } },
- { "pid": 1, "tid": 107, "ts": 6029651.3671875, "dur": 5458.600044250488, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.458600044250488, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Random.cpp" } },
- { "pid": 1, "tid": 107, "ts": 6035113.76953125, "dur": 6296.199798583984, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.296199798583984, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Reflection.cpp" } },
- { "pid": 1, "tid": 107, "ts": 6041413.57421875, "dur": 5175.899982452393, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.175899982452393, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ScopedThreadAttacher.cpp" } },
- { "pid": 1, "tid": 107, "ts": 6046592.28515625, "dur": 6628.699779510498, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.628699779510498, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\StackTrace.cpp" } },
- { "pid": 1, "tid": 107, "ts": 6053222.65625, "dur": 5993.70002746582, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.99370002746582, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Thread.cpp" } },
- { "pid": 1, "tid": 107, "ts": 6059219.7265625, "dur": 6160.200119018555, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.160200119018555, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ThreadPoolMs.cpp" } },
- { "pid": 1, "tid": 107, "ts": 6065382.8125, "dur": 6533.400058746338, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.533400058746338, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Type.cpp" } },
- { "pid": 1, "tid": 107, "ts": 6071919.43359375, "dur": 5564.499855041504, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.564499855041504, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\WaitHandle.cpp" } },
- { "pid": 1, "tid": 107, "ts": 6077486.328125, "dur": 5984.899997711182, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.984899997711182, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\WindowsRuntime.cpp" } },
- { "pid": 1, "tid": 108, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 108, "ts": 5878512.6953125, "dur": 10020.899772644043, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.020899772644043, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Assembly.cpp" } },
- { "pid": 1, "tid": 108, "ts": 5888537.59765625, "dur": 12777.899742126465, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.777899742126465, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\CCW.cpp" } },
- { "pid": 1, "tid": 108, "ts": 5901319.3359375, "dur": 13706.80046081543, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 13.70680046081543, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\COM.cpp" } },
- { "pid": 1, "tid": 108, "ts": 5915030.2734375, "dur": 11096.400260925293, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.096400260925293, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Class.cpp" } },
- { "pid": 1, "tid": 108, "ts": 5926129.8828125, "dur": 13032.699584960938, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 13.032699584960938, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Domain.cpp" } },
- { "pid": 1, "tid": 108, "ts": 5939164.55078125, "dur": 11262.800216674805, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.262800216674805, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Exception.cpp" } },
- { "pid": 1, "tid": 108, "ts": 5950431.640625, "dur": 10458.000183105469, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.458000183105469, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\GenericClass.cpp" } },
- { "pid": 1, "tid": 108, "ts": 5960892.08984375, "dur": 14867.501258850098, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 14.867501258850098, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Image.cpp" } },
- { "pid": 1, "tid": 108, "ts": 5975778.80859375, "dur": 8985.400199890137, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.985400199890137, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Liveness.cpp" } },
- { "pid": 1, "tid": 108, "ts": 5984850.09765625, "dur": 8601.799964904785, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.601799964904785, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MetadataAlloc.cpp" } },
- { "pid": 1, "tid": 108, "ts": 5993456.54296875, "dur": 7762.499809265137, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.762499809265137, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MetadataLoader.cpp" } },
- { "pid": 1, "tid": 108, "ts": 6001221.19140625, "dur": 5483.2000732421875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.4832000732421875, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Module.cpp" } },
- { "pid": 1, "tid": 108, "ts": 6006707.03125, "dur": 6452.899932861328, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.452899932861328, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Object.cpp" } },
- { "pid": 1, "tid": 108, "ts": 6013164.0625, "dur": 8859.100341796875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.859100341796875, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Path.cpp" } },
- { "pid": 1, "tid": 108, "ts": 6022027.34375, "dur": 7513.199806213379, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.513199806213379, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Profiler.cpp" } },
- { "pid": 1, "tid": 108, "ts": 6029544.43359375, "dur": 10091.699600219727, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.091699600219727, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\RCW.cpp" } },
- { "pid": 1, "tid": 108, "ts": 6039640.13671875, "dur": 12383.399963378906, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.383399963378906, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Runtime.cpp" } },
- { "pid": 1, "tid": 108, "ts": 6052026.3671875, "dur": 6552.499771118164, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.552499771118164, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\String.cpp" } },
- { "pid": 1, "tid": 108, "ts": 6058581.54296875, "dur": 6841.300010681152, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.841300010681152, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ThreadPool.cpp" } },
- { "pid": 1, "tid": 108, "ts": 6065424.8046875, "dur": 6517.7001953125, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.5177001953125, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\VisualizerHelpers.cpp" } },
- { "pid": 1, "tid": 108, "ts": 6071944.82421875, "dur": 5612.99991607666, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.61299991607666, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\WeakReference.cpp" } },
- { "pid": 1, "tid": 111, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 111, "ts": 5883615.72265625, "dur": 12275.500297546387, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.275500297546387, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\BlobReader.cpp" } },
- { "pid": 1, "tid": 111, "ts": 5895894.04296875, "dur": 8186.5997314453125, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.186599731445312, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\NativeSymbol.cpp" } },
- { "pid": 1, "tid": 111, "ts": 5904083.984375, "dur": 7647.500038146973, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.647500038146973, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\icalls\\mscorlib\\System.Threading\\Interlocked.cpp" } },
- { "pid": 1, "tid": 111, "ts": 5911734.86328125, "dur": 7847.0001220703125, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.8470001220703125, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\icalls\\mscorlib\\System\\Math.cpp" } },
- { "pid": 1, "tid": 112, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 112, "ts": 5886369.140625, "dur": 8286.199569702148, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.286199569702148, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\Debugger.cpp" } },
- { "pid": 1, "tid": 112, "ts": 5894659.66796875, "dur": 9178.600311279297, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.178600311279297, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\NativeDelegateMethodCache.cpp" } },
- { "pid": 1, "tid": 112, "ts": 5903842.28515625, "dur": 10328.300476074219, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.328300476074219, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\VmStringUtils.cpp" } },
- { "pid": 1, "tid": 126, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 126, "ts": 6572792.48046875, "dur": 22354.999542236328, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 22.354999542236328, "detail": "Il2CppCCalculateTypeValues.cpp" } },
- { "pid": 1, "tid": 126, "ts": 6595741.69921875, "dur": 10199.399948120117, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 10.199399948120117, "detail": "mscorlib2.cpp" } },
- { "pid": 1, "tid": 126, "ts": 6615555.6640625, "dur": 54175.00305175781, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 54.17500305175781, "detail": "Generics2.cpp" } },
- { "pid": 1, "tid": 126, "ts": 6670391.6015625, "dur": 13955.400466918945, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 13.955400466918945, "detail": "UnityEngine.UI1.cpp" } },
- { "pid": 1, "tid": 126, "ts": 6684930.6640625, "dur": 20647.29881286621, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 20.64729881286621, "detail": "System.cpp" } },
- { "pid": 1, "tid": 126, "ts": 6706274.90234375, "dur": 5314.000129699707, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 5.314000129699707, "detail": "UnityEngine.UI_CodeGen.c" } },
- { "pid": 1, "tid": 126, "ts": 6713167.96875, "dur": 2267.9998874664307, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.2679998874664307, "detail": "UnresolvedVirtualCallStubs.cpp" } },
- { "pid": 1, "tid": 126, "ts": 6716123.046875, "dur": 2539.400100708008, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.539400100708008, "detail": "UnityEngine.TextRenderingModule.cpp" } },
- { "pid": 1, "tid": 126, "ts": 6719352.05078125, "dur": 2091.399908065796, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.091399908065796, "detail": "UnityEngine.AnimationModule_Attr.cpp" } },
- { "pid": 1, "tid": 126, "ts": 6722136.23046875, "dur": 3711.400032043457, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.711400032043457, "detail": "Mono.Security.cpp" } },
- { "pid": 1, "tid": 126, "ts": 6726527.34375, "dur": 2538.0001068115234, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.5380001068115234, "detail": "System.Xml.cpp" } },
- { "pid": 1, "tid": 126, "ts": 6730137.6953125, "dur": 1978.8999557495117, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.9788999557495117, "detail": "UnityEngine.UnityWebRequestModule_Attr.cpp" } },
- { "pid": 1, "tid": 126, "ts": 6733126.46484375, "dur": 2114.500045776367, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.114500045776367, "detail": "System.Core_Attr.cpp" } },
- { "pid": 1, "tid": 126, "ts": 6735895.99609375, "dur": 1920.0999736785889, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.9200999736785889, "detail": "Assembly-CSharp_Attr.cpp" } },
- { "pid": 1, "tid": 126, "ts": 6738473.14453125, "dur": 1311.5999698638916, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.3115999698638916, "detail": "UnityEngine.UIModule_CodeGen.c" } },
- { "pid": 1, "tid": 126, "ts": 6740578.125, "dur": 8528.200149536133, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.528200149536133, "detail": "infback.c" } },
- { "pid": 1, "tid": 126, "ts": 6750120.60546875, "dur": 8909.000396728516, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.909000396728516, "detail": "crc32.c" } },
- { "pid": 1, "tid": 126, "ts": 6760239.74609375, "dur": 2258.500099182129, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.258500099182129, "detail": "UnityEngine.TilemapModule.cpp" } },
- { "pid": 1, "tid": 126, "ts": 6763204.1015625, "dur": 9296.899795532227, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.296899795532227, "detail": "gc.c" } },
- { "pid": 1, "tid": 126, "ts": 6773182.6171875, "dur": 2106.4000129699707, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.1064000129699707, "detail": "Il2CppMetadataRegistration.c" } },
- { "pid": 1, "tid": 126, "ts": 6775939.94140625, "dur": 62561.49673461914, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 62.56149673461914, "detail": "il2cpp-benchmark-support.cpp" } },
- { "pid": 1, "tid": 126, "ts": 6839185.546875, "dur": 1275.7999897003174, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.2757999897003174, "detail": "Il2CppGenericComDefinitions.cpp" } },
- { "pid": 1, "tid": 126, "ts": 6841437.01171875, "dur": 1301.300048828125, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.301300048828125, "detail": "Il2CppGenericComDefinitions14.cpp" } },
- { "pid": 1, "tid": 126, "ts": 6843376.953125, "dur": 5374.000072479248, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 5.374000072479248, "detail": "Il2CppGenericComDefinitions5.cpp" } },
- { "pid": 1, "tid": 126, "ts": 6850739.74609375, "dur": 11376.099586486816, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 11.376099586486816, "detail": "il2cpp-runtime-stats.cpp" } },
- { "pid": 1, "tid": 129, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 129, "ts": 6572792.48046875, "dur": 16937.698364257812, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 16.937698364257812, "detail": "mscorlib9.cpp" } },
- { "pid": 1, "tid": 129, "ts": 6591169.921875, "dur": 7945.199966430664, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.945199966430664, "detail": "mscorlib7.cpp" } },
- { "pid": 1, "tid": 129, "ts": 6599973.6328125, "dur": 66677.90222167969, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 66.67790222167969, "detail": "Il2CppInvokerTable.cpp" } },
- { "pid": 1, "tid": 129, "ts": 6667775.390625, "dur": 8886.899948120117, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.886899948120117, "detail": "mscorlib15.cpp" } },
- { "pid": 1, "tid": 129, "ts": 6677304.19921875, "dur": 13103.899955749512, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 13.103899955749512, "detail": "System1.cpp" } },
- { "pid": 1, "tid": 129, "ts": 6691268.5546875, "dur": 19513.69857788086, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 19.51369857788086, "detail": "Il2CppMetadataUsage.c" } },
- { "pid": 1, "tid": 129, "ts": 6711557.12890625, "dur": 6376.800060272217, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.376800060272217, "detail": "UnityEngine.UI_Attr.cpp" } },
- { "pid": 1, "tid": 129, "ts": 6718671.38671875, "dur": 2718.899965286255, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.718899965286255, "detail": "UnityEngine.PhysicsModule_Attr.cpp" } },
- { "pid": 1, "tid": 129, "ts": 6722088.8671875, "dur": 3749.300003051758, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.749300003051758, "detail": "Il2CppGenericClassTable.c" } },
- { "pid": 1, "tid": 129, "ts": 6726562.98828125, "dur": 2453.700065612793, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.453700065612793, "detail": "Il2CppGenericMethodDefinitions.c" } },
- { "pid": 1, "tid": 129, "ts": 6730023.92578125, "dur": 3502.0999908447266, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.5020999908447266, "detail": "System_Attr.cpp" } },
- { "pid": 1, "tid": 129, "ts": 6734285.64453125, "dur": 8116.600036621094, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.116600036621094, "detail": "inflate.c" } },
- { "pid": 1, "tid": 129, "ts": 6744166.9921875, "dur": 7152.699947357178, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.152699947357178, "detail": "gzwrite.c" } },
- { "pid": 1, "tid": 129, "ts": 6752092.7734375, "dur": 2006.2000751495361, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.006200075149536, "detail": "System.Core_CodeGen.c" } },
- { "pid": 1, "tid": 129, "ts": 6754737.79296875, "dur": 6973.599910736084, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.973599910736084, "detail": "UnityEngine.AudioModule_CodeGen.c" } },
- { "pid": 1, "tid": 129, "ts": 6762369.62890625, "dur": 2112.499952316284, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.112499952316284, "detail": "UnityEngine.GridModule.cpp" } },
- { "pid": 1, "tid": 129, "ts": 6765220.703125, "dur": 2194.2999362945557, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.1942999362945557, "detail": "UnityEngine.Physics2DModule_CodeGen.c" } },
- { "pid": 1, "tid": 129, "ts": 6768319.3359375, "dur": 6220.099925994873, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.220099925994873, "detail": "Il2CppReversePInvokeWrapperTable.cpp" } },
- { "pid": 1, "tid": 129, "ts": 6775288.57421875, "dur": 63101.90200805664, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 63.10190200805664, "detail": "gzclose.c" } },
- { "pid": 1, "tid": 129, "ts": 6839053.7109375, "dur": 2435.199975967407, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.4351999759674072, "detail": "Lump_libil2cpp_codegen.cpp" } },
- { "pid": 1, "tid": 129, "ts": 6842214.35546875, "dur": 2093.3001041412354, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.0933001041412354, "detail": "Il2CppGenericComDefinitions16.cpp" } },
- { "pid": 1, "tid": 129, "ts": 6849195.80078125, "dur": 2877.000093460083, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.877000093460083, "detail": "Il2CppGenericComDefinitions9.cpp" } },
- { "pid": 1, "tid": 125, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 125, "ts": 6572794.43359375, "dur": 23725.000381469727, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 23.725000381469727, "detail": "Il2CppCCalculateFieldValues.cpp" } },
- { "pid": 1, "tid": 125, "ts": 6597130.859375, "dur": 63854.29763793945, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 63.85429763793945, "detail": "Generics3.cpp" } },
- { "pid": 1, "tid": 125, "ts": 6661846.19140625, "dur": 12992.899894714355, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 12.992899894714355, "detail": "UnityEngine.UI3.cpp" } },
- { "pid": 1, "tid": 125, "ts": 6675492.1875, "dur": 8250, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.25, "detail": "mscorlib3.cpp" } },
- { "pid": 1, "tid": 125, "ts": 6684397.4609375, "dur": 16858.600616455078, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 16.858600616455078, "detail": "GenericMethods1.cpp" } },
- { "pid": 1, "tid": 125, "ts": 6701902.83203125, "dur": 10381.8998336792, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 10.3818998336792, "detail": "mscorlib_Attr.cpp" } },
- { "pid": 1, "tid": 125, "ts": 6713130.859375, "dur": 2308.9001178741455, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.3089001178741455, "detail": "mscorlib17.cpp" } },
- { "pid": 1, "tid": 125, "ts": 6716113.76953125, "dur": 2972.100019454956, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.972100019454956, "detail": "Assembly-CSharp1.cpp" } },
- { "pid": 1, "tid": 125, "ts": 6719740.72265625, "dur": 2706.899881362915, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.706899881362915, "detail": "UnityEngine.SharedInternalsModule.cpp" } },
- { "pid": 1, "tid": 125, "ts": 6723928.7109375, "dur": 2590.399980545044, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.590399980545044, "detail": "UnityEngine.AudioModule_Attr.cpp" } },
- { "pid": 1, "tid": 125, "ts": 6727202.63671875, "dur": 1809.999942779541, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.809999942779541, "detail": "UnityEngine.UnityAnalyticsModule_Attr.cpp" } },
- { "pid": 1, "tid": 125, "ts": 6729887.20703125, "dur": 1890.5999660491943, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.8905999660491943, "detail": "UnityEngine.GridModule_Attr.cpp" } },
- { "pid": 1, "tid": 125, "ts": 6732586.9140625, "dur": 2047.6999282836914, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.0476999282836914, "detail": "UnityEngine.UnityAnalyticsModule.cpp" } },
- { "pid": 1, "tid": 125, "ts": 6735291.9921875, "dur": 2086.2998962402344, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.0862998962402344, "detail": "System.Configuration.cpp" } },
- { "pid": 1, "tid": 125, "ts": 6738082.03125, "dur": 9642.29965209961, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.64229965209961, "detail": "xamarin_getifaddrs.c" } },
- { "pid": 1, "tid": 125, "ts": 6748384.27734375, "dur": 9902.099609375, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.902099609375, "detail": "UnityClassRegistration.cpp" } },
- { "pid": 1, "tid": 125, "ts": 6759021.97265625, "dur": 3351.900100708008, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.351900100708008, "detail": "System.Configuration_CodeGen.c" } },
- { "pid": 1, "tid": 125, "ts": 6762928.7109375, "dur": 1757.5000524520874, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.7575000524520874, "detail": "Il2CppCodeRegistration.cpp" } },
- { "pid": 1, "tid": 125, "ts": 6765519.04296875, "dur": 1899.7000455856323, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.8997000455856323, "detail": "UnityEngine.UnityWebRequestModule_CodeGen.c" } },
- { "pid": 1, "tid": 125, "ts": 6768343.26171875, "dur": 69653.49578857422, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 69.65349578857422, "detail": "UnityAdsStubs.cpp" } },
- { "pid": 1, "tid": 125, "ts": 6838716.796875, "dur": 1159.8999500274658, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.1598999500274658, "detail": "UnityEngine_CodeGen.c" } },
- { "pid": 1, "tid": 125, "ts": 6840567.3828125, "dur": 1794.600009918213, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.794600009918213, "detail": "Il2CppGenericComDefinitions11.cpp" } },
- { "pid": 1, "tid": 125, "ts": 6842998.53515625, "dur": 7101.600170135498, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.101600170135498, "detail": "Il2CppGenericComDefinitions3.cpp" } },
- { "pid": 1, "tid": 127, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 127, "ts": 6572796.875, "dur": 16636.80076599121, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 16.63680076599121, "detail": "mscorlib_CodeGen.c" } },
- { "pid": 1, "tid": 127, "ts": 6590832.03125, "dur": 8487.199783325195, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.487199783325195, "detail": "mscorlib4.cpp" } },
- { "pid": 1, "tid": 127, "ts": 6600441.40625, "dur": 20554.000854492188, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 20.554000854492188, "detail": "Il2CppTypeDefinitions.c" } },
- { "pid": 1, "tid": 127, "ts": 6665223.6328125, "dur": 12216.500282287598, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 12.216500282287598, "detail": "mscorlib8.cpp" } },
- { "pid": 1, "tid": 127, "ts": 6678230.95703125, "dur": 26872.1981048584, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 26.8721981048584, "detail": "Generics4.cpp" } },
- { "pid": 1, "tid": 127, "ts": 6705828.61328125, "dur": 6396.399974822998, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.396399974822998, "detail": "System2.cpp" } },
- { "pid": 1, "tid": 127, "ts": 6713164.55078125, "dur": 4699.399948120117, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.699399948120117, "detail": "UnityEngine.AnimationModule.cpp" } },
- { "pid": 1, "tid": 127, "ts": 6718586.42578125, "dur": 3315.700054168701, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.315700054168701, "detail": "UnityEngine.PhysicsModule.cpp" } },
- { "pid": 1, "tid": 127, "ts": 6722663.0859375, "dur": 3359.6999645233154, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.3596999645233154, "detail": "Il2CppInteropDataTable.cpp" } },
- { "pid": 1, "tid": 127, "ts": 6727020.01953125, "dur": 1949.2000341415405, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.9492000341415405, "detail": "UnityEngine.Physics2DModule_Attr.cpp" } },
- { "pid": 1, "tid": 127, "ts": 6729804.19921875, "dur": 2234.800100326538, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.234800100326538, "detail": "UnityEngine.InputLegacyModule_Attr.cpp" } },
- { "pid": 1, "tid": 127, "ts": 6733410.15625, "dur": 2917.799949645996, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.917799949645996, "detail": "UnityEngine.UnityWebRequestModule.cpp" } },
- { "pid": 1, "tid": 127, "ts": 6737030.2734375, "dur": 2806.2000274658203, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.8062000274658203, "detail": "Mono.Security_Attr.cpp" } },
- { "pid": 1, "tid": 127, "ts": 6740603.515625, "dur": 1755.1000118255615, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.7551000118255615, "detail": "UnityEngine.PhysicsModule_CodeGen.c" } },
- { "pid": 1, "tid": 127, "ts": 6743267.08984375, "dur": 2035.599946975708, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.035599946975708, "detail": "System.Core.cpp" } },
- { "pid": 1, "tid": 127, "ts": 6746022.94921875, "dur": 3650.7999897003174, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.6507999897003174, "detail": "UnityEngine.SharedInternalsModule_CodeGen.c" } },
- { "pid": 1, "tid": 127, "ts": 6750571.2890625, "dur": 9739.800453186035, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.739800453186035, "detail": "inftrees.c" } },
- { "pid": 1, "tid": 127, "ts": 6760910.64453125, "dur": 10873.299598693848, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 10.873299598693848, "detail": "adler32.c" } },
- { "pid": 1, "tid": 127, "ts": 6772672.8515625, "dur": 2335.5000019073486, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.3355000019073486, "detail": "krait_signal_handler.c" } },
- { "pid": 1, "tid": 127, "ts": 6775633.30078125, "dur": 63675.498962402344, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 63.675498962402344, "detail": "Lump_libil2cpp_mono.cpp" } },
- { "pid": 1, "tid": 127, "ts": 6840020.01953125, "dur": 2117.3999309539795, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.1173999309539795, "detail": "Il2CppGenericComDefinitions1.cpp" } },
- { "pid": 1, "tid": 127, "ts": 6842962.40234375, "dur": 1413.599967956543, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.413599967956543, "detail": "Il2CppGenericComDefinitions2.cpp" } },
- { "pid": 1, "tid": 127, "ts": 6849203.61328125, "dur": 9504.599571228027, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.504599571228027, "detail": "Lump_libil2cpp_debugger.cpp" } },
- { "pid": 1, "tid": 128, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 128, "ts": 6572797.36328125, "dur": 16510.799407958984, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 16.510799407958984, "detail": "mscorlib1.cpp" } },
- { "pid": 1, "tid": 128, "ts": 6591188.4765625, "dur": 7983.30020904541, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.98330020904541, "detail": "mscorlib16.cpp" } },
- { "pid": 1, "tid": 128, "ts": 6600280.2734375, "dur": 64068.90106201172, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 64.06890106201172, "detail": "UnityEngine.UI.cpp" } },
- { "pid": 1, "tid": 128, "ts": 6665192.87109375, "dur": 9853.799819946289, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.853799819946289, "detail": "mscorlib14.cpp" } },
- { "pid": 1, "tid": 128, "ts": 6675650.390625, "dur": 16606.700897216797, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 16.606700897216797, "detail": "mscorlib11.cpp" } },
- { "pid": 1, "tid": 128, "ts": 6692797.8515625, "dur": 13527.400016784668, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 13.527400016784668, "detail": "UnityEngine.CoreModule_Attr.cpp" } },
- { "pid": 1, "tid": 128, "ts": 6707013.671875, "dur": 5543.700218200684, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 5.543700218200684, "detail": "UnityEngine.CoreModule_CodeGen.c" } },
- { "pid": 1, "tid": 128, "ts": 6713243.1640625, "dur": 4581.099987030029, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.581099987030029, "detail": "UnityEngine.UIModule.cpp" } },
- { "pid": 1, "tid": 128, "ts": 6718538.57421875, "dur": 3091.900110244751, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.091900110244751, "detail": "Il2CppGenericAdjustorThunkTable.cpp" } },
- { "pid": 1, "tid": 128, "ts": 6722659.1796875, "dur": 3370.300054550171, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.370300054550171, "detail": "Il2CppGenericMethodTable.c" } },
- { "pid": 1, "tid": 128, "ts": 6727106.4453125, "dur": 1942.1000480651855, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.9421000480651855, "detail": "UnityEngine.TextRenderingModule_Attr.cpp" } },
- { "pid": 1, "tid": 128, "ts": 6729966.30859375, "dur": 2057.499885559082, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.057499885559082, "detail": "UnityEngine.SpriteShapeModule_Attr.cpp" } },
- { "pid": 1, "tid": 128, "ts": 6732799.8046875, "dur": 1966.8999910354614, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.9668999910354614, "detail": "UnityEngine.IMGUIModule_CodeGen.c" } },
- { "pid": 1, "tid": 128, "ts": 6735565.4296875, "dur": 9335.000038146973, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.335000038146973, "detail": "trees.c" } },
- { "pid": 1, "tid": 128, "ts": 6745583.0078125, "dur": 5873.799800872803, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 5.873799800872803, "detail": "Lump_libil2cpp_icalls.cpp" } },
- { "pid": 1, "tid": 128, "ts": 6752132.8125, "dur": 2203.200101852417, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.203200101852417, "detail": "UnityEngine.InputLegacyModule_CodeGen.c" } },
- { "pid": 1, "tid": 128, "ts": 6754914.0625, "dur": 6752.500057220459, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.752500057220459, "detail": "System.Xml_CodeGen.c" } },
- { "pid": 1, "tid": 128, "ts": 6762332.03125, "dur": 2127.0999908447266, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.1270999908447266, "detail": "UnityEngine.SpriteShapeModule.cpp" } },
- { "pid": 1, "tid": 128, "ts": 6765290.52734375, "dur": 8364.899635314941, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.364899635314941, "detail": "uncompr.c" } },
- { "pid": 1, "tid": 128, "ts": 6774499.51171875, "dur": 986.9999885559082, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 0.9869999885559082, "detail": "UnityEngine.cpp" } },
- { "pid": 1, "tid": 128, "ts": 6776181.640625, "dur": 1667.6000356674194, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.6676000356674194, "detail": "UnityEngine.SpriteShapeModule_CodeGen.c" } },
- { "pid": 1, "tid": 128, "ts": 6778612.3046875, "dur": 61243.69812011719, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 61.24369812011719, "detail": "Lump_libil2cpp_gc.cpp" } },
- { "pid": 1, "tid": 128, "ts": 6840627.44140625, "dur": 1956.0999870300293, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.9560999870300293, "detail": "Il2CppGenericComDefinitions10.cpp" } },
- { "pid": 1, "tid": 128, "ts": 6843172.8515625, "dur": 5659.200191497803, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 5.659200191497803, "detail": "Il2CppGenericComDefinitions4.cpp" } },
- { "pid": 1, "tid": 128, "ts": 6850059.08203125, "dur": 8630.499839782715, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.630499839782715, "detail": "Lump_libil2cpp_plugin.cpp" } },
- { "pid": 1, "tid": 132, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 132, "ts": 6572801.7578125, "dur": 18530.19905090332, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 18.53019905090332, "detail": "UnityEngine.CoreModule.cpp" } },
- { "pid": 1, "tid": 132, "ts": 6591945.3125, "dur": 12913.399696350098, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 12.913399696350098, "detail": "mscorlib.cpp" } },
- { "pid": 1, "tid": 132, "ts": 6605488.28125, "dur": 68475.99792480469, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 68.47599792480469, "detail": "Generics.cpp" } },
- { "pid": 1, "tid": 132, "ts": 6674924.8046875, "dur": 15504.199981689453, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 15.504199981689453, "detail": "UnityEngine.CoreModule1.cpp" } },
- { "pid": 1, "tid": 132, "ts": 6691937.5, "dur": 13159.39998626709, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 13.15939998626709, "detail": "Il2CppGenericMethodPointerTable.cpp" } },
- { "pid": 1, "tid": 132, "ts": 6705829.58984375, "dur": 8336.299896240234, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.336299896240234, "detail": "Assembly-CSharp.cpp" } },
- { "pid": 1, "tid": 132, "ts": 6714904.296875, "dur": 4903.10001373291, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.90310001373291, "detail": "Il2CppCCTypeValuesTable.cpp" } },
- { "pid": 1, "tid": 132, "ts": 6720458.49609375, "dur": 5590.60001373291, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 5.59060001373291, "detail": "UnityEngine.InputLegacyModule.cpp" } },
- { "pid": 1, "tid": 132, "ts": 6726950.68359375, "dur": 8849.200248718262, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.849200248718262, "detail": "UnityICallRegistration.cpp" } },
- { "pid": 1, "tid": 132, "ts": 6736397.4609375, "dur": 9580.499649047852, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.580499649047852, "detail": "il2cpp-api.cpp" } },
- { "pid": 1, "tid": 132, "ts": 6746582.03125, "dur": 9022.000312805176, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.022000312805176, "detail": "gzlib.c" } },
- { "pid": 1, "tid": 132, "ts": 6756303.22265625, "dur": 13238.200187683105, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 13.238200187683105, "detail": "zutil.c" } },
- { "pid": 1, "tid": 132, "ts": 6770241.69921875, "dur": 7203.199863433838, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.203199863433838, "detail": "Lump_libil2cpp_utils.cpp" } },
- { "pid": 1, "tid": 132, "ts": 6778211.9140625, "dur": 62133.49914550781, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 62.13349914550781, "detail": "UnityEngine.GridModule_CodeGen.c" } },
- { "pid": 1, "tid": 132, "ts": 6841101.5625, "dur": 1664.8000478744507, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.6648000478744507, "detail": "Il2CppGenericComDefinitions12.cpp" } },
- { "pid": 1, "tid": 132, "ts": 6843439.94140625, "dur": 7286.6997718811035, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.2866997718811035, "detail": "Il2CppGenericComDefinitions6.cpp" } },
- { "pid": 1, "tid": 130, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 130, "ts": 6572810.546875, "dur": 16497.900009155273, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 16.497900009155273, "detail": "mscorlib13.cpp" } },
- { "pid": 1, "tid": 130, "ts": 6590612.79296875, "dur": 8510.8003616333, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.5108003616333, "detail": "Generics1.cpp" } },
- { "pid": 1, "tid": 130, "ts": 6600459.47265625, "dur": 63992.50030517578, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 63.99250030517578, "detail": "GenericMethods.cpp" } },
- { "pid": 1, "tid": 130, "ts": 6665197.75390625, "dur": 17648.099899291992, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 17.648099899291992, "detail": "UnityEngine.UI2.cpp" } },
- { "pid": 1, "tid": 130, "ts": 6683728.02734375, "dur": 22968.5001373291, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 22.9685001373291, "detail": "Generics5.cpp" } },
- { "pid": 1, "tid": 130, "ts": 6707363.28125, "dur": 13094.499588012695, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 13.094499588012695, "detail": "char-conversions.cpp" } },
- { "pid": 1, "tid": 130, "ts": 6721108.88671875, "dur": 5372.600078582764, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 5.372600078582764, "detail": "UnityEngine.SharedInternalsModule_Attr.cpp" } },
- { "pid": 1, "tid": 130, "ts": 6727348.6328125, "dur": 1685.9999895095825, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.6859999895095825, "detail": "UnityEngine.TilemapModule_Attr.cpp" } },
- { "pid": 1, "tid": 130, "ts": 6729931.15234375, "dur": 2217.099905014038, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.217099905014038, "detail": "UnityEngine.AudioModule.cpp" } },
- { "pid": 1, "tid": 130, "ts": 6733104.98046875, "dur": 1605.8000326156616, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.6058000326156616, "detail": "System.Xml_Attr.cpp" } },
- { "pid": 1, "tid": 130, "ts": 6735525.390625, "dur": 1797.3999977111816, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.7973999977111816, "detail": "System.Configuration_Attr.cpp" } },
- { "pid": 1, "tid": 130, "ts": 6738040.0390625, "dur": 1745.300054550171, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.745300054550171, "detail": "UnityEngine.Physics2DModule.cpp" } },
- { "pid": 1, "tid": 130, "ts": 6740635.25390625, "dur": 2420.599937438965, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.420599937438965, "detail": "Assembly-CSharp_CodeGen.c" } },
- { "pid": 1, "tid": 130, "ts": 6743892.578125, "dur": 4183.199882507324, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.183199882507324, "detail": "Lump_libil2cpp_os.cpp" } },
- { "pid": 1, "tid": 130, "ts": 6748706.54296875, "dur": 3466.3000106811523, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.4663000106811523, "detail": "UnityEngine.TextRenderingModule_CodeGen.c" } },
- { "pid": 1, "tid": 130, "ts": 6752878.41796875, "dur": 4522.600173950195, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.522600173950195, "detail": "UnityEngine_Attr.cpp" } },
- { "pid": 1, "tid": 130, "ts": 6758001.46484375, "dur": 3907.9999923706055, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.9079999923706055, "detail": "UnityEngine.UnityAnalyticsModule_CodeGen.c" } },
- { "pid": 1, "tid": 130, "ts": 6762541.50390625, "dur": 4886.499881744385, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.886499881744385, "detail": "Lump_libil2cpp_vm.cpp" } },
- { "pid": 1, "tid": 130, "ts": 6768358.3984375, "dur": 8920.900344848633, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.920900344848633, "detail": "Lump_libil2cpp_metadata.cpp" } },
- { "pid": 1, "tid": 130, "ts": 6778120.1171875, "dur": 62724.19738769531, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 62.72419738769531, "detail": "UnityEngine.TilemapModule_CodeGen.c" } },
- { "pid": 1, "tid": 130, "ts": 6841542.48046875, "dur": 2697.2999572753906, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.6972999572753906, "detail": "Il2CppGenericComDefinitions15.cpp" } },
- { "pid": 1, "tid": 130, "ts": 6849777.83203125, "dur": 2400.599956512451, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.400599956512451, "detail": "Il2CppGenericComDefinitions8.cpp" } },
- { "pid": 1, "tid": 131, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 131, "ts": 6572827.63671875, "dur": 16528.301239013672, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 16.528301239013672, "detail": "mscorlib10.cpp" } },
- { "pid": 1, "tid": 131, "ts": 6591391.11328125, "dur": 7893.499851226807, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.893499851226807, "detail": "mscorlib6.cpp" } },
- { "pid": 1, "tid": 131, "ts": 6601196.77734375, "dur": 73343.39904785156, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 73.34339904785156, "detail": "mscorlib5.cpp" } },
- { "pid": 1, "tid": 131, "ts": 6675258.30078125, "dur": 18063.899993896484, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 18.063899993896484, "detail": "mscorlib12.cpp" } },
- { "pid": 1, "tid": 131, "ts": 6693931.15234375, "dur": 16862.701416015625, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 16.862701416015625, "detail": "UnityEngine.IMGUIModule.cpp" } },
- { "pid": 1, "tid": 131, "ts": 6711529.296875, "dur": 4207.799911499023, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.207799911499023, "detail": "Il2CppGenericInstDefinitions.c" } },
- { "pid": 1, "tid": 131, "ts": 6716539.0625, "dur": 2570.8000659942627, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.5708000659942627, "detail": "UnityEngine.IMGUIModule_Attr.cpp" } },
- { "pid": 1, "tid": 131, "ts": 6719772.4609375, "dur": 2771.899938583374, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.771899938583374, "detail": "System_CodeGen.c" } },
- { "pid": 1, "tid": 131, "ts": 6723709.9609375, "dur": 1925.8999824523926, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.9258999824523926, "detail": "UnityEngine.UIModule_Attr.cpp" } },
- { "pid": 1, "tid": 131, "ts": 6726312.01171875, "dur": 3564.300060272217, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.564300060272217, "detail": "Il2CppCCFieldValuesTable.cpp" } },
- { "pid": 1, "tid": 131, "ts": 6730476.07421875, "dur": 9177.399635314941, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.177399635314941, "detail": "deflate.c" } },
- { "pid": 1, "tid": 131, "ts": 6740710.9375, "dur": 1654.6000242233276, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.6546000242233276, "detail": "UnityEngine.AnimationModule_CodeGen.c" } },
- { "pid": 1, "tid": 131, "ts": 6743292.48046875, "dur": 7975.699901580811, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.9756999015808105, "detail": "gzread.c" } },
- { "pid": 1, "tid": 131, "ts": 6751953.125, "dur": 9228.799819946289, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.228799819946289, "detail": "inffast.c" } },
- { "pid": 1, "tid": 131, "ts": 6762034.1796875, "dur": 2504.199981689453, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.504199981689453, "detail": "Mono.Security_CodeGen.c" } },
- { "pid": 1, "tid": 131, "ts": 6765311.03515625, "dur": 8465.00015258789, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.46500015258789, "detail": "compress.c" } },
- { "pid": 1, "tid": 131, "ts": 6774542.48046875, "dur": 65846.00067138672, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 65.84600067138672, "detail": "Lump_libil2cpp_vm-utils.cpp" } },
- { "pid": 1, "tid": 131, "ts": 6841066.89453125, "dur": 2653.8000106811523, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.6538000106811523, "detail": "Il2CppGenericComDefinitions13.cpp" } },
- { "pid": 1, "tid": 131, "ts": 6849339.35546875, "dur": 3026.7999172210693, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.0267999172210693, "detail": "Il2CppGenericComDefinitions7.cpp" } },
- { "pid": 1, "tid": 177, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 177, "ts": 6621363.28125, "dur": 38198.699951171875, "ph": "X", "name": "HeaderFileHashProvider.HashForAllHeaderFilesReachableByFilesIn", "args": { "durationMS": 38.198699951171875, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include" } },
- { "pid": 1, "tid": 351, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 351, "ts": 6844503.41796875, "dur": 4971.700191497803, "ph": "X", "name": "HeaderFileHashProvider.HashForAllHeaderFilesReachableByFilesIn", "args": { "durationMS": 4.971700191497803, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include" } },
- { "pid": 1, "tid": 351, "ts": 6849507.32421875, "dur": 359.10001397132874, "ph": "X", "name": "HeaderFileHashProvider.HashForAllHeaderFilesReachableByFilesIn", "args": { "durationMS": 0.35910001397132874, "detail": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\pch" } },
- { "pid": 1, "tid": 334, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 334, "ts": 6869767.578125, "dur": 9067361.328125, "ph": "X", "name": "Compile", "args": { "durationMS": 9067.361328125, "detail": "Il2CppCCalculateFieldValues.cpp" } },
- { "pid": 1, "tid": 331, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 331, "ts": 6869768.06640625, "dur": 6690226.07421875, "ph": "X", "name": "Compile", "args": { "durationMS": 6690.22607421875, "detail": "Il2CppMetadataUsage.c" } },
- { "pid": 1, "tid": 331, "ts": 13560009.765625, "dur": 1478145.8740234375, "ph": "X", "name": "Compile", "args": { "durationMS": 1478.1458740234375, "detail": "Il2CppGenericMethodDefinitions.c" } },
- { "pid": 1, "tid": 332, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 332, "ts": 6869788.57421875, "dur": 6830313.4765625, "ph": "X", "name": "Compile", "args": { "durationMS": 6830.3134765625, "detail": "mscorlib_CodeGen.c" } },
- { "pid": 1, "tid": 332, "ts": 13700121.09375, "dur": 2670533.203125, "ph": "X", "name": "Compile", "args": { "durationMS": 2670.533203125, "detail": "Assembly-CSharp_CodeGen.c" } },
- { "pid": 1, "tid": 333, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 333, "ts": 6869793.45703125, "dur": 5306972.65625, "ph": "X", "name": "Compile", "args": { "durationMS": 5306.97265625, "detail": "Il2CppCCalculateTypeValues.cpp" } },
- { "pid": 1, "tid": 333, "ts": 12176938.4765625, "dur": 1678141.9677734375, "ph": "X", "name": "Compile", "args": { "durationMS": 1678.1419677734375, "detail": "System_CodeGen.c" } },
- { "pid": 1, "tid": 333, "ts": 13855129.8828125, "dur": 2565543.701171875, "ph": "X", "name": "Compile", "args": { "durationMS": 2565.543701171875, "detail": "System.Core_CodeGen.c" } },
- { "pid": 1, "tid": 330, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 330, "ts": 6869840.8203125, "dur": 8346764.6484375, "ph": "X", "name": "Compile", "args": { "durationMS": 8346.7646484375, "detail": "Assembly-CSharp.cpp" } },
- { "pid": 1, "tid": 329, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 329, "ts": 6870003.41796875, "dur": 6339051.7578125, "ph": "X", "name": "Compile", "args": { "durationMS": 6339.0517578125, "detail": "UnityEngine.CoreModule_CodeGen.c" } },
- { "pid": 1, "tid": 329, "ts": 13209076.171875, "dur": 3580049.8046875, "ph": "X", "name": "Compile", "args": { "durationMS": 3580.0498046875, "detail": "Il2CppCCFieldValuesTable.cpp" } },
- { "pid": 1, "tid": 328, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 328, "ts": 6870104.00390625, "dur": 6323878.41796875, "ph": "X", "name": "Compile", "args": { "durationMS": 6323.87841796875, "detail": "Il2CppGenericInstDefinitions.c" } },
- { "pid": 1, "tid": 328, "ts": 13193996.09375, "dur": 3097810.05859375, "ph": "X", "name": "Compile", "args": { "durationMS": 3097.81005859375, "detail": "Il2CppGenericMethodTable.c" } },
- { "pid": 1, "tid": 327, "ph": "M", "name": "thread_name", "args": { "name": "" } },
- { "pid": 1, "tid": 327, "ts": 6870220.703125, "dur": 7142954.58984375, "ph": "X", "name": "Compile", "args": { "durationMS": 7142.95458984375, "detail": "Assembly-CSharp1.cpp" } },
- { "pid": 1, "tid": 327, "ts": 14013191.40625, "dur": 2425609.619140625, "ph": "X", "name": "Compile", "args": { "durationMS": 2425.609619140625, "detail": "Il2CppMetadataRegistration.c" } }
- ],
- "meta_datetime": "02/22/2022 11:33:17",
- "meta_command_line": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\build\\deploy\\netcoreapp3.1\\il2cpp.dll @artifacts\\rsp\\9476370727332558839.rsp",
- "meta_command_line_args": "E:\\unity\\unity\\2020.3.28f1c1\\Editor\\Data\\il2cpp\\build\\deploy\\netcoreapp3.1\\il2cpp.dll @artifacts\\rsp\\9476370727332558839.rsp",
- "meta_user_name": "lsc",
- "meta_os_version": "Microsoft Windows NT 6.2.9200.0",
- "meta_cpu_count": "8"}
|