暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

backend5.traceevents 1.8MB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253
  1. { "cat":"", "pid":12345, "tid":0, "ts":0, "ph":"M", "name":"process_name", "args": { "name":"bee_backend" } }
  2. ,{ "pid":12345, "tid":0, "ts":1718090301527493, "dur":64, "ph":"X", "name": "IPC_Client_InitializeAndConnectToParent", "args": { "detail":"" }}
  3. ,{ "pid":12345, "tid":0, "ts":1718090301527585, "dur":95108, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }}
  4. ,{ "pid":12345, "tid":0, "ts":1718090301622707, "dur":1242, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }}
  5. ,{ "pid":12345, "tid":0, "ts":1718090301624166, "dur":432, "ph":"X", "name": "Tundra", "args": { "detail":"PrepareNodes" }}
  6. ,{ "pid":12345, "tid":0, "ts":1718090301624598, "dur":217, "ph":"X", "name": "BuildQueueInit", "args": { "detail":"" }}
  7. ,{ "pid":12345, "tid":0, "ts":1718090301625232, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/Resources/unity_builtin_extra" }}
  8. ,{ "pid":12345, "tid":0, "ts":1718090301625798, "dur":60, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"AddBootConfigGUID Library/Bee/artifacts/iOS/boot.config" }}
  9. ,{ "pid":12345, "tid":0, "ts":1718090301626124, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAnalyticsWrapper.m" }}
  10. ,{ "pid":12345, "tid":0, "ts":1718090301626178, "dur":55, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.purchasing/Plugins/UnityPurchasing/iOS/UnityPurchasing.m" }}
  11. ,{ "pid":12345, "tid":0, "ts":1718090301626274, "dur":55, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/AppleAuth/Native/iOS/AppleAuthManager.h" }}
  12. ,{ "pid":12345, "tid":0, "ts":1718090301626355, "dur":50, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAdsUtilities.h" }}
  13. ,{ "pid":12345, "tid":0, "ts":1718090301626497, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/AppleAuth/Native/iOS/AppleAuthManager.m" }}
  14. ,{ "pid":12345, "tid":0, "ts":1718090301627103, "dur":53, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSLoadOptions.h" }}
  15. ,{ "pid":12345, "tid":0, "ts":1718090301627281, "dur":54, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSShowOptions.h" }}
  16. ,{ "pid":12345, "tid":0, "ts":1718090301627446, "dur":55, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONItem.h" }}
  17. ,{ "pid":12345, "tid":0, "ts":1718090301627610, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONPromoMetaData.h" }}
  18. ,{ "pid":12345, "tid":0, "ts":1718090301628045, "dur":54, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsFinishState.h" }}
  19. ,{ "pid":12345, "tid":0, "ts":1718090301628103, "dur":54, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsInitializationDelegate.h" }}
  20. ,{ "pid":12345, "tid":0, "ts":1718090301628205, "dur":54, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsLoadDelegate.h" }}
  21. ,{ "pid":12345, "tid":0, "ts":1718090301628301, "dur":55, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsPlacementState.h" }}
  22. ,{ "pid":12345, "tid":0, "ts":1718090301633214, "dur":775, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.WinRTCore-FeaturesChecked.txt" }}
  23. ,{ "pid":12345, "tid":0, "ts":1718090301646606, "dur":272, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Collections_CodeGen.c" }}
  24. ,{ "pid":12345, "tid":0, "ts":1718090301646971, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Configuration_CodeGen.c" }}
  25. ,{ "pid":12345, "tid":0, "ts":1718090301647492, "dur":51, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Physics2DModule_CodeGen.c" }}
  26. ,{ "pid":12345, "tid":0, "ts":1718090301647594, "dur":78, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.PropertiesModule_CodeGen.c" }}
  27. ,{ "pid":12345, "tid":0, "ts":1718090301647923, "dur":55, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.ScreenCaptureModule_CodeGen.c" }}
  28. ,{ "pid":12345, "tid":0, "ts":1718090301649836, "dur":1047, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.UWP.dll" }}
  29. ,{ "pid":12345, "tid":0, "ts":1718090301656254, "dur":418, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Threading.ThreadPool.dll" }}
  30. ,{ "pid":12345, "tid":0, "ts":1718090301657491, "dur":53, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Api.Output.dll" }}
  31. ,{ "pid":12345, "tid":0, "ts":1718090301657837, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.iOS.pdb" }}
  32. ,{ "pid":12345, "tid":0, "ts":1718090301658044, "dur":55, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.pdb" }}
  33. ,{ "pid":12345, "tid":0, "ts":1718090301658564, "dur":67, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Common.pdb" }}
  34. ,{ "pid":12345, "tid":0, "ts":1718090301659154, "dur":59, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.TinyProfiler.pdb" }}
  35. ,{ "pid":12345, "tid":0, "ts":1718090301659221, "dur":53, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/UnityLinker" }}
  36. ,{ "pid":12345, "tid":0, "ts":1718090301659978, "dur":63, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.NativeProgramSupport.pdb" }}
  37. ,{ "pid":12345, "tid":0, "ts":1718090301661001, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Windows.dll" }}
  38. ,{ "pid":12345, "tid":0, "ts":1718090301662300, "dur":172, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Microsoft.VisualBasic.dll" }}
  39. ,{ "pid":12345, "tid":0, "ts":1718090301664563, "dur":59, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.Pipes.dll" }}
  40. ,{ "pid":12345, "tid":0, "ts":1718090301665729, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Reflection.Emit.dll" }}
  41. ,{ "pid":12345, "tid":0, "ts":1718090301667238, "dur":513, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Text.Encoding.CodePages.dll" }}
  42. ,{ "pid":12345, "tid":0, "ts":1718090301667761, "dur":50, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Text.Encoding.dll" }}
  43. ,{ "pid":12345, "tid":0, "ts":1718090301669531, "dur":2914, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.EmbeddedLinux.pdb" }}
  44. ,{ "pid":12345, "tid":0, "ts":1718090301672454, "dur":51, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.iOS.dll" }}
  45. ,{ "pid":12345, "tid":0, "ts":1718090301672508, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.iOS.pdb" }}
  46. ,{ "pid":12345, "tid":0, "ts":1718090301672723, "dur":50, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.pdb" }}
  47. ,{ "pid":12345, "tid":0, "ts":1718090301672976, "dur":53, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.VisionOS.dll" }}
  48. ,{ "pid":12345, "tid":0, "ts":1718090301673033, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.VisionOS.pdb" }}
  49. ,{ "pid":12345, "tid":0, "ts":1718090301673297, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.dll" }}
  50. ,{ "pid":12345, "tid":0, "ts":1718090301673525, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Common.pdb" }}
  51. ,{ "pid":12345, "tid":0, "ts":1718090301673951, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Shell.dll" }}
  52. ,{ "pid":12345, "tid":0, "ts":1718090301674158, "dur":58, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Linker.Api.pdb" }}
  53. ,{ "pid":12345, "tid":0, "ts":1718090301674476, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/UnityLinker.pdb" }}
  54. ,{ "pid":12345, "tid":0, "ts":1718090301674643, "dur":59, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Alignment.h" }}
  55. ,{ "pid":12345, "tid":0, "ts":1718090301698320, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/parse.c" }}
  56. ,{ "pid":12345, "tid":0, "ts":1718090301698618, "dur":53, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/valgrind.h" }}
  57. ,{ "pid":12345, "tid":0, "ts":1718090301698697, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/w32subset.h" }}
  58. ,{ "pid":12345, "tid":0, "ts":1718090301705522, "dur":55, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Type.cpp" }}
  59. ,{ "pid":12345, "tid":0, "ts":1718090301705639, "dur":54, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/TypedReference.cpp" }}
  60. ,{ "pid":12345, "tid":0, "ts":1718090301705722, "dur":73, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/ValueType.cpp" }}
  61. ,{ "pid":12345, "tid":0, "ts":1718090301706660, "dur":9447, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.Sockets/SocketException.h" }}
  62. ,{ "pid":12345, "tid":0, "ts":1718090301717530, "dur":58, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/CustomAttributeCreator.h" }}
  63. ,{ "pid":12345, "tid":0, "ts":1718090301717708, "dur":59, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/CustomAttributeDataReader.cpp" }}
  64. ,{ "pid":12345, "tid":0, "ts":1718090301717790, "dur":59, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/CustomAttributeDataReader.h" }}
  65. ,{ "pid":12345, "tid":0, "ts":1718090301717862, "dur":58, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/FieldLayout.cpp" }}
  66. ,{ "pid":12345, "tid":0, "ts":1718090301717933, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/FieldLayout.h" }}
  67. ,{ "pid":12345, "tid":0, "ts":1718090301718004, "dur":58, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericMetadata.cpp" }}
  68. ,{ "pid":12345, "tid":0, "ts":1718090301718075, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericMetadata.h" }}
  69. ,{ "pid":12345, "tid":0, "ts":1718090301718145, "dur":59, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericMethod.cpp" }}
  70. ,{ "pid":12345, "tid":0, "ts":1718090301718217, "dur":58, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericMethod.h" }}
  71. ,{ "pid":12345, "tid":0, "ts":1718090301718287, "dur":59, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericSharing.cpp" }}
  72. ,{ "pid":12345, "tid":0, "ts":1718090301718357, "dur":59, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericSharing.h" }}
  73. ,{ "pid":12345, "tid":0, "ts":1718090301718429, "dur":58, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericClassCompare.cpp" }}
  74. ,{ "pid":12345, "tid":0, "ts":1718090301718498, "dur":53, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericClassCompare.h" }}
  75. ,{ "pid":12345, "tid":0, "ts":1718090301718564, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericClassHash.cpp" }}
  76. ,{ "pid":12345, "tid":0, "ts":1718090301718634, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericClassHash.h" }}
  77. ,{ "pid":12345, "tid":0, "ts":1718090301718704, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericContextCompare.cpp" }}
  78. ,{ "pid":12345, "tid":0, "ts":1718090301718775, "dur":59, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericContextCompare.h" }}
  79. ,{ "pid":12345, "tid":0, "ts":1718090301718978, "dur":58, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericContextHash.cpp" }}
  80. ,{ "pid":12345, "tid":0, "ts":1718090301719050, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericContextHash.h" }}
  81. ,{ "pid":12345, "tid":0, "ts":1718090301719120, "dur":58, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericInstCompare.cpp" }}
  82. ,{ "pid":12345, "tid":0, "ts":1718090301719190, "dur":58, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericInstCompare.h" }}
  83. ,{ "pid":12345, "tid":0, "ts":1718090301719262, "dur":3305, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericInstHash.cpp" }}
  84. ,{ "pid":12345, "tid":0, "ts":1718090301722754, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericMethodHash.h" }}
  85. ,{ "pid":12345, "tid":0, "ts":1718090301722875, "dur":55, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppSignature.h" }}
  86. ,{ "pid":12345, "tid":0, "ts":1718090301722982, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppTypeHash.cpp" }}
  87. ,{ "pid":12345, "tid":0, "ts":1718090301723462, "dur":50, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/threadpool-ms-io.h" }}
  88. ,{ "pid":12345, "tid":0, "ts":1718090301724003, "dur":67, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Android/pal_android.h" }}
  89. ,{ "pid":12345, "tid":0, "ts":1718090301724378, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/CultureInfo.cpp" }}
  90. ,{ "pid":12345, "tid":0, "ts":1718090301724512, "dur":55, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Environment-c-api.h" }}
  91. ,{ "pid":12345, "tid":0, "ts":1718090301724571, "dur":58, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Environment.cpp" }}
  92. ,{ "pid":12345, "tid":0, "ts":1718090301724782, "dur":53, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Error.cpp" }}
  93. ,{ "pid":12345, "tid":0, "ts":1718090301724871, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/File.cpp" }}
  94. ,{ "pid":12345, "tid":0, "ts":1718090301724970, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/il2cpp-config-platforms.h" }}
  95. ,{ "pid":12345, "tid":0, "ts":1718090301734499, "dur":534, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/mono-structs.cpp" }}
  96. ,{ "pid":12345, "tid":0, "ts":1718090301735040, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/New.h" }}
  97. ,{ "pid":12345, "tid":0, "ts":1718090301735479, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/StringUtils.h" }}
  98. ,{ "pid":12345, "tid":0, "ts":1718090301735535, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/StringView.h" }}
  99. ,{ "pid":12345, "tid":0, "ts":1718090301738859, "dur":217, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Runtime.cpp" }}
  100. ,{ "pid":12345, "tid":0, "ts":1718090301624844, "dur":116197, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }}
  101. ,{ "pid":12345, "tid":0, "ts":1718090301741055, "dur":137481, "ph":"X", "name": "WaitForBuildFinished", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  102. ,{ "pid":12345, "tid":0, "ts":1718090301878555, "dur":61, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }}
  103. ,{ "pid":12345, "tid":0, "ts":1718090301878946, "dur":3579, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }}
  104. ,{ "pid":12345, "tid":1, "ts":1718090301624692, "dur":116373, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  105. ,{ "pid":12345, "tid":1, "ts":1718090301741070, "dur":35056, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }}
  106. ,{ "pid":12345, "tid":1, "ts":1718090301776301, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.IMGUIModule.dll" }}
  107. ,{ "pid":12345, "tid":1, "ts":1718090301776748, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.XRModule.dll" }}
  108. ,{ "pid":12345, "tid":1, "ts":1718090301776836, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.dll" }}
  109. ,{ "pid":12345, "tid":1, "ts":1718090301776962, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Assembly-CSharp.dll" }}
  110. ,{ "pid":12345, "tid":1, "ts":1718090301777113, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.Stores.dll" }}
  111. ,{ "pid":12345, "tid":1, "ts":1718090301777181, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Environments.Internal.dll" }}
  112. ,{ "pid":12345, "tid":1, "ts":1718090301777301, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Networking.dll" }}
  113. ,{ "pid":12345, "tid":1, "ts":1718090301777390, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.VisualScripting.Flow.dll" }}
  114. ,{ "pid":12345, "tid":1, "ts":1718090301777497, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Environments.dll" }}
  115. ,{ "pid":12345, "tid":1, "ts":1718090301777660, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Collections.dll" }}
  116. ,{ "pid":12345, "tid":1, "ts":1718090301777826, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll" }}
  117. ,{ "pid":12345, "tid":1, "ts":1718090301778021, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Analytics.dll" }}
  118. ,{ "pid":12345, "tid":1, "ts":1718090301778119, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/AppleAuth.dll" }}
  119. ,{ "pid":12345, "tid":1, "ts":1718090301778392, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Advertisements.dll" }}
  120. ,{ "pid":12345, "tid":1, "ts":1718090301778529, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Internal.dll" }}
  121. ,{ "pid":12345, "tid":1, "ts":1718090301778632, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.Apple.dll" }}
  122. ,{ "pid":12345, "tid":1, "ts":1718090301778697, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Device.dll" }}
  123. ,{ "pid":12345, "tid":1, "ts":1718090301778976, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.Security.dll" }}
  124. ,{ "pid":12345, "tid":1, "ts":1718090301779148, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Telemetry.dll" }}
  125. ,{ "pid":12345, "tid":1, "ts":1718090301779216, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll" }}
  126. ,{ "pid":12345, "tid":1, "ts":1718090301779334, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Timeline.dll" }}
  127. ,{ "pid":12345, "tid":1, "ts":1718090301779502, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.VisualScripting.State.dll" }}
  128. ,{ "pid":12345, "tid":1, "ts":1718090301779736, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/Firebase/Plugins/Firebase.TaskExtension.dll" }}
  129. ,{ "pid":12345, "tid":1, "ts":1718090301779811, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/GoogleMobileAds/GoogleMobileAds.Core.dll" }}
  130. ,{ "pid":12345, "tid":1, "ts":1718090301779988, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/PackageCache/com.unity.visualscripting@1.9.4/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" }}
  131. ,{ "pid":12345, "tid":1, "ts":1718090301780108, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/PackageCache/com.unity.nuget.newtonsoft-json@3.2.1/Runtime/AOT/Newtonsoft.Json.dll" }}
  132. ,{ "pid":12345, "tid":1, "ts":1718090301780217, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/Firebase/Plugins/Google.MiniJson.dll" }}
  133. ,{ "pid":12345, "tid":1, "ts":1718090301780387, "dur":136, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/Microsoft.Win32.Registry.dll" }}
  134. ,{ "pid":12345, "tid":1, "ts":1718090301780525, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.AppContext.dll" }}
  135. ,{ "pid":12345, "tid":1, "ts":1718090301780615, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Collections.Concurrent.dll" }}
  136. ,{ "pid":12345, "tid":1, "ts":1718090301780834, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.ComponentModel.Annotations.dll" }}
  137. ,{ "pid":12345, "tid":1, "ts":1718090301780964, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.ComponentModel.Primitives.dll" }}
  138. ,{ "pid":12345, "tid":1, "ts":1718090301781076, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.ComponentModel.TypeConverter.dll" }}
  139. ,{ "pid":12345, "tid":1, "ts":1718090301781131, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.ComponentModel.dll" }}
  140. ,{ "pid":12345, "tid":1, "ts":1718090301781189, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Console.dll" }}
  141. ,{ "pid":12345, "tid":1, "ts":1718090301781360, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Diagnostics.Debug.dll" }}
  142. ,{ "pid":12345, "tid":1, "ts":1718090301781417, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Diagnostics.FileVersionInfo.dll" }}
  143. ,{ "pid":12345, "tid":1, "ts":1718090301781531, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Diagnostics.StackTrace.dll" }}
  144. ,{ "pid":12345, "tid":1, "ts":1718090301781625, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Diagnostics.TextWriterTraceListener.dll" }}
  145. ,{ "pid":12345, "tid":1, "ts":1718090301781710, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Diagnostics.Tools.dll" }}
  146. ,{ "pid":12345, "tid":1, "ts":1718090301781805, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Diagnostics.TraceEvent.dll" }}
  147. ,{ "pid":12345, "tid":1, "ts":1718090301781939, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Drawing.Primitives.dll" }}
  148. ,{ "pid":12345, "tid":1, "ts":1718090301782009, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Dynamic.Runtime.dll" }}
  149. ,{ "pid":12345, "tid":1, "ts":1718090301782381, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.IO.IsolatedStorage.dll" }}
  150. ,{ "pid":12345, "tid":1, "ts":1718090301782590, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Linq.Expressions.dll" }}
  151. ,{ "pid":12345, "tid":1, "ts":1718090301782703, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Linq.dll" }}
  152. ,{ "pid":12345, "tid":1, "ts":1718090301782820, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Net.AuthenticationManager.dll" }}
  153. ,{ "pid":12345, "tid":1, "ts":1718090301783088, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Net.Ping.dll" }}
  154. ,{ "pid":12345, "tid":1, "ts":1718090301783149, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Net.Primitives.dll" }}
  155. ,{ "pid":12345, "tid":1, "ts":1718090301783321, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Net.ServicePoint.dll" }}
  156. ,{ "pid":12345, "tid":1, "ts":1718090301783714, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Reflection.Primitives.dll" }}
  157. ,{ "pid":12345, "tid":1, "ts":1718090301783784, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Reflection.TypeExtensions.dll" }}
  158. ,{ "pid":12345, "tid":1, "ts":1718090301783883, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Resources.Reader.dll" }}
  159. ,{ "pid":12345, "tid":1, "ts":1718090301783995, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Resources.ResourceManager.dll" }}
  160. ,{ "pid":12345, "tid":1, "ts":1718090301784129, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Runtime.Handles.dll" }}
  161. ,{ "pid":12345, "tid":1, "ts":1718090301784422, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Runtime.Serialization.Xml.dll" }}
  162. ,{ "pid":12345, "tid":1, "ts":1718090301784573, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.Algorithms.dll" }}
  163. ,{ "pid":12345, "tid":1, "ts":1718090301784673, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.Csp.dll" }}
  164. ,{ "pid":12345, "tid":1, "ts":1718090301784991, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.Hashing.dll" }}
  165. ,{ "pid":12345, "tid":1, "ts":1718090301785997, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Xml.XDocument.dll" }}
  166. ,{ "pid":12345, "tid":1, "ts":1718090301786326, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.ComponentModel.Composition.dll" }}
  167. ,{ "pid":12345, "tid":1, "ts":1718090301786420, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Configuration.dll" }}
  168. ,{ "pid":12345, "tid":1, "ts":1718090301786473, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Core.dll" }}
  169. ,{ "pid":12345, "tid":1, "ts":1718090301786526, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Data.DataSetExtensions.dll" }}
  170. ,{ "pid":12345, "tid":1, "ts":1718090301787672, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.ServiceProcess.dll" }}
  171. ,{ "pid":12345, "tid":1, "ts":1718090301787935, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Web.Services.dll" }}
  172. ,{ "pid":12345, "tid":1, "ts":1718090301788246, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.dll" }}
  173. ,{ "pid":12345, "tid":1, "ts":1718090301788334, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Temp/StagingArea/Data/Managed/MethodsToPreserve.xml" }}
  174. ,{ "pid":12345, "tid":1, "ts":1718090301788395, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Temp/StagingArea/Data/Managed/TypesInScenes.xml" }}
  175. ,{ "pid":12345, "tid":1, "ts":1718090301788473, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Temp/StagingArea/Data/Managed/SerializedTypes.xml" }}
  176. ,{ "pid":12345, "tid":1, "ts":1718090301788536, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/GoogleMobileAds/link.xml" }}
  177. ,{ "pid":12345, "tid":1, "ts":1718090301789081, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Bee.Core.pdb" }}
  178. ,{ "pid":12345, "tid":1, "ts":1718090301791057, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Microsoft.VisualBasic.dll" }}
  179. ,{ "pid":12345, "tid":1, "ts":1718090301791363, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/monolinker.pdb" }}
  180. ,{ "pid":12345, "tid":1, "ts":1718090301791512, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/NiceIO.dll" }}
  181. ,{ "pid":12345, "tid":1, "ts":1718090301792154, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Diagnostics.DiagnosticSource.dll" }}
  182. ,{ "pid":12345, "tid":1, "ts":1718090301792269, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Diagnostics.Process.dll" }}
  183. ,{ "pid":12345, "tid":1, "ts":1718090301792501, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.dll" }}
  184. ,{ "pid":12345, "tid":1, "ts":1718090301792638, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Dynamic.Runtime.dll" }}
  185. ,{ "pid":12345, "tid":1, "ts":1718090301792963, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.IO.FileSystem.AccessControl.dll" }}
  186. ,{ "pid":12345, "tid":1, "ts":1718090301793399, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Memory.dll" }}
  187. ,{ "pid":12345, "tid":1, "ts":1718090301793837, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Net.Sockets.dll" }}
  188. ,{ "pid":12345, "tid":1, "ts":1718090301793933, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Net.WebClient.dll" }}
  189. ,{ "pid":12345, "tid":1, "ts":1718090301794004, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Net.WebHeaderCollection.dll" }}
  190. ,{ "pid":12345, "tid":1, "ts":1718090301794059, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Net.WebProxy.dll" }}
  191. ,{ "pid":12345, "tid":1, "ts":1718090301794302, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Private.CoreLib.dll" }}
  192. ,{ "pid":12345, "tid":1, "ts":1718090301794568, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Reflection.Emit.dll" }}
  193. ,{ "pid":12345, "tid":1, "ts":1718090301794709, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Reflection.Extensions.dll" }}
  194. ,{ "pid":12345, "tid":1, "ts":1718090301794889, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Resources.Reader.dll" }}
  195. ,{ "pid":12345, "tid":1, "ts":1718090301795038, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Runtime.CompilerServices.VisualC.dll" }}
  196. ,{ "pid":12345, "tid":1, "ts":1718090301795145, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Runtime.Extensions.dll" }}
  197. ,{ "pid":12345, "tid":1, "ts":1718090301795710, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Security.Cryptography.Csp.dll" }}
  198. ,{ "pid":12345, "tid":1, "ts":1718090301795788, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Security.Cryptography.OpenSsl.dll" }}
  199. ,{ "pid":12345, "tid":1, "ts":1718090301796086, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.ServiceProcess.dll" }}
  200. ,{ "pid":12345, "tid":1, "ts":1718090301796138, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Text.Encoding.CodePages.dll" }}
  201. ,{ "pid":12345, "tid":1, "ts":1718090301796627, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Threading.Tasks.Parallel.dll" }}
  202. ,{ "pid":12345, "tid":1, "ts":1718090301797682, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Unity.IL2CPP.Bee.BuildLogic.Android.dll" }}
  203. ,{ "pid":12345, "tid":1, "ts":1718090301797851, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Unity.IL2CPP.Bee.BuildLogic.EmbeddedLinux.dll" }}
  204. ,{ "pid":12345, "tid":1, "ts":1718090301798208, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Unity.IL2CPP.Bee.BuildLogic.VisionOS.dll" }}
  205. ,{ "pid":12345, "tid":1, "ts":1718090301798722, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Unity.IL2CPP.DataModel.pdb" }}
  206. ,{ "pid":12345, "tid":1, "ts":1718090301798822, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Unity.IL2CPP.pdb" }}
  207. ,{ "pid":12345, "tid":1, "ts":1718090301776133, "dur":23278, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"UnityLinker /Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/unitylinker_fi2v.traceevents" }}
  208. ,{ "pid":12345, "tid":1, "ts":1718090301799412, "dur":11180, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  209. ,{ "pid":12345, "tid":1, "ts":1718090301816127, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/il2cpp.pdb" }}
  210. ,{ "pid":12345, "tid":1, "ts":1718090301816471, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/SharpYaml.dll" }}
  211. ,{ "pid":12345, "tid":1, "ts":1718090301817811, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Threading.Tasks.Extensions.dll" }}
  212. ,{ "pid":12345, "tid":1, "ts":1718090301818988, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Purchasing.Common.dll" }}
  213. ,{ "pid":12345, "tid":1, "ts":1718090301819127, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/System.Xml.dll" }}
  214. ,{ "pid":12345, "tid":1, "ts":1718090301819238, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Services.Core.Internal.dll" }}
  215. ,{ "pid":12345, "tid":1, "ts":1718090301815753, "dur":3868, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"IL2CPP_CodeGen /Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/il2cpp_conv_ztz6.traceevents" }}
  216. ,{ "pid":12345, "tid":1, "ts":1718090301819622, "dur":33353, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  217. ,{ "pid":12345, "tid":1, "ts":1718090301867664, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  218. ,{ "pid":12345, "tid":1, "ts":1718090301867777, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Purchasing.Common_CodeGen.c" }}
  219. ,{ "pid":12345, "tid":1, "ts":1718090301867775, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Purchasing.Common_CodeGen.c" }}
  220. ,{ "pid":12345, "tid":1, "ts":1718090301867876, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  221. ,{ "pid":12345, "tid":1, "ts":1718090301867970, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__5.cpp" }}
  222. ,{ "pid":12345, "tid":1, "ts":1718090301867969, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__5.cpp" }}
  223. ,{ "pid":12345, "tid":1, "ts":1718090301868053, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  224. ,{ "pid":12345, "tid":1, "ts":1718090301868147, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__2.cpp" }}
  225. ,{ "pid":12345, "tid":1, "ts":1718090301868145, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__2.cpp" }}
  226. ,{ "pid":12345, "tid":1, "ts":1718090301868269, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  227. ,{ "pid":12345, "tid":1, "ts":1718090301868375, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__7.cpp" }}
  228. ,{ "pid":12345, "tid":1, "ts":1718090301868374, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__7.cpp" }}
  229. ,{ "pid":12345, "tid":1, "ts":1718090301868455, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  230. ,{ "pid":12345, "tid":1, "ts":1718090301868537, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/Managed/Metadata/global-metadata.dat" }}
  231. ,{ "pid":12345, "tid":1, "ts":1718090301868615, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  232. ,{ "pid":12345, "tid":1, "ts":1718090301868712, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Newtonsoft.Json__1.cpp" }}
  233. ,{ "pid":12345, "tid":1, "ts":1718090301868710, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Newtonsoft.Json__1.cpp" }}
  234. ,{ "pid":12345, "tid":1, "ts":1718090301868791, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  235. ,{ "pid":12345, "tid":1, "ts":1718090301868877, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__39.cpp" }}
  236. ,{ "pid":12345, "tid":1, "ts":1718090301868876, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__39.cpp" }}
  237. ,{ "pid":12345, "tid":1, "ts":1718090301868953, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  238. ,{ "pid":12345, "tid":1, "ts":1718090301869031, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.JSONSerializeModule_CodeGen.c" }}
  239. ,{ "pid":12345, "tid":1, "ts":1718090301869030, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.JSONSerializeModule_CodeGen.c" }}
  240. ,{ "pid":12345, "tid":1, "ts":1718090301869110, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  241. ,{ "pid":12345, "tid":1, "ts":1718090301869184, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__13.cpp" }}
  242. ,{ "pid":12345, "tid":1, "ts":1718090301869183, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__13.cpp" }}
  243. ,{ "pid":12345, "tid":1, "ts":1718090301869261, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  244. ,{ "pid":12345, "tid":1, "ts":1718090301869357, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__6.cpp" }}
  245. ,{ "pid":12345, "tid":1, "ts":1718090301869355, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__6.cpp" }}
  246. ,{ "pid":12345, "tid":1, "ts":1718090301869433, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  247. ,{ "pid":12345, "tid":1, "ts":1718090301869529, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__48.cpp" }}
  248. ,{ "pid":12345, "tid":1, "ts":1718090301869528, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__48.cpp" }}
  249. ,{ "pid":12345, "tid":1, "ts":1718090301869629, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  250. ,{ "pid":12345, "tid":1, "ts":1718090301869718, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.InternalAPIEngineBridge.001.cpp" }}
  251. ,{ "pid":12345, "tid":1, "ts":1718090301869717, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.InternalAPIEngineBridge.001.cpp" }}
  252. ,{ "pid":12345, "tid":1, "ts":1718090301869802, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  253. ,{ "pid":12345, "tid":1, "ts":1718090301869941, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.CoreModule.cpp" }}
  254. ,{ "pid":12345, "tid":1, "ts":1718090301869937, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.CoreModule.cpp" }}
  255. ,{ "pid":12345, "tid":1, "ts":1718090301870054, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  256. ,{ "pid":12345, "tid":1, "ts":1718090301870144, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__7.cpp" }}
  257. ,{ "pid":12345, "tid":1, "ts":1718090301870142, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__7.cpp" }}
  258. ,{ "pid":12345, "tid":1, "ts":1718090301870265, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  259. ,{ "pid":12345, "tid":1, "ts":1718090301870353, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Burst_CodeGen.c" }}
  260. ,{ "pid":12345, "tid":1, "ts":1718090301870351, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Burst_CodeGen.c" }}
  261. ,{ "pid":12345, "tid":1, "ts":1718090301870486, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  262. ,{ "pid":12345, "tid":1, "ts":1718090301870585, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__35.cpp" }}
  263. ,{ "pid":12345, "tid":1, "ts":1718090301870584, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__35.cpp" }}
  264. ,{ "pid":12345, "tid":1, "ts":1718090301870675, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  265. ,{ "pid":12345, "tid":1, "ts":1718090301870782, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GoogleMobileAds_CodeGen.c" }}
  266. ,{ "pid":12345, "tid":1, "ts":1718090301870780, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GoogleMobileAds_CodeGen.c" }}
  267. ,{ "pid":12345, "tid":1, "ts":1718090301870874, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  268. ,{ "pid":12345, "tid":1, "ts":1718090301870972, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__8.cpp" }}
  269. ,{ "pid":12345, "tid":1, "ts":1718090301870971, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__8.cpp" }}
  270. ,{ "pid":12345, "tid":1, "ts":1718090301871038, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  271. ,{ "pid":12345, "tid":1, "ts":1718090301871123, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__19.cpp" }}
  272. ,{ "pid":12345, "tid":1, "ts":1718090301871122, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__19.cpp" }}
  273. ,{ "pid":12345, "tid":1, "ts":1718090301871207, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  274. ,{ "pid":12345, "tid":1, "ts":1718090301871290, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Drawing.cpp" }}
  275. ,{ "pid":12345, "tid":1, "ts":1718090301871289, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Drawing.cpp" }}
  276. ,{ "pid":12345, "tid":1, "ts":1718090301871361, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  277. ,{ "pid":12345, "tid":1, "ts":1718090301871457, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__1.cpp" }}
  278. ,{ "pid":12345, "tid":1, "ts":1718090301871455, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__1.cpp" }}
  279. ,{ "pid":12345, "tid":1, "ts":1718090301871548, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  280. ,{ "pid":12345, "tid":1, "ts":1718090301871643, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.TextCoreTextEngineModule__3.cpp" }}
  281. ,{ "pid":12345, "tid":1, "ts":1718090301871642, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.TextCoreTextEngineModule__3.cpp" }}
  282. ,{ "pid":12345, "tid":1, "ts":1718090301871726, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  283. ,{ "pid":12345, "tid":1, "ts":1718090301871823, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Purchasing.Security.cpp" }}
  284. ,{ "pid":12345, "tid":1, "ts":1718090301871821, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Purchasing.Security.cpp" }}
  285. ,{ "pid":12345, "tid":1, "ts":1718090301871908, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  286. ,{ "pid":12345, "tid":1, "ts":1718090301871998, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Purchasing_CodeGen.c" }}
  287. ,{ "pid":12345, "tid":1, "ts":1718090301871996, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Purchasing_CodeGen.c" }}
  288. ,{ "pid":12345, "tid":1, "ts":1718090301872089, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  289. ,{ "pid":12345, "tid":1, "ts":1718090301872191, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System__11.cpp" }}
  290. ,{ "pid":12345, "tid":1, "ts":1718090301872189, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System__11.cpp" }}
  291. ,{ "pid":12345, "tid":1, "ts":1718090301872269, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  292. ,{ "pid":12345, "tid":1, "ts":1718090301872390, "dur":281, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppGenericAdjustorThunkTable.c" }}
  293. ,{ "pid":12345, "tid":1, "ts":1718090301872389, "dur":283, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppGenericAdjustorThunkTable.c" }}
  294. ,{ "pid":12345, "tid":1, "ts":1718090301872689, "dur":302, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  295. ,{ "pid":12345, "tid":1, "ts":1718090301873002, "dur":334, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__15.cpp" }}
  296. ,{ "pid":12345, "tid":1, "ts":1718090301873001, "dur":336, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__15.cpp" }}
  297. ,{ "pid":12345, "tid":1, "ts":1718090301873337, "dur":173, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  298. ,{ "pid":12345, "tid":1, "ts":1718090301873516, "dur":159, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule__2.cpp" }}
  299. ,{ "pid":12345, "tid":1, "ts":1718090301873515, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__2.cpp" }}
  300. ,{ "pid":12345, "tid":1, "ts":1718090301873676, "dur":153, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  301. ,{ "pid":12345, "tid":1, "ts":1718090301873851, "dur":130, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule__12.cpp" }}
  302. ,{ "pid":12345, "tid":1, "ts":1718090301873850, "dur":132, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__12.cpp" }}
  303. ,{ "pid":12345, "tid":1, "ts":1718090301873982, "dur":156, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  304. ,{ "pid":12345, "tid":1, "ts":1718090301874158, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppCCTypeValuesTable.cpp" }}
  305. ,{ "pid":12345, "tid":1, "ts":1718090301874143, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppCCTypeValuesTable.cpp" }}
  306. ,{ "pid":12345, "tid":1, "ts":1718090301874266, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  307. ,{ "pid":12345, "tid":1, "ts":1718090301874374, "dur":184, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Firebase.Auth.cpp" }}
  308. ,{ "pid":12345, "tid":1, "ts":1718090301874373, "dur":186, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Firebase.Auth.cpp" }}
  309. ,{ "pid":12345, "tid":1, "ts":1718090301874563, "dur":165, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  310. ,{ "pid":12345, "tid":1, "ts":1718090301874735, "dur":171, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/I18N.West.cpp" }}
  311. ,{ "pid":12345, "tid":1, "ts":1718090301874734, "dur":173, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/I18N.West.cpp" }}
  312. ,{ "pid":12345, "tid":1, "ts":1718090301874908, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  313. ,{ "pid":12345, "tid":1, "ts":1718090301875021, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__49.cpp" }}
  314. ,{ "pid":12345, "tid":1, "ts":1718090301875020, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__49.cpp" }}
  315. ,{ "pid":12345, "tid":1, "ts":1718090301875094, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  316. ,{ "pid":12345, "tid":1, "ts":1718090301875258, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Core__2.cpp" }}
  317. ,{ "pid":12345, "tid":1, "ts":1718090301875257, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Core__2.cpp" }}
  318. ,{ "pid":12345, "tid":1, "ts":1718090301875353, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  319. ,{ "pid":12345, "tid":1, "ts":1718090301875498, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__59.cpp" }}
  320. ,{ "pid":12345, "tid":1, "ts":1718090301875495, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__59.cpp" }}
  321. ,{ "pid":12345, "tid":1, "ts":1718090301875607, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  322. ,{ "pid":12345, "tid":1, "ts":1718090301875690, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__10.cpp" }}
  323. ,{ "pid":12345, "tid":1, "ts":1718090301875688, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__10.cpp" }}
  324. ,{ "pid":12345, "tid":1, "ts":1718090301875769, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  325. ,{ "pid":12345, "tid":1, "ts":1718090301875874, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Mathematics_CodeGen.c" }}
  326. ,{ "pid":12345, "tid":1, "ts":1718090301875872, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Mathematics_CodeGen.c" }}
  327. ,{ "pid":12345, "tid":1, "ts":1718090301875964, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  328. ,{ "pid":12345, "tid":1, "ts":1718090301876047, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System_CodeGen.c" }}
  329. ,{ "pid":12345, "tid":1, "ts":1718090301876047, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System_CodeGen.c" }}
  330. ,{ "pid":12345, "tid":1, "ts":1718090301876140, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  331. ,{ "pid":12345, "tid":1, "ts":1718090301876264, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Telemetry.cpp" }}
  332. ,{ "pid":12345, "tid":1, "ts":1718090301876251, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Telemetry.cpp" }}
  333. ,{ "pid":12345, "tid":1, "ts":1718090301876355, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  334. ,{ "pid":12345, "tid":1, "ts":1718090301876440, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine_CodeGen.c" }}
  335. ,{ "pid":12345, "tid":1, "ts":1718090301876438, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine_CodeGen.c" }}
  336. ,{ "pid":12345, "tid":1, "ts":1718090301876499, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  337. ,{ "pid":12345, "tid":1, "ts":1718090301876588, "dur":138, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.TextMeshPro__1.cpp" }}
  338. ,{ "pid":12345, "tid":1, "ts":1718090301876587, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.TextMeshPro__1.cpp" }}
  339. ,{ "pid":12345, "tid":1, "ts":1718090301876728, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  340. ,{ "pid":12345, "tid":1, "ts":1718090301876875, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__11.cpp" }}
  341. ,{ "pid":12345, "tid":1, "ts":1718090301876874, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__11.cpp" }}
  342. ,{ "pid":12345, "tid":1, "ts":1718090301876968, "dur":146, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  343. ,{ "pid":12345, "tid":1, "ts":1718090301877127, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Newtonsoft.Json_CodeGen.c" }}
  344. ,{ "pid":12345, "tid":1, "ts":1718090301877126, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Newtonsoft.Json_CodeGen.c" }}
  345. ,{ "pid":12345, "tid":1, "ts":1718090301877219, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  346. ,{ "pid":12345, "tid":1, "ts":1718090301877320, "dur":137, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/AppleAuth.cpp" }}
  347. ,{ "pid":12345, "tid":1, "ts":1718090301877319, "dur":139, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/AppleAuth.cpp" }}
  348. ,{ "pid":12345, "tid":1, "ts":1718090301877458, "dur":156, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  349. ,{ "pid":12345, "tid":1, "ts":1718090301877623, "dur":158, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__53.cpp" }}
  350. ,{ "pid":12345, "tid":1, "ts":1718090301877622, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__53.cpp" }}
  351. ,{ "pid":12345, "tid":1, "ts":1718090301877798, "dur":197, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  352. ,{ "pid":12345, "tid":1, "ts":1718090301878002, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__14.cpp" }}
  353. ,{ "pid":12345, "tid":1, "ts":1718090301878001, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__14.cpp" }}
  354. ,{ "pid":12345, "tid":1, "ts":1718090301878067, "dur":151, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  355. ,{ "pid":12345, "tid":1, "ts":1718090301878241, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__10.cpp" }}
  356. ,{ "pid":12345, "tid":1, "ts":1718090301878240, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__10.cpp" }}
  357. ,{ "pid":12345, "tid":1, "ts":1718090301878394, "dur":104, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  358. ,{ "pid":12345, "tid":2, "ts":1718090301624703, "dur":116372, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  359. ,{ "pid":12345, "tid":2, "ts":1718090301741094, "dur":990, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  360. ,{ "pid":12345, "tid":2, "ts":1718090301742085, "dur":1011, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  361. ,{ "pid":12345, "tid":2, "ts":1718090301743097, "dur":919, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  362. ,{ "pid":12345, "tid":2, "ts":1718090301744017, "dur":990, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  363. ,{ "pid":12345, "tid":2, "ts":1718090301745008, "dur":1164, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  364. ,{ "pid":12345, "tid":2, "ts":1718090301746173, "dur":30050, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  365. ,{ "pid":12345, "tid":2, "ts":1718090301776252, "dur":112, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.UnityAnalyticsModule-FeaturesChecked.txt_e6dx.info" }}
  366. ,{ "pid":12345, "tid":2, "ts":1718090301776476, "dur":93, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.Purchasing.AppleCore-FeaturesChecked.txt_qawa.info" }}
  367. ,{ "pid":12345, "tid":2, "ts":1718090301776576, "dur":63, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.GridModule-FeaturesChecked.txt_3xfm.info" }}
  368. ,{ "pid":12345, "tid":2, "ts":1718090301776650, "dur":78, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.Advertisements-FeaturesChecked.txt_7vuj.info" }}
  369. ,{ "pid":12345, "tid":2, "ts":1718090301776779, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  370. ,{ "pid":12345, "tid":2, "ts":1718090301776857, "dur":146, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  371. ,{ "pid":12345, "tid":2, "ts":1718090301777032, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  372. ,{ "pid":12345, "tid":2, "ts":1718090301777125, "dur":153, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  373. ,{ "pid":12345, "tid":2, "ts":1718090301777282, "dur":180, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  374. ,{ "pid":12345, "tid":2, "ts":1718090301777467, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/armv7.swiftmodule" }}
  375. ,{ "pid":12345, "tid":2, "ts":1718090301777581, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  376. ,{ "pid":12345, "tid":2, "ts":1718090301777654, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/armv7-apple-ios.swiftdoc" }}
  377. ,{ "pid":12345, "tid":2, "ts":1718090301777819, "dur":152, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  378. ,{ "pid":12345, "tid":2, "ts":1718090301777990, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios.swiftdoc" }}
  379. ,{ "pid":12345, "tid":2, "ts":1718090301778111, "dur":141, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  380. ,{ "pid":12345, "tid":2, "ts":1718090301778300, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/USRVUnityPurchasing.h" }}
  381. ,{ "pid":12345, "tid":2, "ts":1718090301778293, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/USRVUnityPurchasing.h" }}
  382. ,{ "pid":12345, "tid":2, "ts":1718090301778387, "dur":193, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  383. ,{ "pid":12345, "tid":2, "ts":1718090301778600, "dur":166, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UPURTransactionDetails.h" }}
  384. ,{ "pid":12345, "tid":2, "ts":1718090301778599, "dur":168, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UPURTransactionDetails.h" }}
  385. ,{ "pid":12345, "tid":2, "ts":1718090301778767, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  386. ,{ "pid":12345, "tid":2, "ts":1718090301778882, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityMonetization.h" }}
  387. ,{ "pid":12345, "tid":2, "ts":1718090301778881, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityMonetization.h" }}
  388. ,{ "pid":12345, "tid":2, "ts":1718090301778955, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  389. ,{ "pid":12345, "tid":2, "ts":1718090301779098, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSBannerAdRefreshViewDelegate.h" }}
  390. ,{ "pid":12345, "tid":2, "ts":1718090301779097, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSBannerAdRefreshViewDelegate.h" }}
  391. ,{ "pid":12345, "tid":2, "ts":1718090301779192, "dur":148, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  392. ,{ "pid":12345, "tid":2, "ts":1718090301779345, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsError.h" }}
  393. ,{ "pid":12345, "tid":2, "ts":1718090301779344, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsError.h" }}
  394. ,{ "pid":12345, "tid":2, "ts":1718090301779479, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  395. ,{ "pid":12345, "tid":2, "ts":1718090301779591, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONShowAdPlacementContent.h" }}
  396. ,{ "pid":12345, "tid":2, "ts":1718090301779590, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONShowAdPlacementContent.h" }}
  397. ,{ "pid":12345, "tid":2, "ts":1718090301779666, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  398. ,{ "pid":12345, "tid":2, "ts":1718090301779808, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSShowOptions.h" }}
  399. ,{ "pid":12345, "tid":2, "ts":1718090301779807, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSShowOptions.h" }}
  400. ,{ "pid":12345, "tid":2, "ts":1718090301779929, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  401. ,{ "pid":12345, "tid":2, "ts":1718090301780033, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSInAppPurchaseMetaData.h" }}
  402. ,{ "pid":12345, "tid":2, "ts":1718090301780031, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSInAppPurchaseMetaData.h" }}
  403. ,{ "pid":12345, "tid":2, "ts":1718090301780104, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  404. ,{ "pid":12345, "tid":2, "ts":1718090301780209, "dur":129, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/VmStringUtils.h" }}
  405. ,{ "pid":12345, "tid":2, "ts":1718090301780207, "dur":132, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/VmStringUtils.h" }}
  406. ,{ "pid":12345, "tid":2, "ts":1718090301780346, "dur":147, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  407. ,{ "pid":12345, "tid":2, "ts":1718090301780516, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/MethodDefinitionKey.h" }}
  408. ,{ "pid":12345, "tid":2, "ts":1718090301780515, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/MethodDefinitionKey.h" }}
  409. ,{ "pid":12345, "tid":2, "ts":1718090301780621, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  410. ,{ "pid":12345, "tid":2, "ts":1718090301780752, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/icalls/mscorlib/System.Threading/Interlocked.cpp" }}
  411. ,{ "pid":12345, "tid":2, "ts":1718090301780751, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/icalls/mscorlib/System.Threading/Interlocked.cpp" }}
  412. ,{ "pid":12345, "tid":2, "ts":1718090301780874, "dur":163, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  413. ,{ "pid":12345, "tid":2, "ts":1718090301781063, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/BlobReader.h" }}
  414. ,{ "pid":12345, "tid":2, "ts":1718090301781062, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/BlobReader.h" }}
  415. ,{ "pid":12345, "tid":2, "ts":1718090301781158, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  416. ,{ "pid":12345, "tid":2, "ts":1718090301781272, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/ThreadSafeFreeList.h" }}
  417. ,{ "pid":12345, "tid":2, "ts":1718090301781270, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/ThreadSafeFreeList.h" }}
  418. ,{ "pid":12345, "tid":2, "ts":1718090301781356, "dur":141, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  419. ,{ "pid":12345, "tid":2, "ts":1718090301781507, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/sha1.h" }}
  420. ,{ "pid":12345, "tid":2, "ts":1718090301781505, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/sha1.h" }}
  421. ,{ "pid":12345, "tid":2, "ts":1718090301781625, "dur":153, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  422. ,{ "pid":12345, "tid":2, "ts":1718090301781784, "dur":126, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Output.h" }}
  423. ,{ "pid":12345, "tid":2, "ts":1718090301781783, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Output.h" }}
  424. ,{ "pid":12345, "tid":2, "ts":1718090301781911, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  425. ,{ "pid":12345, "tid":2, "ts":1718090301782038, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryRead.h" }}
  426. ,{ "pid":12345, "tid":2, "ts":1718090301782021, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryRead.h" }}
  427. ,{ "pid":12345, "tid":2, "ts":1718090301782118, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  428. ,{ "pid":12345, "tid":2, "ts":1718090301782198, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryMappedFile.h" }}
  429. ,{ "pid":12345, "tid":2, "ts":1718090301782196, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryMappedFile.h" }}
  430. ,{ "pid":12345, "tid":2, "ts":1718090301782275, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  431. ,{ "pid":12345, "tid":2, "ts":1718090301782351, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MarshalingUtils.cpp" }}
  432. ,{ "pid":12345, "tid":2, "ts":1718090301782350, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MarshalingUtils.cpp" }}
  433. ,{ "pid":12345, "tid":2, "ts":1718090301782459, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  434. ,{ "pid":12345, "tid":2, "ts":1718090301782516, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Il2CppHashMap.h" }}
  435. ,{ "pid":12345, "tid":2, "ts":1718090301782515, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Il2CppHashMap.h" }}
  436. ,{ "pid":12345, "tid":2, "ts":1718090301782592, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  437. ,{ "pid":12345, "tid":2, "ts":1718090301782682, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Expected.h" }}
  438. ,{ "pid":12345, "tid":2, "ts":1718090301782681, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Expected.h" }}
  439. ,{ "pid":12345, "tid":2, "ts":1718090301782781, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  440. ,{ "pid":12345, "tid":2, "ts":1718090301782895, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/dynamic_array.h" }}
  441. ,{ "pid":12345, "tid":2, "ts":1718090301782894, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/dynamic_array.h" }}
  442. ,{ "pid":12345, "tid":2, "ts":1718090301782970, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  443. ,{ "pid":12345, "tid":2, "ts":1718090301783062, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/UnityAdsStubs.cpp" }}
  444. ,{ "pid":12345, "tid":2, "ts":1718090301783061, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/UnityAdsStubs.cpp" }}
  445. ,{ "pid":12345, "tid":2, "ts":1718090301783136, "dur":156, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  446. ,{ "pid":12345, "tid":2, "ts":1718090301783298, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/Win32ApiWinRTEmulation.h" }}
  447. ,{ "pid":12345, "tid":2, "ts":1718090301783296, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Win32ApiWinRTEmulation.h" }}
  448. ,{ "pid":12345, "tid":2, "ts":1718090301783410, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  449. ,{ "pid":12345, "tid":2, "ts":1718090301783489, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/Process.cpp" }}
  450. ,{ "pid":12345, "tid":2, "ts":1718090301783487, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Process.cpp" }}
  451. ,{ "pid":12345, "tid":2, "ts":1718090301783578, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  452. ,{ "pid":12345, "tid":2, "ts":1718090301783640, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WindowsGames/Win32ApiWindowsGamesEmulation.h" }}
  453. ,{ "pid":12345, "tid":2, "ts":1718090301783638, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WindowsGames/Win32ApiWindowsGamesEmulation.h" }}
  454. ,{ "pid":12345, "tid":2, "ts":1718090301783712, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  455. ,{ "pid":12345, "tid":2, "ts":1718090301783859, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/TimeZone.cpp" }}
  456. ,{ "pid":12345, "tid":2, "ts":1718090301783858, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/TimeZone.cpp" }}
  457. ,{ "pid":12345, "tid":2, "ts":1718090301783958, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  458. ,{ "pid":12345, "tid":2, "ts":1718090301784068, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/SystemCertificates.cpp" }}
  459. ,{ "pid":12345, "tid":2, "ts":1718090301784067, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/SystemCertificates.cpp" }}
  460. ,{ "pid":12345, "tid":2, "ts":1718090301784225, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  461. ,{ "pid":12345, "tid":2, "ts":1718090301784309, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Memory.cpp" }}
  462. ,{ "pid":12345, "tid":2, "ts":1718090301784308, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Memory.cpp" }}
  463. ,{ "pid":12345, "tid":2, "ts":1718090301784378, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  464. ,{ "pid":12345, "tid":2, "ts":1718090301784479, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Initialize.cpp" }}
  465. ,{ "pid":12345, "tid":2, "ts":1718090301784477, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Initialize.cpp" }}
  466. ,{ "pid":12345, "tid":2, "ts":1718090301784545, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  467. ,{ "pid":12345, "tid":2, "ts":1718090301784657, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Encoding.cpp" }}
  468. ,{ "pid":12345, "tid":2, "ts":1718090301784655, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Encoding.cpp" }}
  469. ,{ "pid":12345, "tid":2, "ts":1718090301784763, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  470. ,{ "pid":12345, "tid":2, "ts":1718090301784848, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/CrashHelpers.cpp" }}
  471. ,{ "pid":12345, "tid":2, "ts":1718090301784847, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/CrashHelpers.cpp" }}
  472. ,{ "pid":12345, "tid":2, "ts":1718090301784902, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  473. ,{ "pid":12345, "tid":2, "ts":1718090301784983, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Assert.cpp" }}
  474. ,{ "pid":12345, "tid":2, "ts":1718090301784981, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Assert.cpp" }}
  475. ,{ "pid":12345, "tid":2, "ts":1718090301785049, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  476. ,{ "pid":12345, "tid":2, "ts":1718090301785117, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Thread.cpp" }}
  477. ,{ "pid":12345, "tid":2, "ts":1718090301785116, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Thread.cpp" }}
  478. ,{ "pid":12345, "tid":2, "ts":1718090301785178, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  479. ,{ "pid":12345, "tid":2, "ts":1718090301785248, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/StackTrace.cpp" }}
  480. ,{ "pid":12345, "tid":2, "ts":1718090301785246, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/StackTrace.cpp" }}
  481. ,{ "pid":12345, "tid":2, "ts":1718090301785309, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  482. ,{ "pid":12345, "tid":2, "ts":1718090301785383, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ReaderWriterLockImpl.h" }}
  483. ,{ "pid":12345, "tid":2, "ts":1718090301785382, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ReaderWriterLockImpl.h" }}
  484. ,{ "pid":12345, "tid":2, "ts":1718090301785451, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  485. ,{ "pid":12345, "tid":2, "ts":1718090301785518, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/ThreadLocalValueImpl.h" }}
  486. ,{ "pid":12345, "tid":2, "ts":1718090301785517, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/ThreadLocalValueImpl.h" }}
  487. ,{ "pid":12345, "tid":2, "ts":1718090301785602, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  488. ,{ "pid":12345, "tid":2, "ts":1718090301785659, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/SocketImpl.h" }}
  489. ,{ "pid":12345, "tid":2, "ts":1718090301785658, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/SocketImpl.h" }}
  490. ,{ "pid":12345, "tid":2, "ts":1718090301785715, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  491. ,{ "pid":12345, "tid":2, "ts":1718090301785794, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Path.cpp" }}
  492. ,{ "pid":12345, "tid":2, "ts":1718090301785793, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Path.cpp" }}
  493. ,{ "pid":12345, "tid":2, "ts":1718090301785933, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Locale.cpp" }}
  494. ,{ "pid":12345, "tid":2, "ts":1718090301785932, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Locale.cpp" }}
  495. ,{ "pid":12345, "tid":2, "ts":1718090301786046, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  496. ,{ "pid":12345, "tid":2, "ts":1718090301786124, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/FastReaderReaderWriterLockImpl.h" }}
  497. ,{ "pid":12345, "tid":2, "ts":1718090301786123, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/FastReaderReaderWriterLockImpl.h" }}
  498. ,{ "pid":12345, "tid":2, "ts":1718090301786220, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Environment.cpp" }}
  499. ,{ "pid":12345, "tid":2, "ts":1718090301786219, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Environment.cpp" }}
  500. ,{ "pid":12345, "tid":2, "ts":1718090301786275, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  501. ,{ "pid":12345, "tid":2, "ts":1718090301786359, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Console.cpp" }}
  502. ,{ "pid":12345, "tid":2, "ts":1718090301786358, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Console.cpp" }}
  503. ,{ "pid":12345, "tid":2, "ts":1718090301786448, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  504. ,{ "pid":12345, "tid":2, "ts":1718090301786552, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/OSX/Thread.cpp" }}
  505. ,{ "pid":12345, "tid":2, "ts":1718090301786551, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/OSX/Thread.cpp" }}
  506. ,{ "pid":12345, "tid":2, "ts":1718090301786614, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  507. ,{ "pid":12345, "tid":2, "ts":1718090301786681, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Mutex.h" }}
  508. ,{ "pid":12345, "tid":2, "ts":1718090301786679, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Mutex.h" }}
  509. ,{ "pid":12345, "tid":2, "ts":1718090301786737, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  510. ,{ "pid":12345, "tid":2, "ts":1718090301786818, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/MarshalStringAlloc.h" }}
  511. ,{ "pid":12345, "tid":2, "ts":1718090301786817, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/MarshalStringAlloc.h" }}
  512. ,{ "pid":12345, "tid":2, "ts":1718090301786887, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  513. ,{ "pid":12345, "tid":2, "ts":1718090301786967, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/LastError.h" }}
  514. ,{ "pid":12345, "tid":2, "ts":1718090301786966, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/LastError.h" }}
  515. ,{ "pid":12345, "tid":2, "ts":1718090301787023, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  516. ,{ "pid":12345, "tid":2, "ts":1718090301787094, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/WaitObject.h" }}
  517. ,{ "pid":12345, "tid":2, "ts":1718090301787093, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/WaitObject.h" }}
  518. ,{ "pid":12345, "tid":2, "ts":1718090301787175, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  519. ,{ "pid":12345, "tid":2, "ts":1718090301787239, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/SocketBridge.cpp" }}
  520. ,{ "pid":12345, "tid":2, "ts":1718090301787237, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/SocketBridge.cpp" }}
  521. ,{ "pid":12345, "tid":2, "ts":1718090301787309, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  522. ,{ "pid":12345, "tid":2, "ts":1718090301787389, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/Initialize.cpp" }}
  523. ,{ "pid":12345, "tid":2, "ts":1718090301787388, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/Initialize.cpp" }}
  524. ,{ "pid":12345, "tid":2, "ts":1718090301787445, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  525. ,{ "pid":12345, "tid":2, "ts":1718090301787515, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/CrashHelpers.cpp" }}
  526. ,{ "pid":12345, "tid":2, "ts":1718090301787514, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/CrashHelpers.cpp" }}
  527. ,{ "pid":12345, "tid":2, "ts":1718090301787569, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  528. ,{ "pid":12345, "tid":2, "ts":1718090301787644, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/File.h" }}
  529. ,{ "pid":12345, "tid":2, "ts":1718090301787643, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/File.h" }}
  530. ,{ "pid":12345, "tid":2, "ts":1718090301787739, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  531. ,{ "pid":12345, "tid":2, "ts":1718090301787851, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  532. ,{ "pid":12345, "tid":2, "ts":1718090301787911, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Encoding.h" }}
  533. ,{ "pid":12345, "tid":2, "ts":1718090301787909, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Encoding.h" }}
  534. ,{ "pid":12345, "tid":2, "ts":1718090301788020, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  535. ,{ "pid":12345, "tid":2, "ts":1718090301788095, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/CrashHelpers.h" }}
  536. ,{ "pid":12345, "tid":2, "ts":1718090301788094, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/CrashHelpers.h" }}
  537. ,{ "pid":12345, "tid":2, "ts":1718090301788157, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  538. ,{ "pid":12345, "tid":2, "ts":1718090301788247, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ConditionVariable.cpp" }}
  539. ,{ "pid":12345, "tid":2, "ts":1718090301788246, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ConditionVariable.cpp" }}
  540. ,{ "pid":12345, "tid":2, "ts":1718090301788348, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  541. ,{ "pid":12345, "tid":2, "ts":1718090301788422, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_sizecheck.cpp" }}
  542. ,{ "pid":12345, "tid":2, "ts":1718090301788421, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_sizecheck.cpp" }}
  543. ,{ "pid":12345, "tid":2, "ts":1718090301788490, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  544. ,{ "pid":12345, "tid":2, "ts":1718090301788576, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_errno.cpp" }}
  545. ,{ "pid":12345, "tid":2, "ts":1718090301788576, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_errno.cpp" }}
  546. ,{ "pid":12345, "tid":2, "ts":1718090301788653, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  547. ,{ "pid":12345, "tid":2, "ts":1718090301788732, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/utf8_util.h" }}
  548. ,{ "pid":12345, "tid":2, "ts":1718090301788730, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/utf8_util.h" }}
  549. ,{ "pid":12345, "tid":2, "ts":1718090301788808, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  550. ,{ "pid":12345, "tid":2, "ts":1718090301788880, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/quality.h" }}
  551. ,{ "pid":12345, "tid":2, "ts":1718090301788879, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/quality.h" }}
  552. ,{ "pid":12345, "tid":2, "ts":1718090301788951, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  553. ,{ "pid":12345, "tid":2, "ts":1718090301789023, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/memory.h" }}
  554. ,{ "pid":12345, "tid":2, "ts":1718090301789022, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/memory.h" }}
  555. ,{ "pid":12345, "tid":2, "ts":1718090301789100, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  556. ,{ "pid":12345, "tid":2, "ts":1718090301789208, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/histogram.c" }}
  557. ,{ "pid":12345, "tid":2, "ts":1718090301789207, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/histogram.c" }}
  558. ,{ "pid":12345, "tid":2, "ts":1718090301789277, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  559. ,{ "pid":12345, "tid":2, "ts":1718090301789368, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_forgetful_chain_inc.h" }}
  560. ,{ "pid":12345, "tid":2, "ts":1718090301789366, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_forgetful_chain_inc.h" }}
  561. ,{ "pid":12345, "tid":2, "ts":1718090301789448, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  562. ,{ "pid":12345, "tid":2, "ts":1718090301789523, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/entropy_encode_static.h" }}
  563. ,{ "pid":12345, "tid":2, "ts":1718090301789522, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/entropy_encode_static.h" }}
  564. ,{ "pid":12345, "tid":2, "ts":1718090301789609, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  565. ,{ "pid":12345, "tid":2, "ts":1718090301789695, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/dictionary_hash.h" }}
  566. ,{ "pid":12345, "tid":2, "ts":1718090301789694, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/dictionary_hash.h" }}
  567. ,{ "pid":12345, "tid":2, "ts":1718090301789775, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  568. ,{ "pid":12345, "tid":2, "ts":1718090301789861, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/command.c" }}
  569. ,{ "pid":12345, "tid":2, "ts":1718090301789860, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/command.c" }}
  570. ,{ "pid":12345, "tid":2, "ts":1718090301789915, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  571. ,{ "pid":12345, "tid":2, "ts":1718090301789979, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/block_splitter_inc.h" }}
  572. ,{ "pid":12345, "tid":2, "ts":1718090301789978, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/block_splitter_inc.h" }}
  573. ,{ "pid":12345, "tid":2, "ts":1718090301790054, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  574. ,{ "pid":12345, "tid":2, "ts":1718090301790138, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/bit_cost.c" }}
  575. ,{ "pid":12345, "tid":2, "ts":1718090301790136, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/bit_cost.c" }}
  576. ,{ "pid":12345, "tid":2, "ts":1718090301790236, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/state.h" }}
  577. ,{ "pid":12345, "tid":2, "ts":1718090301790235, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/state.h" }}
  578. ,{ "pid":12345, "tid":2, "ts":1718090301790325, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  579. ,{ "pid":12345, "tid":2, "ts":1718090301790402, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/bit_reader.h" }}
  580. ,{ "pid":12345, "tid":2, "ts":1718090301790400, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/bit_reader.h" }}
  581. ,{ "pid":12345, "tid":2, "ts":1718090301790471, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  582. ,{ "pid":12345, "tid":2, "ts":1718090301790533, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/platform.c" }}
  583. ,{ "pid":12345, "tid":2, "ts":1718090301790532, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/platform.c" }}
  584. ,{ "pid":12345, "tid":2, "ts":1718090301790606, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  585. ,{ "pid":12345, "tid":2, "ts":1718090301790670, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/constants.c" }}
  586. ,{ "pid":12345, "tid":2, "ts":1718090301790668, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/constants.c" }}
  587. ,{ "pid":12345, "tid":2, "ts":1718090301790741, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  588. ,{ "pid":12345, "tid":2, "ts":1718090301790802, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Socket.cpp" }}
  589. ,{ "pid":12345, "tid":2, "ts":1718090301790801, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Socket.cpp" }}
  590. ,{ "pid":12345, "tid":2, "ts":1718090301790912, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Locale-c-api.h" }}
  591. ,{ "pid":12345, "tid":2, "ts":1718090301790910, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Locale-c-api.h" }}
  592. ,{ "pid":12345, "tid":2, "ts":1718090301790964, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  593. ,{ "pid":12345, "tid":2, "ts":1718090301791040, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Error-c-api.h" }}
  594. ,{ "pid":12345, "tid":2, "ts":1718090301791039, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Error-c-api.h" }}
  595. ,{ "pid":12345, "tid":2, "ts":1718090301791155, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  596. ,{ "pid":12345, "tid":2, "ts":1718090301791221, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Console.cpp" }}
  597. ,{ "pid":12345, "tid":2, "ts":1718090301791219, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Console.cpp" }}
  598. ,{ "pid":12345, "tid":2, "ts":1718090301791286, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  599. ,{ "pid":12345, "tid":2, "ts":1718090301791378, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  600. ,{ "pid":12345, "tid":2, "ts":1718090301791506, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  601. ,{ "pid":12345, "tid":2, "ts":1718090301791575, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/ThreadPoolMonitorThread.cpp" }}
  602. ,{ "pid":12345, "tid":2, "ts":1718090301791574, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/ThreadPoolMonitorThread.cpp" }}
  603. ,{ "pid":12345, "tid":2, "ts":1718090301791691, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/threadpool-ms-io-poll.h" }}
  604. ,{ "pid":12345, "tid":2, "ts":1718090301791690, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/threadpool-ms-io-poll.h" }}
  605. ,{ "pid":12345, "tid":2, "ts":1718090301791745, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  606. ,{ "pid":12345, "tid":2, "ts":1718090301791827, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppTypeCompare.h" }}
  607. ,{ "pid":12345, "tid":2, "ts":1718090301791826, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppTypeCompare.h" }}
  608. ,{ "pid":12345, "tid":2, "ts":1718090301791895, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  609. ,{ "pid":12345, "tid":2, "ts":1718090301791952, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericMethodCompare.h" }}
  610. ,{ "pid":12345, "tid":2, "ts":1718090301791951, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericMethodCompare.h" }}
  611. ,{ "pid":12345, "tid":2, "ts":1718090301792018, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  612. ,{ "pid":12345, "tid":2, "ts":1718090301792094, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericContextHash.h" }}
  613. ,{ "pid":12345, "tid":2, "ts":1718090301792093, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericContextHash.h" }}
  614. ,{ "pid":12345, "tid":2, "ts":1718090301792205, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  615. ,{ "pid":12345, "tid":2, "ts":1718090301792340, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericClassCompare.h" }}
  616. ,{ "pid":12345, "tid":2, "ts":1718090301792338, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericClassCompare.h" }}
  617. ,{ "pid":12345, "tid":2, "ts":1718090301792409, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  618. ,{ "pid":12345, "tid":2, "ts":1718090301792468, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/GenericMethod.cpp" }}
  619. ,{ "pid":12345, "tid":2, "ts":1718090301792467, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericMethod.cpp" }}
  620. ,{ "pid":12345, "tid":2, "ts":1718090301792562, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  621. ,{ "pid":12345, "tid":2, "ts":1718090301792674, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/CustomAttributeDataReader.cpp" }}
  622. ,{ "pid":12345, "tid":2, "ts":1718090301792673, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/CustomAttributeDataReader.cpp" }}
  623. ,{ "pid":12345, "tid":2, "ts":1718090301792753, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  624. ,{ "pid":12345, "tid":2, "ts":1718090301792830, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-windowsruntime-types.h" }}
  625. ,{ "pid":12345, "tid":2, "ts":1718090301792829, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-windowsruntime-types.h" }}
  626. ,{ "pid":12345, "tid":2, "ts":1718090301792904, "dur":132, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  627. ,{ "pid":12345, "tid":2, "ts":1718090301793042, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-pinvoke-support.h" }}
  628. ,{ "pid":12345, "tid":2, "ts":1718090301793041, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-pinvoke-support.h" }}
  629. ,{ "pid":12345, "tid":2, "ts":1718090301793109, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  630. ,{ "pid":12345, "tid":2, "ts":1718090301793177, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-mono-api-functions.h" }}
  631. ,{ "pid":12345, "tid":2, "ts":1718090301793176, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-mono-api-functions.h" }}
  632. ,{ "pid":12345, "tid":2, "ts":1718090301793238, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  633. ,{ "pid":12345, "tid":2, "ts":1718090301793301, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-benchmark-support.h" }}
  634. ,{ "pid":12345, "tid":2, "ts":1718090301793300, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-benchmark-support.h" }}
  635. ,{ "pid":12345, "tid":2, "ts":1718090301793360, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  636. ,{ "pid":12345, "tid":2, "ts":1718090301793467, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Threading/Semaphore.h" }}
  637. ,{ "pid":12345, "tid":2, "ts":1718090301793466, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Threading/Semaphore.h" }}
  638. ,{ "pid":12345, "tid":2, "ts":1718090301793547, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  639. ,{ "pid":12345, "tid":2, "ts":1718090301793634, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.Sockets/Socket.cpp" }}
  640. ,{ "pid":12345, "tid":2, "ts":1718090301793632, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.Sockets/Socket.cpp" }}
  641. ,{ "pid":12345, "tid":2, "ts":1718090301793690, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  642. ,{ "pid":12345, "tid":2, "ts":1718090301793778, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.IO/FileSystemWatcher.cpp" }}
  643. ,{ "pid":12345, "tid":2, "ts":1718090301793776, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.IO/FileSystemWatcher.cpp" }}
  644. ,{ "pid":12345, "tid":2, "ts":1718090301793841, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  645. ,{ "pid":12345, "tid":2, "ts":1718090301793989, "dur":130, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/FileVersionInfo.cpp" }}
  646. ,{ "pid":12345, "tid":2, "ts":1718090301793988, "dur":131, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/FileVersionInfo.cpp" }}
  647. ,{ "pid":12345, "tid":2, "ts":1718090301794119, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  648. ,{ "pid":12345, "tid":2, "ts":1718090301794178, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System.Core/System.IO.MemoryMappedFiles/MemoryMapImpl.cpp" }}
  649. ,{ "pid":12345, "tid":2, "ts":1718090301794176, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System.Core/System.IO.MemoryMappedFiles/MemoryMapImpl.cpp" }}
  650. ,{ "pid":12345, "tid":2, "ts":1718090301794254, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  651. ,{ "pid":12345, "tid":2, "ts":1718090301794375, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/String.h" }}
  652. ,{ "pid":12345, "tid":2, "ts":1718090301794374, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/String.h" }}
  653. ,{ "pid":12345, "tid":2, "ts":1718090301794437, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  654. ,{ "pid":12345, "tid":2, "ts":1718090301794526, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeMethodHandle.cpp" }}
  655. ,{ "pid":12345, "tid":2, "ts":1718090301794524, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeMethodHandle.cpp" }}
  656. ,{ "pid":12345, "tid":2, "ts":1718090301794596, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  657. ,{ "pid":12345, "tid":2, "ts":1718090301794737, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Number.cpp" }}
  658. ,{ "pid":12345, "tid":2, "ts":1718090301794736, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Number.cpp" }}
  659. ,{ "pid":12345, "tid":2, "ts":1718090301794832, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  660. ,{ "pid":12345, "tid":2, "ts":1718090301794904, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Environment.h" }}
  661. ,{ "pid":12345, "tid":2, "ts":1718090301794902, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Environment.h" }}
  662. ,{ "pid":12345, "tid":2, "ts":1718090301794985, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  663. ,{ "pid":12345, "tid":2, "ts":1718090301795053, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/DateTime.h" }}
  664. ,{ "pid":12345, "tid":2, "ts":1718090301795052, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/DateTime.h" }}
  665. ,{ "pid":12345, "tid":2, "ts":1718090301795177, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  666. ,{ "pid":12345, "tid":2, "ts":1718090301795256, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Buffer.h" }}
  667. ,{ "pid":12345, "tid":2, "ts":1718090301795255, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Buffer.h" }}
  668. ,{ "pid":12345, "tid":2, "ts":1718090301795324, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  669. ,{ "pid":12345, "tid":2, "ts":1718090301795397, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/AppDomain.cpp" }}
  670. ,{ "pid":12345, "tid":2, "ts":1718090301795395, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/AppDomain.cpp" }}
  671. ,{ "pid":12345, "tid":2, "ts":1718090301795454, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  672. ,{ "pid":12345, "tid":2, "ts":1718090301795528, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Thread.cpp" }}
  673. ,{ "pid":12345, "tid":2, "ts":1718090301795527, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Thread.cpp" }}
  674. ,{ "pid":12345, "tid":2, "ts":1718090301795631, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Monitor.h" }}
  675. ,{ "pid":12345, "tid":2, "ts":1718090301795630, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Monitor.h" }}
  676. ,{ "pid":12345, "tid":2, "ts":1718090301795686, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  677. ,{ "pid":12345, "tid":2, "ts":1718090301795779, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Text/EncodingHelper.cpp" }}
  678. ,{ "pid":12345, "tid":2, "ts":1718090301795778, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Text/EncodingHelper.cpp" }}
  679. ,{ "pid":12345, "tid":2, "ts":1718090301795873, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  680. ,{ "pid":12345, "tid":2, "ts":1718090301795941, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Policy/Evidence.h" }}
  681. ,{ "pid":12345, "tid":2, "ts":1718090301795939, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Policy/Evidence.h" }}
  682. ,{ "pid":12345, "tid":2, "ts":1718090301796001, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  683. ,{ "pid":12345, "tid":2, "ts":1718090301796080, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Versioning/VersioningHelper.cpp" }}
  684. ,{ "pid":12345, "tid":2, "ts":1718090301796079, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Versioning/VersioningHelper.cpp" }}
  685. ,{ "pid":12345, "tid":2, "ts":1718090301796202, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  686. ,{ "pid":12345, "tid":2, "ts":1718090301796274, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/MonoMethodMessage.cpp" }}
  687. ,{ "pid":12345, "tid":2, "ts":1718090301796273, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/MonoMethodMessage.cpp" }}
  688. ,{ "pid":12345, "tid":2, "ts":1718090301796352, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  689. ,{ "pid":12345, "tid":2, "ts":1718090301796434, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/RuntimeInformation.h" }}
  690. ,{ "pid":12345, "tid":2, "ts":1718090301796433, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/RuntimeInformation.h" }}
  691. ,{ "pid":12345, "tid":2, "ts":1718090301796524, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  692. ,{ "pid":12345, "tid":2, "ts":1718090301796606, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.CompilerServices/RuntimeHelpers.cpp" }}
  693. ,{ "pid":12345, "tid":2, "ts":1718090301796605, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.CompilerServices/RuntimeHelpers.cpp" }}
  694. ,{ "pid":12345, "tid":2, "ts":1718090301796703, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  695. ,{ "pid":12345, "tid":2, "ts":1718090301796783, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeModule.cpp" }}
  696. ,{ "pid":12345, "tid":2, "ts":1718090301796782, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeModule.cpp" }}
  697. ,{ "pid":12345, "tid":2, "ts":1718090301796855, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  698. ,{ "pid":12345, "tid":2, "ts":1718090301796969, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeAssembly.h" }}
  699. ,{ "pid":12345, "tid":2, "ts":1718090301796968, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeAssembly.h" }}
  700. ,{ "pid":12345, "tid":2, "ts":1718090301797047, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  701. ,{ "pid":12345, "tid":2, "ts":1718090301797142, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/Module.cpp" }}
  702. ,{ "pid":12345, "tid":2, "ts":1718090301797141, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/Module.cpp" }}
  703. ,{ "pid":12345, "tid":2, "ts":1718090301797216, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  704. ,{ "pid":12345, "tid":2, "ts":1718090301797310, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/CustomAttributeData.h" }}
  705. ,{ "pid":12345, "tid":2, "ts":1718090301797308, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/CustomAttributeData.h" }}
  706. ,{ "pid":12345, "tid":2, "ts":1718090301797365, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  707. ,{ "pid":12345, "tid":2, "ts":1718090301797449, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/Path.cpp" }}
  708. ,{ "pid":12345, "tid":2, "ts":1718090301797448, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/Path.cpp" }}
  709. ,{ "pid":12345, "tid":2, "ts":1718090301797523, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  710. ,{ "pid":12345, "tid":2, "ts":1718090301797637, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  711. ,{ "pid":12345, "tid":2, "ts":1718090301797725, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfoInternals.h" }}
  712. ,{ "pid":12345, "tid":2, "ts":1718090301797725, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfoInternals.h" }}
  713. ,{ "pid":12345, "tid":2, "ts":1718090301797795, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  714. ,{ "pid":12345, "tid":2, "ts":1718090301797865, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CompareInfo.cpp" }}
  715. ,{ "pid":12345, "tid":2, "ts":1718090301797864, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CompareInfo.cpp" }}
  716. ,{ "pid":12345, "tid":2, "ts":1718090301797962, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  717. ,{ "pid":12345, "tid":2, "ts":1718090301798025, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Diagnostics/Debugger.h" }}
  718. ,{ "pid":12345, "tid":2, "ts":1718090301798023, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Diagnostics/Debugger.h" }}
  719. ,{ "pid":12345, "tid":2, "ts":1718090301798087, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  720. ,{ "pid":12345, "tid":2, "ts":1718090301798153, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/RuntimeGPtrArrayHandle.cpp" }}
  721. ,{ "pid":12345, "tid":2, "ts":1718090301798152, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/RuntimeGPtrArrayHandle.cpp" }}
  722. ,{ "pid":12345, "tid":2, "ts":1718090301798256, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  723. ,{ "pid":12345, "tid":2, "ts":1718090301798318, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono.Security.Cryptography/KeyPairPersistence.h" }}
  724. ,{ "pid":12345, "tid":2, "ts":1718090301798317, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono.Security.Cryptography/KeyPairPersistence.h" }}
  725. ,{ "pid":12345, "tid":2, "ts":1718090301798390, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  726. ,{ "pid":12345, "tid":2, "ts":1718090301798458, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/WriteBarrierValidation.cpp" }}
  727. ,{ "pid":12345, "tid":2, "ts":1718090301798456, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/WriteBarrierValidation.cpp" }}
  728. ,{ "pid":12345, "tid":2, "ts":1718090301798521, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  729. ,{ "pid":12345, "tid":2, "ts":1718090301798600, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/GarbageCollector.h" }}
  730. ,{ "pid":12345, "tid":2, "ts":1718090301798599, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/GarbageCollector.h" }}
  731. ,{ "pid":12345, "tid":2, "ts":1718090301798676, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  732. ,{ "pid":12345, "tid":2, "ts":1718090301798768, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen.h" }}
  733. ,{ "pid":12345, "tid":2, "ts":1718090301798766, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen.h" }}
  734. ,{ "pid":12345, "tid":2, "ts":1718090301798935, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-common.h" }}
  735. ,{ "pid":12345, "tid":2, "ts":1718090301798934, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-common.h" }}
  736. ,{ "pid":12345, "tid":2, "ts":1718090301799010, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  737. ,{ "pid":12345, "tid":2, "ts":1718090301799072, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/zlib.h" }}
  738. ,{ "pid":12345, "tid":2, "ts":1718090301799071, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/zlib.h" }}
  739. ,{ "pid":12345, "tid":2, "ts":1718090301799152, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  740. ,{ "pid":12345, "tid":2, "ts":1718090301799244, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/inflate.c" }}
  741. ,{ "pid":12345, "tid":2, "ts":1718090301799243, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inflate.c" }}
  742. ,{ "pid":12345, "tid":2, "ts":1718090301799309, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  743. ,{ "pid":12345, "tid":2, "ts":1718090301799377, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/gzlib.c" }}
  744. ,{ "pid":12345, "tid":2, "ts":1718090301799376, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/gzlib.c" }}
  745. ,{ "pid":12345, "tid":2, "ts":1718090301799459, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  746. ,{ "pid":12345, "tid":2, "ts":1718090301799528, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/adler32.c" }}
  747. ,{ "pid":12345, "tid":2, "ts":1718090301799527, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/adler32.c" }}
  748. ,{ "pid":12345, "tid":2, "ts":1718090301799645, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  749. ,{ "pid":12345, "tid":2, "ts":1718090301799732, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/xamarin-android/xamarin_getifaddrs.h" }}
  750. ,{ "pid":12345, "tid":2, "ts":1718090301799729, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xamarin-android/xamarin_getifaddrs.h" }}
  751. ,{ "pid":12345, "tid":2, "ts":1718090301799812, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  752. ,{ "pid":12345, "tid":2, "ts":1718090301799910, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/support/libm/complex.c" }}
  753. ,{ "pid":12345, "tid":2, "ts":1718090301799909, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/support/libm/complex.c" }}
  754. ,{ "pid":12345, "tid":2, "ts":1718090301799989, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  755. ,{ "pid":12345, "tid":2, "ts":1718090301800118, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/refcount.h" }}
  756. ,{ "pid":12345, "tid":2, "ts":1718090301800116, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/refcount.h" }}
  757. ,{ "pid":12345, "tid":2, "ts":1718090301800206, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  758. ,{ "pid":12345, "tid":2, "ts":1718090301800272, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/os-event-unity.c" }}
  759. ,{ "pid":12345, "tid":2, "ts":1718090301800271, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/os-event-unity.c" }}
  760. ,{ "pid":12345, "tid":2, "ts":1718090301800357, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  761. ,{ "pid":12345, "tid":2, "ts":1718090301800442, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/monobitset.h" }}
  762. ,{ "pid":12345, "tid":2, "ts":1718090301800441, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/monobitset.h" }}
  763. ,{ "pid":12345, "tid":2, "ts":1718090301800546, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  764. ,{ "pid":12345, "tid":2, "ts":1718090301800663, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  765. ,{ "pid":12345, "tid":2, "ts":1718090301800798, "dur":694, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-unity.c" }}
  766. ,{ "pid":12345, "tid":2, "ts":1718090301800797, "dur":696, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-unity.c" }}
  767. ,{ "pid":12345, "tid":2, "ts":1718090301801493, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  768. ,{ "pid":12345, "tid":2, "ts":1718090301801580, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-coop.h" }}
  769. ,{ "pid":12345, "tid":2, "ts":1718090301801580, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-coop.h" }}
  770. ,{ "pid":12345, "tid":2, "ts":1718090301801665, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  771. ,{ "pid":12345, "tid":2, "ts":1718090301801742, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-stack-unwinding.h" }}
  772. ,{ "pid":12345, "tid":2, "ts":1718090301801741, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-stack-unwinding.h" }}
  773. ,{ "pid":12345, "tid":2, "ts":1718090301801828, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  774. ,{ "pid":12345, "tid":2, "ts":1718090301801921, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-property-hash.h" }}
  775. ,{ "pid":12345, "tid":2, "ts":1718090301801920, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-property-hash.h" }}
  776. ,{ "pid":12345, "tid":2, "ts":1718090301802007, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  777. ,{ "pid":12345, "tid":2, "ts":1718090301802092, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-path.h" }}
  778. ,{ "pid":12345, "tid":2, "ts":1718090301802091, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-path.h" }}
  779. ,{ "pid":12345, "tid":2, "ts":1718090301802163, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  780. ,{ "pid":12345, "tid":2, "ts":1718090301802239, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-os-mutex.h" }}
  781. ,{ "pid":12345, "tid":2, "ts":1718090301802238, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-os-mutex.h" }}
  782. ,{ "pid":12345, "tid":2, "ts":1718090301802317, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  783. ,{ "pid":12345, "tid":2, "ts":1718090301802414, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-mmap-windows.c" }}
  784. ,{ "pid":12345, "tid":2, "ts":1718090301802413, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-mmap-windows.c" }}
  785. ,{ "pid":12345, "tid":2, "ts":1718090301802492, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  786. ,{ "pid":12345, "tid":2, "ts":1718090301802555, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-math.c" }}
  787. ,{ "pid":12345, "tid":2, "ts":1718090301802554, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-math.c" }}
  788. ,{ "pid":12345, "tid":2, "ts":1718090301802629, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  789. ,{ "pid":12345, "tid":2, "ts":1718090301802717, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-log-posix.c" }}
  790. ,{ "pid":12345, "tid":2, "ts":1718090301802716, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-log-posix.c" }}
  791. ,{ "pid":12345, "tid":2, "ts":1718090301802783, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  792. ,{ "pid":12345, "tid":2, "ts":1718090301802858, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-io-portability.h" }}
  793. ,{ "pid":12345, "tid":2, "ts":1718090301802857, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-io-portability.h" }}
  794. ,{ "pid":12345, "tid":2, "ts":1718090301802917, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  795. ,{ "pid":12345, "tid":2, "ts":1718090301802980, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-hwcap-web.c" }}
  796. ,{ "pid":12345, "tid":2, "ts":1718090301802979, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-hwcap-web.c" }}
  797. ,{ "pid":12345, "tid":2, "ts":1718090301803034, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  798. ,{ "pid":12345, "tid":2, "ts":1718090301803103, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-error.h" }}
  799. ,{ "pid":12345, "tid":2, "ts":1718090301803153, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  800. ,{ "pid":12345, "tid":2, "ts":1718090301803226, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl-windows.c" }}
  801. ,{ "pid":12345, "tid":2, "ts":1718090301803225, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl-windows.c" }}
  802. ,{ "pid":12345, "tid":2, "ts":1718090301803281, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  803. ,{ "pid":12345, "tid":2, "ts":1718090301803335, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-digest.h" }}
  804. ,{ "pid":12345, "tid":2, "ts":1718090301803335, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-digest.h" }}
  805. ,{ "pid":12345, "tid":2, "ts":1718090301803401, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  806. ,{ "pid":12345, "tid":2, "ts":1718090301803467, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-conc-hashtable.h" }}
  807. ,{ "pid":12345, "tid":2, "ts":1718090301803465, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-conc-hashtable.h" }}
  808. ,{ "pid":12345, "tid":2, "ts":1718090301803543, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  809. ,{ "pid":12345, "tid":2, "ts":1718090301803616, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/memfuncs.c" }}
  810. ,{ "pid":12345, "tid":2, "ts":1718090301803615, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/memfuncs.c" }}
  811. ,{ "pid":12345, "tid":2, "ts":1718090301803669, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  812. ,{ "pid":12345, "tid":2, "ts":1718090301803730, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mach-support-amd64.c" }}
  813. ,{ "pid":12345, "tid":2, "ts":1718090301803729, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mach-support-amd64.c" }}
  814. ,{ "pid":12345, "tid":2, "ts":1718090301803785, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  815. ,{ "pid":12345, "tid":2, "ts":1718090301803844, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/linux_magic.h" }}
  816. ,{ "pid":12345, "tid":2, "ts":1718090301803843, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/linux_magic.h" }}
  817. ,{ "pid":12345, "tid":2, "ts":1718090301803900, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  818. ,{ "pid":12345, "tid":2, "ts":1718090301803955, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/freebsd-elf64.h" }}
  819. ,{ "pid":12345, "tid":2, "ts":1718090301803954, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/freebsd-elf64.h" }}
  820. ,{ "pid":12345, "tid":2, "ts":1718090301804024, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  821. ,{ "pid":12345, "tid":2, "ts":1718090301804088, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/bsearch.h" }}
  822. ,{ "pid":12345, "tid":2, "ts":1718090301804087, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/bsearch.h" }}
  823. ,{ "pid":12345, "tid":2, "ts":1718090301804146, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  824. ,{ "pid":12345, "tid":2, "ts":1718090301804206, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-thread-pool.c" }}
  825. ,{ "pid":12345, "tid":2, "ts":1718090301804205, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-thread-pool.c" }}
  826. ,{ "pid":12345, "tid":2, "ts":1718090301804267, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  827. ,{ "pid":12345, "tid":2, "ts":1718090301804342, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-protocol.h" }}
  828. ,{ "pid":12345, "tid":2, "ts":1718090301804341, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-protocol.h" }}
  829. ,{ "pid":12345, "tid":2, "ts":1718090301804427, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  830. ,{ "pid":12345, "tid":2, "ts":1718090301804523, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-minor-scan-object.h" }}
  831. ,{ "pid":12345, "tid":2, "ts":1718090301804521, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-minor-scan-object.h" }}
  832. ,{ "pid":12345, "tid":2, "ts":1718090301804583, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  833. ,{ "pid":12345, "tid":2, "ts":1718090301804661, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-los.c" }}
  834. ,{ "pid":12345, "tid":2, "ts":1718090301804660, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-los.c" }}
  835. ,{ "pid":12345, "tid":2, "ts":1718090301804742, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  836. ,{ "pid":12345, "tid":2, "ts":1718090301804839, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-gray.c" }}
  837. ,{ "pid":12345, "tid":2, "ts":1718090301804838, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-gray.c" }}
  838. ,{ "pid":12345, "tid":2, "ts":1718090301804914, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  839. ,{ "pid":12345, "tid":2, "ts":1718090301804984, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-debug.c" }}
  840. ,{ "pid":12345, "tid":2, "ts":1718090301804983, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-debug.c" }}
  841. ,{ "pid":12345, "tid":2, "ts":1718090301805041, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  842. ,{ "pid":12345, "tid":2, "ts":1718090301805106, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-array-list.c" }}
  843. ,{ "pid":12345, "tid":2, "ts":1718090301805105, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-array-list.c" }}
  844. ,{ "pid":12345, "tid":2, "ts":1718090301805162, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  845. ,{ "pid":12345, "tid":2, "ts":1718090301805222, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/debugger-state-machine.c" }}
  846. ,{ "pid":12345, "tid":2, "ts":1718090301805221, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/debugger-state-machine.c" }}
  847. ,{ "pid":12345, "tid":2, "ts":1718090301805280, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  848. ,{ "pid":12345, "tid":2, "ts":1718090301805343, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32socket.c" }}
  849. ,{ "pid":12345, "tid":2, "ts":1718090301805342, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32socket.c" }}
  850. ,{ "pid":12345, "tid":2, "ts":1718090301805403, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  851. ,{ "pid":12345, "tid":2, "ts":1718090301805468, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process.h" }}
  852. ,{ "pid":12345, "tid":2, "ts":1718090301805467, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process.h" }}
  853. ,{ "pid":12345, "tid":2, "ts":1718090301805540, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  854. ,{ "pid":12345, "tid":2, "ts":1718090301805607, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-unix-internals.h" }}
  855. ,{ "pid":12345, "tid":2, "ts":1718090301805606, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-unix-internals.h" }}
  856. ,{ "pid":12345, "tid":2, "ts":1718090301805679, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  857. ,{ "pid":12345, "tid":2, "ts":1718090301805752, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32handle-namespace.h" }}
  858. ,{ "pid":12345, "tid":2, "ts":1718090301805750, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32handle-namespace.h" }}
  859. ,{ "pid":12345, "tid":2, "ts":1718090301805825, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  860. ,{ "pid":12345, "tid":2, "ts":1718090301805925, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file-unix.c" }}
  861. ,{ "pid":12345, "tid":2, "ts":1718090301805924, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file-unix.c" }}
  862. ,{ "pid":12345, "tid":2, "ts":1718090301806019, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  863. ,{ "pid":12345, "tid":2, "ts":1718090301806121, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32error-win32.c" }}
  864. ,{ "pid":12345, "tid":2, "ts":1718090301806119, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32error-win32.c" }}
  865. ,{ "pid":12345, "tid":2, "ts":1718090301806212, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  866. ,{ "pid":12345, "tid":2, "ts":1718090301806319, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/unity-liveness.c" }}
  867. ,{ "pid":12345, "tid":2, "ts":1718090301806318, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/unity-liveness.c" }}
  868. ,{ "pid":12345, "tid":2, "ts":1718090301806392, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  869. ,{ "pid":12345, "tid":2, "ts":1718090301806475, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threadpool.c" }}
  870. ,{ "pid":12345, "tid":2, "ts":1718090301806473, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threadpool.c" }}
  871. ,{ "pid":12345, "tid":2, "ts":1718090301806561, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  872. ,{ "pid":12345, "tid":2, "ts":1718090301806631, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sysmath.c" }}
  873. ,{ "pid":12345, "tid":2, "ts":1718090301806629, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sysmath.c" }}
  874. ,{ "pid":12345, "tid":2, "ts":1718090301806712, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  875. ,{ "pid":12345, "tid":2, "ts":1718090301806800, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-toggleref.h" }}
  876. ,{ "pid":12345, "tid":2, "ts":1718090301806798, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-toggleref.h" }}
  877. ,{ "pid":12345, "tid":2, "ts":1718090301806878, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  878. ,{ "pid":12345, "tid":2, "ts":1718090301806959, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-dynarray.h" }}
  879. ,{ "pid":12345, "tid":2, "ts":1718090301806957, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-dynarray.h" }}
  880. ,{ "pid":12345, "tid":2, "ts":1718090301807047, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  881. ,{ "pid":12345, "tid":2, "ts":1718090301807129, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/security.h" }}
  882. ,{ "pid":12345, "tid":2, "ts":1718090301807127, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/security.h" }}
  883. ,{ "pid":12345, "tid":2, "ts":1718090301807212, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  884. ,{ "pid":12345, "tid":2, "ts":1718090301807307, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/row-indexes.h" }}
  885. ,{ "pid":12345, "tid":2, "ts":1718090301807305, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/row-indexes.h" }}
  886. ,{ "pid":12345, "tid":2, "ts":1718090301807395, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  887. ,{ "pid":12345, "tid":2, "ts":1718090301807482, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/rand.h" }}
  888. ,{ "pid":12345, "tid":2, "ts":1718090301807480, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/rand.h" }}
  889. ,{ "pid":12345, "tid":2, "ts":1718090301807565, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  890. ,{ "pid":12345, "tid":2, "ts":1718090301807661, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/profiler-legacy.h" }}
  891. ,{ "pid":12345, "tid":2, "ts":1718090301807659, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/profiler-legacy.h" }}
  892. ,{ "pid":12345, "tid":2, "ts":1718090301807742, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  893. ,{ "pid":12345, "tid":2, "ts":1718090301807843, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/object.h" }}
  894. ,{ "pid":12345, "tid":2, "ts":1718090301807841, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/object.h" }}
  895. ,{ "pid":12345, "tid":2, "ts":1718090301807915, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  896. ,{ "pid":12345, "tid":2, "ts":1718090301808010, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/number-formatter.h" }}
  897. ,{ "pid":12345, "tid":2, "ts":1718090301808008, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/number-formatter.h" }}
  898. ,{ "pid":12345, "tid":2, "ts":1718090301808087, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  899. ,{ "pid":12345, "tid":2, "ts":1718090301808182, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-route.h" }}
  900. ,{ "pid":12345, "tid":2, "ts":1718090301808181, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-route.h" }}
  901. ,{ "pid":12345, "tid":2, "ts":1718090301808251, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  902. ,{ "pid":12345, "tid":2, "ts":1718090301808338, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-mlist.h" }}
  903. ,{ "pid":12345, "tid":2, "ts":1718090301808337, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-mlist.h" }}
  904. ,{ "pid":12345, "tid":2, "ts":1718090301808407, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  905. ,{ "pid":12345, "tid":2, "ts":1718090301808489, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-endian.h" }}
  906. ,{ "pid":12345, "tid":2, "ts":1718090301808487, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-endian.h" }}
  907. ,{ "pid":12345, "tid":2, "ts":1718090301808567, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  908. ,{ "pid":12345, "tid":2, "ts":1718090301808655, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-config-dirs.c" }}
  909. ,{ "pid":12345, "tid":2, "ts":1718090301808654, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-config-dirs.c" }}
  910. ,{ "pid":12345, "tid":2, "ts":1718090301808730, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  911. ,{ "pid":12345, "tid":2, "ts":1718090301808817, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/method-builder.h" }}
  912. ,{ "pid":12345, "tid":2, "ts":1718090301808815, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/method-builder.h" }}
  913. ,{ "pid":12345, "tid":2, "ts":1718090301808907, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  914. ,{ "pid":12345, "tid":2, "ts":1718090301809023, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mempool.c" }}
  915. ,{ "pid":12345, "tid":2, "ts":1718090301809021, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mempool.c" }}
  916. ,{ "pid":12345, "tid":2, "ts":1718090301809117, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  917. ,{ "pid":12345, "tid":2, "ts":1718090301809232, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/lock-tracer.h" }}
  918. ,{ "pid":12345, "tid":2, "ts":1718090301809230, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/lock-tracer.h" }}
  919. ,{ "pid":12345, "tid":2, "ts":1718090301809344, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  920. ,{ "pid":12345, "tid":2, "ts":1718090301809458, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/jit-icall-reg.h" }}
  921. ,{ "pid":12345, "tid":2, "ts":1718090301809456, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/jit-icall-reg.h" }}
  922. ,{ "pid":12345, "tid":2, "ts":1718090301809557, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  923. ,{ "pid":12345, "tid":2, "ts":1718090301809666, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/icall-windows-internals.h" }}
  924. ,{ "pid":12345, "tid":2, "ts":1718090301809664, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/icall-windows-internals.h" }}
  925. ,{ "pid":12345, "tid":2, "ts":1718090301809766, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  926. ,{ "pid":12345, "tid":2, "ts":1718090301809860, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/gc-stats.c" }}
  927. ,{ "pid":12345, "tid":2, "ts":1718090301809858, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/gc-stats.c" }}
  928. ,{ "pid":12345, "tid":2, "ts":1718090301809964, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  929. ,{ "pid":12345, "tid":2, "ts":1718090301810054, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/fdhandle.h" }}
  930. ,{ "pid":12345, "tid":2, "ts":1718090301810052, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/fdhandle.h" }}
  931. ,{ "pid":12345, "tid":2, "ts":1718090301810148, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  932. ,{ "pid":12345, "tid":2, "ts":1718090301810228, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/dynamic-stream.c" }}
  933. ,{ "pid":12345, "tid":2, "ts":1718090301810226, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/dynamic-stream.c" }}
  934. ,{ "pid":12345, "tid":2, "ts":1718090301810321, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  935. ,{ "pid":12345, "tid":2, "ts":1718090301810418, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/decimal-ms.c" }}
  936. ,{ "pid":12345, "tid":2, "ts":1718090301810417, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/decimal-ms.c" }}
  937. ,{ "pid":12345, "tid":2, "ts":1718090301810491, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  938. ,{ "pid":12345, "tid":2, "ts":1718090301810592, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/debug-helpers.c" }}
  939. ,{ "pid":12345, "tid":2, "ts":1718090301810590, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/debug-helpers.c" }}
  940. ,{ "pid":12345, "tid":2, "ts":1718090301810681, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  941. ,{ "pid":12345, "tid":2, "ts":1718090301810762, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/coree-internals.h" }}
  942. ,{ "pid":12345, "tid":2, "ts":1718090301810760, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/coree-internals.h" }}
  943. ,{ "pid":12345, "tid":2, "ts":1718090301810843, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  944. ,{ "pid":12345, "tid":2, "ts":1718090301810917, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/class.h" }}
  945. ,{ "pid":12345, "tid":2, "ts":1718090301810916, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class.h" }}
  946. ,{ "pid":12345, "tid":2, "ts":1718090301810987, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  947. ,{ "pid":12345, "tid":2, "ts":1718090301811073, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/cil-coff.h" }}
  948. ,{ "pid":12345, "tid":2, "ts":1718090301811071, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/cil-coff.h" }}
  949. ,{ "pid":12345, "tid":2, "ts":1718090301811167, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  950. ,{ "pid":12345, "tid":2, "ts":1718090301811258, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/assembly.h" }}
  951. ,{ "pid":12345, "tid":2, "ts":1718090301811257, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/assembly.h" }}
  952. ,{ "pid":12345, "tid":2, "ts":1718090301811341, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  953. ,{ "pid":12345, "tid":2, "ts":1718090301811442, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/unicode-data.h" }}
  954. ,{ "pid":12345, "tid":2, "ts":1718090301811440, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/unicode-data.h" }}
  955. ,{ "pid":12345, "tid":2, "ts":1718090301811556, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  956. ,{ "pid":12345, "tid":2, "ts":1718090301811639, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gstr.c" }}
  957. ,{ "pid":12345, "tid":2, "ts":1718090301811637, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gstr.c" }}
  958. ,{ "pid":12345, "tid":2, "ts":1718090301811704, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  959. ,{ "pid":12345, "tid":2, "ts":1718090301811786, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gpattern.c" }}
  960. ,{ "pid":12345, "tid":2, "ts":1718090301811784, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gpattern.c" }}
  961. ,{ "pid":12345, "tid":2, "ts":1718090301811861, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  962. ,{ "pid":12345, "tid":2, "ts":1718090301811940, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/glist.c" }}
  963. ,{ "pid":12345, "tid":2, "ts":1718090301811939, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/glist.c" }}
  964. ,{ "pid":12345, "tid":2, "ts":1718090301812007, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  965. ,{ "pid":12345, "tid":2, "ts":1718090301812093, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gdir-unity.c" }}
  966. ,{ "pid":12345, "tid":2, "ts":1718090301812091, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gdir-unity.c" }}
  967. ,{ "pid":12345, "tid":2, "ts":1718090301812185, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  968. ,{ "pid":12345, "tid":2, "ts":1718090301812279, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/arch/x86/x86-codegen.h" }}
  969. ,{ "pid":12345, "tid":2, "ts":1718090301812277, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/arch/x86/x86-codegen.h" }}
  970. ,{ "pid":12345, "tid":2, "ts":1718090301812353, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  971. ,{ "pid":12345, "tid":2, "ts":1718090301812439, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/type_traits.h" }}
  972. ,{ "pid":12345, "tid":2, "ts":1718090301812437, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/type_traits.h" }}
  973. ,{ "pid":12345, "tid":2, "ts":1718090301812522, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  974. ,{ "pid":12345, "tid":2, "ts":1718090301812622, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/dense_hash_set.h" }}
  975. ,{ "pid":12345, "tid":2, "ts":1718090301812620, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/dense_hash_set.h" }}
  976. ,{ "pid":12345, "tid":2, "ts":1718090301812675, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  977. ,{ "pid":12345, "tid":2, "ts":1718090301812745, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/win32_threads.c" }}
  978. ,{ "pid":12345, "tid":2, "ts":1718090301812743, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/win32_threads.c" }}
  979. ,{ "pid":12345, "tid":2, "ts":1718090301812822, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  980. ,{ "pid":12345, "tid":2, "ts":1718090301812914, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/trace_test.c" }}
  981. ,{ "pid":12345, "tid":2, "ts":1718090301812913, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/trace_test.c" }}
  982. ,{ "pid":12345, "tid":2, "ts":1718090301812993, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  983. ,{ "pid":12345, "tid":2, "ts":1718090301813091, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/staticrootslib.c" }}
  984. ,{ "pid":12345, "tid":2, "ts":1718090301813090, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/staticrootslib.c" }}
  985. ,{ "pid":12345, "tid":2, "ts":1718090301813164, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  986. ,{ "pid":12345, "tid":2, "ts":1718090301813257, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/disclaim_bench.c" }}
  987. ,{ "pid":12345, "tid":2, "ts":1718090301813255, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/disclaim_bench.c" }}
  988. ,{ "pid":12345, "tid":2, "ts":1718090301813336, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  989. ,{ "pid":12345, "tid":2, "ts":1718090301813444, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/pthread_start.c" }}
  990. ,{ "pid":12345, "tid":2, "ts":1718090301813442, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/pthread_start.c" }}
  991. ,{ "pid":12345, "tid":2, "ts":1718090301813538, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  992. ,{ "pid":12345, "tid":2, "ts":1718090301813609, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/mallocx.c" }}
  993. ,{ "pid":12345, "tid":2, "ts":1718090301813608, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/mallocx.c" }}
  994. ,{ "pid":12345, "tid":2, "ts":1718090301813683, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  995. ,{ "pid":12345, "tid":2, "ts":1718090301813789, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/standard_ao_double_t.h" }}
  996. ,{ "pid":12345, "tid":2, "ts":1718090301813787, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/standard_ao_double_t.h" }}
  997. ,{ "pid":12345, "tid":2, "ts":1718090301813844, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  998. ,{ "pid":12345, "tid":2, "ts":1718090301813940, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/msftc/arm.h" }}
  999. ,{ "pid":12345, "tid":2, "ts":1718090301813938, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/msftc/arm.h" }}
  1000. ,{ "pid":12345, "tid":2, "ts":1718090301814007, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1001. ,{ "pid":12345, "tid":2, "ts":1718090301814092, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/int_atomic_load.h" }}
  1002. ,{ "pid":12345, "tid":2, "ts":1718090301814090, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/int_atomic_load.h" }}
  1003. ,{ "pid":12345, "tid":2, "ts":1718090301814179, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1004. ,{ "pid":12345, "tid":2, "ts":1718090301814274, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/atomic_load.h" }}
  1005. ,{ "pid":12345, "tid":2, "ts":1718090301814272, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/atomic_load.h" }}
  1006. ,{ "pid":12345, "tid":2, "ts":1718090301814339, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1007. ,{ "pid":12345, "tid":2, "ts":1718090301814411, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/x86.h" }}
  1008. ,{ "pid":12345, "tid":2, "ts":1718090301814409, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/x86.h" }}
  1009. ,{ "pid":12345, "tid":2, "ts":1718090301814489, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1010. ,{ "pid":12345, "tid":2, "ts":1718090301814568, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/ia64.h" }}
  1011. ,{ "pid":12345, "tid":2, "ts":1718090301814566, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/ia64.h" }}
  1012. ,{ "pid":12345, "tid":2, "ts":1718090301814666, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1013. ,{ "pid":12345, "tid":2, "ts":1718090301814756, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/avr32.h" }}
  1014. ,{ "pid":12345, "tid":2, "ts":1718090301814754, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/avr32.h" }}
  1015. ,{ "pid":12345, "tid":2, "ts":1718090301814832, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1016. ,{ "pid":12345, "tid":2, "ts":1718090301814925, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_atomic_only_load.h" }}
  1017. ,{ "pid":12345, "tid":2, "ts":1718090301814923, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_atomic_only_load.h" }}
  1018. ,{ "pid":12345, "tid":2, "ts":1718090301815017, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1019. ,{ "pid":12345, "tid":2, "ts":1718090301815104, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/ao_version.h" }}
  1020. ,{ "pid":12345, "tid":2, "ts":1718090301815102, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/ao_version.h" }}
  1021. ,{ "pid":12345, "tid":2, "ts":1718090301815195, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1022. ,{ "pid":12345, "tid":2, "ts":1718090301815273, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/weakpointer.h" }}
  1023. ,{ "pid":12345, "tid":2, "ts":1718090301815271, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/weakpointer.h" }}
  1024. ,{ "pid":12345, "tid":2, "ts":1718090301815358, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1025. ,{ "pid":12345, "tid":2, "ts":1718090301815446, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/gc_pmark.h" }}
  1026. ,{ "pid":12345, "tid":2, "ts":1718090301815445, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/gc_pmark.h" }}
  1027. ,{ "pid":12345, "tid":2, "ts":1718090301815526, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1028. ,{ "pid":12345, "tid":2, "ts":1718090301815617, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/darwin_semaphore.h" }}
  1029. ,{ "pid":12345, "tid":2, "ts":1718090301815615, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/darwin_semaphore.h" }}
  1030. ,{ "pid":12345, "tid":2, "ts":1718090301815684, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1031. ,{ "pid":12345, "tid":2, "ts":1718090301815795, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.TextCoreTextEngineModule.dll" }}
  1032. ,{ "pid":12345, "tid":2, "ts":1718090301815781, "dur":202, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.TextCoreTextEngineModule-FeaturesChecked.txt" }}
  1033. ,{ "pid":12345, "tid":2, "ts":1718090301816027, "dur":213, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.PhysicsModule-FeaturesChecked.txt" }}
  1034. ,{ "pid":12345, "tid":2, "ts":1718090301816298, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Burst.Unsafe.dll" }}
  1035. ,{ "pid":12345, "tid":2, "ts":1718090301816296, "dur":450, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Burst.Unsafe-FeaturesChecked.txt" }}
  1036. ,{ "pid":12345, "tid":2, "ts":1718090301816807, "dur":286, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Numerics-FeaturesChecked.txt" }}
  1037. ,{ "pid":12345, "tid":2, "ts":1718090301817094, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1038. ,{ "pid":12345, "tid":2, "ts":1718090301817164, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/mscorlib.dll" }}
  1039. ,{ "pid":12345, "tid":2, "ts":1718090301817163, "dur":348, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/mscorlib-FeaturesChecked.txt" }}
  1040. ,{ "pid":12345, "tid":2, "ts":1718090301817512, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1041. ,{ "pid":12345, "tid":2, "ts":1718090301817583, "dur":414, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/GoogleMobileAds.Core-FeaturesChecked.txt" }}
  1042. ,{ "pid":12345, "tid":2, "ts":1718090301817997, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1043. ,{ "pid":12345, "tid":2, "ts":1718090301818067, "dur":247, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.Security-FeaturesChecked.txt" }}
  1044. ,{ "pid":12345, "tid":2, "ts":1718090301818362, "dur":291, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Scheduler-FeaturesChecked.txt" }}
  1045. ,{ "pid":12345, "tid":2, "ts":1718090301818718, "dur":297, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Advertisements-FeaturesChecked.txt" }}
  1046. ,{ "pid":12345, "tid":2, "ts":1718090301819021, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1047. ,{ "pid":12345, "tid":2, "ts":1718090301819097, "dur":408, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/GoogleMobileAds.Common-FeaturesChecked.txt" }}
  1048. ,{ "pid":12345, "tid":2, "ts":1718090301819543, "dur":308, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.GameCenterModule-FeaturesChecked.txt" }}
  1049. ,{ "pid":12345, "tid":2, "ts":1718090301819908, "dur":637, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Mathematics-FeaturesChecked.txt" }}
  1050. ,{ "pid":12345, "tid":2, "ts":1718090301820545, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1051. ,{ "pid":12345, "tid":2, "ts":1718090301821577, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/Unity.Burst.Unsafe-FeaturesChecked.txt" }}
  1052. ,{ "pid":12345, "tid":2, "ts":1718090301821819, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Internal-FeaturesChecked.txt" }}
  1053. ,{ "pid":12345, "tid":2, "ts":1718090301821906, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Scheduler-FeaturesChecked.txt" }}
  1054. ,{ "pid":12345, "tid":2, "ts":1718090301822086, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.AndroidJNIModule-FeaturesChecked.txt" }}
  1055. ,{ "pid":12345, "tid":2, "ts":1718090301822170, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.AudioModule-FeaturesChecked.txt" }}
  1056. ,{ "pid":12345, "tid":2, "ts":1718090301822224, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.CoreModule-FeaturesChecked.txt" }}
  1057. ,{ "pid":12345, "tid":2, "ts":1718090301822381, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.IMGUIModule-FeaturesChecked.txt" }}
  1058. ,{ "pid":12345, "tid":2, "ts":1718090301822536, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.Physics2DModule-FeaturesChecked.txt" }}
  1059. ,{ "pid":12345, "tid":2, "ts":1718090301822627, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.PhysicsModule-FeaturesChecked.txt" }}
  1060. ,{ "pid":12345, "tid":2, "ts":1718090301822730, "dur":165, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.Apple-FeaturesChecked.txt" }}
  1061. ,{ "pid":12345, "tid":2, "ts":1718090301822938, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.AppleMacosStub-FeaturesChecked.txt" }}
  1062. ,{ "pid":12345, "tid":2, "ts":1718090301823016, "dur":128, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing-FeaturesChecked.txt" }}
  1063. ,{ "pid":12345, "tid":2, "ts":1718090301823147, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.Security-FeaturesChecked.txt" }}
  1064. ,{ "pid":12345, "tid":2, "ts":1718090301823218, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.SecurityCore-FeaturesChecked.txt" }}
  1065. ,{ "pid":12345, "tid":2, "ts":1718090301823329, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.WinRTCore-FeaturesChecked.txt" }}
  1066. ,{ "pid":12345, "tid":2, "ts":1718090301823409, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.WinRTStub-FeaturesChecked.txt" }}
  1067. ,{ "pid":12345, "tid":2, "ts":1718090301823520, "dur":148, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.ScreenCaptureModule-FeaturesChecked.txt" }}
  1068. ,{ "pid":12345, "tid":2, "ts":1718090301823731, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.TextCoreFontEngineModule-FeaturesChecked.txt" }}
  1069. ,{ "pid":12345, "tid":2, "ts":1718090301823839, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.TextCoreTextEngineModule-FeaturesChecked.txt" }}
  1070. ,{ "pid":12345, "tid":2, "ts":1718090301823912, "dur":147, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.TextRenderingModule-FeaturesChecked.txt" }}
  1071. ,{ "pid":12345, "tid":2, "ts":1718090301824088, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.UI-FeaturesChecked.txt" }}
  1072. ,{ "pid":12345, "tid":2, "ts":1718090301824147, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.UIElementsModule-FeaturesChecked.txt" }}
  1073. ,{ "pid":12345, "tid":2, "ts":1718090301824296, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/iOSPlayerBuildProgram.exe" }}
  1074. ,{ "pid":12345, "tid":2, "ts":1718090301820625, "dur":3915, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CollectRequiredReasonAPIs Library/Bee/artifacts/iOS/AppleRequiredReasonCSharpAPIs.txt" }}
  1075. ,{ "pid":12345, "tid":2, "ts":1718090301824545, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1076. ,{ "pid":12345, "tid":2, "ts":1718090301824687, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/AppleRequiredReasonCSharpAPIs.txt" }}
  1077. ,{ "pid":12345, "tid":2, "ts":1718090301824687, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/UnityFramework/AppleRequiredReasonCSharpAPIs.txt" }}
  1078. ,{ "pid":12345, "tid":2, "ts":1718090301824807, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1079. ,{ "pid":12345, "tid":2, "ts":1718090301825936, "dur":818, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/UnityFramework/AppleRequiredReasonCSharpAPIs.txt" }}
  1080. ,{ "pid":12345, "tid":2, "ts":1718090301826756, "dur":165, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/chunked_allocator.inl.h" }}
  1081. ,{ "pid":12345, "tid":2, "ts":1718090301826755, "dur":166, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/chunked_allocator.inl.h" }}
  1082. ,{ "pid":12345, "tid":2, "ts":1718090301826921, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1083. ,{ "pid":12345, "tid":2, "ts":1718090301827047, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/ConditionVariable.h" }}
  1084. ,{ "pid":12345, "tid":2, "ts":1718090301827045, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/ConditionVariable.h" }}
  1085. ,{ "pid":12345, "tid":2, "ts":1718090301827129, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1086. ,{ "pid":12345, "tid":2, "ts":1718090301827236, "dur":140, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/affix_allocator.h" }}
  1087. ,{ "pid":12345, "tid":2, "ts":1718090301827235, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/affix_allocator.h" }}
  1088. ,{ "pid":12345, "tid":2, "ts":1718090301827382, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1089. ,{ "pid":12345, "tid":2, "ts":1718090301827497, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_Semaphore_SemaphoreBased.inl.h" }}
  1090. ,{ "pid":12345, "tid":2, "ts":1718090301827495, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_Semaphore_SemaphoreBased.inl.h" }}
  1091. ,{ "pid":12345, "tid":2, "ts":1718090301827588, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1092. ,{ "pid":12345, "tid":2, "ts":1718090301827694, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_EventSemaphore_SemaphoreBased.inl.h" }}
  1093. ,{ "pid":12345, "tid":2, "ts":1718090301827693, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_EventSemaphore_SemaphoreBased.inl.h" }}
  1094. ,{ "pid":12345, "tid":2, "ts":1718090301827764, "dur":127, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1095. ,{ "pid":12345, "tid":2, "ts":1718090301827911, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_ThreadLocalStorage.h" }}
  1096. ,{ "pid":12345, "tid":2, "ts":1718090301827910, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_ThreadLocalStorage.h" }}
  1097. ,{ "pid":12345, "tid":2, "ts":1718090301828051, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Socket.h" }}
  1098. ,{ "pid":12345, "tid":2, "ts":1718090301828050, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Socket.h" }}
  1099. ,{ "pid":12345, "tid":2, "ts":1718090301828142, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1100. ,{ "pid":12345, "tid":2, "ts":1718090301828247, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Lock.h" }}
  1101. ,{ "pid":12345, "tid":2, "ts":1718090301828228, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Lock.h" }}
  1102. ,{ "pid":12345, "tid":2, "ts":1718090301828365, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1103. ,{ "pid":12345, "tid":2, "ts":1718090301828431, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_CountdownTimer.h" }}
  1104. ,{ "pid":12345, "tid":2, "ts":1718090301828430, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_CountdownTimer.h" }}
  1105. ,{ "pid":12345, "tid":2, "ts":1718090301828488, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1106. ,{ "pid":12345, "tid":2, "ts":1718090301828584, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Alignment.h" }}
  1107. ,{ "pid":12345, "tid":2, "ts":1718090301828582, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Alignment.h" }}
  1108. ,{ "pid":12345, "tid":2, "ts":1718090301828652, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1109. ,{ "pid":12345, "tid":2, "ts":1718090301828728, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/UnityLinker.deps.json" }}
  1110. ,{ "pid":12345, "tid":2, "ts":1718090301828727, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/UnityLinker.deps.json" }}
  1111. ,{ "pid":12345, "tid":2, "ts":1718090301828807, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1112. ,{ "pid":12345, "tid":2, "ts":1718090301828890, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Linker.Api.Output.xml" }}
  1113. ,{ "pid":12345, "tid":2, "ts":1718090301828889, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Linker.Api.Output.xml" }}
  1114. ,{ "pid":12345, "tid":2, "ts":1718090301828956, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1115. ,{ "pid":12345, "tid":2, "ts":1718090301829028, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.dll" }}
  1116. ,{ "pid":12345, "tid":2, "ts":1718090301829027, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.dll" }}
  1117. ,{ "pid":12345, "tid":2, "ts":1718090301829087, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1118. ,{ "pid":12345, "tid":2, "ts":1718090301829167, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Common.pdb" }}
  1119. ,{ "pid":12345, "tid":2, "ts":1718090301829166, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Common.pdb" }}
  1120. ,{ "pid":12345, "tid":2, "ts":1718090301829236, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1121. ,{ "pid":12345, "tid":2, "ts":1718090301829335, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data.dll" }}
  1122. ,{ "pid":12345, "tid":2, "ts":1718090301829333, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data.dll" }}
  1123. ,{ "pid":12345, "tid":2, "ts":1718090301829446, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1124. ,{ "pid":12345, "tid":2, "ts":1718090301829520, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.UniversalWindows.pdb" }}
  1125. ,{ "pid":12345, "tid":2, "ts":1718090301829519, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.UniversalWindows.pdb" }}
  1126. ,{ "pid":12345, "tid":2, "ts":1718090301829579, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1127. ,{ "pid":12345, "tid":2, "ts":1718090301829659, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.iOS.pdb" }}
  1128. ,{ "pid":12345, "tid":2, "ts":1718090301829658, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.iOS.pdb" }}
  1129. ,{ "pid":12345, "tid":2, "ts":1718090301829728, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1130. ,{ "pid":12345, "tid":2, "ts":1718090301829804, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.Android.pdb" }}
  1131. ,{ "pid":12345, "tid":2, "ts":1718090301829802, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.Android.pdb" }}
  1132. ,{ "pid":12345, "tid":2, "ts":1718090301829892, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1133. ,{ "pid":12345, "tid":2, "ts":1718090301829969, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Cecil.Visitor.dll" }}
  1134. ,{ "pid":12345, "tid":2, "ts":1718090301829968, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Cecil.Visitor.dll" }}
  1135. ,{ "pid":12345, "tid":2, "ts":1718090301830048, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1136. ,{ "pid":12345, "tid":2, "ts":1718090301830158, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Xml.XmlSerializer.dll" }}
  1137. ,{ "pid":12345, "tid":2, "ts":1718090301830157, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Xml.XmlSerializer.dll" }}
  1138. ,{ "pid":12345, "tid":2, "ts":1718090301830279, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1139. ,{ "pid":12345, "tid":2, "ts":1718090301830372, "dur":126, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Windows.dll" }}
  1140. ,{ "pid":12345, "tid":2, "ts":1718090301830371, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Windows.dll" }}
  1141. ,{ "pid":12345, "tid":2, "ts":1718090301830499, "dur":132, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1142. ,{ "pid":12345, "tid":2, "ts":1718090301830639, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Threading.ThreadPool.dll" }}
  1143. ,{ "pid":12345, "tid":2, "ts":1718090301830638, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Threading.ThreadPool.dll" }}
  1144. ,{ "pid":12345, "tid":2, "ts":1718090301830736, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1145. ,{ "pid":12345, "tid":2, "ts":1718090301830823, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Threading.dll" }}
  1146. ,{ "pid":12345, "tid":2, "ts":1718090301830822, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Threading.dll" }}
  1147. ,{ "pid":12345, "tid":2, "ts":1718090301830926, "dur":143, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1148. ,{ "pid":12345, "tid":2, "ts":1718090301831077, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Text.Encoding.CodePages.dll" }}
  1149. ,{ "pid":12345, "tid":2, "ts":1718090301831075, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Text.Encoding.CodePages.dll" }}
  1150. ,{ "pid":12345, "tid":2, "ts":1718090301831152, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1151. ,{ "pid":12345, "tid":2, "ts":1718090301831216, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.Cryptography.X509Certificates.dll" }}
  1152. ,{ "pid":12345, "tid":2, "ts":1718090301831215, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.Cryptography.X509Certificates.dll" }}
  1153. ,{ "pid":12345, "tid":2, "ts":1718090301831314, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1154. ,{ "pid":12345, "tid":2, "ts":1718090301831386, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.Claims.dll" }}
  1155. ,{ "pid":12345, "tid":2, "ts":1718090301831385, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.Claims.dll" }}
  1156. ,{ "pid":12345, "tid":2, "ts":1718090301831451, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1157. ,{ "pid":12345, "tid":2, "ts":1718090301831518, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.Serialization.dll" }}
  1158. ,{ "pid":12345, "tid":2, "ts":1718090301831516, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Serialization.dll" }}
  1159. ,{ "pid":12345, "tid":2, "ts":1718090301831590, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1160. ,{ "pid":12345, "tid":2, "ts":1718090301831671, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.Handles.dll" }}
  1161. ,{ "pid":12345, "tid":2, "ts":1718090301831670, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Handles.dll" }}
  1162. ,{ "pid":12345, "tid":2, "ts":1718090301831764, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1163. ,{ "pid":12345, "tid":2, "ts":1718090301831857, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Resources.Reader.dll" }}
  1164. ,{ "pid":12345, "tid":2, "ts":1718090301831856, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Resources.Reader.dll" }}
  1165. ,{ "pid":12345, "tid":2, "ts":1718090301831944, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1166. ,{ "pid":12345, "tid":2, "ts":1718090301832043, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Reflection.Emit.dll" }}
  1167. ,{ "pid":12345, "tid":2, "ts":1718090301832042, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Reflection.Emit.dll" }}
  1168. ,{ "pid":12345, "tid":2, "ts":1718090301832130, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1169. ,{ "pid":12345, "tid":2, "ts":1718090301832211, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Numerics.Vectors.dll" }}
  1170. ,{ "pid":12345, "tid":2, "ts":1718090301832209, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Numerics.Vectors.dll" }}
  1171. ,{ "pid":12345, "tid":2, "ts":1718090301832289, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1172. ,{ "pid":12345, "tid":2, "ts":1718090301832369, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.Sockets.dll" }}
  1173. ,{ "pid":12345, "tid":2, "ts":1718090301832367, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Sockets.dll" }}
  1174. ,{ "pid":12345, "tid":2, "ts":1718090301832453, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1175. ,{ "pid":12345, "tid":2, "ts":1718090301832569, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.NetworkInformation.dll" }}
  1176. ,{ "pid":12345, "tid":2, "ts":1718090301832621, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1177. ,{ "pid":12345, "tid":2, "ts":1718090301832716, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.dll" }}
  1178. ,{ "pid":12345, "tid":2, "ts":1718090301832715, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.dll" }}
  1179. ,{ "pid":12345, "tid":2, "ts":1718090301832803, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1180. ,{ "pid":12345, "tid":2, "ts":1718090301832895, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.Pipes.AccessControl.dll" }}
  1181. ,{ "pid":12345, "tid":2, "ts":1718090301832893, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.Pipes.AccessControl.dll" }}
  1182. ,{ "pid":12345, "tid":2, "ts":1718090301832970, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1183. ,{ "pid":12345, "tid":2, "ts":1718090301833075, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.FileSystem.AccessControl.dll" }}
  1184. ,{ "pid":12345, "tid":2, "ts":1718090301833074, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.FileSystem.AccessControl.dll" }}
  1185. ,{ "pid":12345, "tid":2, "ts":1718090301833193, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1186. ,{ "pid":12345, "tid":2, "ts":1718090301833338, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Globalization.dll" }}
  1187. ,{ "pid":12345, "tid":2, "ts":1718090301833336, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Globalization.dll" }}
  1188. ,{ "pid":12345, "tid":2, "ts":1718090301833425, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1189. ,{ "pid":12345, "tid":2, "ts":1718090301833521, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Diagnostics.Tracing.dll" }}
  1190. ,{ "pid":12345, "tid":2, "ts":1718090301833518, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Diagnostics.Tracing.dll" }}
  1191. ,{ "pid":12345, "tid":2, "ts":1718090301833578, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1192. ,{ "pid":12345, "tid":2, "ts":1718090301833686, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Diagnostics.DiagnosticSource.dll" }}
  1193. ,{ "pid":12345, "tid":2, "ts":1718090301833685, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Diagnostics.DiagnosticSource.dll" }}
  1194. ,{ "pid":12345, "tid":2, "ts":1718090301833808, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1195. ,{ "pid":12345, "tid":2, "ts":1718090301833919, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Console.dll" }}
  1196. ,{ "pid":12345, "tid":2, "ts":1718090301833917, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Console.dll" }}
  1197. ,{ "pid":12345, "tid":2, "ts":1718090301834046, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1198. ,{ "pid":12345, "tid":2, "ts":1718090301834136, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.ComponentModel.Annotations.dll" }}
  1199. ,{ "pid":12345, "tid":2, "ts":1718090301834134, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ComponentModel.Annotations.dll" }}
  1200. ,{ "pid":12345, "tid":2, "ts":1718090301834209, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1201. ,{ "pid":12345, "tid":2, "ts":1718090301834293, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/SharpYaml.dll" }}
  1202. ,{ "pid":12345, "tid":2, "ts":1718090301834292, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/SharpYaml.dll" }}
  1203. ,{ "pid":12345, "tid":2, "ts":1718090301834375, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1204. ,{ "pid":12345, "tid":2, "ts":1718090301834474, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/monolinker.dll" }}
  1205. ,{ "pid":12345, "tid":2, "ts":1718090301834472, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/monolinker.dll" }}
  1206. ,{ "pid":12345, "tid":2, "ts":1718090301834547, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1207. ,{ "pid":12345, "tid":2, "ts":1718090301834679, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Mono.Cecil.pdb" }}
  1208. ,{ "pid":12345, "tid":2, "ts":1718090301834677, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Mono.Cecil.pdb" }}
  1209. ,{ "pid":12345, "tid":2, "ts":1718090301834782, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1210. ,{ "pid":12345, "tid":2, "ts":1718090301834865, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Microsoft.VisualBasic.Core.dll" }}
  1211. ,{ "pid":12345, "tid":2, "ts":1718090301834863, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Microsoft.VisualBasic.Core.dll" }}
  1212. ,{ "pid":12345, "tid":2, "ts":1718090301834947, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1213. ,{ "pid":12345, "tid":2, "ts":1718090301835056, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libSystem.Globalization.Native.dylib" }}
  1214. ,{ "pid":12345, "tid":2, "ts":1718090301835144, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1215. ,{ "pid":12345, "tid":2, "ts":1718090301835271, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/JetBrains.Profiler.Api.dll" }}
  1216. ,{ "pid":12345, "tid":2, "ts":1718090301835269, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/JetBrains.Profiler.Api.dll" }}
  1217. ,{ "pid":12345, "tid":2, "ts":1718090301835358, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1218. ,{ "pid":12345, "tid":2, "ts":1718090301835498, "dur":130, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/createdump" }}
  1219. ,{ "pid":12345, "tid":2, "ts":1718090301835628, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1220. ,{ "pid":12345, "tid":2, "ts":1718090301835734, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Tools.dll" }}
  1221. ,{ "pid":12345, "tid":2, "ts":1718090301835733, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Tools.dll" }}
  1222. ,{ "pid":12345, "tid":2, "ts":1718090301835835, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1223. ,{ "pid":12345, "tid":2, "ts":1718090301835926, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.VisionOS.pdb" }}
  1224. ,{ "pid":12345, "tid":2, "ts":1718090301835924, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.VisionOS.pdb" }}
  1225. ,{ "pid":12345, "tid":2, "ts":1718090301836006, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1226. ,{ "pid":12345, "tid":2, "ts":1718090301836110, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.MacOS.dll" }}
  1227. ,{ "pid":12345, "tid":2, "ts":1718090301836109, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.MacOS.dll" }}
  1228. ,{ "pid":12345, "tid":2, "ts":1718090301836189, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1229. ,{ "pid":12345, "tid":2, "ts":1718090301836261, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.GNU.pdb" }}
  1230. ,{ "pid":12345, "tid":2, "ts":1718090301836260, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.GNU.pdb" }}
  1231. ,{ "pid":12345, "tid":2, "ts":1718090301836352, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1232. ,{ "pid":12345, "tid":2, "ts":1718090301836439, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.Android.dll" }}
  1233. ,{ "pid":12345, "tid":2, "ts":1718090301836437, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Android.dll" }}
  1234. ,{ "pid":12345, "tid":2, "ts":1718090301836551, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1235. ,{ "pid":12345, "tid":2, "ts":1718090301836648, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.DotNet.pdb" }}
  1236. ,{ "pid":12345, "tid":2, "ts":1718090301836647, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.DotNet.pdb" }}
  1237. ,{ "pid":12345, "tid":2, "ts":1718090301836717, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1238. ,{ "pid":12345, "tid":2, "ts":1718090301836840, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.BeeDriver.xml" }}
  1239. ,{ "pid":12345, "tid":2, "ts":1718090301836838, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.BeeDriver.xml" }}
  1240. ,{ "pid":12345, "tid":2, "ts":1718090301836919, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1241. ,{ "pid":12345, "tid":2, "ts":1718090301837006, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Analytics.deps.json" }}
  1242. ,{ "pid":12345, "tid":2, "ts":1718090301837004, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Analytics.deps.json" }}
  1243. ,{ "pid":12345, "tid":2, "ts":1718090301837067, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1244. ,{ "pid":12345, "tid":2, "ts":1718090301837141, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/UnityLinker.pdb" }}
  1245. ,{ "pid":12345, "tid":2, "ts":1718090301837139, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/UnityLinker.pdb" }}
  1246. ,{ "pid":12345, "tid":2, "ts":1718090301837218, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1247. ,{ "pid":12345, "tid":2, "ts":1718090301837337, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Options.dll" }}
  1248. ,{ "pid":12345, "tid":2, "ts":1718090301837336, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Options.dll" }}
  1249. ,{ "pid":12345, "tid":2, "ts":1718090301837410, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1250. ,{ "pid":12345, "tid":2, "ts":1718090301837487, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Shell.dll" }}
  1251. ,{ "pid":12345, "tid":2, "ts":1718090301837486, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Shell.dll" }}
  1252. ,{ "pid":12345, "tid":2, "ts":1718090301837569, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1253. ,{ "pid":12345, "tid":2, "ts":1718090301837650, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Common35.pdb" }}
  1254. ,{ "pid":12345, "tid":2, "ts":1718090301837649, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Common35.pdb" }}
  1255. ,{ "pid":12345, "tid":2, "ts":1718090301837732, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1256. ,{ "pid":12345, "tid":2, "ts":1718090301837824, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.dll" }}
  1257. ,{ "pid":12345, "tid":2, "ts":1718090301837821, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.dll" }}
  1258. ,{ "pid":12345, "tid":2, "ts":1718090301837938, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1259. ,{ "pid":12345, "tid":2, "ts":1718090301838043, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.UniversalWindows.pdb" }}
  1260. ,{ "pid":12345, "tid":2, "ts":1718090301838040, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.UniversalWindows.pdb" }}
  1261. ,{ "pid":12345, "tid":2, "ts":1718090301838113, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1262. ,{ "pid":12345, "tid":2, "ts":1718090301838194, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.iOS.dll" }}
  1263. ,{ "pid":12345, "tid":2, "ts":1718090301838193, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.iOS.dll" }}
  1264. ,{ "pid":12345, "tid":2, "ts":1718090301838254, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1265. ,{ "pid":12345, "tid":2, "ts":1718090301838387, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Api.pdb" }}
  1266. ,{ "pid":12345, "tid":2, "ts":1718090301838385, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Api.pdb" }}
  1267. ,{ "pid":12345, "tid":2, "ts":1718090301838500, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1268. ,{ "pid":12345, "tid":2, "ts":1718090301838597, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Cecil.Awesome.pdb" }}
  1269. ,{ "pid":12345, "tid":2, "ts":1718090301838595, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Cecil.Awesome.pdb" }}
  1270. ,{ "pid":12345, "tid":2, "ts":1718090301838675, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1271. ,{ "pid":12345, "tid":2, "ts":1718090301838817, "dur":135, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Xml.XmlDocument.dll" }}
  1272. ,{ "pid":12345, "tid":2, "ts":1718090301838816, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Xml.XmlDocument.dll" }}
  1273. ,{ "pid":12345, "tid":2, "ts":1718090301838954, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1274. ,{ "pid":12345, "tid":2, "ts":1718090301839074, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Web.HttpUtility.dll" }}
  1275. ,{ "pid":12345, "tid":2, "ts":1718090301839073, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Web.HttpUtility.dll" }}
  1276. ,{ "pid":12345, "tid":2, "ts":1718090301839156, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1277. ,{ "pid":12345, "tid":2, "ts":1718090301839277, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Threading.Thread.dll" }}
  1278. ,{ "pid":12345, "tid":2, "ts":1718090301839275, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Threading.Thread.dll" }}
  1279. ,{ "pid":12345, "tid":2, "ts":1718090301839338, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1280. ,{ "pid":12345, "tid":2, "ts":1718090301839405, "dur":156, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Threading.Channels.dll" }}
  1281. ,{ "pid":12345, "tid":2, "ts":1718090301839404, "dur":162, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Threading.Channels.dll" }}
  1282. ,{ "pid":12345, "tid":2, "ts":1718090301839566, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1283. ,{ "pid":12345, "tid":2, "ts":1718090301839669, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.ServiceProcess.dll" }}
  1284. ,{ "pid":12345, "tid":2, "ts":1718090301839667, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.ServiceProcess.dll" }}
  1285. ,{ "pid":12345, "tid":2, "ts":1718090301839742, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1286. ,{ "pid":12345, "tid":2, "ts":1718090301839822, "dur":129, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.Cryptography.Primitives.dll" }}
  1287. ,{ "pid":12345, "tid":2, "ts":1718090301839821, "dur":131, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.Cryptography.Primitives.dll" }}
  1288. ,{ "pid":12345, "tid":2, "ts":1718090301839953, "dur":192, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1289. ,{ "pid":12345, "tid":2, "ts":1718090301840149, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.AccessControl.dll" }}
  1290. ,{ "pid":12345, "tid":2, "ts":1718090301840148, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.AccessControl.dll" }}
  1291. ,{ "pid":12345, "tid":2, "ts":1718090301840244, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1292. ,{ "pid":12345, "tid":2, "ts":1718090301840333, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.Loader.dll" }}
  1293. ,{ "pid":12345, "tid":2, "ts":1718090301840332, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.Loader.dll" }}
  1294. ,{ "pid":12345, "tid":2, "ts":1718090301840441, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1295. ,{ "pid":12345, "tid":2, "ts":1718090301840575, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.CompilerServices.VisualC.dll" }}
  1296. ,{ "pid":12345, "tid":2, "ts":1718090301840574, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.CompilerServices.VisualC.dll" }}
  1297. ,{ "pid":12345, "tid":2, "ts":1718090301840696, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1298. ,{ "pid":12345, "tid":2, "ts":1718090301840834, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Reflection.Extensions.dll" }}
  1299. ,{ "pid":12345, "tid":2, "ts":1718090301840833, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Reflection.Extensions.dll" }}
  1300. ,{ "pid":12345, "tid":2, "ts":1718090301840902, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1301. ,{ "pid":12345, "tid":2, "ts":1718090301841019, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Private.Uri.dll" }}
  1302. ,{ "pid":12345, "tid":2, "ts":1718090301841017, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Private.Uri.dll" }}
  1303. ,{ "pid":12345, "tid":2, "ts":1718090301841091, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1304. ,{ "pid":12345, "tid":2, "ts":1718090301841202, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.WebSockets.dll" }}
  1305. ,{ "pid":12345, "tid":2, "ts":1718090301841201, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.WebSockets.dll" }}
  1306. ,{ "pid":12345, "tid":2, "ts":1718090301841293, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1307. ,{ "pid":12345, "tid":2, "ts":1718090301841391, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.Requests.dll" }}
  1308. ,{ "pid":12345, "tid":2, "ts":1718090301841390, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.Requests.dll" }}
  1309. ,{ "pid":12345, "tid":2, "ts":1718090301841510, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1310. ,{ "pid":12345, "tid":2, "ts":1718090301841641, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.HttpListener.dll" }}
  1311. ,{ "pid":12345, "tid":2, "ts":1718090301841639, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.HttpListener.dll" }}
  1312. ,{ "pid":12345, "tid":2, "ts":1718090301841730, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1313. ,{ "pid":12345, "tid":2, "ts":1718090301841809, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Linq.Expressions.dll" }}
  1314. ,{ "pid":12345, "tid":2, "ts":1718090301841807, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Linq.Expressions.dll" }}
  1315. ,{ "pid":12345, "tid":2, "ts":1718090301841889, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1316. ,{ "pid":12345, "tid":2, "ts":1718090301841991, "dur":135, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.FileSystem.Watcher.dll" }}
  1317. ,{ "pid":12345, "tid":2, "ts":1718090301841990, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.FileSystem.Watcher.dll" }}
  1318. ,{ "pid":12345, "tid":2, "ts":1718090301842127, "dur":181, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1319. ,{ "pid":12345, "tid":2, "ts":1718090301842314, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.Compression.FileSystem.dll" }}
  1320. ,{ "pid":12345, "tid":2, "ts":1718090301842312, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.Compression.FileSystem.dll" }}
  1321. ,{ "pid":12345, "tid":2, "ts":1718090301842422, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1322. ,{ "pid":12345, "tid":2, "ts":1718090301842531, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Dynamic.Runtime.dll" }}
  1323. ,{ "pid":12345, "tid":2, "ts":1718090301842530, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Dynamic.Runtime.dll" }}
  1324. ,{ "pid":12345, "tid":2, "ts":1718090301842625, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1325. ,{ "pid":12345, "tid":2, "ts":1718090301842760, "dur":178, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Diagnostics.TextWriterTraceListener.dll" }}
  1326. ,{ "pid":12345, "tid":2, "ts":1718090301842758, "dur":180, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.TextWriterTraceListener.dll" }}
  1327. ,{ "pid":12345, "tid":2, "ts":1718090301842939, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1328. ,{ "pid":12345, "tid":2, "ts":1718090301843047, "dur":156, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Data.dll" }}
  1329. ,{ "pid":12345, "tid":2, "ts":1718090301843045, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Data.dll" }}
  1330. ,{ "pid":12345, "tid":2, "ts":1718090301843206, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1331. ,{ "pid":12345, "tid":2, "ts":1718090301843298, "dur":103, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.ComponentModel.EventBasedAsync.dll" }}
  1332. ,{ "pid":12345, "tid":2, "ts":1718090301843297, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.ComponentModel.EventBasedAsync.dll" }}
  1333. ,{ "pid":12345, "tid":2, "ts":1718090301843402, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1334. ,{ "pid":12345, "tid":2, "ts":1718090301843487, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Collections.dll" }}
  1335. ,{ "pid":12345, "tid":2, "ts":1718090301843486, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Collections.dll" }}
  1336. ,{ "pid":12345, "tid":2, "ts":1718090301843568, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1337. ,{ "pid":12345, "tid":2, "ts":1718090301843654, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Newtonsoft.Json.dll" }}
  1338. ,{ "pid":12345, "tid":2, "ts":1718090301843652, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Newtonsoft.Json.dll" }}
  1339. ,{ "pid":12345, "tid":2, "ts":1718090301843751, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1340. ,{ "pid":12345, "tid":2, "ts":1718090301843813, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Mono.Cecil.Pdb.pdb" }}
  1341. ,{ "pid":12345, "tid":2, "ts":1718090301843812, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Mono.Cecil.Pdb.pdb" }}
  1342. ,{ "pid":12345, "tid":2, "ts":1718090301843875, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1343. ,{ "pid":12345, "tid":2, "ts":1718090301843949, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Microsoft.Win32.Registry.dll" }}
  1344. ,{ "pid":12345, "tid":2, "ts":1718090301843948, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Microsoft.Win32.Registry.dll" }}
  1345. ,{ "pid":12345, "tid":2, "ts":1718090301844015, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1346. ,{ "pid":12345, "tid":2, "ts":1718090301844086, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libSystem.Security.Cryptography.Native.Apple.dylib" }}
  1347. ,{ "pid":12345, "tid":2, "ts":1718090301844156, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1348. ,{ "pid":12345, "tid":2, "ts":1718090301844232, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libhostpolicy.dylib" }}
  1349. ,{ "pid":12345, "tid":2, "ts":1718090301844318, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1350. ,{ "pid":12345, "tid":2, "ts":1718090301844405, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/il2cpp.pdb" }}
  1351. ,{ "pid":12345, "tid":2, "ts":1718090301844403, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/il2cpp.pdb" }}
  1352. ,{ "pid":12345, "tid":2, "ts":1718090301844474, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1353. ,{ "pid":12345, "tid":2, "ts":1718090301844559, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.VisualStudioSolution.pdb" }}
  1354. ,{ "pid":12345, "tid":2, "ts":1718090301844557, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.VisualStudioSolution.pdb" }}
  1355. ,{ "pid":12345, "tid":2, "ts":1718090301844636, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1356. ,{ "pid":12345, "tid":2, "ts":1718090301844713, "dur":153, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.Xcode.dll" }}
  1357. ,{ "pid":12345, "tid":2, "ts":1718090301844712, "dur":155, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.Xcode.dll" }}
  1358. ,{ "pid":12345, "tid":2, "ts":1718090301844867, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1359. ,{ "pid":12345, "tid":2, "ts":1718090301844948, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.UWP.pdb" }}
  1360. ,{ "pid":12345, "tid":2, "ts":1718090301844946, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.UWP.pdb" }}
  1361. ,{ "pid":12345, "tid":2, "ts":1718090301845028, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1362. ,{ "pid":12345, "tid":2, "ts":1718090301845100, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.LLVM.dll" }}
  1363. ,{ "pid":12345, "tid":2, "ts":1718090301845098, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.LLVM.dll" }}
  1364. ,{ "pid":12345, "tid":2, "ts":1718090301845181, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1365. ,{ "pid":12345, "tid":2, "ts":1718090301845278, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.Emscripten.pdb" }}
  1366. ,{ "pid":12345, "tid":2, "ts":1718090301845276, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.Emscripten.pdb" }}
  1367. ,{ "pid":12345, "tid":2, "ts":1718090301845347, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1368. ,{ "pid":12345, "tid":2, "ts":1718090301845436, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Stevedore.Program.pdb" }}
  1369. ,{ "pid":12345, "tid":2, "ts":1718090301845434, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Stevedore.Program.pdb" }}
  1370. ,{ "pid":12345, "tid":2, "ts":1718090301845502, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1371. ,{ "pid":12345, "tid":2, "ts":1718090301845584, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.CSharpSupport.pdb" }}
  1372. ,{ "pid":12345, "tid":2, "ts":1718090301845583, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.CSharpSupport.pdb" }}
  1373. ,{ "pid":12345, "tid":2, "ts":1718090301845651, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1374. ,{ "pid":12345, "tid":2, "ts":1718090301845770, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.BeeDriver.dll" }}
  1375. ,{ "pid":12345, "tid":2, "ts":1718090301845769, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.BeeDriver.dll" }}
  1376. ,{ "pid":12345, "tid":2, "ts":1718090301845861, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1377. ,{ "pid":12345, "tid":2, "ts":1718090301845947, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Analytics.Api.Output.dll" }}
  1378. ,{ "pid":12345, "tid":2, "ts":1718090301845945, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Analytics.Api.Output.dll" }}
  1379. ,{ "pid":12345, "tid":2, "ts":1718090301846068, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/libil2cpp.a" }}
  1380. ,{ "pid":12345, "tid":2, "ts":1718090301846142, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1381. ,{ "pid":12345, "tid":2, "ts":1718090301846276, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone Tests/Unity-iPhone Tests-Info.plist" }}
  1382. ,{ "pid":12345, "tid":2, "ts":1718090301846365, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1383. ,{ "pid":12345, "tid":2, "ts":1718090301846438, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UnityAppController.mm" }}
  1384. ,{ "pid":12345, "tid":2, "ts":1718090301846553, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1385. ,{ "pid":12345, "tid":2, "ts":1718090301846688, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/VideoPlayer.h" }}
  1386. ,{ "pid":12345, "tid":2, "ts":1718090301846685, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/VideoPlayer.h" }}
  1387. ,{ "pid":12345, "tid":2, "ts":1718090301846744, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1388. ,{ "pid":12345, "tid":2, "ts":1718090301846802, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/UnityRendering.h" }}
  1389. ,{ "pid":12345, "tid":2, "ts":1718090301846801, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/UnityRendering.h" }}
  1390. ,{ "pid":12345, "tid":2, "ts":1718090301846903, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1391. ,{ "pid":12345, "tid":2, "ts":1718090301846977, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/MetalHelper.mm" }}
  1392. ,{ "pid":12345, "tid":2, "ts":1718090301847054, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1393. ,{ "pid":12345, "tid":2, "ts":1718090301847135, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/DisplayManager.mm" }}
  1394. ,{ "pid":12345, "tid":2, "ts":1718090301847202, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1395. ,{ "pid":12345, "tid":2, "ts":1718090301847288, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/CameraCapture.mm" }}
  1396. ,{ "pid":12345, "tid":2, "ts":1718090301847354, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1397. ,{ "pid":12345, "tid":2, "ts":1718090301847472, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityViewControllerBase+visionOS.mm" }}
  1398. ,{ "pid":12345, "tid":2, "ts":1718090301847544, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1399. ,{ "pid":12345, "tid":2, "ts":1718090301847620, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/UnityView.h" }}
  1400. ,{ "pid":12345, "tid":2, "ts":1718090301847619, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityView.h" }}
  1401. ,{ "pid":12345, "tid":2, "ts":1718090301847700, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1402. ,{ "pid":12345, "tid":2, "ts":1718090301847818, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/UnityAppController+ViewHandling.h" }}
  1403. ,{ "pid":12345, "tid":2, "ts":1718090301847817, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityAppController+ViewHandling.h" }}
  1404. ,{ "pid":12345, "tid":2, "ts":1718090301847899, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1405. ,{ "pid":12345, "tid":2, "ts":1718090301847982, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/ActivityIndicator.h" }}
  1406. ,{ "pid":12345, "tid":2, "ts":1718090301847980, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/ActivityIndicator.h" }}
  1407. ,{ "pid":12345, "tid":2, "ts":1718090301848087, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1408. ,{ "pid":12345, "tid":2, "ts":1718090301848179, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/PluginBase/RenderPluginDelegate.h" }}
  1409. ,{ "pid":12345, "tid":2, "ts":1718090301848178, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/PluginBase/RenderPluginDelegate.h" }}
  1410. ,{ "pid":12345, "tid":2, "ts":1718090301848245, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1411. ,{ "pid":12345, "tid":2, "ts":1718090301848335, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/CrashReporter.mm" }}
  1412. ,{ "pid":12345, "tid":2, "ts":1718090301848393, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1413. ,{ "pid":12345, "tid":2, "ts":1718090301848477, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Assembly.cpp" }}
  1414. ,{ "pid":12345, "tid":2, "ts":1718090301848476, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Assembly.cpp" }}
  1415. ,{ "pid":12345, "tid":2, "ts":1718090301848542, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1416. ,{ "pid":12345, "tid":2, "ts":1718090301848612, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/CCWBase.cpp" }}
  1417. ,{ "pid":12345, "tid":2, "ts":1718090301848611, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/CCWBase.cpp" }}
  1418. ,{ "pid":12345, "tid":2, "ts":1718090301848694, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1419. ,{ "pid":12345, "tid":2, "ts":1718090301848776, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ClassLibraryPAL.h" }}
  1420. ,{ "pid":12345, "tid":2, "ts":1718090301848775, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ClassLibraryPAL.h" }}
  1421. ,{ "pid":12345, "tid":2, "ts":1718090301848862, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1422. ,{ "pid":12345, "tid":2, "ts":1718090301848964, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Domain.cpp" }}
  1423. ,{ "pid":12345, "tid":2, "ts":1718090301848963, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Domain.cpp" }}
  1424. ,{ "pid":12345, "tid":2, "ts":1718090301849038, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1425. ,{ "pid":12345, "tid":2, "ts":1718090301849142, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Exception.h" }}
  1426. ,{ "pid":12345, "tid":2, "ts":1718090301849140, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Exception.h" }}
  1427. ,{ "pid":12345, "tid":2, "ts":1718090301849215, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1428. ,{ "pid":12345, "tid":2, "ts":1718090301849305, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/GlobalMetadata.cpp" }}
  1429. ,{ "pid":12345, "tid":2, "ts":1718090301849304, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/GlobalMetadata.cpp" }}
  1430. ,{ "pid":12345, "tid":2, "ts":1718090301849431, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1431. ,{ "pid":12345, "tid":2, "ts":1718090301849535, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/InternalCalls.cpp" }}
  1432. ,{ "pid":12345, "tid":2, "ts":1718090301849534, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/InternalCalls.cpp" }}
  1433. ,{ "pid":12345, "tid":2, "ts":1718090301849601, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1434. ,{ "pid":12345, "tid":2, "ts":1718090301849689, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/MarshalAlloc.h" }}
  1435. ,{ "pid":12345, "tid":2, "ts":1718090301849688, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/MarshalAlloc.h" }}
  1436. ,{ "pid":12345, "tid":2, "ts":1718090301849801, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1437. ,{ "pid":12345, "tid":2, "ts":1718090301849870, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/MetadataLoader.cpp" }}
  1438. ,{ "pid":12345, "tid":2, "ts":1718090301849868, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/MetadataLoader.cpp" }}
  1439. ,{ "pid":12345, "tid":2, "ts":1718090301849947, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1440. ,{ "pid":12345, "tid":2, "ts":1718090301850019, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Monitor.cpp" }}
  1441. ,{ "pid":12345, "tid":2, "ts":1718090301850018, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Monitor.cpp" }}
  1442. ,{ "pid":12345, "tid":2, "ts":1718090301850094, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1443. ,{ "pid":12345, "tid":2, "ts":1718090301850195, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Parameter.h" }}
  1444. ,{ "pid":12345, "tid":2, "ts":1718090301850193, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Parameter.h" }}
  1445. ,{ "pid":12345, "tid":2, "ts":1718090301850252, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1446. ,{ "pid":12345, "tid":2, "ts":1718090301850334, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAdsNativeObject.m" }}
  1447. ,{ "pid":12345, "tid":2, "ts":1718090301850415, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1448. ,{ "pid":12345, "tid":2, "ts":1718090301850510, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Property.cpp" }}
  1449. ,{ "pid":12345, "tid":2, "ts":1718090301850509, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Property.cpp" }}
  1450. ,{ "pid":12345, "tid":2, "ts":1718090301850580, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1451. ,{ "pid":12345, "tid":2, "ts":1718090301850660, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Runtime.cpp" }}
  1452. ,{ "pid":12345, "tid":2, "ts":1718090301850659, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Runtime.cpp" }}
  1453. ,{ "pid":12345, "tid":2, "ts":1718090301850770, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/StackTrace.h" }}
  1454. ,{ "pid":12345, "tid":2, "ts":1718090301850828, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1455. ,{ "pid":12345, "tid":2, "ts":1718090301850891, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ThreadPoolMs.h" }}
  1456. ,{ "pid":12345, "tid":2, "ts":1718090301850890, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ThreadPoolMs.h" }}
  1457. ,{ "pid":12345, "tid":2, "ts":1718090301850977, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1458. ,{ "pid":12345, "tid":2, "ts":1718090301851041, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/WeakReference.h" }}
  1459. ,{ "pid":12345, "tid":2, "ts":1718090301851040, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/WeakReference.h" }}
  1460. ,{ "pid":12345, "tid":2, "ts":1718090301851181, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libmono/config/il2cpp-config-mono-linux.h" }}
  1461. ,{ "pid":12345, "tid":2, "ts":1718090301851180, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libmono/config/il2cpp-config-mono-linux.h" }}
  1462. ,{ "pid":12345, "tid":2, "ts":1718090301851232, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1463. ,{ "pid":12345, "tid":2, "ts":1718090301851319, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/il2cpp_root" }}
  1464. ,{ "pid":12345, "tid":2, "ts":1718090301851438, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1465. ,{ "pid":12345, "tid":2, "ts":1718090301851582, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/LaunchScreen-iPad.png" }}
  1466. ,{ "pid":12345, "tid":2, "ts":1718090301851644, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1467. ,{ "pid":12345, "tid":2, "ts":1718090301851741, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-Spotlight-120.png" }}
  1468. ,{ "pid":12345, "tid":2, "ts":1718090301851813, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1469. ,{ "pid":12345, "tid":2, "ts":1718090301851902, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-76.png" }}
  1470. ,{ "pid":12345, "tid":2, "ts":1718090301851986, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1471. ,{ "pid":12345, "tid":2, "ts":1718090301852073, "dur":156, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone.xcodeproj/project.pbxproj" }}
  1472. ,{ "pid":12345, "tid":2, "ts":1718090301852229, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1473. ,{ "pid":12345, "tid":2, "ts":1718090301852317, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Assets/AppleAuth/Native/iOS/AppleAuthManager.h" }}
  1474. ,{ "pid":12345, "tid":2, "ts":1718090301852316, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/AppleAuth/Native/iOS/AppleAuthManager.h" }}
  1475. ,{ "pid":12345, "tid":2, "ts":1718090301852369, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1476. ,{ "pid":12345, "tid":2, "ts":1718090301852455, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAdsShowListener.h" }}
  1477. ,{ "pid":12345, "tid":2, "ts":1718090301852454, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAdsShowListener.h" }}
  1478. ,{ "pid":12345, "tid":2, "ts":1718090301852705, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1479. ,{ "pid":12345, "tid":2, "ts":1718090301852832, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1480. ,{ "pid":12345, "tid":2, "ts":1718090301852909, "dur":14686, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  1481. ,{ "pid":12345, "tid":2, "ts":1718090301867600, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppCodeRegistration.cpp" }}
  1482. ,{ "pid":12345, "tid":2, "ts":1718090301867651, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1483. ,{ "pid":12345, "tid":2, "ts":1718090301867760, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GoogleMobileAds.Core.cpp" }}
  1484. ,{ "pid":12345, "tid":2, "ts":1718090301867759, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GoogleMobileAds.Core.cpp" }}
  1485. ,{ "pid":12345, "tid":2, "ts":1718090301867864, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1486. ,{ "pid":12345, "tid":2, "ts":1718090301867957, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__3.cpp" }}
  1487. ,{ "pid":12345, "tid":2, "ts":1718090301867955, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__3.cpp" }}
  1488. ,{ "pid":12345, "tid":2, "ts":1718090301868036, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1489. ,{ "pid":12345, "tid":2, "ts":1718090301868142, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__60.cpp" }}
  1490. ,{ "pid":12345, "tid":2, "ts":1718090301868141, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__60.cpp" }}
  1491. ,{ "pid":12345, "tid":2, "ts":1718090301868263, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1492. ,{ "pid":12345, "tid":2, "ts":1718090301868369, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__41.cpp" }}
  1493. ,{ "pid":12345, "tid":2, "ts":1718090301868367, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__41.cpp" }}
  1494. ,{ "pid":12345, "tid":2, "ts":1718090301868447, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1495. ,{ "pid":12345, "tid":2, "ts":1718090301868533, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__3.cpp" }}
  1496. ,{ "pid":12345, "tid":2, "ts":1718090301868532, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__3.cpp" }}
  1497. ,{ "pid":12345, "tid":2, "ts":1718090301868621, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1498. ,{ "pid":12345, "tid":2, "ts":1718090301868724, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Newtonsoft.Json__3.cpp" }}
  1499. ,{ "pid":12345, "tid":2, "ts":1718090301868723, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Newtonsoft.Json__3.cpp" }}
  1500. ,{ "pid":12345, "tid":2, "ts":1718090301868810, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1501. ,{ "pid":12345, "tid":2, "ts":1718090301868887, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Drawing_CodeGen.c" }}
  1502. ,{ "pid":12345, "tid":2, "ts":1718090301868886, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Drawing_CodeGen.c" }}
  1503. ,{ "pid":12345, "tid":2, "ts":1718090301868958, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1504. ,{ "pid":12345, "tid":2, "ts":1718090301869050, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__13.cpp" }}
  1505. ,{ "pid":12345, "tid":2, "ts":1718090301869049, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__13.cpp" }}
  1506. ,{ "pid":12345, "tid":2, "ts":1718090301869123, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1507. ,{ "pid":12345, "tid":2, "ts":1718090301869207, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System__7.cpp" }}
  1508. ,{ "pid":12345, "tid":2, "ts":1718090301869206, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System__7.cpp" }}
  1509. ,{ "pid":12345, "tid":2, "ts":1718090301869282, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1510. ,{ "pid":12345, "tid":2, "ts":1718090301869368, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__31.cpp" }}
  1511. ,{ "pid":12345, "tid":2, "ts":1718090301869367, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__31.cpp" }}
  1512. ,{ "pid":12345, "tid":2, "ts":1718090301869450, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1513. ,{ "pid":12345, "tid":2, "ts":1718090301869542, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__4.cpp" }}
  1514. ,{ "pid":12345, "tid":2, "ts":1718090301869541, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__4.cpp" }}
  1515. ,{ "pid":12345, "tid":2, "ts":1718090301869616, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1516. ,{ "pid":12345, "tid":2, "ts":1718090301869708, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__6.cpp" }}
  1517. ,{ "pid":12345, "tid":2, "ts":1718090301869706, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__6.cpp" }}
  1518. ,{ "pid":12345, "tid":2, "ts":1718090301869785, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1519. ,{ "pid":12345, "tid":2, "ts":1718090301869914, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.CoreModule__2.cpp" }}
  1520. ,{ "pid":12345, "tid":2, "ts":1718090301869910, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.CoreModule__2.cpp" }}
  1521. ,{ "pid":12345, "tid":2, "ts":1718090301870030, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1522. ,{ "pid":12345, "tid":2, "ts":1718090301870116, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__24.cpp" }}
  1523. ,{ "pid":12345, "tid":2, "ts":1718090301870115, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__24.cpp" }}
  1524. ,{ "pid":12345, "tid":2, "ts":1718090301870219, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1525. ,{ "pid":12345, "tid":2, "ts":1718090301870319, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__56.cpp" }}
  1526. ,{ "pid":12345, "tid":2, "ts":1718090301870317, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__56.cpp" }}
  1527. ,{ "pid":12345, "tid":2, "ts":1718090301870412, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1528. ,{ "pid":12345, "tid":2, "ts":1718090301870548, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__11.cpp" }}
  1529. ,{ "pid":12345, "tid":2, "ts":1718090301870547, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__11.cpp" }}
  1530. ,{ "pid":12345, "tid":2, "ts":1718090301870638, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1531. ,{ "pid":12345, "tid":2, "ts":1718090301870740, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Physics2DModule.cpp" }}
  1532. ,{ "pid":12345, "tid":2, "ts":1718090301870738, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Physics2DModule.cpp" }}
  1533. ,{ "pid":12345, "tid":2, "ts":1718090301870830, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1534. ,{ "pid":12345, "tid":2, "ts":1718090301870927, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UnityAnalyticsModule.cpp" }}
  1535. ,{ "pid":12345, "tid":2, "ts":1718090301870925, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UnityAnalyticsModule.cpp" }}
  1536. ,{ "pid":12345, "tid":2, "ts":1718090301871001, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1537. ,{ "pid":12345, "tid":2, "ts":1718090301871081, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__5.cpp" }}
  1538. ,{ "pid":12345, "tid":2, "ts":1718090301871079, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__5.cpp" }}
  1539. ,{ "pid":12345, "tid":2, "ts":1718090301871164, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1540. ,{ "pid":12345, "tid":2, "ts":1718090301871252, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__2.cpp" }}
  1541. ,{ "pid":12345, "tid":2, "ts":1718090301871251, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__2.cpp" }}
  1542. ,{ "pid":12345, "tid":2, "ts":1718090301871325, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1543. ,{ "pid":12345, "tid":2, "ts":1718090301871419, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppMetadataRegistration.c" }}
  1544. ,{ "pid":12345, "tid":2, "ts":1718090301871417, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppMetadataRegistration.c" }}
  1545. ,{ "pid":12345, "tid":2, "ts":1718090301871507, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1546. ,{ "pid":12345, "tid":2, "ts":1718090301871620, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.TextCoreFontEngineModule.cpp" }}
  1547. ,{ "pid":12345, "tid":2, "ts":1718090301871619, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.TextCoreFontEngineModule.cpp" }}
  1548. ,{ "pid":12345, "tid":2, "ts":1718090301871696, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1549. ,{ "pid":12345, "tid":2, "ts":1718090301871796, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Purchasing.Apple_CodeGen.c" }}
  1550. ,{ "pid":12345, "tid":2, "ts":1718090301871794, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Purchasing.Apple_CodeGen.c" }}
  1551. ,{ "pid":12345, "tid":2, "ts":1718090301871875, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1552. ,{ "pid":12345, "tid":2, "ts":1718090301871974, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Purchasing.AppleCore_CodeGen.c" }}
  1553. ,{ "pid":12345, "tid":2, "ts":1718090301871972, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Purchasing.AppleCore_CodeGen.c" }}
  1554. ,{ "pid":12345, "tid":2, "ts":1718090301872054, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1555. ,{ "pid":12345, "tid":2, "ts":1718090301872152, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/I18N.cpp" }}
  1556. ,{ "pid":12345, "tid":2, "ts":1718090301872150, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/I18N.cpp" }}
  1557. ,{ "pid":12345, "tid":2, "ts":1718090301872231, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1558. ,{ "pid":12345, "tid":2, "ts":1718090301872362, "dur":216, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml.Linq_CodeGen.c" }}
  1559. ,{ "pid":12345, "tid":2, "ts":1718090301872360, "dur":219, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml.Linq_CodeGen.c" }}
  1560. ,{ "pid":12345, "tid":2, "ts":1718090301872580, "dur":237, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1561. ,{ "pid":12345, "tid":2, "ts":1718090301872821, "dur":423, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System__10.cpp" }}
  1562. ,{ "pid":12345, "tid":2, "ts":1718090301872821, "dur":424, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System__10.cpp" }}
  1563. ,{ "pid":12345, "tid":2, "ts":1718090301873245, "dur":200, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1564. ,{ "pid":12345, "tid":2, "ts":1718090301873465, "dur":137, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule__6.cpp" }}
  1565. ,{ "pid":12345, "tid":2, "ts":1718090301873451, "dur":152, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__6.cpp" }}
  1566. ,{ "pid":12345, "tid":2, "ts":1718090301873604, "dur":189, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1567. ,{ "pid":12345, "tid":2, "ts":1718090301873813, "dur":138, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule__13.cpp" }}
  1568. ,{ "pid":12345, "tid":2, "ts":1718090301873811, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__13.cpp" }}
  1569. ,{ "pid":12345, "tid":2, "ts":1718090301873952, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1570. ,{ "pid":12345, "tid":2, "ts":1718090301874081, "dur":160, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppCCalculateFieldValues.cpp" }}
  1571. ,{ "pid":12345, "tid":2, "ts":1718090301874080, "dur":163, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppCCalculateFieldValues.cpp" }}
  1572. ,{ "pid":12345, "tid":2, "ts":1718090301874243, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1573. ,{ "pid":12345, "tid":2, "ts":1718090301874327, "dur":155, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppCCalculateTypeValues1.cpp" }}
  1574. ,{ "pid":12345, "tid":2, "ts":1718090301874326, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppCCalculateTypeValues1.cpp" }}
  1575. ,{ "pid":12345, "tid":2, "ts":1718090301874483, "dur":219, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1576. ,{ "pid":12345, "tid":2, "ts":1718090301874708, "dur":169, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/I18N.CJK.cpp" }}
  1577. ,{ "pid":12345, "tid":2, "ts":1718090301874707, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/I18N.CJK.cpp" }}
  1578. ,{ "pid":12345, "tid":2, "ts":1718090301874879, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1579. ,{ "pid":12345, "tid":2, "ts":1718090301874971, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__47.cpp" }}
  1580. ,{ "pid":12345, "tid":2, "ts":1718090301874969, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__47.cpp" }}
  1581. ,{ "pid":12345, "tid":2, "ts":1718090301875070, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1582. ,{ "pid":12345, "tid":2, "ts":1718090301875229, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Transactions_CodeGen.c" }}
  1583. ,{ "pid":12345, "tid":2, "ts":1718090301875228, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Transactions_CodeGen.c" }}
  1584. ,{ "pid":12345, "tid":2, "ts":1718090301875315, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1585. ,{ "pid":12345, "tid":2, "ts":1718090301875489, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__7.cpp" }}
  1586. ,{ "pid":12345, "tid":2, "ts":1718090301875486, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__7.cpp" }}
  1587. ,{ "pid":12345, "tid":2, "ts":1718090301875567, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1588. ,{ "pid":12345, "tid":2, "ts":1718090301875653, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__13.cpp" }}
  1589. ,{ "pid":12345, "tid":2, "ts":1718090301875652, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__13.cpp" }}
  1590. ,{ "pid":12345, "tid":2, "ts":1718090301875738, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1591. ,{ "pid":12345, "tid":2, "ts":1718090301875844, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__19.cpp" }}
  1592. ,{ "pid":12345, "tid":2, "ts":1718090301875843, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__19.cpp" }}
  1593. ,{ "pid":12345, "tid":2, "ts":1718090301875938, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1594. ,{ "pid":12345, "tid":2, "ts":1718090301876028, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__20.cpp" }}
  1595. ,{ "pid":12345, "tid":2, "ts":1718090301876026, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__20.cpp" }}
  1596. ,{ "pid":12345, "tid":2, "ts":1718090301876105, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1597. ,{ "pid":12345, "tid":2, "ts":1718090301876213, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Configuration.cpp" }}
  1598. ,{ "pid":12345, "tid":2, "ts":1718090301876200, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Configuration.cpp" }}
  1599. ,{ "pid":12345, "tid":2, "ts":1718090301876322, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1600. ,{ "pid":12345, "tid":2, "ts":1718090301876401, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Configuration_CodeGen.c" }}
  1601. ,{ "pid":12345, "tid":2, "ts":1718090301876400, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Configuration_CodeGen.c" }}
  1602. ,{ "pid":12345, "tid":2, "ts":1718090301876476, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1603. ,{ "pid":12345, "tid":2, "ts":1718090301876579, "dur":171, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.TextMeshPro__7.cpp" }}
  1604. ,{ "pid":12345, "tid":2, "ts":1718090301876577, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.TextMeshPro__7.cpp" }}
  1605. ,{ "pid":12345, "tid":2, "ts":1718090301876751, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1606. ,{ "pid":12345, "tid":2, "ts":1718090301876858, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__2.cpp" }}
  1607. ,{ "pid":12345, "tid":2, "ts":1718090301876856, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__2.cpp" }}
  1608. ,{ "pid":12345, "tid":2, "ts":1718090301876922, "dur":156, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1609. ,{ "pid":12345, "tid":2, "ts":1718090301877084, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__50.cpp" }}
  1610. ,{ "pid":12345, "tid":2, "ts":1718090301877083, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__50.cpp" }}
  1611. ,{ "pid":12345, "tid":2, "ts":1718090301877181, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1612. ,{ "pid":12345, "tid":2, "ts":1718090301877268, "dur":167, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System__4.cpp" }}
  1613. ,{ "pid":12345, "tid":2, "ts":1718090301877267, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System__4.cpp" }}
  1614. ,{ "pid":12345, "tid":2, "ts":1718090301877436, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1615. ,{ "pid":12345, "tid":2, "ts":1718090301877533, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/__Generated.cpp" }}
  1616. ,{ "pid":12345, "tid":2, "ts":1718090301877532, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/__Generated.cpp" }}
  1617. ,{ "pid":12345, "tid":2, "ts":1718090301877655, "dur":230, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1618. ,{ "pid":12345, "tid":2, "ts":1718090301877907, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Collections.cpp" }}
  1619. ,{ "pid":12345, "tid":2, "ts":1718090301877906, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Collections.cpp" }}
  1620. ,{ "pid":12345, "tid":2, "ts":1718090301878031, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1621. ,{ "pid":12345, "tid":2, "ts":1718090301878119, "dur":173, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.ScreenCaptureModule_CodeGen.c" }}
  1622. ,{ "pid":12345, "tid":2, "ts":1718090301878118, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.ScreenCaptureModule_CodeGen.c" }}
  1623. ,{ "pid":12345, "tid":2, "ts":1718090301878294, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1624. ,{ "pid":12345, "tid":2, "ts":1718090301878359, "dur":144, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  1625. ,{ "pid":12345, "tid":3, "ts":1718090301624704, "dur":116388, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  1626. ,{ "pid":12345, "tid":3, "ts":1718090301741096, "dur":927, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  1627. ,{ "pid":12345, "tid":3, "ts":1718090301742024, "dur":995, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  1628. ,{ "pid":12345, "tid":3, "ts":1718090301743020, "dur":906, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  1629. ,{ "pid":12345, "tid":3, "ts":1718090301743926, "dur":978, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  1630. ,{ "pid":12345, "tid":3, "ts":1718090301744904, "dur":1179, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  1631. ,{ "pid":12345, "tid":3, "ts":1718090301746083, "dur":174, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  1632. ,{ "pid":12345, "tid":3, "ts":1718090301746257, "dur":29979, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  1633. ,{ "pid":12345, "tid":3, "ts":1718090301776272, "dur":104, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.UIElementsModule-FeaturesChecked.txt_wkb5.info" }}
  1634. ,{ "pid":12345, "tid":3, "ts":1718090301776566, "dur":56, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.InputLegacyModule-FeaturesChecked.txt_snto.info" }}
  1635. ,{ "pid":12345, "tid":3, "ts":1718090301776642, "dur":61, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.AudioModule-FeaturesChecked.txt_7cmq.info" }}
  1636. ,{ "pid":12345, "tid":3, "ts":1718090301776708, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1637. ,{ "pid":12345, "tid":3, "ts":1718090301776769, "dur":68, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/Unity.Services.Core.Environments.Internal-FeaturesChecked.txt_f5er.info" }}
  1638. ,{ "pid":12345, "tid":3, "ts":1718090301776840, "dur":142, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1639. ,{ "pid":12345, "tid":3, "ts":1718090301777003, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1640. ,{ "pid":12345, "tid":3, "ts":1718090301777104, "dur":162, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1641. ,{ "pid":12345, "tid":3, "ts":1718090301777272, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1642. ,{ "pid":12345, "tid":3, "ts":1718090301777446, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1643. ,{ "pid":12345, "tid":3, "ts":1718090301777573, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsPlacementState.h" }}
  1644. ,{ "pid":12345, "tid":3, "ts":1718090301777565, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsPlacementState.h" }}
  1645. ,{ "pid":12345, "tid":3, "ts":1718090301777637, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1646. ,{ "pid":12345, "tid":3, "ts":1718090301777749, "dur":162, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64.swiftdoc" }}
  1647. ,{ "pid":12345, "tid":3, "ts":1718090301777911, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1648. ,{ "pid":12345, "tid":3, "ts":1718090301778051, "dur":159, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm.swiftdoc" }}
  1649. ,{ "pid":12345, "tid":3, "ts":1718090301778210, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1650. ,{ "pid":12345, "tid":3, "ts":1718090301778319, "dur":128, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/USRVJsonStorage.h" }}
  1651. ,{ "pid":12345, "tid":3, "ts":1718090301778317, "dur":130, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/USRVJsonStorage.h" }}
  1652. ,{ "pid":12345, "tid":3, "ts":1718090301778448, "dur":188, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1653. ,{ "pid":12345, "tid":3, "ts":1718090301778661, "dur":178, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UPURProduct.h" }}
  1654. ,{ "pid":12345, "tid":3, "ts":1718090301778644, "dur":196, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UPURProduct.h" }}
  1655. ,{ "pid":12345, "tid":3, "ts":1718090301778840, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1656. ,{ "pid":12345, "tid":3, "ts":1718090301778927, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdvertisement.h" }}
  1657. ,{ "pid":12345, "tid":3, "ts":1718090301778926, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdvertisement.h" }}
  1658. ,{ "pid":12345, "tid":3, "ts":1718090301779061, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1659. ,{ "pid":12345, "tid":3, "ts":1718090301779149, "dur":156, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsInitializationError.h" }}
  1660. ,{ "pid":12345, "tid":3, "ts":1718090301779148, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsInitializationError.h" }}
  1661. ,{ "pid":12345, "tid":3, "ts":1718090301779306, "dur":143, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1662. ,{ "pid":12345, "tid":3, "ts":1718090301779457, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsCore.h" }}
  1663. ,{ "pid":12345, "tid":3, "ts":1718090301779456, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsCore.h" }}
  1664. ,{ "pid":12345, "tid":3, "ts":1718090301779581, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1665. ,{ "pid":12345, "tid":3, "ts":1718090301779679, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONNativePromoAdapter.h" }}
  1666. ,{ "pid":12345, "tid":3, "ts":1718090301779677, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONNativePromoAdapter.h" }}
  1667. ,{ "pid":12345, "tid":3, "ts":1718090301779747, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1668. ,{ "pid":12345, "tid":3, "ts":1718090301779879, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSPurchasing.h" }}
  1669. ,{ "pid":12345, "tid":3, "ts":1718090301779879, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSPurchasing.h" }}
  1670. ,{ "pid":12345, "tid":3, "ts":1718090301779957, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1671. ,{ "pid":12345, "tid":3, "ts":1718090301780057, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSBaseOptions.h" }}
  1672. ,{ "pid":12345, "tid":3, "ts":1718090301780056, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSBaseOptions.h" }}
  1673. ,{ "pid":12345, "tid":3, "ts":1718090301780166, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1674. ,{ "pid":12345, "tid":3, "ts":1718090301780294, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/VmMethod.h" }}
  1675. ,{ "pid":12345, "tid":3, "ts":1718090301780293, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/VmMethod.h" }}
  1676. ,{ "pid":12345, "tid":3, "ts":1718090301780368, "dur":214, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1677. ,{ "pid":12345, "tid":3, "ts":1718090301780592, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/icalls/mscorlib/System/Math.h" }}
  1678. ,{ "pid":12345, "tid":3, "ts":1718090301780590, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/icalls/mscorlib/System/Math.h" }}
  1679. ,{ "pid":12345, "tid":3, "ts":1718090301780714, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1680. ,{ "pid":12345, "tid":3, "ts":1718090301780818, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/DebugSymbolReader.h" }}
  1681. ,{ "pid":12345, "tid":3, "ts":1718090301780816, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/DebugSymbolReader.h" }}
  1682. ,{ "pid":12345, "tid":3, "ts":1718090301780936, "dur":146, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1683. ,{ "pid":12345, "tid":3, "ts":1718090301781092, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/BlobReader.cpp" }}
  1684. ,{ "pid":12345, "tid":3, "ts":1718090301781091, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/BlobReader.cpp" }}
  1685. ,{ "pid":12345, "tid":3, "ts":1718090301781193, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1686. ,{ "pid":12345, "tid":3, "ts":1718090301781283, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/TemplateUtils.h" }}
  1687. ,{ "pid":12345, "tid":3, "ts":1718090301781282, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/TemplateUtils.h" }}
  1688. ,{ "pid":12345, "tid":3, "ts":1718090301781375, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1689. ,{ "pid":12345, "tid":3, "ts":1718090301781521, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/sha1.cpp" }}
  1690. ,{ "pid":12345, "tid":3, "ts":1718090301781520, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/sha1.cpp" }}
  1691. ,{ "pid":12345, "tid":3, "ts":1718090301781635, "dur":179, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1692. ,{ "pid":12345, "tid":3, "ts":1718090301781822, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Output.cpp" }}
  1693. ,{ "pid":12345, "tid":3, "ts":1718090301781820, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Output.cpp" }}
  1694. ,{ "pid":12345, "tid":3, "ts":1718090301781921, "dur":146, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1695. ,{ "pid":12345, "tid":3, "ts":1718090301782074, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryRead.cpp" }}
  1696. ,{ "pid":12345, "tid":3, "ts":1718090301782073, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryRead.cpp" }}
  1697. ,{ "pid":12345, "tid":3, "ts":1718090301782138, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1698. ,{ "pid":12345, "tid":3, "ts":1718090301782219, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryMappedFile.cpp" }}
  1699. ,{ "pid":12345, "tid":3, "ts":1718090301782217, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryMappedFile.cpp" }}
  1700. ,{ "pid":12345, "tid":3, "ts":1718090301782286, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1701. ,{ "pid":12345, "tid":3, "ts":1718090301782362, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Logging.h" }}
  1702. ,{ "pid":12345, "tid":3, "ts":1718090301782360, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Logging.h" }}
  1703. ,{ "pid":12345, "tid":3, "ts":1718090301782473, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1704. ,{ "pid":12345, "tid":3, "ts":1718090301782545, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Il2CppError.h" }}
  1705. ,{ "pid":12345, "tid":3, "ts":1718090301782544, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Il2CppError.h" }}
  1706. ,{ "pid":12345, "tid":3, "ts":1718090301782634, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1707. ,{ "pid":12345, "tid":3, "ts":1718090301782726, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/ExceptionSupportStack.h" }}
  1708. ,{ "pid":12345, "tid":3, "ts":1718090301782725, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/ExceptionSupportStack.h" }}
  1709. ,{ "pid":12345, "tid":3, "ts":1718090301782816, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1710. ,{ "pid":12345, "tid":3, "ts":1718090301782925, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/DirectoryUtils.h" }}
  1711. ,{ "pid":12345, "tid":3, "ts":1718090301782924, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/DirectoryUtils.h" }}
  1712. ,{ "pid":12345, "tid":3, "ts":1718090301783002, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1713. ,{ "pid":12345, "tid":3, "ts":1718090301783083, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/pch/pch-cpp.hpp" }}
  1714. ,{ "pid":12345, "tid":3, "ts":1718090301783082, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/pch/pch-cpp.hpp" }}
  1715. ,{ "pid":12345, "tid":3, "ts":1718090301783177, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1716. ,{ "pid":12345, "tid":3, "ts":1718090301783316, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/Win32ApiWinRTEmulation.cpp" }}
  1717. ,{ "pid":12345, "tid":3, "ts":1718090301783315, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Win32ApiWinRTEmulation.cpp" }}
  1718. ,{ "pid":12345, "tid":3, "ts":1718090301783429, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1719. ,{ "pid":12345, "tid":3, "ts":1718090301783551, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1720. ,{ "pid":12345, "tid":3, "ts":1718090301783632, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WindowsRuntime.h" }}
  1721. ,{ "pid":12345, "tid":3, "ts":1718090301783683, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1722. ,{ "pid":12345, "tid":3, "ts":1718090301783785, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/WindowsHelpers.cpp" }}
  1723. ,{ "pid":12345, "tid":3, "ts":1718090301783784, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/WindowsHelpers.cpp" }}
  1724. ,{ "pid":12345, "tid":3, "ts":1718090301783897, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1725. ,{ "pid":12345, "tid":3, "ts":1718090301784025, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/ThreadImpl.cpp" }}
  1726. ,{ "pid":12345, "tid":3, "ts":1718090301784025, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/ThreadImpl.cpp" }}
  1727. ,{ "pid":12345, "tid":3, "ts":1718090301784097, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1728. ,{ "pid":12345, "tid":3, "ts":1718090301784187, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1729. ,{ "pid":12345, "tid":3, "ts":1718090301784250, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/MutexImpl.h" }}
  1730. ,{ "pid":12345, "tid":3, "ts":1718090301784249, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/MutexImpl.h" }}
  1731. ,{ "pid":12345, "tid":3, "ts":1718090301784325, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1732. ,{ "pid":12345, "tid":3, "ts":1718090301784400, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/LibraryLoader.cpp" }}
  1733. ,{ "pid":12345, "tid":3, "ts":1718090301784399, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/LibraryLoader.cpp" }}
  1734. ,{ "pid":12345, "tid":3, "ts":1718090301784505, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1735. ,{ "pid":12345, "tid":3, "ts":1718090301784568, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/FastReaderReaderWriterLockImpl.h" }}
  1736. ,{ "pid":12345, "tid":3, "ts":1718090301784567, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/FastReaderReaderWriterLockImpl.h" }}
  1737. ,{ "pid":12345, "tid":3, "ts":1718090301784670, "dur":135, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1738. ,{ "pid":12345, "tid":3, "ts":1718090301784811, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Cryptography.cpp" }}
  1739. ,{ "pid":12345, "tid":3, "ts":1718090301784809, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Cryptography.cpp" }}
  1740. ,{ "pid":12345, "tid":3, "ts":1718090301784881, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1741. ,{ "pid":12345, "tid":3, "ts":1718090301784958, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/COM.cpp" }}
  1742. ,{ "pid":12345, "tid":3, "ts":1718090301784957, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/COM.cpp" }}
  1743. ,{ "pid":12345, "tid":3, "ts":1718090301785042, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1744. ,{ "pid":12345, "tid":3, "ts":1718090301785104, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Thread.h" }}
  1745. ,{ "pid":12345, "tid":3, "ts":1718090301785102, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Thread.h" }}
  1746. ,{ "pid":12345, "tid":3, "ts":1718090301785161, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1747. ,{ "pid":12345, "tid":3, "ts":1718090301785234, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/StackTrace.h" }}
  1748. ,{ "pid":12345, "tid":3, "ts":1718090301785233, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/StackTrace.h" }}
  1749. ,{ "pid":12345, "tid":3, "ts":1718090301785300, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1750. ,{ "pid":12345, "tid":3, "ts":1718090301785374, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Semaphore.cpp" }}
  1751. ,{ "pid":12345, "tid":3, "ts":1718090301785373, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Semaphore.cpp" }}
  1752. ,{ "pid":12345, "tid":3, "ts":1718090301785440, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1753. ,{ "pid":12345, "tid":3, "ts":1718090301785503, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Time.cpp" }}
  1754. ,{ "pid":12345, "tid":3, "ts":1718090301785502, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Time.cpp" }}
  1755. ,{ "pid":12345, "tid":3, "ts":1718090301785578, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1756. ,{ "pid":12345, "tid":3, "ts":1718090301785694, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1757. ,{ "pid":12345, "tid":3, "ts":1718090301785751, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/PosixHelpers.cpp" }}
  1758. ,{ "pid":12345, "tid":3, "ts":1718090301785751, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/PosixHelpers.cpp" }}
  1759. ,{ "pid":12345, "tid":3, "ts":1718090301785803, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1760. ,{ "pid":12345, "tid":3, "ts":1718090301785875, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/MemoryMappedFile.cpp" }}
  1761. ,{ "pid":12345, "tid":3, "ts":1718090301785873, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/MemoryMappedFile.cpp" }}
  1762. ,{ "pid":12345, "tid":3, "ts":1718090301785957, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1763. ,{ "pid":12345, "tid":3, "ts":1718090301786036, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Image.cpp" }}
  1764. ,{ "pid":12345, "tid":3, "ts":1718090301786035, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Image.cpp" }}
  1765. ,{ "pid":12345, "tid":3, "ts":1718090301786097, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1766. ,{ "pid":12345, "tid":3, "ts":1718090301786177, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Error.cpp" }}
  1767. ,{ "pid":12345, "tid":3, "ts":1718090301786176, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Error.cpp" }}
  1768. ,{ "pid":12345, "tid":3, "ts":1718090301786266, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1769. ,{ "pid":12345, "tid":3, "ts":1718090301786326, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/CpuInfo.cpp" }}
  1770. ,{ "pid":12345, "tid":3, "ts":1718090301786325, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/CpuInfo.cpp" }}
  1771. ,{ "pid":12345, "tid":3, "ts":1718090301786435, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1772. ,{ "pid":12345, "tid":3, "ts":1718090301786525, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Path.cpp" }}
  1773. ,{ "pid":12345, "tid":3, "ts":1718090301786524, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Path.cpp" }}
  1774. ,{ "pid":12345, "tid":3, "ts":1718090301786652, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/NativeMethods.h" }}
  1775. ,{ "pid":12345, "tid":3, "ts":1718090301786651, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/NativeMethods.h" }}
  1776. ,{ "pid":12345, "tid":3, "ts":1718090301786714, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1777. ,{ "pid":12345, "tid":3, "ts":1718090301786788, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Memory.h" }}
  1778. ,{ "pid":12345, "tid":3, "ts":1718090301786787, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Memory.h" }}
  1779. ,{ "pid":12345, "tid":3, "ts":1718090301786871, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1780. ,{ "pid":12345, "tid":3, "ts":1718090301786945, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/LibraryLoader.cpp" }}
  1781. ,{ "pid":12345, "tid":3, "ts":1718090301786944, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/LibraryLoader.cpp" }}
  1782. ,{ "pid":12345, "tid":3, "ts":1718090301787017, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1783. ,{ "pid":12345, "tid":3, "ts":1718090301787085, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/WindowsRuntime.cpp" }}
  1784. ,{ "pid":12345, "tid":3, "ts":1718090301787084, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/WindowsRuntime.cpp" }}
  1785. ,{ "pid":12345, "tid":3, "ts":1718090301787194, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/SocketImpl.h" }}
  1786. ,{ "pid":12345, "tid":3, "ts":1718090301787193, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/SocketImpl.h" }}
  1787. ,{ "pid":12345, "tid":3, "ts":1718090301787299, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1788. ,{ "pid":12345, "tid":3, "ts":1718090301787426, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1789. ,{ "pid":12345, "tid":3, "ts":1718090301787491, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/Debug.cpp" }}
  1790. ,{ "pid":12345, "tid":3, "ts":1718090301787489, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/Debug.cpp" }}
  1791. ,{ "pid":12345, "tid":3, "ts":1718090301787544, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1792. ,{ "pid":12345, "tid":3, "ts":1718090301787616, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/Assert.cpp" }}
  1793. ,{ "pid":12345, "tid":3, "ts":1718090301787614, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/Assert.cpp" }}
  1794. ,{ "pid":12345, "tid":3, "ts":1718090301787682, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1795. ,{ "pid":12345, "tid":3, "ts":1718090301787792, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Event.h" }}
  1796. ,{ "pid":12345, "tid":3, "ts":1718090301787790, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Event.h" }}
  1797. ,{ "pid":12345, "tid":3, "ts":1718090301787862, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1798. ,{ "pid":12345, "tid":3, "ts":1718090301787923, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Emscripten/SocketBridge.cpp" }}
  1799. ,{ "pid":12345, "tid":3, "ts":1718090301787921, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Emscripten/SocketBridge.cpp" }}
  1800. ,{ "pid":12345, "tid":3, "ts":1718090301788044, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1801. ,{ "pid":12345, "tid":3, "ts":1718090301788113, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/CrashHelpers.cpp" }}
  1802. ,{ "pid":12345, "tid":3, "ts":1718090301788112, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/CrashHelpers.cpp" }}
  1803. ,{ "pid":12345, "tid":3, "ts":1718090301788175, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1804. ,{ "pid":12345, "tid":3, "ts":1718090301788289, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/COM.h" }}
  1805. ,{ "pid":12345, "tid":3, "ts":1718090301788288, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/COM.h" }}
  1806. ,{ "pid":12345, "tid":3, "ts":1718090301788366, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1807. ,{ "pid":12345, "tid":3, "ts":1718090301788445, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_random.cpp" }}
  1808. ,{ "pid":12345, "tid":3, "ts":1718090301788444, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_random.cpp" }}
  1809. ,{ "pid":12345, "tid":3, "ts":1718090301788519, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1810. ,{ "pid":12345, "tid":3, "ts":1718090301788605, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/types.h" }}
  1811. ,{ "pid":12345, "tid":3, "ts":1718090301788604, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/types.h" }}
  1812. ,{ "pid":12345, "tid":3, "ts":1718090301788686, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1813. ,{ "pid":12345, "tid":3, "ts":1718090301788753, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/utf8_util.c" }}
  1814. ,{ "pid":12345, "tid":3, "ts":1718090301788752, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/utf8_util.c" }}
  1815. ,{ "pid":12345, "tid":3, "ts":1718090301788835, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1816. ,{ "pid":12345, "tid":3, "ts":1718090301788904, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/prefix.h" }}
  1817. ,{ "pid":12345, "tid":3, "ts":1718090301788903, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/prefix.h" }}
  1818. ,{ "pid":12345, "tid":3, "ts":1718090301788971, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1819. ,{ "pid":12345, "tid":3, "ts":1718090301789050, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/memory.c" }}
  1820. ,{ "pid":12345, "tid":3, "ts":1718090301789049, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/memory.c" }}
  1821. ,{ "pid":12345, "tid":3, "ts":1718090301789159, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1822. ,{ "pid":12345, "tid":3, "ts":1718090301789235, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_to_binary_tree_inc.h" }}
  1823. ,{ "pid":12345, "tid":3, "ts":1718090301789234, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_to_binary_tree_inc.h" }}
  1824. ,{ "pid":12345, "tid":3, "ts":1718090301789288, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1825. ,{ "pid":12345, "tid":3, "ts":1718090301789378, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_composite_inc.h" }}
  1826. ,{ "pid":12345, "tid":3, "ts":1718090301789377, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_composite_inc.h" }}
  1827. ,{ "pid":12345, "tid":3, "ts":1718090301789457, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1828. ,{ "pid":12345, "tid":3, "ts":1718090301789538, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/entropy_encode.h" }}
  1829. ,{ "pid":12345, "tid":3, "ts":1718090301789536, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/entropy_encode.h" }}
  1830. ,{ "pid":12345, "tid":3, "ts":1718090301789617, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1831. ,{ "pid":12345, "tid":3, "ts":1718090301789712, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/dictionary_hash.c" }}
  1832. ,{ "pid":12345, "tid":3, "ts":1718090301789711, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/dictionary_hash.c" }}
  1833. ,{ "pid":12345, "tid":3, "ts":1718090301789776, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1834. ,{ "pid":12345, "tid":3, "ts":1718090301789839, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/command.h" }}
  1835. ,{ "pid":12345, "tid":3, "ts":1718090301789838, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/command.h" }}
  1836. ,{ "pid":12345, "tid":3, "ts":1718090301789896, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1837. ,{ "pid":12345, "tid":3, "ts":1718090301789968, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/brotli_bit_stream.c" }}
  1838. ,{ "pid":12345, "tid":3, "ts":1718090301789967, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/brotli_bit_stream.c" }}
  1839. ,{ "pid":12345, "tid":3, "ts":1718090301790038, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1840. ,{ "pid":12345, "tid":3, "ts":1718090301790130, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/bit_cost.h" }}
  1841. ,{ "pid":12345, "tid":3, "ts":1718090301790128, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/bit_cost.h" }}
  1842. ,{ "pid":12345, "tid":3, "ts":1718090301790198, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1843. ,{ "pid":12345, "tid":3, "ts":1718090301790266, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/state.c" }}
  1844. ,{ "pid":12345, "tid":3, "ts":1718090301790265, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/state.c" }}
  1845. ,{ "pid":12345, "tid":3, "ts":1718090301790352, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1846. ,{ "pid":12345, "tid":3, "ts":1718090301790420, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/bit_reader.c" }}
  1847. ,{ "pid":12345, "tid":3, "ts":1718090301790419, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/bit_reader.c" }}
  1848. ,{ "pid":12345, "tid":3, "ts":1718090301790485, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1849. ,{ "pid":12345, "tid":3, "ts":1718090301790552, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/dictionary.h" }}
  1850. ,{ "pid":12345, "tid":3, "ts":1718090301790551, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/dictionary.h" }}
  1851. ,{ "pid":12345, "tid":3, "ts":1718090301790625, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1852. ,{ "pid":12345, "tid":3, "ts":1718090301790686, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/WaitStatus-c-api.h" }}
  1853. ,{ "pid":12345, "tid":3, "ts":1718090301790685, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/WaitStatus-c-api.h" }}
  1854. ,{ "pid":12345, "tid":3, "ts":1718090301790747, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1855. ,{ "pid":12345, "tid":3, "ts":1718090301790832, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Socket-c-api.h" }}
  1856. ,{ "pid":12345, "tid":3, "ts":1718090301790829, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Socket-c-api.h" }}
  1857. ,{ "pid":12345, "tid":3, "ts":1718090301790898, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1858. ,{ "pid":12345, "tid":3, "ts":1718090301791003, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/File-c-api.h" }}
  1859. ,{ "pid":12345, "tid":3, "ts":1718090301791001, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/File-c-api.h" }}
  1860. ,{ "pid":12345, "tid":3, "ts":1718090301791103, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1861. ,{ "pid":12345, "tid":3, "ts":1718090301791183, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Directory-c-api.h" }}
  1862. ,{ "pid":12345, "tid":3, "ts":1718090301791181, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Directory-c-api.h" }}
  1863. ,{ "pid":12345, "tid":3, "ts":1718090301791313, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/baselib/FastReaderReaderWriterLockImpl.h" }}
  1864. ,{ "pid":12345, "tid":3, "ts":1718090301791311, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/baselib/FastReaderReaderWriterLockImpl.h" }}
  1865. ,{ "pid":12345, "tid":3, "ts":1718090301791376, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1866. ,{ "pid":12345, "tid":3, "ts":1718090301791538, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1867. ,{ "pid":12345, "tid":3, "ts":1718090301791629, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1868. ,{ "pid":12345, "tid":3, "ts":1718090301791749, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1869. ,{ "pid":12345, "tid":3, "ts":1718090301791807, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppTypeHash.cpp" }}
  1870. ,{ "pid":12345, "tid":3, "ts":1718090301791806, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppTypeHash.cpp" }}
  1871. ,{ "pid":12345, "tid":3, "ts":1718090301791881, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1872. ,{ "pid":12345, "tid":3, "ts":1718090301791938, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericMethodHash.cpp" }}
  1873. ,{ "pid":12345, "tid":3, "ts":1718090301791937, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericMethodHash.cpp" }}
  1874. ,{ "pid":12345, "tid":3, "ts":1718090301792009, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1875. ,{ "pid":12345, "tid":3, "ts":1718090301792080, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericInstCompare.cpp" }}
  1876. ,{ "pid":12345, "tid":3, "ts":1718090301792078, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericInstCompare.cpp" }}
  1877. ,{ "pid":12345, "tid":3, "ts":1718090301792152, "dur":132, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1878. ,{ "pid":12345, "tid":3, "ts":1718090301792305, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericClassHash.cpp" }}
  1879. ,{ "pid":12345, "tid":3, "ts":1718090301792304, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericClassHash.cpp" }}
  1880. ,{ "pid":12345, "tid":3, "ts":1718090301792390, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1881. ,{ "pid":12345, "tid":3, "ts":1718090301792487, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/GenericMetadata.h" }}
  1882. ,{ "pid":12345, "tid":3, "ts":1718090301792486, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericMetadata.h" }}
  1883. ,{ "pid":12345, "tid":3, "ts":1718090301792572, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1884. ,{ "pid":12345, "tid":3, "ts":1718090301792689, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/CustomAttributeCreator.h" }}
  1885. ,{ "pid":12345, "tid":3, "ts":1718090301792688, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/CustomAttributeCreator.h" }}
  1886. ,{ "pid":12345, "tid":3, "ts":1718090301792770, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1887. ,{ "pid":12345, "tid":3, "ts":1718090301792845, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-tokentype.h" }}
  1888. ,{ "pid":12345, "tid":3, "ts":1718090301792844, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-tokentype.h" }}
  1889. ,{ "pid":12345, "tid":3, "ts":1718090301792923, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1890. ,{ "pid":12345, "tid":3, "ts":1718090301793021, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-runtime-metadata.h" }}
  1891. ,{ "pid":12345, "tid":3, "ts":1718090301793019, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-runtime-metadata.h" }}
  1892. ,{ "pid":12345, "tid":3, "ts":1718090301793082, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1893. ,{ "pid":12345, "tid":3, "ts":1718090301793144, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-mono-api.h" }}
  1894. ,{ "pid":12345, "tid":3, "ts":1718090301793143, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-mono-api.h" }}
  1895. ,{ "pid":12345, "tid":3, "ts":1718090301793204, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1896. ,{ "pid":12345, "tid":3, "ts":1718090301793266, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-config-api.h" }}
  1897. ,{ "pid":12345, "tid":3, "ts":1718090301793265, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-config-api.h" }}
  1898. ,{ "pid":12345, "tid":3, "ts":1718090301793317, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1899. ,{ "pid":12345, "tid":3, "ts":1718090301793401, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-api.cpp" }}
  1900. ,{ "pid":12345, "tid":3, "ts":1718090301793400, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-api.cpp" }}
  1901. ,{ "pid":12345, "tid":3, "ts":1718090301793511, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1902. ,{ "pid":12345, "tid":3, "ts":1718090301793582, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.Sockets/SocketException.h" }}
  1903. ,{ "pid":12345, "tid":3, "ts":1718090301793581, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.Sockets/SocketException.h" }}
  1904. ,{ "pid":12345, "tid":3, "ts":1718090301793644, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1905. ,{ "pid":12345, "tid":3, "ts":1718090301793729, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.NetworkInformation/LinuxNetworkInterface.cpp" }}
  1906. ,{ "pid":12345, "tid":3, "ts":1718090301793727, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.NetworkInformation/LinuxNetworkInterface.cpp" }}
  1907. ,{ "pid":12345, "tid":3, "ts":1718090301793799, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1908. ,{ "pid":12345, "tid":3, "ts":1718090301793872, "dur":127, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/FileVersionInfo.h" }}
  1909. ,{ "pid":12345, "tid":3, "ts":1718090301793871, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/FileVersionInfo.h" }}
  1910. ,{ "pid":12345, "tid":3, "ts":1718090301794000, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1911. ,{ "pid":12345, "tid":3, "ts":1718090301794177, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1912. ,{ "pid":12345, "tid":3, "ts":1718090301794238, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/TypedReference.cpp" }}
  1913. ,{ "pid":12345, "tid":3, "ts":1718090301794237, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/TypedReference.cpp" }}
  1914. ,{ "pid":12345, "tid":3, "ts":1718090301794346, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1915. ,{ "pid":12345, "tid":3, "ts":1718090301794422, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeType.h" }}
  1916. ,{ "pid":12345, "tid":3, "ts":1718090301794420, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeType.h" }}
  1917. ,{ "pid":12345, "tid":3, "ts":1718090301794498, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1918. ,{ "pid":12345, "tid":3, "ts":1718090301794579, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Object.cpp" }}
  1919. ,{ "pid":12345, "tid":3, "ts":1718090301794578, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Object.cpp" }}
  1920. ,{ "pid":12345, "tid":3, "ts":1718090301794702, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1921. ,{ "pid":12345, "tid":3, "ts":1718090301794813, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/GC.cpp" }}
  1922. ,{ "pid":12345, "tid":3, "ts":1718090301794812, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/GC.cpp" }}
  1923. ,{ "pid":12345, "tid":3, "ts":1718090301794876, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1924. ,{ "pid":12345, "tid":3, "ts":1718090301794968, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Delegate.h" }}
  1925. ,{ "pid":12345, "tid":3, "ts":1718090301794967, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Delegate.h" }}
  1926. ,{ "pid":12345, "tid":3, "ts":1718090301795036, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1927. ,{ "pid":12345, "tid":3, "ts":1718090301795138, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/ConsoleDriver.h" }}
  1928. ,{ "pid":12345, "tid":3, "ts":1718090301795137, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/ConsoleDriver.h" }}
  1929. ,{ "pid":12345, "tid":3, "ts":1718090301795215, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1930. ,{ "pid":12345, "tid":3, "ts":1718090301795291, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Array.cpp" }}
  1931. ,{ "pid":12345, "tid":3, "ts":1718090301795290, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Array.cpp" }}
  1932. ,{ "pid":12345, "tid":3, "ts":1718090301795351, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1933. ,{ "pid":12345, "tid":3, "ts":1718090301795438, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/WaitHandle.cpp" }}
  1934. ,{ "pid":12345, "tid":3, "ts":1718090301795436, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/WaitHandle.cpp" }}
  1935. ,{ "pid":12345, "tid":3, "ts":1718090301795508, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1936. ,{ "pid":12345, "tid":3, "ts":1718090301795567, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/NativeEventCalls.h" }}
  1937. ,{ "pid":12345, "tid":3, "ts":1718090301795566, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/NativeEventCalls.h" }}
  1938. ,{ "pid":12345, "tid":3, "ts":1718090301795630, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1939. ,{ "pid":12345, "tid":3, "ts":1718090301795709, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/InternalThread.cpp" }}
  1940. ,{ "pid":12345, "tid":3, "ts":1718090301795708, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/InternalThread.cpp" }}
  1941. ,{ "pid":12345, "tid":3, "ts":1718090301795784, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1942. ,{ "pid":12345, "tid":3, "ts":1718090301795880, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsImpersonationContext.h" }}
  1943. ,{ "pid":12345, "tid":3, "ts":1718090301795878, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsImpersonationContext.h" }}
  1944. ,{ "pid":12345, "tid":3, "ts":1718090301795950, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1945. ,{ "pid":12345, "tid":3, "ts":1718090301796019, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Cryptography/RNGCryptoServiceProvider.cpp" }}
  1946. ,{ "pid":12345, "tid":3, "ts":1718090301796017, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Cryptography/RNGCryptoServiceProvider.cpp" }}
  1947. ,{ "pid":12345, "tid":3, "ts":1718090301796096, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1948. ,{ "pid":12345, "tid":3, "ts":1718090301796219, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Proxies/RealProxy.h" }}
  1949. ,{ "pid":12345, "tid":3, "ts":1718090301796218, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Proxies/RealProxy.h" }}
  1950. ,{ "pid":12345, "tid":3, "ts":1718090301796295, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1951. ,{ "pid":12345, "tid":3, "ts":1718090301796372, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Contexts/Context.cpp" }}
  1952. ,{ "pid":12345, "tid":3, "ts":1718090301796370, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Contexts/Context.cpp" }}
  1953. ,{ "pid":12345, "tid":3, "ts":1718090301796450, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1954. ,{ "pid":12345, "tid":3, "ts":1718090301796551, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/GCHandle.h" }}
  1955. ,{ "pid":12345, "tid":3, "ts":1718090301796549, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/GCHandle.h" }}
  1956. ,{ "pid":12345, "tid":3, "ts":1718090301796625, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1957. ,{ "pid":12345, "tid":3, "ts":1718090301796740, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeParameterInfo.cpp" }}
  1958. ,{ "pid":12345, "tid":3, "ts":1718090301796738, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeParameterInfo.cpp" }}
  1959. ,{ "pid":12345, "tid":3, "ts":1718090301796806, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1960. ,{ "pid":12345, "tid":3, "ts":1718090301796907, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeEventInfo.h" }}
  1961. ,{ "pid":12345, "tid":3, "ts":1718090301796905, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeEventInfo.h" }}
  1962. ,{ "pid":12345, "tid":3, "ts":1718090301796984, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1963. ,{ "pid":12345, "tid":3, "ts":1718090301797069, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/MonoMethodInfo.h" }}
  1964. ,{ "pid":12345, "tid":3, "ts":1718090301797068, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/MonoMethodInfo.h" }}
  1965. ,{ "pid":12345, "tid":3, "ts":1718090301797148, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1966. ,{ "pid":12345, "tid":3, "ts":1718090301797239, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/FieldInfo.h" }}
  1967. ,{ "pid":12345, "tid":3, "ts":1718090301797238, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/FieldInfo.h" }}
  1968. ,{ "pid":12345, "tid":3, "ts":1718090301797310, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1969. ,{ "pid":12345, "tid":3, "ts":1718090301797386, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/AssemblyName.cpp" }}
  1970. ,{ "pid":12345, "tid":3, "ts":1718090301797385, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/AssemblyName.cpp" }}
  1971. ,{ "pid":12345, "tid":3, "ts":1718090301797476, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1972. ,{ "pid":12345, "tid":3, "ts":1718090301797554, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/DriveInfo.h" }}
  1973. ,{ "pid":12345, "tid":3, "ts":1718090301797553, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/DriveInfo.h" }}
  1974. ,{ "pid":12345, "tid":3, "ts":1718090301797626, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1975. ,{ "pid":12345, "tid":3, "ts":1718090301797708, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfoTables.h" }}
  1976. ,{ "pid":12345, "tid":3, "ts":1718090301797707, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfoTables.h" }}
  1977. ,{ "pid":12345, "tid":3, "ts":1718090301797791, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1978. ,{ "pid":12345, "tid":3, "ts":1718090301797851, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CompareOptions.h" }}
  1979. ,{ "pid":12345, "tid":3, "ts":1718090301797850, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CompareOptions.h" }}
  1980. ,{ "pid":12345, "tid":3, "ts":1718090301797935, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1981. ,{ "pid":12345, "tid":3, "ts":1718090301798009, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Diagnostics/StackFrame.h" }}
  1982. ,{ "pid":12345, "tid":3, "ts":1718090301798008, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Diagnostics/StackFrame.h" }}
  1983. ,{ "pid":12345, "tid":3, "ts":1718090301798093, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1984. ,{ "pid":12345, "tid":3, "ts":1718090301798197, "dur":142, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1985. ,{ "pid":12345, "tid":3, "ts":1718090301798346, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono.Security.Cryptography/KeyPairPersistence.cpp" }}
  1986. ,{ "pid":12345, "tid":3, "ts":1718090301798344, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono.Security.Cryptography/KeyPairPersistence.cpp" }}
  1987. ,{ "pid":12345, "tid":3, "ts":1718090301798436, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Interop.cpp" }}
  1988. ,{ "pid":12345, "tid":3, "ts":1718090301798435, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Interop.cpp" }}
  1989. ,{ "pid":12345, "tid":3, "ts":1718090301798504, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1990. ,{ "pid":12345, "tid":3, "ts":1718090301798588, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/GCHandle.h" }}
  1991. ,{ "pid":12345, "tid":3, "ts":1718090301798588, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/GCHandle.h" }}
  1992. ,{ "pid":12345, "tid":3, "ts":1718090301798657, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1993. ,{ "pid":12345, "tid":3, "ts":1718090301798746, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/debugger/il2cpp-api-debugger.cpp" }}
  1994. ,{ "pid":12345, "tid":3, "ts":1718090301798745, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/debugger/il2cpp-api-debugger.cpp" }}
  1995. ,{ "pid":12345, "tid":3, "ts":1718090301798865, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1996. ,{ "pid":12345, "tid":3, "ts":1718090301798943, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-common.cpp" }}
  1997. ,{ "pid":12345, "tid":3, "ts":1718090301798942, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-common.cpp" }}
  1998. ,{ "pid":12345, "tid":3, "ts":1718090301799004, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1999. ,{ "pid":12345, "tid":3, "ts":1718090301799082, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/zconf.h" }}
  2000. ,{ "pid":12345, "tid":3, "ts":1718090301799081, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/zconf.h" }}
  2001. ,{ "pid":12345, "tid":3, "ts":1718090301799148, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2002. ,{ "pid":12345, "tid":3, "ts":1718090301799209, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/inftrees.c" }}
  2003. ,{ "pid":12345, "tid":3, "ts":1718090301799208, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inftrees.c" }}
  2004. ,{ "pid":12345, "tid":3, "ts":1718090301799283, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2005. ,{ "pid":12345, "tid":3, "ts":1718090301799358, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/gzwrite.c" }}
  2006. ,{ "pid":12345, "tid":3, "ts":1718090301799355, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/gzwrite.c" }}
  2007. ,{ "pid":12345, "tid":3, "ts":1718090301799426, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2008. ,{ "pid":12345, "tid":3, "ts":1718090301799505, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/crc32.h" }}
  2009. ,{ "pid":12345, "tid":3, "ts":1718090301799504, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/crc32.h" }}
  2010. ,{ "pid":12345, "tid":3, "ts":1718090301799628, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2011. ,{ "pid":12345, "tid":3, "ts":1718090301799713, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xxHash/cmake_unofficial/README.md" }}
  2012. ,{ "pid":12345, "tid":3, "ts":1718090301799770, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2013. ,{ "pid":12345, "tid":3, "ts":1718090301799861, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/support/libm/complex.h" }}
  2014. ,{ "pid":12345, "tid":3, "ts":1718090301799860, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/support/libm/complex.h" }}
  2015. ,{ "pid":12345, "tid":3, "ts":1718090301799955, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2016. ,{ "pid":12345, "tid":3, "ts":1718090301800028, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/unity-time.c" }}
  2017. ,{ "pid":12345, "tid":3, "ts":1718090301800027, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/unity-time.c" }}
  2018. ,{ "pid":12345, "tid":3, "ts":1718090301800136, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2019. ,{ "pid":12345, "tid":3, "ts":1718090301800227, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/os-event.h" }}
  2020. ,{ "pid":12345, "tid":3, "ts":1718090301800225, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/os-event.h" }}
  2021. ,{ "pid":12345, "tid":3, "ts":1718090301800289, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2022. ,{ "pid":12345, "tid":3, "ts":1718090301800354, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/networking-unity.c" }}
  2023. ,{ "pid":12345, "tid":3, "ts":1718090301800353, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/networking-unity.c" }}
  2024. ,{ "pid":12345, "tid":3, "ts":1718090301800431, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2025. ,{ "pid":12345, "tid":3, "ts":1718090301800543, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-uri.h" }}
  2026. ,{ "pid":12345, "tid":3, "ts":1718090301800542, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-uri.h" }}
  2027. ,{ "pid":12345, "tid":3, "ts":1718090301800606, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2028. ,{ "pid":12345, "tid":3, "ts":1718090301800677, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads.h" }}
  2029. ,{ "pid":12345, "tid":3, "ts":1718090301800676, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads.h" }}
  2030. ,{ "pid":12345, "tid":3, "ts":1718090301800760, "dur":695, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2031. ,{ "pid":12345, "tid":3, "ts":1718090301801461, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-mach.c" }}
  2032. ,{ "pid":12345, "tid":3, "ts":1718090301801460, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-mach.c" }}
  2033. ,{ "pid":12345, "tid":3, "ts":1718090301801547, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2034. ,{ "pid":12345, "tid":3, "ts":1718090301801643, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-string.h" }}
  2035. ,{ "pid":12345, "tid":3, "ts":1718090301801640, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-string.h" }}
  2036. ,{ "pid":12345, "tid":3, "ts":1718090301801728, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2037. ,{ "pid":12345, "tid":3, "ts":1718090301801845, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-publib.h" }}
  2038. ,{ "pid":12345, "tid":3, "ts":1718090301801843, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-publib.h" }}
  2039. ,{ "pid":12345, "tid":3, "ts":1718090301801943, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2040. ,{ "pid":12345, "tid":3, "ts":1718090301802032, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-poll.h" }}
  2041. ,{ "pid":12345, "tid":3, "ts":1718090301802031, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-poll.h" }}
  2042. ,{ "pid":12345, "tid":3, "ts":1718090301802102, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2043. ,{ "pid":12345, "tid":3, "ts":1718090301802184, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-os-semaphore.h" }}
  2044. ,{ "pid":12345, "tid":3, "ts":1718090301802182, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-os-semaphore.h" }}
  2045. ,{ "pid":12345, "tid":3, "ts":1718090301802255, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2046. ,{ "pid":12345, "tid":3, "ts":1718090301802339, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-mmap.h" }}
  2047. ,{ "pid":12345, "tid":3, "ts":1718090301802338, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-mmap.h" }}
  2048. ,{ "pid":12345, "tid":3, "ts":1718090301802420, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2049. ,{ "pid":12345, "tid":3, "ts":1718090301802513, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-md5.c" }}
  2050. ,{ "pid":12345, "tid":3, "ts":1718090301802511, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-md5.c" }}
  2051. ,{ "pid":12345, "tid":3, "ts":1718090301802583, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2052. ,{ "pid":12345, "tid":3, "ts":1718090301802661, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-logger-internals.h" }}
  2053. ,{ "pid":12345, "tid":3, "ts":1718090301802660, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-logger-internals.h" }}
  2054. ,{ "pid":12345, "tid":3, "ts":1718090301802732, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2055. ,{ "pid":12345, "tid":3, "ts":1718090301802819, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-linked-list-set.c" }}
  2056. ,{ "pid":12345, "tid":3, "ts":1718090301802819, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-linked-list-set.c" }}
  2057. ,{ "pid":12345, "tid":3, "ts":1718090301802880, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2058. ,{ "pid":12345, "tid":3, "ts":1718090301802942, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-hwcap.c" }}
  2059. ,{ "pid":12345, "tid":3, "ts":1718090301802941, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-hwcap.c" }}
  2060. ,{ "pid":12345, "tid":3, "ts":1718090301803003, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2061. ,{ "pid":12345, "tid":3, "ts":1718090301803065, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-forward-internal.h" }}
  2062. ,{ "pid":12345, "tid":3, "ts":1718090301803064, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-forward-internal.h" }}
  2063. ,{ "pid":12345, "tid":3, "ts":1718090301803118, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2064. ,{ "pid":12345, "tid":3, "ts":1718090301803179, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl.h" }}
  2065. ,{ "pid":12345, "tid":3, "ts":1718090301803178, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl.h" }}
  2066. ,{ "pid":12345, "tid":3, "ts":1718090301803236, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2067. ,{ "pid":12345, "tid":3, "ts":1718090301803310, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl-fallback.h" }}
  2068. ,{ "pid":12345, "tid":3, "ts":1718090301803308, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl-fallback.h" }}
  2069. ,{ "pid":12345, "tid":3, "ts":1718090301803364, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2070. ,{ "pid":12345, "tid":3, "ts":1718090301803451, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-context.c" }}
  2071. ,{ "pid":12345, "tid":3, "ts":1718090301803449, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-context.c" }}
  2072. ,{ "pid":12345, "tid":3, "ts":1718090301803512, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2073. ,{ "pid":12345, "tid":3, "ts":1718090301803606, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/memfuncs.h" }}
  2074. ,{ "pid":12345, "tid":3, "ts":1718090301803605, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/memfuncs.h" }}
  2075. ,{ "pid":12345, "tid":3, "ts":1718090301803679, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2076. ,{ "pid":12345, "tid":3, "ts":1718090301803744, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/lock-free-queue.h" }}
  2077. ,{ "pid":12345, "tid":3, "ts":1718090301803743, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/lock-free-queue.h" }}
  2078. ,{ "pid":12345, "tid":3, "ts":1718090301803798, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2079. ,{ "pid":12345, "tid":3, "ts":1718090301803853, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/json.h" }}
  2080. ,{ "pid":12345, "tid":3, "ts":1718090301803852, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/json.h" }}
  2081. ,{ "pid":12345, "tid":3, "ts":1718090301803910, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2082. ,{ "pid":12345, "tid":3, "ts":1718090301803976, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/freebsd-elf32.h" }}
  2083. ,{ "pid":12345, "tid":3, "ts":1718090301803974, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/freebsd-elf32.h" }}
  2084. ,{ "pid":12345, "tid":3, "ts":1718090301804037, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2085. ,{ "pid":12345, "tid":3, "ts":1718090301804098, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/bsearch.c" }}
  2086. ,{ "pid":12345, "tid":3, "ts":1718090301804097, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/bsearch.c" }}
  2087. ,{ "pid":12345, "tid":3, "ts":1718090301804154, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2088. ,{ "pid":12345, "tid":3, "ts":1718090301804215, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-tagged-pointer.h" }}
  2089. ,{ "pid":12345, "tid":3, "ts":1718090301804214, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-tagged-pointer.h" }}
  2090. ,{ "pid":12345, "tid":3, "ts":1718090301804278, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2091. ,{ "pid":12345, "tid":3, "ts":1718090301804351, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-protocol.c" }}
  2092. ,{ "pid":12345, "tid":3, "ts":1718090301804350, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-protocol.c" }}
  2093. ,{ "pid":12345, "tid":3, "ts":1718090301804431, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2094. ,{ "pid":12345, "tid":3, "ts":1718090301804507, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-pinning-stats.c" }}
  2095. ,{ "pid":12345, "tid":3, "ts":1718090301804505, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-pinning-stats.c" }}
  2096. ,{ "pid":12345, "tid":3, "ts":1718090301804590, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2097. ,{ "pid":12345, "tid":3, "ts":1718090301804654, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-major-copy-object.h" }}
  2098. ,{ "pid":12345, "tid":3, "ts":1718090301804653, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-major-copy-object.h" }}
  2099. ,{ "pid":12345, "tid":3, "ts":1718090301804731, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2100. ,{ "pid":12345, "tid":3, "ts":1718090301804825, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-gray.h" }}
  2101. ,{ "pid":12345, "tid":3, "ts":1718090301804823, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-gray.h" }}
  2102. ,{ "pid":12345, "tid":3, "ts":1718090301804900, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2103. ,{ "pid":12345, "tid":3, "ts":1718090301804965, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-descriptor.h" }}
  2104. ,{ "pid":12345, "tid":3, "ts":1718090301804964, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-descriptor.h" }}
  2105. ,{ "pid":12345, "tid":3, "ts":1718090301805024, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2106. ,{ "pid":12345, "tid":3, "ts":1718090301805090, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-cardtable.c" }}
  2107. ,{ "pid":12345, "tid":3, "ts":1718090301805089, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-cardtable.c" }}
  2108. ,{ "pid":12345, "tid":3, "ts":1718090301805146, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2109. ,{ "pid":12345, "tid":3, "ts":1718090301805207, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/mini-arm.h" }}
  2110. ,{ "pid":12345, "tid":3, "ts":1718090301805206, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/mini-arm.h" }}
  2111. ,{ "pid":12345, "tid":3, "ts":1718090301805262, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2112. ,{ "pid":12345, "tid":3, "ts":1718090301805324, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/wrapper-types.h" }}
  2113. ,{ "pid":12345, "tid":3, "ts":1718090301805323, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/wrapper-types.h" }}
  2114. ,{ "pid":12345, "tid":3, "ts":1718090301805388, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2115. ,{ "pid":12345, "tid":3, "ts":1718090301805450, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32semaphore-win32.c" }}
  2116. ,{ "pid":12345, "tid":3, "ts":1718090301805449, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32semaphore-win32.c" }}
  2117. ,{ "pid":12345, "tid":3, "ts":1718090301805516, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2118. ,{ "pid":12345, "tid":3, "ts":1718090301805589, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-unix-osx.c" }}
  2119. ,{ "pid":12345, "tid":3, "ts":1718090301805588, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-unix-osx.c" }}
  2120. ,{ "pid":12345, "tid":3, "ts":1718090301805660, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2121. ,{ "pid":12345, "tid":3, "ts":1718090301805736, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32handle.h" }}
  2122. ,{ "pid":12345, "tid":3, "ts":1718090301805735, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32handle.h" }}
  2123. ,{ "pid":12345, "tid":3, "ts":1718090301805815, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2124. ,{ "pid":12345, "tid":3, "ts":1718090301805906, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file-win32-internals.h" }}
  2125. ,{ "pid":12345, "tid":3, "ts":1718090301805904, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file-win32-internals.h" }}
  2126. ,{ "pid":12345, "tid":3, "ts":1718090301805987, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2127. ,{ "pid":12345, "tid":3, "ts":1718090301806079, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32event-unix.c" }}
  2128. ,{ "pid":12345, "tid":3, "ts":1718090301806077, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32event-unix.c" }}
  2129. ,{ "pid":12345, "tid":3, "ts":1718090301806142, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2130. ,{ "pid":12345, "tid":3, "ts":1718090301806255, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/verify-internals.h" }}
  2131. ,{ "pid":12345, "tid":3, "ts":1718090301806252, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/verify-internals.h" }}
  2132. ,{ "pid":12345, "tid":3, "ts":1718090301806344, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2133. ,{ "pid":12345, "tid":3, "ts":1718090301806419, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threads.c" }}
  2134. ,{ "pid":12345, "tid":3, "ts":1718090301806417, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threads.c" }}
  2135. ,{ "pid":12345, "tid":3, "ts":1718090301806496, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2136. ,{ "pid":12345, "tid":3, "ts":1718090301806585, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threadpool-io.c" }}
  2137. ,{ "pid":12345, "tid":3, "ts":1718090301806583, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threadpool-io.c" }}
  2138. ,{ "pid":12345, "tid":3, "ts":1718090301806666, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2139. ,{ "pid":12345, "tid":3, "ts":1718090301806746, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sre-save.c" }}
  2140. ,{ "pid":12345, "tid":3, "ts":1718090301806744, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sre-save.c" }}
  2141. ,{ "pid":12345, "tid":3, "ts":1718090301806824, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2142. ,{ "pid":12345, "tid":3, "ts":1718090301806907, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-old-bridge.c" }}
  2143. ,{ "pid":12345, "tid":3, "ts":1718090301806905, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-old-bridge.c" }}
  2144. ,{ "pid":12345, "tid":3, "ts":1718090301806980, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2145. ,{ "pid":12345, "tid":3, "ts":1718090301807080, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-bridge-internals.h" }}
  2146. ,{ "pid":12345, "tid":3, "ts":1718090301807078, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-bridge-internals.h" }}
  2147. ,{ "pid":12345, "tid":3, "ts":1718090301807160, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2148. ,{ "pid":12345, "tid":3, "ts":1718090301807243, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/security-core-clr.c" }}
  2149. ,{ "pid":12345, "tid":3, "ts":1718090301807242, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/security-core-clr.c" }}
  2150. ,{ "pid":12345, "tid":3, "ts":1718090301807331, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2151. ,{ "pid":12345, "tid":3, "ts":1718090301807422, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/reflection.c" }}
  2152. ,{ "pid":12345, "tid":3, "ts":1718090301807421, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/reflection.c" }}
  2153. ,{ "pid":12345, "tid":3, "ts":1718090301807502, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2154. ,{ "pid":12345, "tid":3, "ts":1718090301807592, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/property-bag.c" }}
  2155. ,{ "pid":12345, "tid":3, "ts":1718090301807591, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/property-bag.c" }}
  2156. ,{ "pid":12345, "tid":3, "ts":1718090301807662, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2157. ,{ "pid":12345, "tid":3, "ts":1718090301807761, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/private/threadpool-io-kqueue.c" }}
  2158. ,{ "pid":12345, "tid":3, "ts":1718090301807759, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/private/threadpool-io-kqueue.c" }}
  2159. ,{ "pid":12345, "tid":3, "ts":1718090301807856, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2160. ,{ "pid":12345, "tid":3, "ts":1718090301807940, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/object-internals.h" }}
  2161. ,{ "pid":12345, "tid":3, "ts":1718090301807939, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/object-internals.h" }}
  2162. ,{ "pid":12345, "tid":3, "ts":1718090301808021, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2163. ,{ "pid":12345, "tid":3, "ts":1718090301808110, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/normalization-tables.h" }}
  2164. ,{ "pid":12345, "tid":3, "ts":1718090301808107, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/normalization-tables.h" }}
  2165. ,{ "pid":12345, "tid":3, "ts":1718090301808191, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2166. ,{ "pid":12345, "tid":3, "ts":1718090301808277, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-perfcounters.h" }}
  2167. ,{ "pid":12345, "tid":3, "ts":1718090301808275, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-perfcounters.h" }}
  2168. ,{ "pid":12345, "tid":3, "ts":1718090301808346, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2169. ,{ "pid":12345, "tid":3, "ts":1718090301808421, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-hash.c" }}
  2170. ,{ "pid":12345, "tid":3, "ts":1718090301808419, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-hash.c" }}
  2171. ,{ "pid":12345, "tid":3, "ts":1718090301808502, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2172. ,{ "pid":12345, "tid":3, "ts":1718090301808606, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-config.c" }}
  2173. ,{ "pid":12345, "tid":3, "ts":1718090301808604, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-config.c" }}
  2174. ,{ "pid":12345, "tid":3, "ts":1718090301808679, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2175. ,{ "pid":12345, "tid":3, "ts":1718090301808773, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/monitor.h" }}
  2176. ,{ "pid":12345, "tid":3, "ts":1718090301808771, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/monitor.h" }}
  2177. ,{ "pid":12345, "tid":3, "ts":1718090301808861, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2178. ,{ "pid":12345, "tid":3, "ts":1718090301808968, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/metadata-cross-helpers.c" }}
  2179. ,{ "pid":12345, "tid":3, "ts":1718090301808966, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/metadata-cross-helpers.c" }}
  2180. ,{ "pid":12345, "tid":3, "ts":1718090301809062, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2181. ,{ "pid":12345, "tid":3, "ts":1718090301809178, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/marshal-windows-internals.h" }}
  2182. ,{ "pid":12345, "tid":3, "ts":1718090301809176, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/marshal-windows-internals.h" }}
  2183. ,{ "pid":12345, "tid":3, "ts":1718090301809280, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2184. ,{ "pid":12345, "tid":3, "ts":1718090301809391, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/loader.c" }}
  2185. ,{ "pid":12345, "tid":3, "ts":1718090301809390, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/loader.c" }}
  2186. ,{ "pid":12345, "tid":3, "ts":1718090301809482, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2187. ,{ "pid":12345, "tid":3, "ts":1718090301809589, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/icalls.h" }}
  2188. ,{ "pid":12345, "tid":3, "ts":1718090301809587, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/icalls.h" }}
  2189. ,{ "pid":12345, "tid":3, "ts":1718090301809685, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2190. ,{ "pid":12345, "tid":3, "ts":1718090301809794, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/handle.c" }}
  2191. ,{ "pid":12345, "tid":3, "ts":1718090301809793, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/handle.c" }}
  2192. ,{ "pid":12345, "tid":3, "ts":1718090301809879, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2193. ,{ "pid":12345, "tid":3, "ts":1718090301809979, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/file-mmap.h" }}
  2194. ,{ "pid":12345, "tid":3, "ts":1718090301809978, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/file-mmap.h" }}
  2195. ,{ "pid":12345, "tid":3, "ts":1718090301810063, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2196. ,{ "pid":12345, "tid":3, "ts":1718090301810161, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/exception-internals.h" }}
  2197. ,{ "pid":12345, "tid":3, "ts":1718090301810159, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/exception-internals.h" }}
  2198. ,{ "pid":12345, "tid":3, "ts":1718090301810241, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2199. ,{ "pid":12345, "tid":3, "ts":1718090301810348, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/domain.c" }}
  2200. ,{ "pid":12345, "tid":3, "ts":1718090301810346, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/domain.c" }}
  2201. ,{ "pid":12345, "tid":3, "ts":1718090301810421, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2202. ,{ "pid":12345, "tid":3, "ts":1718090301810508, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/debug-mono-ppdb.h" }}
  2203. ,{ "pid":12345, "tid":3, "ts":1718090301810506, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/debug-mono-ppdb.h" }}
  2204. ,{ "pid":12345, "tid":3, "ts":1718090301810575, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2205. ,{ "pid":12345, "tid":3, "ts":1718090301810665, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/culture-info.h" }}
  2206. ,{ "pid":12345, "tid":3, "ts":1718090301810664, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/culture-info.h" }}
  2207. ,{ "pid":12345, "tid":3, "ts":1718090301810763, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2208. ,{ "pid":12345, "tid":3, "ts":1718090301810842, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/cominterop.h" }}
  2209. ,{ "pid":12345, "tid":3, "ts":1718090301810840, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/cominterop.h" }}
  2210. ,{ "pid":12345, "tid":3, "ts":1718090301810917, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2211. ,{ "pid":12345, "tid":3, "ts":1718090301811003, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/class-inlines.h" }}
  2212. ,{ "pid":12345, "tid":3, "ts":1718090301811001, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class-inlines.h" }}
  2213. ,{ "pid":12345, "tid":3, "ts":1718090301811081, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2214. ,{ "pid":12345, "tid":3, "ts":1718090301811158, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/attrdefs.h" }}
  2215. ,{ "pid":12345, "tid":3, "ts":1718090301811156, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/attrdefs.h" }}
  2216. ,{ "pid":12345, "tid":3, "ts":1718090301811236, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2217. ,{ "pid":12345, "tid":3, "ts":1718090301811317, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/appdomain.h" }}
  2218. ,{ "pid":12345, "tid":3, "ts":1718090301811316, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/appdomain.h" }}
  2219. ,{ "pid":12345, "tid":3, "ts":1718090301811380, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2220. ,{ "pid":12345, "tid":3, "ts":1718090301811500, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gutf8.c" }}
  2221. ,{ "pid":12345, "tid":3, "ts":1718090301811499, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gutf8.c" }}
  2222. ,{ "pid":12345, "tid":3, "ts":1718090301811590, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2223. ,{ "pid":12345, "tid":3, "ts":1718090301811667, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gslist.c" }}
  2224. ,{ "pid":12345, "tid":3, "ts":1718090301811665, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gslist.c" }}
  2225. ,{ "pid":12345, "tid":3, "ts":1718090301811729, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2226. ,{ "pid":12345, "tid":3, "ts":1718090301811821, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/goutput.c" }}
  2227. ,{ "pid":12345, "tid":3, "ts":1718090301811819, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/goutput.c" }}
  2228. ,{ "pid":12345, "tid":3, "ts":1718090301811891, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2229. ,{ "pid":12345, "tid":3, "ts":1718090301811972, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/giconv.c" }}
  2230. ,{ "pid":12345, "tid":3, "ts":1718090301811970, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/giconv.c" }}
  2231. ,{ "pid":12345, "tid":3, "ts":1718090301812034, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2232. ,{ "pid":12345, "tid":3, "ts":1718090301812117, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gdate-unity.c" }}
  2233. ,{ "pid":12345, "tid":3, "ts":1718090301812115, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gdate-unity.c" }}
  2234. ,{ "pid":12345, "tid":3, "ts":1718090301812213, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2235. ,{ "pid":12345, "tid":3, "ts":1718090301812305, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/arch/arm64/arm64-codegen.h" }}
  2236. ,{ "pid":12345, "tid":3, "ts":1718090301812303, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/arch/arm64/arm64-codegen.h" }}
  2237. ,{ "pid":12345, "tid":3, "ts":1718090301812375, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2238. ,{ "pid":12345, "tid":3, "ts":1718090301812458, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/template_util.h" }}
  2239. ,{ "pid":12345, "tid":3, "ts":1718090301812457, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/template_util.h" }}
  2240. ,{ "pid":12345, "tid":3, "ts":1718090301812522, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2241. ,{ "pid":12345, "tid":3, "ts":1718090301812598, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/internal/libc_allocator_with_realloc.h" }}
  2242. ,{ "pid":12345, "tid":3, "ts":1718090301812596, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/internal/libc_allocator_with_realloc.h" }}
  2243. ,{ "pid":12345, "tid":3, "ts":1718090301812672, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2244. ,{ "pid":12345, "tid":3, "ts":1718090301812750, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/vector_mlc.c" }}
  2245. ,{ "pid":12345, "tid":3, "ts":1718090301812749, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/vector_mlc.c" }}
  2246. ,{ "pid":12345, "tid":3, "ts":1718090301812850, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2247. ,{ "pid":12345, "tid":3, "ts":1718090301812928, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/thread_leak_test.c" }}
  2248. ,{ "pid":12345, "tid":3, "ts":1718090301812926, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/thread_leak_test.c" }}
  2249. ,{ "pid":12345, "tid":3, "ts":1718090301813007, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2250. ,{ "pid":12345, "tid":3, "ts":1718090301813100, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/smash_test.c" }}
  2251. ,{ "pid":12345, "tid":3, "ts":1718090301813098, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/smash_test.c" }}
  2252. ,{ "pid":12345, "tid":3, "ts":1718090301813169, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2253. ,{ "pid":12345, "tid":3, "ts":1718090301813253, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/disclaim_test.c" }}
  2254. ,{ "pid":12345, "tid":3, "ts":1718090301813251, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/disclaim_test.c" }}
  2255. ,{ "pid":12345, "tid":3, "ts":1718090301813327, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2256. ,{ "pid":12345, "tid":3, "ts":1718090301813429, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/pthread_stop_world.c" }}
  2257. ,{ "pid":12345, "tid":3, "ts":1718090301813428, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/pthread_stop_world.c" }}
  2258. ,{ "pid":12345, "tid":3, "ts":1718090301813520, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2259. ,{ "pid":12345, "tid":3, "ts":1718090301813599, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/mark.c" }}
  2260. ,{ "pid":12345, "tid":3, "ts":1718090301813597, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/mark.c" }}
  2261. ,{ "pid":12345, "tid":3, "ts":1718090301813668, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2262. ,{ "pid":12345, "tid":3, "ts":1718090301813763, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/sunc/sparc.h" }}
  2263. ,{ "pid":12345, "tid":3, "ts":1718090301813760, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/sunc/sparc.h" }}
  2264. ,{ "pid":12345, "tid":3, "ts":1718090301813832, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2265. ,{ "pid":12345, "tid":3, "ts":1718090301813914, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/msftc/common32_defs.h" }}
  2266. ,{ "pid":12345, "tid":3, "ts":1718090301813912, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/msftc/common32_defs.h" }}
  2267. ,{ "pid":12345, "tid":3, "ts":1718090301813975, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2268. ,{ "pid":12345, "tid":3, "ts":1718090301814059, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/int_atomic_store.h" }}
  2269. ,{ "pid":12345, "tid":3, "ts":1718090301814057, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/int_atomic_store.h" }}
  2270. ,{ "pid":12345, "tid":3, "ts":1718090301814153, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2271. ,{ "pid":12345, "tid":3, "ts":1718090301814244, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/atomic_store.h" }}
  2272. ,{ "pid":12345, "tid":3, "ts":1718090301814242, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/atomic_store.h" }}
  2273. ,{ "pid":12345, "tid":3, "ts":1718090301814321, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2274. ,{ "pid":12345, "tid":3, "ts":1718090301814398, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/generic_pthread.h" }}
  2275. ,{ "pid":12345, "tid":3, "ts":1718090301814396, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/generic_pthread.h" }}
  2276. ,{ "pid":12345, "tid":3, "ts":1718090301814462, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2277. ,{ "pid":12345, "tid":3, "ts":1718090301814557, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/m68k.h" }}
  2278. ,{ "pid":12345, "tid":3, "ts":1718090301814555, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/m68k.h" }}
  2279. ,{ "pid":12345, "tid":3, "ts":1718090301814638, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2280. ,{ "pid":12345, "tid":3, "ts":1718090301814739, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/cris.h" }}
  2281. ,{ "pid":12345, "tid":3, "ts":1718090301814738, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/cris.h" }}
  2282. ,{ "pid":12345, "tid":3, "ts":1718090301814815, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2283. ,{ "pid":12345, "tid":3, "ts":1718090301814896, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ao_t_is_int.h" }}
  2284. ,{ "pid":12345, "tid":3, "ts":1718090301814894, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ao_t_is_int.h" }}
  2285. ,{ "pid":12345, "tid":3, "ts":1718090301814987, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2286. ,{ "pid":12345, "tid":3, "ts":1718090301815074, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/generalize-arithm.h" }}
  2287. ,{ "pid":12345, "tid":3, "ts":1718090301815072, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/generalize-arithm.h" }}
  2288. ,{ "pid":12345, "tid":3, "ts":1718090301815162, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2289. ,{ "pid":12345, "tid":3, "ts":1718090301815250, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/COPYING" }}
  2290. ,{ "pid":12345, "tid":3, "ts":1718090301815320, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2291. ,{ "pid":12345, "tid":3, "ts":1718090301815415, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/gc_priv.h" }}
  2292. ,{ "pid":12345, "tid":3, "ts":1718090301815414, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/gc_priv.h" }}
  2293. ,{ "pid":12345, "tid":3, "ts":1718090301815485, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2294. ,{ "pid":12345, "tid":3, "ts":1718090301815573, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/dbg_mlc.h" }}
  2295. ,{ "pid":12345, "tid":3, "ts":1718090301815572, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/dbg_mlc.h" }}
  2296. ,{ "pid":12345, "tid":3, "ts":1718090301815647, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2297. ,{ "pid":12345, "tid":3, "ts":1718090301815779, "dur":205, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Transactions-FeaturesChecked.txt" }}
  2298. ,{ "pid":12345, "tid":3, "ts":1718090301816023, "dur":57, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Transactions-FeaturesChecked.txt" }}
  2299. ,{ "pid":12345, "tid":3, "ts":1718090301816091, "dur":270, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.AppleCore-FeaturesChecked.txt" }}
  2300. ,{ "pid":12345, "tid":3, "ts":1718090301816362, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2301. ,{ "pid":12345, "tid":3, "ts":1718090301816450, "dur":212, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine-FeaturesChecked.txt" }}
  2302. ,{ "pid":12345, "tid":3, "ts":1718090301816841, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.CSharpSupport.dll" }}
  2303. ,{ "pid":12345, "tid":3, "ts":1718090301816723, "dur":540, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.UIModule-FeaturesChecked.txt" }}
  2304. ,{ "pid":12345, "tid":3, "ts":1718090301817298, "dur":403, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/I18N.CJK-FeaturesChecked.txt" }}
  2305. ,{ "pid":12345, "tid":3, "ts":1718090301817795, "dur":216, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/AppleAuth-FeaturesChecked.txt" }}
  2306. ,{ "pid":12345, "tid":3, "ts":1718090301818012, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2307. ,{ "pid":12345, "tid":3, "ts":1718090301818091, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.ScreenCaptureModule.dll" }}
  2308. ,{ "pid":12345, "tid":3, "ts":1718090301818090, "dur":228, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.ScreenCaptureModule-FeaturesChecked.txt" }}
  2309. ,{ "pid":12345, "tid":3, "ts":1718090301818381, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Services.Core.Threading.dll" }}
  2310. ,{ "pid":12345, "tid":3, "ts":1718090301818379, "dur":374, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Threading-FeaturesChecked.txt" }}
  2311. ,{ "pid":12345, "tid":3, "ts":1718090301818815, "dur":444, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.2D.Animation.Runtime-FeaturesChecked.txt" }}
  2312. ,{ "pid":12345, "tid":3, "ts":1718090301819298, "dur":318, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Xml-FeaturesChecked.txt" }}
  2313. ,{ "pid":12345, "tid":3, "ts":1718090301819656, "dur":451, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.Apple-FeaturesChecked.txt" }}
  2314. ,{ "pid":12345, "tid":3, "ts":1718090301820168, "dur":765, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ClassRegistrationGenerator /Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/UnityClassRegistration.cpp" }}
  2315. ,{ "pid":12345, "tid":3, "ts":1718090301820934, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2316. ,{ "pid":12345, "tid":3, "ts":1718090301821046, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2317. ,{ "pid":12345, "tid":3, "ts":1718090301821135, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/ec.h" }}
  2318. ,{ "pid":12345, "tid":3, "ts":1718090301821134, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/ec.h" }}
  2319. ,{ "pid":12345, "tid":3, "ts":1718090301821213, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2320. ,{ "pid":12345, "tid":3, "ts":1718090301821290, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/gc_dlopen.c" }}
  2321. ,{ "pid":12345, "tid":3, "ts":1718090301821289, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/gc_dlopen.c" }}
  2322. ,{ "pid":12345, "tid":3, "ts":1718090301821374, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2323. ,{ "pid":12345, "tid":3, "ts":1718090301821478, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/extra/msvc_dbg.c" }}
  2324. ,{ "pid":12345, "tid":3, "ts":1718090301821476, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/extra/msvc_dbg.c" }}
  2325. ,{ "pid":12345, "tid":3, "ts":1718090301821553, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2326. ,{ "pid":12345, "tid":3, "ts":1718090301821661, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/extra/krait_signal_handler.c" }}
  2327. ,{ "pid":12345, "tid":3, "ts":1718090301821659, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/extra/krait_signal_handler.c" }}
  2328. ,{ "pid":12345, "tid":3, "ts":1718090301821732, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2329. ,{ "pid":12345, "tid":3, "ts":1718090301821802, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/AsyncPluginsFromLinker/lib_burst_generated.cpp" }}
  2330. ,{ "pid":12345, "tid":3, "ts":1718090301821800, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/lib_burst_generated.cpp" }}
  2331. ,{ "pid":12345, "tid":3, "ts":1718090301821883, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2332. ,{ "pid":12345, "tid":3, "ts":1718090301821961, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/cord/tests/de.c" }}
  2333. ,{ "pid":12345, "tid":3, "ts":1718090301821960, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/cord/tests/de.c" }}
  2334. ,{ "pid":12345, "tid":3, "ts":1718090301822028, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2335. ,{ "pid":12345, "tid":3, "ts":1718090301822103, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/checksums.c" }}
  2336. ,{ "pid":12345, "tid":3, "ts":1718090301822102, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/checksums.c" }}
  2337. ,{ "pid":12345, "tid":3, "ts":1718090301822198, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2338. ,{ "pid":12345, "tid":3, "ts":1718090301822339, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/WindowsGames/Include/C/Baselib_FileIO.inl.h" }}
  2339. ,{ "pid":12345, "tid":3, "ts":1718090301822336, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/WindowsGames/Include/C/Baselib_FileIO.inl.h" }}
  2340. ,{ "pid":12345, "tid":3, "ts":1718090301822410, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2341. ,{ "pid":12345, "tid":3, "ts":1718090301822503, "dur":163, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Windows/Include/C/Baselib_ErrorState.inl.h" }}
  2342. ,{ "pid":12345, "tid":3, "ts":1718090301822502, "dur":170, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Windows/Include/C/Baselib_ErrorState.inl.h" }}
  2343. ,{ "pid":12345, "tid":3, "ts":1718090301822672, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2344. ,{ "pid":12345, "tid":3, "ts":1718090301822781, "dur":224, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/WebGL/Include/C/Baselib_DynamicLibrary.inl.h" }}
  2345. ,{ "pid":12345, "tid":3, "ts":1718090301822780, "dur":226, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/WebGL/Include/C/Baselib_DynamicLibrary.inl.h" }}
  2346. ,{ "pid":12345, "tid":3, "ts":1718090301823006, "dur":206, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2347. ,{ "pid":12345, "tid":3, "ts":1718090301823219, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/VisionOS/Include/BaselibPlatformSpecificEnvironment.h" }}
  2348. ,{ "pid":12345, "tid":3, "ts":1718090301823218, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/VisionOS/Include/BaselibPlatformSpecificEnvironment.h" }}
  2349. ,{ "pid":12345, "tid":3, "ts":1718090301823341, "dur":290, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2350. ,{ "pid":12345, "tid":3, "ts":1718090301823658, "dur":172, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Tvos/Include/C/Baselib_FileIO.inl.h" }}
  2351. ,{ "pid":12345, "tid":3, "ts":1718090301823656, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Tvos/Include/C/Baselib_FileIO.inl.h" }}
  2352. ,{ "pid":12345, "tid":3, "ts":1718090301823832, "dur":222, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2353. ,{ "pid":12345, "tid":3, "ts":1718090301824059, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/OSX/Include/BaselibPlatformSpecificEnvironment.h" }}
  2354. ,{ "pid":12345, "tid":3, "ts":1718090301824057, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/OSX/Include/BaselibPlatformSpecificEnvironment.h" }}
  2355. ,{ "pid":12345, "tid":3, "ts":1718090301824152, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2356. ,{ "pid":12345, "tid":3, "ts":1718090301824284, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Linux/Include/C/Baselib_DynamicLibrary.inl.h" }}
  2357. ,{ "pid":12345, "tid":3, "ts":1718090301824282, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Linux/Include/C/Baselib_DynamicLibrary.inl.h" }}
  2358. ,{ "pid":12345, "tid":3, "ts":1718090301824367, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2359. ,{ "pid":12345, "tid":3, "ts":1718090301824492, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/IOS/Include/BaselibPlatformSpecificEnvironment.h" }}
  2360. ,{ "pid":12345, "tid":3, "ts":1718090301824490, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/IOS/Include/BaselibPlatformSpecificEnvironment.h" }}
  2361. ,{ "pid":12345, "tid":3, "ts":1718090301824555, "dur":167, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2362. ,{ "pid":12345, "tid":3, "ts":1718090301824730, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/EmbeddedLinux/Include/BaselibPlatformSpecificEnvironment.h" }}
  2363. ,{ "pid":12345, "tid":3, "ts":1718090301824729, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/EmbeddedLinux/Include/BaselibPlatformSpecificEnvironment.h" }}
  2364. ,{ "pid":12345, "tid":3, "ts":1718090301824814, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2365. ,{ "pid":12345, "tid":3, "ts":1718090301824904, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Android/Include/BaselibPlatformSpecificEnvironment.h" }}
  2366. ,{ "pid":12345, "tid":3, "ts":1718090301824902, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Android/Include/BaselibPlatformSpecificEnvironment.h" }}
  2367. ,{ "pid":12345, "tid":3, "ts":1718090301825021, "dur":195, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2368. ,{ "pid":12345, "tid":3, "ts":1718090301825226, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/PlatformEnvironment.h" }}
  2369. ,{ "pid":12345, "tid":3, "ts":1718090301825224, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/PlatformEnvironment.h" }}
  2370. ,{ "pid":12345, "tid":3, "ts":1718090301825302, "dur":229, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2371. ,{ "pid":12345, "tid":3, "ts":1718090301825557, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/BasicTypes.h" }}
  2372. ,{ "pid":12345, "tid":3, "ts":1718090301825555, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/BasicTypes.h" }}
  2373. ,{ "pid":12345, "tid":3, "ts":1718090301825649, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2374. ,{ "pid":12345, "tid":3, "ts":1718090301825808, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/External/utfcpp/source/utf8/core.h" }}
  2375. ,{ "pid":12345, "tid":3, "ts":1718090301825790, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/External/utfcpp/source/utf8/core.h" }}
  2376. ,{ "pid":12345, "tid":3, "ts":1718090301825903, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2377. ,{ "pid":12345, "tid":3, "ts":1718090301826032, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Stopwatch.h" }}
  2378. ,{ "pid":12345, "tid":3, "ts":1718090301826031, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Stopwatch.h" }}
  2379. ,{ "pid":12345, "tid":3, "ts":1718090301826159, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2380. ,{ "pid":12345, "tid":3, "ts":1718090301826225, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/mpsc_node.h" }}
  2381. ,{ "pid":12345, "tid":3, "ts":1718090301826224, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/mpsc_node.h" }}
  2382. ,{ "pid":12345, "tid":3, "ts":1718090301826298, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2383. ,{ "pid":12345, "tid":3, "ts":1718090301826387, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/TypeTraits.h" }}
  2384. ,{ "pid":12345, "tid":3, "ts":1718090301826385, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/TypeTraits.h" }}
  2385. ,{ "pid":12345, "tid":3, "ts":1718090301826459, "dur":176, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2386. ,{ "pid":12345, "tid":3, "ts":1718090301826653, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/ConditionVariableData_SemaphoreBased.inl.h" }}
  2387. ,{ "pid":12345, "tid":3, "ts":1718090301826651, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/ConditionVariableData_SemaphoreBased.inl.h" }}
  2388. ,{ "pid":12345, "tid":3, "ts":1718090301826763, "dur":143, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2389. ,{ "pid":12345, "tid":3, "ts":1718090301826916, "dur":127, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/fallback_allocator.h" }}
  2390. ,{ "pid":12345, "tid":3, "ts":1718090301826915, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/fallback_allocator.h" }}
  2391. ,{ "pid":12345, "tid":3, "ts":1718090301827044, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2392. ,{ "pid":12345, "tid":3, "ts":1718090301827126, "dur":139, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Baselib_DynamicLibrary.h" }}
  2393. ,{ "pid":12345, "tid":3, "ts":1718090301827125, "dur":141, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Baselib_DynamicLibrary.h" }}
  2394. ,{ "pid":12345, "tid":3, "ts":1718090301827267, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2395. ,{ "pid":12345, "tid":3, "ts":1718090301827384, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_Gcc_Patch.h" }}
  2396. ,{ "pid":12345, "tid":3, "ts":1718090301827383, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_Gcc_Patch.h" }}
  2397. ,{ "pid":12345, "tid":3, "ts":1718090301827448, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2398. ,{ "pid":12345, "tid":3, "ts":1718090301827546, "dur":155, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_Lock_SemaphoreBased.inl.h" }}
  2399. ,{ "pid":12345, "tid":3, "ts":1718090301827545, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_Lock_SemaphoreBased.inl.h" }}
  2400. ,{ "pid":12345, "tid":3, "ts":1718090301827702, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2401. ,{ "pid":12345, "tid":3, "ts":1718090301827768, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_CappedSemaphore_FutexBased.inl.h" }}
  2402. ,{ "pid":12345, "tid":3, "ts":1718090301827766, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_CappedSemaphore_FutexBased.inl.h" }}
  2403. ,{ "pid":12345, "tid":3, "ts":1718090301827867, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2404. ,{ "pid":12345, "tid":3, "ts":1718090301827973, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_SystemSemaphore.h" }}
  2405. ,{ "pid":12345, "tid":3, "ts":1718090301827972, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_SystemSemaphore.h" }}
  2406. ,{ "pid":12345, "tid":3, "ts":1718090301828092, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2407. ,{ "pid":12345, "tid":3, "ts":1718090301828154, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Process.h" }}
  2408. ,{ "pid":12345, "tid":3, "ts":1718090301828153, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Process.h" }}
  2409. ,{ "pid":12345, "tid":3, "ts":1718090301828264, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2410. ,{ "pid":12345, "tid":3, "ts":1718090301828365, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_FileIO.h" }}
  2411. ,{ "pid":12345, "tid":3, "ts":1718090301828363, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_FileIO.h" }}
  2412. ,{ "pid":12345, "tid":3, "ts":1718090301828450, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2413. ,{ "pid":12345, "tid":3, "ts":1718090301828505, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Atomic_TypeSafe.h" }}
  2414. ,{ "pid":12345, "tid":3, "ts":1718090301828504, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Atomic_TypeSafe.h" }}
  2415. ,{ "pid":12345, "tid":3, "ts":1718090301828597, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2416. ,{ "pid":12345, "tid":3, "ts":1718090301828662, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/WindowsBase.dll" }}
  2417. ,{ "pid":12345, "tid":3, "ts":1718090301828661, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/WindowsBase.dll" }}
  2418. ,{ "pid":12345, "tid":3, "ts":1718090301828738, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2419. ,{ "pid":12345, "tid":3, "ts":1718090301828832, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.TinyProfiler.pdb" }}
  2420. ,{ "pid":12345, "tid":3, "ts":1718090301828831, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.TinyProfiler.pdb" }}
  2421. ,{ "pid":12345, "tid":3, "ts":1718090301828908, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2422. ,{ "pid":12345, "tid":3, "ts":1718090301828978, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Linker.Api.dll" }}
  2423. ,{ "pid":12345, "tid":3, "ts":1718090301828977, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Linker.Api.dll" }}
  2424. ,{ "pid":12345, "tid":3, "ts":1718090301829053, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2425. ,{ "pid":12345, "tid":3, "ts":1718090301829135, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Common35.pdb" }}
  2426. ,{ "pid":12345, "tid":3, "ts":1718090301829133, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Common35.pdb" }}
  2427. ,{ "pid":12345, "tid":3, "ts":1718090301829188, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2428. ,{ "pid":12345, "tid":3, "ts":1718090301829269, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.pdb" }}
  2429. ,{ "pid":12345, "tid":3, "ts":1718090301829268, "dur":126, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.pdb" }}
  2430. ,{ "pid":12345, "tid":3, "ts":1718090301829394, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2431. ,{ "pid":12345, "tid":3, "ts":1718090301829509, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.VisionOS.dll" }}
  2432. ,{ "pid":12345, "tid":3, "ts":1718090301829507, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.VisionOS.dll" }}
  2433. ,{ "pid":12345, "tid":3, "ts":1718090301829569, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2434. ,{ "pid":12345, "tid":3, "ts":1718090301829628, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.MacOSX.dll" }}
  2435. ,{ "pid":12345, "tid":3, "ts":1718090301829627, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.MacOSX.dll" }}
  2436. ,{ "pid":12345, "tid":3, "ts":1718090301829682, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2437. ,{ "pid":12345, "tid":3, "ts":1718090301829771, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.EmbeddedLinux.dll" }}
  2438. ,{ "pid":12345, "tid":3, "ts":1718090301829769, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.EmbeddedLinux.dll" }}
  2439. ,{ "pid":12345, "tid":3, "ts":1718090301829836, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2440. ,{ "pid":12345, "tid":3, "ts":1718090301829911, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Api.Output.pdb" }}
  2441. ,{ "pid":12345, "tid":3, "ts":1718090301829910, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Api.Output.pdb" }}
  2442. ,{ "pid":12345, "tid":3, "ts":1718090301829982, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2443. ,{ "pid":12345, "tid":3, "ts":1718090301830069, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Api.Attributes.pdb" }}
  2444. ,{ "pid":12345, "tid":3, "ts":1718090301830067, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Api.Attributes.pdb" }}
  2445. ,{ "pid":12345, "tid":3, "ts":1718090301830160, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2446. ,{ "pid":12345, "tid":3, "ts":1718090301830299, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Xml.Serialization.dll" }}
  2447. ,{ "pid":12345, "tid":3, "ts":1718090301830297, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Xml.Serialization.dll" }}
  2448. ,{ "pid":12345, "tid":3, "ts":1718090301830381, "dur":141, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2449. ,{ "pid":12345, "tid":3, "ts":1718090301830529, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.ValueTuple.dll" }}
  2450. ,{ "pid":12345, "tid":3, "ts":1718090301830528, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ValueTuple.dll" }}
  2451. ,{ "pid":12345, "tid":3, "ts":1718090301830643, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2452. ,{ "pid":12345, "tid":3, "ts":1718090301830734, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Threading.Tasks.Extensions.dll" }}
  2453. ,{ "pid":12345, "tid":3, "ts":1718090301830732, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Threading.Tasks.Extensions.dll" }}
  2454. ,{ "pid":12345, "tid":3, "ts":1718090301830829, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2455. ,{ "pid":12345, "tid":3, "ts":1718090301830973, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Text.Json.dll" }}
  2456. ,{ "pid":12345, "tid":3, "ts":1718090301830972, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Text.Json.dll" }}
  2457. ,{ "pid":12345, "tid":3, "ts":1718090301831075, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2458. ,{ "pid":12345, "tid":3, "ts":1718090301831169, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.Principal.Windows.dll" }}
  2459. ,{ "pid":12345, "tid":3, "ts":1718090301831167, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.Principal.Windows.dll" }}
  2460. ,{ "pid":12345, "tid":3, "ts":1718090301831247, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2461. ,{ "pid":12345, "tid":3, "ts":1718090301831343, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.Cryptography.Csp.dll" }}
  2462. ,{ "pid":12345, "tid":3, "ts":1718090301831342, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.Cryptography.Csp.dll" }}
  2463. ,{ "pid":12345, "tid":3, "ts":1718090301831414, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2464. ,{ "pid":12345, "tid":3, "ts":1718090301831491, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.Serialization.Json.dll" }}
  2465. ,{ "pid":12345, "tid":3, "ts":1718090301831490, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Serialization.Json.dll" }}
  2466. ,{ "pid":12345, "tid":3, "ts":1718090301831564, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2467. ,{ "pid":12345, "tid":3, "ts":1718090301831648, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.InteropServices.dll" }}
  2468. ,{ "pid":12345, "tid":3, "ts":1718090301831647, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.InteropServices.dll" }}
  2469. ,{ "pid":12345, "tid":3, "ts":1718090301831723, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2470. ,{ "pid":12345, "tid":3, "ts":1718090301831839, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Resources.ResourceManager.dll" }}
  2471. ,{ "pid":12345, "tid":3, "ts":1718090301831838, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Resources.ResourceManager.dll" }}
  2472. ,{ "pid":12345, "tid":3, "ts":1718090301831920, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2473. ,{ "pid":12345, "tid":3, "ts":1718090301832023, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Reflection.Emit.ILGeneration.dll" }}
  2474. ,{ "pid":12345, "tid":3, "ts":1718090301832022, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Reflection.Emit.ILGeneration.dll" }}
  2475. ,{ "pid":12345, "tid":3, "ts":1718090301832090, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2476. ,{ "pid":12345, "tid":3, "ts":1718090301832173, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Private.DataContractSerialization.dll" }}
  2477. ,{ "pid":12345, "tid":3, "ts":1718090301832171, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Private.DataContractSerialization.dll" }}
  2478. ,{ "pid":12345, "tid":3, "ts":1718090301832249, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2479. ,{ "pid":12345, "tid":3, "ts":1718090301832332, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.WebProxy.dll" }}
  2480. ,{ "pid":12345, "tid":3, "ts":1718090301832330, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.WebProxy.dll" }}
  2481. ,{ "pid":12345, "tid":3, "ts":1718090301832415, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2482. ,{ "pid":12345, "tid":3, "ts":1718090301832501, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.Quic.dll" }}
  2483. ,{ "pid":12345, "tid":3, "ts":1718090301832500, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Quic.dll" }}
  2484. ,{ "pid":12345, "tid":3, "ts":1718090301832599, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2485. ,{ "pid":12345, "tid":3, "ts":1718090301832672, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.Http.Json.dll" }}
  2486. ,{ "pid":12345, "tid":3, "ts":1718090301832672, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Http.Json.dll" }}
  2487. ,{ "pid":12345, "tid":3, "ts":1718090301832768, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2488. ,{ "pid":12345, "tid":3, "ts":1718090301832867, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.UnmanagedMemoryStream.dll" }}
  2489. ,{ "pid":12345, "tid":3, "ts":1718090301832865, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.UnmanagedMemoryStream.dll" }}
  2490. ,{ "pid":12345, "tid":3, "ts":1718090301832947, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2491. ,{ "pid":12345, "tid":3, "ts":1718090301833041, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.FileSystem.DriveInfo.dll" }}
  2492. ,{ "pid":12345, "tid":3, "ts":1718090301833039, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.FileSystem.DriveInfo.dll" }}
  2493. ,{ "pid":12345, "tid":3, "ts":1718090301833155, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2494. ,{ "pid":12345, "tid":3, "ts":1718090301833290, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.Compression.Brotli.dll" }}
  2495. ,{ "pid":12345, "tid":3, "ts":1718090301833288, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.Compression.Brotli.dll" }}
  2496. ,{ "pid":12345, "tid":3, "ts":1718090301833401, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2497. ,{ "pid":12345, "tid":3, "ts":1718090301833486, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Drawing.dll" }}
  2498. ,{ "pid":12345, "tid":3, "ts":1718090301833485, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Drawing.dll" }}
  2499. ,{ "pid":12345, "tid":3, "ts":1718090301833595, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Diagnostics.TextWriterTraceListener.dll" }}
  2500. ,{ "pid":12345, "tid":3, "ts":1718090301833593, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Diagnostics.TextWriterTraceListener.dll" }}
  2501. ,{ "pid":12345, "tid":3, "ts":1718090301833710, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2502. ,{ "pid":12345, "tid":3, "ts":1718090301833834, "dur":103, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Data.DataSetExtensions.dll" }}
  2503. ,{ "pid":12345, "tid":3, "ts":1718090301833825, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Data.DataSetExtensions.dll" }}
  2504. ,{ "pid":12345, "tid":3, "ts":1718090301833938, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2505. ,{ "pid":12345, "tid":3, "ts":1718090301834068, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.ComponentModel.EventBasedAsync.dll" }}
  2506. ,{ "pid":12345, "tid":3, "ts":1718090301834067, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ComponentModel.EventBasedAsync.dll" }}
  2507. ,{ "pid":12345, "tid":3, "ts":1718090301834142, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2508. ,{ "pid":12345, "tid":3, "ts":1718090301834228, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Collections.Immutable.dll" }}
  2509. ,{ "pid":12345, "tid":3, "ts":1718090301834226, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Collections.Immutable.dll" }}
  2510. ,{ "pid":12345, "tid":3, "ts":1718090301834305, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2511. ,{ "pid":12345, "tid":3, "ts":1718090301834395, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/NiceIO.dll" }}
  2512. ,{ "pid":12345, "tid":3, "ts":1718090301834394, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/NiceIO.dll" }}
  2513. ,{ "pid":12345, "tid":3, "ts":1718090301834487, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2514. ,{ "pid":12345, "tid":3, "ts":1718090301834589, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Mono.Cecil.Rocks.dll" }}
  2515. ,{ "pid":12345, "tid":3, "ts":1718090301834588, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Mono.Cecil.Rocks.dll" }}
  2516. ,{ "pid":12345, "tid":3, "ts":1718090301834711, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2517. ,{ "pid":12345, "tid":3, "ts":1718090301834808, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Microsoft.Win32.Registry.dll" }}
  2518. ,{ "pid":12345, "tid":3, "ts":1718090301834806, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Microsoft.Win32.Registry.dll" }}
  2519. ,{ "pid":12345, "tid":3, "ts":1718090301834876, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2520. ,{ "pid":12345, "tid":3, "ts":1718090301834932, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libSystem.Security.Cryptography.Native.Apple.dylib" }}
  2521. ,{ "pid":12345, "tid":3, "ts":1718090301835035, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2522. ,{ "pid":12345, "tid":3, "ts":1718090301835131, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libhostpolicy.dylib" }}
  2523. ,{ "pid":12345, "tid":3, "ts":1718090301835209, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2524. ,{ "pid":12345, "tid":3, "ts":1718090301835320, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/il2cpp.pdb" }}
  2525. ,{ "pid":12345, "tid":3, "ts":1718090301835319, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/il2cpp.pdb" }}
  2526. ,{ "pid":12345, "tid":3, "ts":1718090301835421, "dur":139, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2527. ,{ "pid":12345, "tid":3, "ts":1718090301835642, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2528. ,{ "pid":12345, "tid":3, "ts":1718090301835757, "dur":103, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.Xcode.pdb" }}
  2529. ,{ "pid":12345, "tid":3, "ts":1718090301835756, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Xcode.pdb" }}
  2530. ,{ "pid":12345, "tid":3, "ts":1718090301835861, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2531. ,{ "pid":12345, "tid":3, "ts":1718090301835957, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.VisionOS.dll" }}
  2532. ,{ "pid":12345, "tid":3, "ts":1718090301835954, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.VisionOS.dll" }}
  2533. ,{ "pid":12345, "tid":3, "ts":1718090301836064, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2534. ,{ "pid":12345, "tid":3, "ts":1718090301836131, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.LLVM.pdb" }}
  2535. ,{ "pid":12345, "tid":3, "ts":1718090301836129, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.LLVM.pdb" }}
  2536. ,{ "pid":12345, "tid":3, "ts":1718090301836209, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2537. ,{ "pid":12345, "tid":3, "ts":1718090301836305, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.GNU.dll" }}
  2538. ,{ "pid":12345, "tid":3, "ts":1718090301836297, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.GNU.dll" }}
  2539. ,{ "pid":12345, "tid":3, "ts":1718090301836386, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2540. ,{ "pid":12345, "tid":3, "ts":1718090301836500, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.TinyProfiler2.pdb" }}
  2541. ,{ "pid":12345, "tid":3, "ts":1718090301836499, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.TinyProfiler2.pdb" }}
  2542. ,{ "pid":12345, "tid":3, "ts":1718090301836606, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2543. ,{ "pid":12345, "tid":3, "ts":1718090301836708, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.CSharpSupport.pdb" }}
  2544. ,{ "pid":12345, "tid":3, "ts":1718090301836706, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.CSharpSupport.pdb" }}
  2545. ,{ "pid":12345, "tid":3, "ts":1718090301836818, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2546. ,{ "pid":12345, "tid":3, "ts":1718090301836899, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.BeeDriver.dll" }}
  2547. ,{ "pid":12345, "tid":3, "ts":1718090301836897, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.BeeDriver.dll" }}
  2548. ,{ "pid":12345, "tid":3, "ts":1718090301836985, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2549. ,{ "pid":12345, "tid":3, "ts":1718090301837096, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/WindowsBase.dll" }}
  2550. ,{ "pid":12345, "tid":3, "ts":1718090301837095, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/WindowsBase.dll" }}
  2551. ,{ "pid":12345, "tid":3, "ts":1718090301837218, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/UnityLinker.deps.json" }}
  2552. ,{ "pid":12345, "tid":3, "ts":1718090301837217, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/UnityLinker.deps.json" }}
  2553. ,{ "pid":12345, "tid":3, "ts":1718090301837317, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2554. ,{ "pid":12345, "tid":3, "ts":1718090301837394, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Linker.Api.Output.dll" }}
  2555. ,{ "pid":12345, "tid":3, "ts":1718090301837393, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Linker.Api.Output.dll" }}
  2556. ,{ "pid":12345, "tid":3, "ts":1718090301837451, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2557. ,{ "pid":12345, "tid":3, "ts":1718090301837593, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2558. ,{ "pid":12345, "tid":3, "ts":1718090301837722, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Common.dll" }}
  2559. ,{ "pid":12345, "tid":3, "ts":1718090301837720, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Common.dll" }}
  2560. ,{ "pid":12345, "tid":3, "ts":1718090301837788, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2561. ,{ "pid":12345, "tid":3, "ts":1718090301837887, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop.pdb" }}
  2562. ,{ "pid":12345, "tid":3, "ts":1718090301837885, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop.pdb" }}
  2563. ,{ "pid":12345, "tid":3, "ts":1718090301837966, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2564. ,{ "pid":12345, "tid":3, "ts":1718090301838048, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.UniversalWindows.dll" }}
  2565. ,{ "pid":12345, "tid":3, "ts":1718090301838046, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.UniversalWindows.dll" }}
  2566. ,{ "pid":12345, "tid":3, "ts":1718090301838109, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2567. ,{ "pid":12345, "tid":3, "ts":1718090301838250, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2568. ,{ "pid":12345, "tid":3, "ts":1718090301838328, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.AppleTV.dll" }}
  2569. ,{ "pid":12345, "tid":3, "ts":1718090301838327, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.AppleTV.dll" }}
  2570. ,{ "pid":12345, "tid":3, "ts":1718090301838401, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2571. ,{ "pid":12345, "tid":3, "ts":1718090301838514, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Api.dll" }}
  2572. ,{ "pid":12345, "tid":3, "ts":1718090301838512, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Api.dll" }}
  2573. ,{ "pid":12345, "tid":3, "ts":1718090301838598, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2574. ,{ "pid":12345, "tid":3, "ts":1718090301838700, "dur":130, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Xml.XPath.XDocument.dll" }}
  2575. ,{ "pid":12345, "tid":3, "ts":1718090301838698, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Xml.XPath.XDocument.dll" }}
  2576. ,{ "pid":12345, "tid":3, "ts":1718090301838832, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2577. ,{ "pid":12345, "tid":3, "ts":1718090301838981, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Xml.Linq.dll" }}
  2578. ,{ "pid":12345, "tid":3, "ts":1718090301838978, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Xml.Linq.dll" }}
  2579. ,{ "pid":12345, "tid":3, "ts":1718090301839078, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2580. ,{ "pid":12345, "tid":3, "ts":1718090301839169, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Transactions.dll" }}
  2581. ,{ "pid":12345, "tid":3, "ts":1718090301839168, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Transactions.dll" }}
  2582. ,{ "pid":12345, "tid":3, "ts":1718090301839286, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2583. ,{ "pid":12345, "tid":3, "ts":1718090301839351, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Threading.Tasks.Dataflow.dll" }}
  2584. ,{ "pid":12345, "tid":3, "ts":1718090301839350, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Threading.Tasks.Dataflow.dll" }}
  2585. ,{ "pid":12345, "tid":3, "ts":1718090301839421, "dur":159, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2586. ,{ "pid":12345, "tid":3, "ts":1718090301839586, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Text.Encoding.Extensions.dll" }}
  2587. ,{ "pid":12345, "tid":3, "ts":1718090301839585, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Text.Encoding.Extensions.dll" }}
  2588. ,{ "pid":12345, "tid":3, "ts":1718090301839683, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2589. ,{ "pid":12345, "tid":3, "ts":1718090301839767, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.Principal.dll" }}
  2590. ,{ "pid":12345, "tid":3, "ts":1718090301839765, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.Principal.dll" }}
  2591. ,{ "pid":12345, "tid":3, "ts":1718090301839825, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2592. ,{ "pid":12345, "tid":3, "ts":1718090301839981, "dur":178, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.Cryptography.Cng.dll" }}
  2593. ,{ "pid":12345, "tid":3, "ts":1718090301839980, "dur":180, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.Cryptography.Cng.dll" }}
  2594. ,{ "pid":12345, "tid":3, "ts":1718090301840160, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2595. ,{ "pid":12345, "tid":3, "ts":1718090301840260, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.Serialization.Formatters.dll" }}
  2596. ,{ "pid":12345, "tid":3, "ts":1718090301840258, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.Serialization.Formatters.dll" }}
  2597. ,{ "pid":12345, "tid":3, "ts":1718090301840345, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2598. ,{ "pid":12345, "tid":3, "ts":1718090301840468, "dur":138, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.Handles.dll" }}
  2599. ,{ "pid":12345, "tid":3, "ts":1718090301840467, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.Handles.dll" }}
  2600. ,{ "pid":12345, "tid":3, "ts":1718090301840607, "dur":160, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2601. ,{ "pid":12345, "tid":3, "ts":1718090301840774, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Resources.Reader.dll" }}
  2602. ,{ "pid":12345, "tid":3, "ts":1718090301840773, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Resources.Reader.dll" }}
  2603. ,{ "pid":12345, "tid":3, "ts":1718090301840891, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Reflection.Emit.ILGeneration.dll" }}
  2604. ,{ "pid":12345, "tid":3, "ts":1718090301840889, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Reflection.Emit.ILGeneration.dll" }}
  2605. ,{ "pid":12345, "tid":3, "ts":1718090301840972, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2606. ,{ "pid":12345, "tid":3, "ts":1718090301841079, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Private.DataContractSerialization.dll" }}
  2607. ,{ "pid":12345, "tid":3, "ts":1718090301841077, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Private.DataContractSerialization.dll" }}
  2608. ,{ "pid":12345, "tid":3, "ts":1718090301841188, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2609. ,{ "pid":12345, "tid":3, "ts":1718090301841265, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.WebProxy.dll" }}
  2610. ,{ "pid":12345, "tid":3, "ts":1718090301841264, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.WebProxy.dll" }}
  2611. ,{ "pid":12345, "tid":3, "ts":1718090301841350, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2612. ,{ "pid":12345, "tid":3, "ts":1718090301841464, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.Primitives.dll" }}
  2613. ,{ "pid":12345, "tid":3, "ts":1718090301841447, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.Primitives.dll" }}
  2614. ,{ "pid":12345, "tid":3, "ts":1718090301841548, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2615. ,{ "pid":12345, "tid":3, "ts":1718090301841691, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.Http.Json.dll" }}
  2616. ,{ "pid":12345, "tid":3, "ts":1718090301841690, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.Http.Json.dll" }}
  2617. ,{ "pid":12345, "tid":3, "ts":1718090301841779, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2618. ,{ "pid":12345, "tid":3, "ts":1718090301841860, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.UnmanagedMemoryStream.dll" }}
  2619. ,{ "pid":12345, "tid":3, "ts":1718090301841858, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.UnmanagedMemoryStream.dll" }}
  2620. ,{ "pid":12345, "tid":3, "ts":1718090301841959, "dur":141, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2621. ,{ "pid":12345, "tid":3, "ts":1718090301842106, "dur":166, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.FileSystem.DriveInfo.dll" }}
  2622. ,{ "pid":12345, "tid":3, "ts":1718090301842105, "dur":168, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.FileSystem.DriveInfo.dll" }}
  2623. ,{ "pid":12345, "tid":3, "ts":1718090301842273, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2624. ,{ "pid":12345, "tid":3, "ts":1718090301842402, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.Compression.Brotli.dll" }}
  2625. ,{ "pid":12345, "tid":3, "ts":1718090301842400, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.Compression.Brotli.dll" }}
  2626. ,{ "pid":12345, "tid":3, "ts":1718090301842488, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2627. ,{ "pid":12345, "tid":3, "ts":1718090301842593, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.dll" }}
  2628. ,{ "pid":12345, "tid":3, "ts":1718090301842592, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.dll" }}
  2629. ,{ "pid":12345, "tid":3, "ts":1718090301842713, "dur":190, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2630. ,{ "pid":12345, "tid":3, "ts":1718090301842910, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Diagnostics.FileVersionInfo.dll" }}
  2631. ,{ "pid":12345, "tid":3, "ts":1718090301842909, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.FileVersionInfo.dll" }}
  2632. ,{ "pid":12345, "tid":3, "ts":1718090301843016, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2633. ,{ "pid":12345, "tid":3, "ts":1718090301843170, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Core.dll" }}
  2634. ,{ "pid":12345, "tid":3, "ts":1718090301843169, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Core.dll" }}
  2635. ,{ "pid":12345, "tid":3, "ts":1718090301843226, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2636. ,{ "pid":12345, "tid":3, "ts":1718090301843346, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.ComponentModel.dll" }}
  2637. ,{ "pid":12345, "tid":3, "ts":1718090301843344, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.ComponentModel.dll" }}
  2638. ,{ "pid":12345, "tid":3, "ts":1718090301843440, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2639. ,{ "pid":12345, "tid":3, "ts":1718090301843547, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Collections.Concurrent.dll" }}
  2640. ,{ "pid":12345, "tid":3, "ts":1718090301843545, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Collections.Concurrent.dll" }}
  2641. ,{ "pid":12345, "tid":3, "ts":1718090301843619, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2642. ,{ "pid":12345, "tid":3, "ts":1718090301843704, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/netstandard.dll" }}
  2643. ,{ "pid":12345, "tid":3, "ts":1718090301843703, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/netstandard.dll" }}
  2644. ,{ "pid":12345, "tid":3, "ts":1718090301843783, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2645. ,{ "pid":12345, "tid":3, "ts":1718090301843861, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Mono.Cecil.Pdb.dll" }}
  2646. ,{ "pid":12345, "tid":3, "ts":1718090301843860, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Mono.Cecil.Pdb.dll" }}
  2647. ,{ "pid":12345, "tid":3, "ts":1718090301843929, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2648. ,{ "pid":12345, "tid":3, "ts":1718090301844007, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Microsoft.VisualBasic.dll" }}
  2649. ,{ "pid":12345, "tid":3, "ts":1718090301844006, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Microsoft.VisualBasic.dll" }}
  2650. ,{ "pid":12345, "tid":3, "ts":1718090301844081, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2651. ,{ "pid":12345, "tid":3, "ts":1718090301844168, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libSystem.Native.dylib" }}
  2652. ,{ "pid":12345, "tid":3, "ts":1718090301844237, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2653. ,{ "pid":12345, "tid":3, "ts":1718090301844342, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libdbgshim.dylib" }}
  2654. ,{ "pid":12345, "tid":3, "ts":1718090301844408, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2655. ,{ "pid":12345, "tid":3, "ts":1718090301844487, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/il2cpp.dll" }}
  2656. ,{ "pid":12345, "tid":3, "ts":1718090301844485, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/il2cpp.dll" }}
  2657. ,{ "pid":12345, "tid":3, "ts":1718090301844558, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2658. ,{ "pid":12345, "tid":3, "ts":1718090301844631, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.TundraBackend.pdb" }}
  2659. ,{ "pid":12345, "tid":3, "ts":1718090301844630, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.TundraBackend.pdb" }}
  2660. ,{ "pid":12345, "tid":3, "ts":1718090301844700, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2661. ,{ "pid":12345, "tid":3, "ts":1718090301844840, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.Windows.dll" }}
  2662. ,{ "pid":12345, "tid":3, "ts":1718090301844839, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.Windows.dll" }}
  2663. ,{ "pid":12345, "tid":3, "ts":1718090301844936, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2664. ,{ "pid":12345, "tid":3, "ts":1718090301845009, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.TvOS.pdb" }}
  2665. ,{ "pid":12345, "tid":3, "ts":1718090301845008, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.TvOS.pdb" }}
  2666. ,{ "pid":12345, "tid":3, "ts":1718090301845067, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2667. ,{ "pid":12345, "tid":3, "ts":1718090301845155, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.Linux.dll" }}
  2668. ,{ "pid":12345, "tid":3, "ts":1718090301845154, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.Linux.dll" }}
  2669. ,{ "pid":12345, "tid":3, "ts":1718090301845233, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2670. ,{ "pid":12345, "tid":3, "ts":1718090301845309, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.EmbeddedLinux.pdb" }}
  2671. ,{ "pid":12345, "tid":3, "ts":1718090301845308, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.EmbeddedLinux.pdb" }}
  2672. ,{ "pid":12345, "tid":3, "ts":1718090301845377, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2673. ,{ "pid":12345, "tid":3, "ts":1718090301845465, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Stevedore.Program.dll" }}
  2674. ,{ "pid":12345, "tid":3, "ts":1718090301845464, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Stevedore.Program.dll" }}
  2675. ,{ "pid":12345, "tid":3, "ts":1718090301845538, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2676. ,{ "pid":12345, "tid":3, "ts":1718090301845621, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Core.pdb" }}
  2677. ,{ "pid":12345, "tid":3, "ts":1718090301845620, "dur":126, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Core.pdb" }}
  2678. ,{ "pid":12345, "tid":3, "ts":1718090301845747, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2679. ,{ "pid":12345, "tid":3, "ts":1718090301845830, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Analytics.dll" }}
  2680. ,{ "pid":12345, "tid":3, "ts":1718090301845829, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Analytics.dll" }}
  2681. ,{ "pid":12345, "tid":3, "ts":1718090301845917, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2682. ,{ "pid":12345, "tid":3, "ts":1718090301845994, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/VmThreadUtils.cpp" }}
  2683. ,{ "pid":12345, "tid":3, "ts":1718090301845993, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/VmThreadUtils.cpp" }}
  2684. ,{ "pid":12345, "tid":3, "ts":1718090301846095, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2685. ,{ "pid":12345, "tid":3, "ts":1718090301846187, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone Tests/Unity-iPhone Tests-Prefix.pch" }}
  2686. ,{ "pid":12345, "tid":3, "ts":1718090301846309, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2687. ,{ "pid":12345, "tid":3, "ts":1718090301846385, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UnityTrampolineConfigure.h" }}
  2688. ,{ "pid":12345, "tid":3, "ts":1718090301846384, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UnityTrampolineConfigure.h" }}
  2689. ,{ "pid":12345, "tid":3, "ts":1718090301846502, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2690. ,{ "pid":12345, "tid":3, "ts":1718090301846573, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UnityAppController+Rendering.h" }}
  2691. ,{ "pid":12345, "tid":3, "ts":1718090301846572, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UnityAppController+Rendering.h" }}
  2692. ,{ "pid":12345, "tid":3, "ts":1718090301846693, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2693. ,{ "pid":12345, "tid":3, "ts":1718090301846753, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/UnityReplayKit.mm" }}
  2694. ,{ "pid":12345, "tid":3, "ts":1718090301846876, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2695. ,{ "pid":12345, "tid":3, "ts":1718090301846947, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/NoGraphicsHelper.mm" }}
  2696. ,{ "pid":12345, "tid":3, "ts":1718090301847019, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2697. ,{ "pid":12345, "tid":3, "ts":1718090301847079, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/FullScreenVideoPlayer.mm" }}
  2698. ,{ "pid":12345, "tid":3, "ts":1718090301847154, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2699. ,{ "pid":12345, "tid":3, "ts":1718090301847230, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/CMVideoSampling.mm" }}
  2700. ,{ "pid":12345, "tid":3, "ts":1718090301847314, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2701. ,{ "pid":12345, "tid":3, "ts":1718090301847374, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityViewControllerBase.mm" }}
  2702. ,{ "pid":12345, "tid":3, "ts":1718090301847484, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2703. ,{ "pid":12345, "tid":3, "ts":1718090301847565, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityViewControllerBase+iOS.mm" }}
  2704. ,{ "pid":12345, "tid":3, "ts":1718090301847636, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2705. ,{ "pid":12345, "tid":3, "ts":1718090301847755, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityView+iOS.mm" }}
  2706. ,{ "pid":12345, "tid":3, "ts":1718090301847827, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2707. ,{ "pid":12345, "tid":3, "ts":1718090301847979, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2708. ,{ "pid":12345, "tid":3, "ts":1718090301848140, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2709. ,{ "pid":12345, "tid":3, "ts":1718090301848221, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/PluginBase/AppDelegateListener.mm" }}
  2710. ,{ "pid":12345, "tid":3, "ts":1718090301848302, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2711. ,{ "pid":12345, "tid":3, "ts":1718090301848377, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ActivationFactoryBase.h" }}
  2712. ,{ "pid":12345, "tid":3, "ts":1718090301848376, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ActivationFactoryBase.h" }}
  2713. ,{ "pid":12345, "tid":3, "ts":1718090301848454, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2714. ,{ "pid":12345, "tid":3, "ts":1718090301848532, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/AssemblyName.cpp" }}
  2715. ,{ "pid":12345, "tid":3, "ts":1718090301848531, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/AssemblyName.cpp" }}
  2716. ,{ "pid":12345, "tid":3, "ts":1718090301848605, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2717. ,{ "pid":12345, "tid":3, "ts":1718090301848706, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Class.cpp" }}
  2718. ,{ "pid":12345, "tid":3, "ts":1718090301848705, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Class.cpp" }}
  2719. ,{ "pid":12345, "tid":3, "ts":1718090301848792, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2720. ,{ "pid":12345, "tid":3, "ts":1718090301848898, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/COMEntryPoints.cpp" }}
  2721. ,{ "pid":12345, "tid":3, "ts":1718090301848896, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/COMEntryPoints.cpp" }}
  2722. ,{ "pid":12345, "tid":3, "ts":1718090301848989, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2723. ,{ "pid":12345, "tid":3, "ts":1718090301849083, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Event.cpp" }}
  2724. ,{ "pid":12345, "tid":3, "ts":1718090301849082, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Event.cpp" }}
  2725. ,{ "pid":12345, "tid":3, "ts":1718090301849179, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2726. ,{ "pid":12345, "tid":3, "ts":1718090301849259, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/GenericClass.h" }}
  2727. ,{ "pid":12345, "tid":3, "ts":1718090301849258, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/GenericClass.h" }}
  2728. ,{ "pid":12345, "tid":3, "ts":1718090301849325, "dur":154, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2729. ,{ "pid":12345, "tid":3, "ts":1718090301849488, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Il2CppHStringReference.h" }}
  2730. ,{ "pid":12345, "tid":3, "ts":1718090301849487, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Il2CppHStringReference.h" }}
  2731. ,{ "pid":12345, "tid":3, "ts":1718090301849557, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2732. ,{ "pid":12345, "tid":3, "ts":1718090301849633, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/LastError.h" }}
  2733. ,{ "pid":12345, "tid":3, "ts":1718090301849631, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/LastError.h" }}
  2734. ,{ "pid":12345, "tid":3, "ts":1718090301849716, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2735. ,{ "pid":12345, "tid":3, "ts":1718090301849828, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/MetadataAlloc.cpp" }}
  2736. ,{ "pid":12345, "tid":3, "ts":1718090301849826, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/MetadataAlloc.cpp" }}
  2737. ,{ "pid":12345, "tid":3, "ts":1718090301849883, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2738. ,{ "pid":12345, "tid":3, "ts":1718090301849964, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Method.cpp" }}
  2739. ,{ "pid":12345, "tid":3, "ts":1718090301849963, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Method.cpp" }}
  2740. ,{ "pid":12345, "tid":3, "ts":1718090301850027, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2741. ,{ "pid":12345, "tid":3, "ts":1718090301850137, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Object.cpp" }}
  2742. ,{ "pid":12345, "tid":3, "ts":1718090301850134, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Object.cpp" }}
  2743. ,{ "pid":12345, "tid":3, "ts":1718090301850196, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2744. ,{ "pid":12345, "tid":3, "ts":1718090301850270, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/PlatformInvoke.h" }}
  2745. ,{ "pid":12345, "tid":3, "ts":1718090301850269, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/PlatformInvoke.h" }}
  2746. ,{ "pid":12345, "tid":3, "ts":1718090301850346, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2747. ,{ "pid":12345, "tid":3, "ts":1718090301850429, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Assets/Plugins/iOS/GADUAdNetworkExtras.h" }}
  2748. ,{ "pid":12345, "tid":3, "ts":1718090301850428, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/Plugins/iOS/GADUAdNetworkExtras.h" }}
  2749. ,{ "pid":12345, "tid":3, "ts":1718090301850515, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2750. ,{ "pid":12345, "tid":3, "ts":1718090301850575, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/RCW.cpp" }}
  2751. ,{ "pid":12345, "tid":3, "ts":1718090301850574, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/RCW.cpp" }}
  2752. ,{ "pid":12345, "tid":3, "ts":1718090301850698, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ScopedThreadAttacher.cpp" }}
  2753. ,{ "pid":12345, "tid":3, "ts":1718090301850697, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ScopedThreadAttacher.cpp" }}
  2754. ,{ "pid":12345, "tid":3, "ts":1718090301850760, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2755. ,{ "pid":12345, "tid":3, "ts":1718090301850856, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ThreadPoolMs.cpp" }}
  2756. ,{ "pid":12345, "tid":3, "ts":1718090301850854, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ThreadPoolMs.cpp" }}
  2757. ,{ "pid":12345, "tid":3, "ts":1718090301850919, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2758. ,{ "pid":12345, "tid":3, "ts":1718090301850989, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/WaitHandle.h" }}
  2759. ,{ "pid":12345, "tid":3, "ts":1718090301850988, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/WaitHandle.h" }}
  2760. ,{ "pid":12345, "tid":3, "ts":1718090301851047, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2761. ,{ "pid":12345, "tid":3, "ts":1718090301851108, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libmono/config/eglib-config.hw" }}
  2762. ,{ "pid":12345, "tid":3, "ts":1718090301851182, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2763. ,{ "pid":12345, "tid":3, "ts":1718090301851244, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libmono/config/il2cpp-config-mono-win.h" }}
  2764. ,{ "pid":12345, "tid":3, "ts":1718090301851243, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libmono/config/il2cpp-config-mono-win.h" }}
  2765. ,{ "pid":12345, "tid":3, "ts":1718090301851331, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2766. ,{ "pid":12345, "tid":3, "ts":1718090301851478, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2767. ,{ "pid":12345, "tid":3, "ts":1718090301851590, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2768. ,{ "pid":12345, "tid":3, "ts":1718090301851649, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-180.png" }}
  2769. ,{ "pid":12345, "tid":3, "ts":1718090301851730, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2770. ,{ "pid":12345, "tid":3, "ts":1718090301851811, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-Notification-60.png" }}
  2771. ,{ "pid":12345, "tid":3, "ts":1718090301851872, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2772. ,{ "pid":12345, "tid":3, "ts":1718090301851961, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-Notification-20.png" }}
  2773. ,{ "pid":12345, "tid":3, "ts":1718090301852034, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2774. ,{ "pid":12345, "tid":3, "ts":1718090301852137, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/Plugins/iOS/Firebase/libFirebaseCppAuth.a" }}
  2775. ,{ "pid":12345, "tid":3, "ts":1718090301852208, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2776. ,{ "pid":12345, "tid":3, "ts":1718090301852278, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/AppleAuth/Native/iOS/AppleAuthManager.m" }}
  2777. ,{ "pid":12345, "tid":3, "ts":1718090301852351, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2778. ,{ "pid":12345, "tid":3, "ts":1718090301852445, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/AppleAuth/Native/iOS/PersonNameComponentsFormatting.m" }}
  2779. ,{ "pid":12345, "tid":3, "ts":1718090301852528, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2780. ,{ "pid":12345, "tid":3, "ts":1718090301852694, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2781. ,{ "pid":12345, "tid":3, "ts":1718090301852758, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/Resources/unity_builtin_extra" }}
  2782. ,{ "pid":12345, "tid":3, "ts":1718090301852810, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2783. ,{ "pid":12345, "tid":3, "ts":1718090301852886, "dur":14704, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  2784. ,{ "pid":12345, "tid":3, "ts":1718090301867658, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GoogleMobileAds.Common_CodeGen.c" }}
  2785. ,{ "pid":12345, "tid":3, "ts":1718090301867656, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GoogleMobileAds.Common_CodeGen.c" }}
  2786. ,{ "pid":12345, "tid":3, "ts":1718090301867743, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2787. ,{ "pid":12345, "tid":3, "ts":1718090301867877, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UI__1.cpp" }}
  2788. ,{ "pid":12345, "tid":3, "ts":1718090301867875, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UI__1.cpp" }}
  2789. ,{ "pid":12345, "tid":3, "ts":1718090301867972, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2790. ,{ "pid":12345, "tid":3, "ts":1718090301868066, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__62.cpp" }}
  2791. ,{ "pid":12345, "tid":3, "ts":1718090301868064, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__62.cpp" }}
  2792. ,{ "pid":12345, "tid":3, "ts":1718090301868152, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2793. ,{ "pid":12345, "tid":3, "ts":1718090301868281, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods.cpp" }}
  2794. ,{ "pid":12345, "tid":3, "ts":1718090301868280, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods.cpp" }}
  2795. ,{ "pid":12345, "tid":3, "ts":1718090301868377, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2796. ,{ "pid":12345, "tid":3, "ts":1718090301868464, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__34.cpp" }}
  2797. ,{ "pid":12345, "tid":3, "ts":1718090301868463, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__34.cpp" }}
  2798. ,{ "pid":12345, "tid":3, "ts":1718090301868542, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2799. ,{ "pid":12345, "tid":3, "ts":1718090301868632, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.SharedInternalsModule_CodeGen.c" }}
  2800. ,{ "pid":12345, "tid":3, "ts":1718090301868631, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.SharedInternalsModule_CodeGen.c" }}
  2801. ,{ "pid":12345, "tid":3, "ts":1718090301868713, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2802. ,{ "pid":12345, "tid":3, "ts":1718090301868803, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__4.cpp" }}
  2803. ,{ "pid":12345, "tid":3, "ts":1718090301868802, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__4.cpp" }}
  2804. ,{ "pid":12345, "tid":3, "ts":1718090301868890, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2805. ,{ "pid":12345, "tid":3, "ts":1718090301868970, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Mono.Security.cpp" }}
  2806. ,{ "pid":12345, "tid":3, "ts":1718090301868968, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Mono.Security.cpp" }}
  2807. ,{ "pid":12345, "tid":3, "ts":1718090301869030, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2808. ,{ "pid":12345, "tid":3, "ts":1718090301869110, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Newtonsoft.Json.cpp" }}
  2809. ,{ "pid":12345, "tid":3, "ts":1718090301869108, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Newtonsoft.Json.cpp" }}
  2810. ,{ "pid":12345, "tid":3, "ts":1718090301869194, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2811. ,{ "pid":12345, "tid":3, "ts":1718090301869279, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.PropertiesModule.cpp" }}
  2812. ,{ "pid":12345, "tid":3, "ts":1718090301869278, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.PropertiesModule.cpp" }}
  2813. ,{ "pid":12345, "tid":3, "ts":1718090301869351, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2814. ,{ "pid":12345, "tid":3, "ts":1718090301869444, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__42.cpp" }}
  2815. ,{ "pid":12345, "tid":3, "ts":1718090301869443, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__42.cpp" }}
  2816. ,{ "pid":12345, "tid":3, "ts":1718090301869530, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2817. ,{ "pid":12345, "tid":3, "ts":1718090301869640, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/I18N_CodeGen.c" }}
  2818. ,{ "pid":12345, "tid":3, "ts":1718090301869638, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/I18N_CodeGen.c" }}
  2819. ,{ "pid":12345, "tid":3, "ts":1718090301869721, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2820. ,{ "pid":12345, "tid":3, "ts":1718090301869813, "dur":145, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Runtime.Serialization.cpp" }}
  2821. ,{ "pid":12345, "tid":3, "ts":1718090301869811, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Runtime.Serialization.cpp" }}
  2822. ,{ "pid":12345, "tid":3, "ts":1718090301869959, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2823. ,{ "pid":12345, "tid":3, "ts":1718090301870047, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__23.cpp" }}
  2824. ,{ "pid":12345, "tid":3, "ts":1718090301870046, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__23.cpp" }}
  2825. ,{ "pid":12345, "tid":3, "ts":1718090301870123, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2826. ,{ "pid":12345, "tid":3, "ts":1718090301870257, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppGenericClassTable.c" }}
  2827. ,{ "pid":12345, "tid":3, "ts":1718090301870255, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppGenericClassTable.c" }}
  2828. ,{ "pid":12345, "tid":3, "ts":1718090301870332, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2829. ,{ "pid":12345, "tid":3, "ts":1718090301870474, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__66.cpp" }}
  2830. ,{ "pid":12345, "tid":3, "ts":1718090301870473, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__66.cpp" }}
  2831. ,{ "pid":12345, "tid":3, "ts":1718090301870568, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2832. ,{ "pid":12345, "tid":3, "ts":1718090301870668, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Physics2DModule_CodeGen.c" }}
  2833. ,{ "pid":12345, "tid":3, "ts":1718090301870666, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Physics2DModule_CodeGen.c" }}
  2834. ,{ "pid":12345, "tid":3, "ts":1718090301870762, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2835. ,{ "pid":12345, "tid":3, "ts":1718090301870862, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UnityWebRequestModule.cpp" }}
  2836. ,{ "pid":12345, "tid":3, "ts":1718090301870861, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UnityWebRequestModule.cpp" }}
  2837. ,{ "pid":12345, "tid":3, "ts":1718090301870949, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2838. ,{ "pid":12345, "tid":3, "ts":1718090301871030, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.TextRenderingModule_CodeGen.c" }}
  2839. ,{ "pid":12345, "tid":3, "ts":1718090301871028, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.TextRenderingModule_CodeGen.c" }}
  2840. ,{ "pid":12345, "tid":3, "ts":1718090301871104, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2841. ,{ "pid":12345, "tid":3, "ts":1718090301871195, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppGenericMethodTable.c" }}
  2842. ,{ "pid":12345, "tid":3, "ts":1718090301871194, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppGenericMethodTable.c" }}
  2843. ,{ "pid":12345, "tid":3, "ts":1718090301871272, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2844. ,{ "pid":12345, "tid":3, "ts":1718090301871354, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.GridModule_CodeGen.c" }}
  2845. ,{ "pid":12345, "tid":3, "ts":1718090301871353, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.GridModule_CodeGen.c" }}
  2846. ,{ "pid":12345, "tid":3, "ts":1718090301871438, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2847. ,{ "pid":12345, "tid":3, "ts":1718090301871540, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.TextCoreTextEngineModule_CodeGen.c" }}
  2848. ,{ "pid":12345, "tid":3, "ts":1718090301871538, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.TextCoreTextEngineModule_CodeGen.c" }}
  2849. ,{ "pid":12345, "tid":3, "ts":1718090301871645, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2850. ,{ "pid":12345, "tid":3, "ts":1718090301871739, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Purchasing.SecurityCore_CodeGen.c" }}
  2851. ,{ "pid":12345, "tid":3, "ts":1718090301871737, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Purchasing.SecurityCore_CodeGen.c" }}
  2852. ,{ "pid":12345, "tid":3, "ts":1718090301871823, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2853. ,{ "pid":12345, "tid":3, "ts":1718090301871918, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Purchasing.Security_CodeGen.c" }}
  2854. ,{ "pid":12345, "tid":3, "ts":1718090301871916, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Purchasing.Security_CodeGen.c" }}
  2855. ,{ "pid":12345, "tid":3, "ts":1718090301872006, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2856. ,{ "pid":12345, "tid":3, "ts":1718090301872089, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Purchasing.AppleCore.cpp" }}
  2857. ,{ "pid":12345, "tid":3, "ts":1718090301872087, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Purchasing.AppleCore.cpp" }}
  2858. ,{ "pid":12345, "tid":3, "ts":1718090301872181, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2859. ,{ "pid":12345, "tid":3, "ts":1718090301872263, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__64.cpp" }}
  2860. ,{ "pid":12345, "tid":3, "ts":1718090301872262, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__64.cpp" }}
  2861. ,{ "pid":12345, "tid":3, "ts":1718090301872380, "dur":267, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2862. ,{ "pid":12345, "tid":3, "ts":1718090301872655, "dur":281, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__25.cpp" }}
  2863. ,{ "pid":12345, "tid":3, "ts":1718090301872655, "dur":282, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__25.cpp" }}
  2864. ,{ "pid":12345, "tid":3, "ts":1718090301872937, "dur":355, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2865. ,{ "pid":12345, "tid":3, "ts":1718090301873297, "dur":203, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule__8.cpp" }}
  2866. ,{ "pid":12345, "tid":3, "ts":1718090301873296, "dur":205, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__8.cpp" }}
  2867. ,{ "pid":12345, "tid":3, "ts":1718090301873502, "dur":159, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2868. ,{ "pid":12345, "tid":3, "ts":1718090301873668, "dur":189, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule__10.cpp" }}
  2869. ,{ "pid":12345, "tid":3, "ts":1718090301873667, "dur":191, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__10.cpp" }}
  2870. ,{ "pid":12345, "tid":3, "ts":1718090301873858, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2871. ,{ "pid":12345, "tid":3, "ts":1718090301873975, "dur":148, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.AndroidJNIModule.cpp" }}
  2872. ,{ "pid":12345, "tid":3, "ts":1718090301873975, "dur":149, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.AndroidJNIModule.cpp" }}
  2873. ,{ "pid":12345, "tid":3, "ts":1718090301874124, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2874. ,{ "pid":12345, "tid":3, "ts":1718090301874260, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Advertisements_CodeGen.c" }}
  2875. ,{ "pid":12345, "tid":3, "ts":1718090301874259, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Advertisements_CodeGen.c" }}
  2876. ,{ "pid":12345, "tid":3, "ts":1718090301874334, "dur":199, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2877. ,{ "pid":12345, "tid":3, "ts":1718090301874542, "dur":167, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__10.cpp" }}
  2878. ,{ "pid":12345, "tid":3, "ts":1718090301874541, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__10.cpp" }}
  2879. ,{ "pid":12345, "tid":3, "ts":1718090301874710, "dur":176, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2880. ,{ "pid":12345, "tid":3, "ts":1718090301874896, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__27.cpp" }}
  2881. ,{ "pid":12345, "tid":3, "ts":1718090301874894, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__27.cpp" }}
  2882. ,{ "pid":12345, "tid":3, "ts":1718090301874999, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2883. ,{ "pid":12345, "tid":3, "ts":1718090301875088, "dur":146, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UI__4.cpp" }}
  2884. ,{ "pid":12345, "tid":3, "ts":1718090301875087, "dur":149, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UI__4.cpp" }}
  2885. ,{ "pid":12345, "tid":3, "ts":1718090301875236, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2886. ,{ "pid":12345, "tid":3, "ts":1718090301875335, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__4.cpp" }}
  2887. ,{ "pid":12345, "tid":3, "ts":1718090301875334, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__4.cpp" }}
  2888. ,{ "pid":12345, "tid":3, "ts":1718090301875469, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2889. ,{ "pid":12345, "tid":3, "ts":1718090301875573, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__12.cpp" }}
  2890. ,{ "pid":12345, "tid":3, "ts":1718090301875572, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__12.cpp" }}
  2891. ,{ "pid":12345, "tid":3, "ts":1718090301875654, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2892. ,{ "pid":12345, "tid":3, "ts":1718090301875753, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Configuration_CodeGen.c" }}
  2893. ,{ "pid":12345, "tid":3, "ts":1718090301875752, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Configuration_CodeGen.c" }}
  2894. ,{ "pid":12345, "tid":3, "ts":1718090301875853, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2895. ,{ "pid":12345, "tid":3, "ts":1718090301875984, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__9.cpp" }}
  2896. ,{ "pid":12345, "tid":3, "ts":1718090301875975, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__9.cpp" }}
  2897. ,{ "pid":12345, "tid":3, "ts":1718090301876066, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2898. ,{ "pid":12345, "tid":3, "ts":1718090301876148, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Threading_CodeGen.c" }}
  2899. ,{ "pid":12345, "tid":3, "ts":1718090301876148, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Threading_CodeGen.c" }}
  2900. ,{ "pid":12345, "tid":3, "ts":1718090301876247, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2901. ,{ "pid":12345, "tid":3, "ts":1718090301876342, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Device.cpp" }}
  2902. ,{ "pid":12345, "tid":3, "ts":1718090301876341, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Device.cpp" }}
  2903. ,{ "pid":12345, "tid":3, "ts":1718090301876425, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2904. ,{ "pid":12345, "tid":3, "ts":1718090301876568, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.TextMeshPro_CodeGen.c" }}
  2905. ,{ "pid":12345, "tid":3, "ts":1718090301876566, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.TextMeshPro_CodeGen.c" }}
  2906. ,{ "pid":12345, "tid":3, "ts":1718090301876641, "dur":147, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2907. ,{ "pid":12345, "tid":3, "ts":1718090301876813, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System__1.cpp" }}
  2908. ,{ "pid":12345, "tid":3, "ts":1718090301876812, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System__1.cpp" }}
  2909. ,{ "pid":12345, "tid":3, "ts":1718090301876906, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2910. ,{ "pid":12345, "tid":3, "ts":1718090301877051, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml_CodeGen.c" }}
  2911. ,{ "pid":12345, "tid":3, "ts":1718090301877050, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml_CodeGen.c" }}
  2912. ,{ "pid":12345, "tid":3, "ts":1718090301877163, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2913. ,{ "pid":12345, "tid":3, "ts":1718090301877262, "dur":129, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UI__2.cpp" }}
  2914. ,{ "pid":12345, "tid":3, "ts":1718090301877260, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UI__2.cpp" }}
  2915. ,{ "pid":12345, "tid":3, "ts":1718090301877407, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2916. ,{ "pid":12345, "tid":3, "ts":1718090301877521, "dur":124, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppInteropDataTable.cpp" }}
  2917. ,{ "pid":12345, "tid":3, "ts":1718090301877520, "dur":126, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppInteropDataTable.cpp" }}
  2918. ,{ "pid":12345, "tid":3, "ts":1718090301877646, "dur":210, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2919. ,{ "pid":12345, "tid":3, "ts":1718090301877862, "dur":159, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__11.cpp" }}
  2920. ,{ "pid":12345, "tid":3, "ts":1718090301877861, "dur":161, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__11.cpp" }}
  2921. ,{ "pid":12345, "tid":3, "ts":1718090301878022, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2922. ,{ "pid":12345, "tid":3, "ts":1718090301878124, "dur":175, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Core_CodeGen.c" }}
  2923. ,{ "pid":12345, "tid":3, "ts":1718090301878122, "dur":178, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Core_CodeGen.c" }}
  2924. ,{ "pid":12345, "tid":3, "ts":1718090301878300, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2925. ,{ "pid":12345, "tid":3, "ts":1718090301878372, "dur":109, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  2926. ,{ "pid":12345, "tid":4, "ts":1718090301624730, "dur":116370, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  2927. ,{ "pid":12345, "tid":4, "ts":1718090301741107, "dur":953, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2928. ,{ "pid":12345, "tid":4, "ts":1718090301742060, "dur":1025, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2929. ,{ "pid":12345, "tid":4, "ts":1718090301743085, "dur":910, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2930. ,{ "pid":12345, "tid":4, "ts":1718090301743995, "dur":966, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2931. ,{ "pid":12345, "tid":4, "ts":1718090301744961, "dur":1176, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2932. ,{ "pid":12345, "tid":4, "ts":1718090301746137, "dur":98, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2933. ,{ "pid":12345, "tid":4, "ts":1718090301746235, "dur":29982, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  2934. ,{ "pid":12345, "tid":4, "ts":1718090301776292, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2935. ,{ "pid":12345, "tid":4, "ts":1718090301776444, "dur":139, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.Purchasing.Security-FeaturesChecked.txt_pwpf.info" }}
  2936. ,{ "pid":12345, "tid":4, "ts":1718090301776610, "dur":74, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.GameCenterModule-FeaturesChecked.txt_80u5.info" }}
  2937. ,{ "pid":12345, "tid":4, "ts":1718090301776725, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2938. ,{ "pid":12345, "tid":4, "ts":1718090301776831, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2939. ,{ "pid":12345, "tid":4, "ts":1718090301776971, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2940. ,{ "pid":12345, "tid":4, "ts":1718090301777094, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2941. ,{ "pid":12345, "tid":4, "ts":1718090301777281, "dur":142, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2942. ,{ "pid":12345, "tid":4, "ts":1718090301777428, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/UnityAds" }}
  2943. ,{ "pid":12345, "tid":4, "ts":1718090301777509, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2944. ,{ "pid":12345, "tid":4, "ts":1718090301777621, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/armv7-apple-ios.swiftmodule" }}
  2945. ,{ "pid":12345, "tid":4, "ts":1718090301777780, "dur":189, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2946. ,{ "pid":12345, "tid":4, "ts":1718090301777980, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios.swiftinterface" }}
  2947. ,{ "pid":12345, "tid":4, "ts":1718090301778092, "dur":154, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2948. ,{ "pid":12345, "tid":4, "ts":1718090301778258, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Info.plist" }}
  2949. ,{ "pid":12345, "tid":4, "ts":1718090301778335, "dur":157, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2950. ,{ "pid":12345, "tid":4, "ts":1718090301778502, "dur":216, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UPURTransactionErrorDetails.h" }}
  2951. ,{ "pid":12345, "tid":4, "ts":1718090301778497, "dur":222, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UPURTransactionErrorDetails.h" }}
  2952. ,{ "pid":12345, "tid":4, "ts":1718090301778720, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2953. ,{ "pid":12345, "tid":4, "ts":1718090301778862, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityMonetizationDelegate.h" }}
  2954. ,{ "pid":12345, "tid":4, "ts":1718090301778861, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityMonetizationDelegate.h" }}
  2955. ,{ "pid":12345, "tid":4, "ts":1718090301778936, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2956. ,{ "pid":12345, "tid":4, "ts":1718090301779082, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsShowCompletionState.h" }}
  2957. ,{ "pid":12345, "tid":4, "ts":1718090301779081, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsShowCompletionState.h" }}
  2958. ,{ "pid":12345, "tid":4, "ts":1718090301779184, "dur":143, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2959. ,{ "pid":12345, "tid":4, "ts":1718090301779335, "dur":127, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsExtendedDelegate.h" }}
  2960. ,{ "pid":12345, "tid":4, "ts":1718090301779334, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsExtendedDelegate.h" }}
  2961. ,{ "pid":12345, "tid":4, "ts":1718090301779464, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2962. ,{ "pid":12345, "tid":4, "ts":1718090301779587, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAds-Swift.h" }}
  2963. ,{ "pid":12345, "tid":4, "ts":1718090301779586, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAds-Swift.h" }}
  2964. ,{ "pid":12345, "tid":4, "ts":1718090301779732, "dur":163, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONCustomEvent.h" }}
  2965. ,{ "pid":12345, "tid":4, "ts":1718090301779731, "dur":165, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONCustomEvent.h" }}
  2966. ,{ "pid":12345, "tid":4, "ts":1718090301779896, "dur":127, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2967. ,{ "pid":12345, "tid":4, "ts":1718090301780046, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSDictionaryConvertible.h" }}
  2968. ,{ "pid":12345, "tid":4, "ts":1718090301780043, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSDictionaryConvertible.h" }}
  2969. ,{ "pid":12345, "tid":4, "ts":1718090301780113, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2970. ,{ "pid":12345, "tid":4, "ts":1718090301780245, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/VmStringUtils.cpp" }}
  2971. ,{ "pid":12345, "tid":4, "ts":1718090301780244, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/VmStringUtils.cpp" }}
  2972. ,{ "pid":12345, "tid":4, "ts":1718090301780351, "dur":146, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2973. ,{ "pid":12345, "tid":4, "ts":1718090301780520, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/icalls/mscorlib/System/MathF.h" }}
  2974. ,{ "pid":12345, "tid":4, "ts":1718090301780519, "dur":133, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/icalls/mscorlib/System/MathF.h" }}
  2975. ,{ "pid":12345, "tid":4, "ts":1718090301780652, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2976. ,{ "pid":12345, "tid":4, "ts":1718090301780778, "dur":134, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/Finally.h" }}
  2977. ,{ "pid":12345, "tid":4, "ts":1718090301780777, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/Finally.h" }}
  2978. ,{ "pid":12345, "tid":4, "ts":1718090301780914, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2979. ,{ "pid":12345, "tid":4, "ts":1718090301781037, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/Debugger.cpp" }}
  2980. ,{ "pid":12345, "tid":4, "ts":1718090301781036, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/Debugger.cpp" }}
  2981. ,{ "pid":12345, "tid":4, "ts":1718090301781153, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2982. ,{ "pid":12345, "tid":4, "ts":1718090301781265, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/utf8-cpp/source/utf8.h" }}
  2983. ,{ "pid":12345, "tid":4, "ts":1718090301781264, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/utf8-cpp/source/utf8.h" }}
  2984. ,{ "pid":12345, "tid":4, "ts":1718090301781341, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2985. ,{ "pid":12345, "tid":4, "ts":1718090301781446, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/StringUtils.cpp" }}
  2986. ,{ "pid":12345, "tid":4, "ts":1718090301781444, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/StringUtils.cpp" }}
  2987. ,{ "pid":12345, "tid":4, "ts":1718090301781539, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2988. ,{ "pid":12345, "tid":4, "ts":1718090301781683, "dur":190, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/PathUtils.cpp" }}
  2989. ,{ "pid":12345, "tid":4, "ts":1718090301781664, "dur":212, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/PathUtils.cpp" }}
  2990. ,{ "pid":12345, "tid":4, "ts":1718090301781931, "dur":146, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryUtils.h" }}
  2991. ,{ "pid":12345, "tid":4, "ts":1718090301781930, "dur":148, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryUtils.h" }}
  2992. ,{ "pid":12345, "tid":4, "ts":1718090301782079, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2993. ,{ "pid":12345, "tid":4, "ts":1718090301782157, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryPool.cpp" }}
  2994. ,{ "pid":12345, "tid":4, "ts":1718090301782151, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryPool.cpp" }}
  2995. ,{ "pid":12345, "tid":4, "ts":1718090301782217, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2996. ,{ "pid":12345, "tid":4, "ts":1718090301782298, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MarshalingUtils.h" }}
  2997. ,{ "pid":12345, "tid":4, "ts":1718090301782297, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MarshalingUtils.h" }}
  2998. ,{ "pid":12345, "tid":4, "ts":1718090301782376, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2999. ,{ "pid":12345, "tid":4, "ts":1718090301782491, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Il2CppHashSet.h" }}
  3000. ,{ "pid":12345, "tid":4, "ts":1718090301782489, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Il2CppHashSet.h" }}
  3001. ,{ "pid":12345, "tid":4, "ts":1718090301782556, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3002. ,{ "pid":12345, "tid":4, "ts":1718090301782652, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/ExtendedAtomicTypes.h" }}
  3003. ,{ "pid":12345, "tid":4, "ts":1718090301782651, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/ExtendedAtomicTypes.h" }}
  3004. ,{ "pid":12345, "tid":4, "ts":1718090301782732, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3005. ,{ "pid":12345, "tid":4, "ts":1718090301782828, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Environment.cpp" }}
  3006. ,{ "pid":12345, "tid":4, "ts":1718090301782827, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Environment.cpp" }}
  3007. ,{ "pid":12345, "tid":4, "ts":1718090301782934, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3008. ,{ "pid":12345, "tid":4, "ts":1718090301783031, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/BaselibHandleUtils.h" }}
  3009. ,{ "pid":12345, "tid":4, "ts":1718090301783030, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/BaselibHandleUtils.h" }}
  3010. ,{ "pid":12345, "tid":4, "ts":1718090301783093, "dur":145, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3011. ,{ "pid":12345, "tid":4, "ts":1718090301783243, "dur":124, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/WinRTVector.h" }}
  3012. ,{ "pid":12345, "tid":4, "ts":1718090301783242, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/WinRTVector.h" }}
  3013. ,{ "pid":12345, "tid":4, "ts":1718090301783368, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3014. ,{ "pid":12345, "tid":4, "ts":1718090301783460, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/ReferenceCounter.h" }}
  3015. ,{ "pid":12345, "tid":4, "ts":1718090301783459, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/ReferenceCounter.h" }}
  3016. ,{ "pid":12345, "tid":4, "ts":1718090301783546, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/Environment.cpp" }}
  3017. ,{ "pid":12345, "tid":4, "ts":1718090301783544, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Environment.cpp" }}
  3018. ,{ "pid":12345, "tid":4, "ts":1718090301783607, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3019. ,{ "pid":12345, "tid":4, "ts":1718090301783688, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/WindowsRuntime.cpp" }}
  3020. ,{ "pid":12345, "tid":4, "ts":1718090301783679, "dur":132, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/WindowsRuntime.cpp" }}
  3021. ,{ "pid":12345, "tid":4, "ts":1718090301783811, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3022. ,{ "pid":12345, "tid":4, "ts":1718090301783896, "dur":131, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/ThreadLocalValueImpl.h" }}
  3023. ,{ "pid":12345, "tid":4, "ts":1718090301783895, "dur":132, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/ThreadLocalValueImpl.h" }}
  3024. ,{ "pid":12345, "tid":4, "ts":1718090301784028, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3025. ,{ "pid":12345, "tid":4, "ts":1718090301784106, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/StackTrace.cpp" }}
  3026. ,{ "pid":12345, "tid":4, "ts":1718090301784104, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/StackTrace.cpp" }}
  3027. ,{ "pid":12345, "tid":4, "ts":1718090301784188, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Process.cpp" }}
  3028. ,{ "pid":12345, "tid":4, "ts":1718090301784187, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Process.cpp" }}
  3029. ,{ "pid":12345, "tid":4, "ts":1718090301784269, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3030. ,{ "pid":12345, "tid":4, "ts":1718090301784388, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3031. ,{ "pid":12345, "tid":4, "ts":1718090301784502, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Image.cpp" }}
  3032. ,{ "pid":12345, "tid":4, "ts":1718090301784501, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Image.cpp" }}
  3033. ,{ "pid":12345, "tid":4, "ts":1718090301784567, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3034. ,{ "pid":12345, "tid":4, "ts":1718090301784664, "dur":138, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/DllMain.h" }}
  3035. ,{ "pid":12345, "tid":4, "ts":1718090301784663, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/DllMain.h" }}
  3036. ,{ "pid":12345, "tid":4, "ts":1718090301784803, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3037. ,{ "pid":12345, "tid":4, "ts":1718090301784874, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Console.cpp" }}
  3038. ,{ "pid":12345, "tid":4, "ts":1718090301784872, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Console.cpp" }}
  3039. ,{ "pid":12345, "tid":4, "ts":1718090301784947, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3040. ,{ "pid":12345, "tid":4, "ts":1718090301785063, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3041. ,{ "pid":12345, "tid":4, "ts":1718090301785141, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/SynchronizationContext.h" }}
  3042. ,{ "pid":12345, "tid":4, "ts":1718090301785140, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/SynchronizationContext.h" }}
  3043. ,{ "pid":12345, "tid":4, "ts":1718090301785203, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3044. ,{ "pid":12345, "tid":4, "ts":1718090301785277, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Socket.h" }}
  3045. ,{ "pid":12345, "tid":4, "ts":1718090301785276, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Socket.h" }}
  3046. ,{ "pid":12345, "tid":4, "ts":1718090301785349, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3047. ,{ "pid":12345, "tid":4, "ts":1718090301785433, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Process.h" }}
  3048. ,{ "pid":12345, "tid":4, "ts":1718090301785433, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Process.h" }}
  3049. ,{ "pid":12345, "tid":4, "ts":1718090301785535, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3050. ,{ "pid":12345, "tid":4, "ts":1718090301785600, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Thread.cpp" }}
  3051. ,{ "pid":12345, "tid":4, "ts":1718090301785599, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Thread.cpp" }}
  3052. ,{ "pid":12345, "tid":4, "ts":1718090301785661, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3053. ,{ "pid":12345, "tid":4, "ts":1718090301785737, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Process.cpp" }}
  3054. ,{ "pid":12345, "tid":4, "ts":1718090301785735, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Process.cpp" }}
  3055. ,{ "pid":12345, "tid":4, "ts":1718090301785791, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3056. ,{ "pid":12345, "tid":4, "ts":1718090301785999, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/LastError.cpp" }}
  3057. ,{ "pid":12345, "tid":4, "ts":1718090301785998, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/LastError.cpp" }}
  3058. ,{ "pid":12345, "tid":4, "ts":1718090301786108, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3059. ,{ "pid":12345, "tid":4, "ts":1718090301786168, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Error.h" }}
  3060. ,{ "pid":12345, "tid":4, "ts":1718090301786167, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Error.h" }}
  3061. ,{ "pid":12345, "tid":4, "ts":1718090301786223, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3062. ,{ "pid":12345, "tid":4, "ts":1718090301786317, "dur":144, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/CrashHelpers.cpp" }}
  3063. ,{ "pid":12345, "tid":4, "ts":1718090301786316, "dur":146, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/CrashHelpers.cpp" }}
  3064. ,{ "pid":12345, "tid":4, "ts":1718090301786462, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3065. ,{ "pid":12345, "tid":4, "ts":1718090301786582, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/OSX/SystemCertificates.cpp" }}
  3066. ,{ "pid":12345, "tid":4, "ts":1718090301786581, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/OSX/SystemCertificates.cpp" }}
  3067. ,{ "pid":12345, "tid":4, "ts":1718090301786644, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3068. ,{ "pid":12345, "tid":4, "ts":1718090301786734, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Messages.h" }}
  3069. ,{ "pid":12345, "tid":4, "ts":1718090301786733, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Messages.h" }}
  3070. ,{ "pid":12345, "tid":4, "ts":1718090301786799, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3071. ,{ "pid":12345, "tid":4, "ts":1718090301786879, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Locale.h" }}
  3072. ,{ "pid":12345, "tid":4, "ts":1718090301786878, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Locale.h" }}
  3073. ,{ "pid":12345, "tid":4, "ts":1718090301786951, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3074. ,{ "pid":12345, "tid":4, "ts":1718090301787012, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Image.h" }}
  3075. ,{ "pid":12345, "tid":4, "ts":1718090301787011, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Image.h" }}
  3076. ,{ "pid":12345, "tid":4, "ts":1718090301787193, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3077. ,{ "pid":12345, "tid":4, "ts":1718090301787261, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/SemaphoreImpl.h" }}
  3078. ,{ "pid":12345, "tid":4, "ts":1718090301787260, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/SemaphoreImpl.h" }}
  3079. ,{ "pid":12345, "tid":4, "ts":1718090301787334, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3080. ,{ "pid":12345, "tid":4, "ts":1718090301787402, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/Handle.cpp" }}
  3081. ,{ "pid":12345, "tid":4, "ts":1718090301787400, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/Handle.cpp" }}
  3082. ,{ "pid":12345, "tid":4, "ts":1718090301787461, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3083. ,{ "pid":12345, "tid":4, "ts":1718090301787526, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/CpuInfo.cpp" }}
  3084. ,{ "pid":12345, "tid":4, "ts":1718090301787525, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/CpuInfo.cpp" }}
  3085. ,{ "pid":12345, "tid":4, "ts":1718090301787583, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3086. ,{ "pid":12345, "tid":4, "ts":1718090301787654, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/FastReaderReaderWriterLockImpl.h" }}
  3087. ,{ "pid":12345, "tid":4, "ts":1718090301787653, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/FastReaderReaderWriterLockImpl.h" }}
  3088. ,{ "pid":12345, "tid":4, "ts":1718090301787760, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3089. ,{ "pid":12345, "tid":4, "ts":1718090301787833, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ErrorCodes.h" }}
  3090. ,{ "pid":12345, "tid":4, "ts":1718090301787937, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Emscripten/pal_emscripten.h" }}
  3091. ,{ "pid":12345, "tid":4, "ts":1718090301787935, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Emscripten/pal_emscripten.h" }}
  3092. ,{ "pid":12345, "tid":4, "ts":1718090301788054, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3093. ,{ "pid":12345, "tid":4, "ts":1718090301788151, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ConsoleExtension.h" }}
  3094. ,{ "pid":12345, "tid":4, "ts":1718090301788150, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ConsoleExtension.h" }}
  3095. ,{ "pid":12345, "tid":4, "ts":1718090301788220, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3096. ,{ "pid":12345, "tid":4, "ts":1718090301788338, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_uid.cpp" }}
  3097. ,{ "pid":12345, "tid":4, "ts":1718090301788336, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_uid.cpp" }}
  3098. ,{ "pid":12345, "tid":4, "ts":1718090301788411, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3099. ,{ "pid":12345, "tid":4, "ts":1718090301788484, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_networking.cpp" }}
  3100. ,{ "pid":12345, "tid":4, "ts":1718090301788483, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_networking.cpp" }}
  3101. ,{ "pid":12345, "tid":4, "ts":1718090301788562, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3102. ,{ "pid":12345, "tid":4, "ts":1718090301788644, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/encode.h" }}
  3103. ,{ "pid":12345, "tid":4, "ts":1718090301788643, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/encode.h" }}
  3104. ,{ "pid":12345, "tid":4, "ts":1718090301788718, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3105. ,{ "pid":12345, "tid":4, "ts":1718090301788795, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/static_dict.h" }}
  3106. ,{ "pid":12345, "tid":4, "ts":1718090301788794, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/static_dict.h" }}
  3107. ,{ "pid":12345, "tid":4, "ts":1718090301788865, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3108. ,{ "pid":12345, "tid":4, "ts":1718090301788934, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/metablock_inc.h" }}
  3109. ,{ "pid":12345, "tid":4, "ts":1718090301788933, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/metablock_inc.h" }}
  3110. ,{ "pid":12345, "tid":4, "ts":1718090301789007, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3111. ,{ "pid":12345, "tid":4, "ts":1718090301789099, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/literal_cost.c" }}
  3112. ,{ "pid":12345, "tid":4, "ts":1718090301789098, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/literal_cost.c" }}
  3113. ,{ "pid":12345, "tid":4, "ts":1718090301789195, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3114. ,{ "pid":12345, "tid":4, "ts":1718090301789270, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_longest_match_quickly_inc.h" }}
  3115. ,{ "pid":12345, "tid":4, "ts":1718090301789269, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_longest_match_quickly_inc.h" }}
  3116. ,{ "pid":12345, "tid":4, "ts":1718090301789346, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3117. ,{ "pid":12345, "tid":4, "ts":1718090301789436, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/find_match_length.h" }}
  3118. ,{ "pid":12345, "tid":4, "ts":1718090301789435, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/find_match_length.h" }}
  3119. ,{ "pid":12345, "tid":4, "ts":1718090301789506, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3120. ,{ "pid":12345, "tid":4, "ts":1718090301789595, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/encoder_dict.h" }}
  3121. ,{ "pid":12345, "tid":4, "ts":1718090301789594, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/encoder_dict.h" }}
  3122. ,{ "pid":12345, "tid":4, "ts":1718090301789674, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3123. ,{ "pid":12345, "tid":4, "ts":1718090301789762, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment_two_pass.c" }}
  3124. ,{ "pid":12345, "tid":4, "ts":1718090301789761, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment_two_pass.c" }}
  3125. ,{ "pid":12345, "tid":4, "ts":1718090301789816, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3126. ,{ "pid":12345, "tid":4, "ts":1718090301789884, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/cluster_inc.h" }}
  3127. ,{ "pid":12345, "tid":4, "ts":1718090301789883, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/cluster_inc.h" }}
  3128. ,{ "pid":12345, "tid":4, "ts":1718090301789944, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3129. ,{ "pid":12345, "tid":4, "ts":1718090301790037, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/block_splitter.c" }}
  3130. ,{ "pid":12345, "tid":4, "ts":1718090301790035, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/block_splitter.c" }}
  3131. ,{ "pid":12345, "tid":4, "ts":1718090301790106, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3132. ,{ "pid":12345, "tid":4, "ts":1718090301790173, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references_hq.h" }}
  3133. ,{ "pid":12345, "tid":4, "ts":1718090301790171, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references_hq.h" }}
  3134. ,{ "pid":12345, "tid":4, "ts":1718090301790244, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3135. ,{ "pid":12345, "tid":4, "ts":1718090301790301, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/huffman.h" }}
  3136. ,{ "pid":12345, "tid":4, "ts":1718090301790300, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/huffman.h" }}
  3137. ,{ "pid":12345, "tid":4, "ts":1718090301790364, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3138. ,{ "pid":12345, "tid":4, "ts":1718090301790500, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3139. ,{ "pid":12345, "tid":4, "ts":1718090301790591, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/context.h" }}
  3140. ,{ "pid":12345, "tid":4, "ts":1718090301790581, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/context.h" }}
  3141. ,{ "pid":12345, "tid":4, "ts":1718090301790656, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3142. ,{ "pid":12345, "tid":4, "ts":1718090301790723, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Thread.cpp" }}
  3143. ,{ "pid":12345, "tid":4, "ts":1718090301790722, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Thread.cpp" }}
  3144. ,{ "pid":12345, "tid":4, "ts":1718090301790785, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3145. ,{ "pid":12345, "tid":4, "ts":1718090301790856, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/OSGlobalEnums.h" }}
  3146. ,{ "pid":12345, "tid":4, "ts":1718090301790855, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/OSGlobalEnums.h" }}
  3147. ,{ "pid":12345, "tid":4, "ts":1718090301790954, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/il2cpp-config-platforms.h" }}
  3148. ,{ "pid":12345, "tid":4, "ts":1718090301790953, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/il2cpp-config-platforms.h" }}
  3149. ,{ "pid":12345, "tid":4, "ts":1718090301791012, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3150. ,{ "pid":12345, "tid":4, "ts":1718090301791128, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Environment.cpp" }}
  3151. ,{ "pid":12345, "tid":4, "ts":1718090301791127, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Environment.cpp" }}
  3152. ,{ "pid":12345, "tid":4, "ts":1718090301791187, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3153. ,{ "pid":12345, "tid":4, "ts":1718090301791265, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Allocator.cpp" }}
  3154. ,{ "pid":12345, "tid":4, "ts":1718090301791264, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Allocator.cpp" }}
  3155. ,{ "pid":12345, "tid":4, "ts":1718090301791317, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3156. ,{ "pid":12345, "tid":4, "ts":1718090301791452, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3157. ,{ "pid":12345, "tid":4, "ts":1718090301791558, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/ThreadPoolMonitorThread.h" }}
  3158. ,{ "pid":12345, "tid":4, "ts":1718090301791556, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/ThreadPoolMonitorThread.h" }}
  3159. ,{ "pid":12345, "tid":4, "ts":1718090301791629, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/threadpool-ms.cpp" }}
  3160. ,{ "pid":12345, "tid":4, "ts":1718090301791627, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/threadpool-ms.cpp" }}
  3161. ,{ "pid":12345, "tid":4, "ts":1718090301791681, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3162. ,{ "pid":12345, "tid":4, "ts":1718090301791774, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppTypeHash.h" }}
  3163. ,{ "pid":12345, "tid":4, "ts":1718090301791773, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppTypeHash.h" }}
  3164. ,{ "pid":12345, "tid":4, "ts":1718090301791843, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3165. ,{ "pid":12345, "tid":4, "ts":1718090301791906, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppSignature.cpp" }}
  3166. ,{ "pid":12345, "tid":4, "ts":1718090301791905, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppSignature.cpp" }}
  3167. ,{ "pid":12345, "tid":4, "ts":1718090301791965, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3168. ,{ "pid":12345, "tid":4, "ts":1718090301792036, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericInstHash.cpp" }}
  3169. ,{ "pid":12345, "tid":4, "ts":1718090301792035, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericInstHash.cpp" }}
  3170. ,{ "pid":12345, "tid":4, "ts":1718090301792099, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3171. ,{ "pid":12345, "tid":4, "ts":1718090301792204, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericContextCompare.cpp" }}
  3172. ,{ "pid":12345, "tid":4, "ts":1718090301792203, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericContextCompare.cpp" }}
  3173. ,{ "pid":12345, "tid":4, "ts":1718090301792328, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3174. ,{ "pid":12345, "tid":4, "ts":1718090301792400, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/GenericSharing.cpp" }}
  3175. ,{ "pid":12345, "tid":4, "ts":1718090301792398, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericSharing.cpp" }}
  3176. ,{ "pid":12345, "tid":4, "ts":1718090301792470, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3177. ,{ "pid":12345, "tid":4, "ts":1718090301792562, "dur":103, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/FieldLayout.cpp" }}
  3178. ,{ "pid":12345, "tid":4, "ts":1718090301792561, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/FieldLayout.cpp" }}
  3179. ,{ "pid":12345, "tid":4, "ts":1718090301792666, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3180. ,{ "pid":12345, "tid":4, "ts":1718090301792753, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/ArrayMetadata.cpp" }}
  3181. ,{ "pid":12345, "tid":4, "ts":1718090301792751, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/ArrayMetadata.cpp" }}
  3182. ,{ "pid":12345, "tid":4, "ts":1718090301792822, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3183. ,{ "pid":12345, "tid":4, "ts":1718090301792898, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-sanitizers.h" }}
  3184. ,{ "pid":12345, "tid":4, "ts":1718090301792897, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-sanitizers.h" }}
  3185. ,{ "pid":12345, "tid":4, "ts":1718090301792950, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3186. ,{ "pid":12345, "tid":4, "ts":1718090301793061, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-object-internals.h" }}
  3187. ,{ "pid":12345, "tid":4, "ts":1718090301793060, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-object-internals.h" }}
  3188. ,{ "pid":12345, "tid":4, "ts":1718090301793118, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3189. ,{ "pid":12345, "tid":4, "ts":1718090301793186, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-metadata.h" }}
  3190. ,{ "pid":12345, "tid":4, "ts":1718090301793185, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-metadata.h" }}
  3191. ,{ "pid":12345, "tid":4, "ts":1718090301793253, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3192. ,{ "pid":12345, "tid":4, "ts":1718090301793312, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-benchmark-support.cpp" }}
  3193. ,{ "pid":12345, "tid":4, "ts":1718090301793310, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-benchmark-support.cpp" }}
  3194. ,{ "pid":12345, "tid":4, "ts":1718090301793368, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3195. ,{ "pid":12345, "tid":4, "ts":1718090301793477, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Threading/Semaphore.cpp" }}
  3196. ,{ "pid":12345, "tid":4, "ts":1718090301793476, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Threading/Semaphore.cpp" }}
  3197. ,{ "pid":12345, "tid":4, "ts":1718090301793556, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3198. ,{ "pid":12345, "tid":4, "ts":1718090301793642, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.NetworkInformation/MacOsIPInterfaceProperties.h" }}
  3199. ,{ "pid":12345, "tid":4, "ts":1718090301793640, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.NetworkInformation/MacOsIPInterfaceProperties.h" }}
  3200. ,{ "pid":12345, "tid":4, "ts":1718090301793710, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3201. ,{ "pid":12345, "tid":4, "ts":1718090301793786, "dur":131, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/Stopwatch.h" }}
  3202. ,{ "pid":12345, "tid":4, "ts":1718090301793784, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/Stopwatch.h" }}
  3203. ,{ "pid":12345, "tid":4, "ts":1718090301793918, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3204. ,{ "pid":12345, "tid":4, "ts":1718090301794028, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/Mono.Net.Security/MonoTlsProviderFactory.h" }}
  3205. ,{ "pid":12345, "tid":4, "ts":1718090301794011, "dur":136, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/Mono.Net.Security/MonoTlsProviderFactory.h" }}
  3206. ,{ "pid":12345, "tid":4, "ts":1718090301794147, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3207. ,{ "pid":12345, "tid":4, "ts":1718090301794205, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/ValueType.cpp" }}
  3208. ,{ "pid":12345, "tid":4, "ts":1718090301794204, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/ValueType.cpp" }}
  3209. ,{ "pid":12345, "tid":4, "ts":1718090301794279, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3210. ,{ "pid":12345, "tid":4, "ts":1718090301794394, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeTypeHandle.h" }}
  3211. ,{ "pid":12345, "tid":4, "ts":1718090301794392, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeTypeHandle.h" }}
  3212. ,{ "pid":12345, "tid":4, "ts":1718090301794463, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3213. ,{ "pid":12345, "tid":4, "ts":1718090301794547, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeFieldHandle.cpp" }}
  3214. ,{ "pid":12345, "tid":4, "ts":1718090301794546, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeFieldHandle.cpp" }}
  3215. ,{ "pid":12345, "tid":4, "ts":1718090301794670, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3216. ,{ "pid":12345, "tid":4, "ts":1718090301794791, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/MonoCustomAttrs.cpp" }}
  3217. ,{ "pid":12345, "tid":4, "ts":1718090301794790, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/MonoCustomAttrs.cpp" }}
  3218. ,{ "pid":12345, "tid":4, "ts":1718090301794868, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3219. ,{ "pid":12345, "tid":4, "ts":1718090301794949, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Enum.cpp" }}
  3220. ,{ "pid":12345, "tid":4, "ts":1718090301794948, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Enum.cpp" }}
  3221. ,{ "pid":12345, "tid":4, "ts":1718090301795039, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3222. ,{ "pid":12345, "tid":4, "ts":1718090301795154, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/ConsoleDriver.cpp" }}
  3223. ,{ "pid":12345, "tid":4, "ts":1718090301795152, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/ConsoleDriver.cpp" }}
  3224. ,{ "pid":12345, "tid":4, "ts":1718090301795227, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3225. ,{ "pid":12345, "tid":4, "ts":1718090301795302, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/ArgIterator.h" }}
  3226. ,{ "pid":12345, "tid":4, "ts":1718090301795301, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/ArgIterator.h" }}
  3227. ,{ "pid":12345, "tid":4, "ts":1718090301795369, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3228. ,{ "pid":12345, "tid":4, "ts":1718090301795455, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Timer.cpp" }}
  3229. ,{ "pid":12345, "tid":4, "ts":1718090301795453, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Timer.cpp" }}
  3230. ,{ "pid":12345, "tid":4, "ts":1718090301795528, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3231. ,{ "pid":12345, "tid":4, "ts":1718090301795588, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Mutex.h" }}
  3232. ,{ "pid":12345, "tid":4, "ts":1718090301795588, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Mutex.h" }}
  3233. ,{ "pid":12345, "tid":4, "ts":1718090301795648, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3234. ,{ "pid":12345, "tid":4, "ts":1718090301795750, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Text/Normalization.cpp" }}
  3235. ,{ "pid":12345, "tid":4, "ts":1718090301795749, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Text/Normalization.cpp" }}
  3236. ,{ "pid":12345, "tid":4, "ts":1718090301795832, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3237. ,{ "pid":12345, "tid":4, "ts":1718090301795910, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsIdentity.h" }}
  3238. ,{ "pid":12345, "tid":4, "ts":1718090301795909, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsIdentity.h" }}
  3239. ,{ "pid":12345, "tid":4, "ts":1718090301795982, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3240. ,{ "pid":12345, "tid":4, "ts":1718090301796048, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime/RuntimeImports.cpp" }}
  3241. ,{ "pid":12345, "tid":4, "ts":1718090301796047, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime/RuntimeImports.cpp" }}
  3242. ,{ "pid":12345, "tid":4, "ts":1718090301796133, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3243. ,{ "pid":12345, "tid":4, "ts":1718090301796269, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/MonoMethodMessage.h" }}
  3244. ,{ "pid":12345, "tid":4, "ts":1718090301796266, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/MonoMethodMessage.h" }}
  3245. ,{ "pid":12345, "tid":4, "ts":1718090301796338, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3246. ,{ "pid":12345, "tid":4, "ts":1718090301796422, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Activation/ActivationServices.cpp" }}
  3247. ,{ "pid":12345, "tid":4, "ts":1718090301796420, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Activation/ActivationServices.cpp" }}
  3248. ,{ "pid":12345, "tid":4, "ts":1718090301796515, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3249. ,{ "pid":12345, "tid":4, "ts":1718090301796607, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.CompilerServices/RuntimeHelpers.h" }}
  3250. ,{ "pid":12345, "tid":4, "ts":1718090301796599, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.CompilerServices/RuntimeHelpers.h" }}
  3251. ,{ "pid":12345, "tid":4, "ts":1718090301796696, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3252. ,{ "pid":12345, "tid":4, "ts":1718090301796786, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeMethodInfo.h" }}
  3253. ,{ "pid":12345, "tid":4, "ts":1718090301796784, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeMethodInfo.h" }}
  3254. ,{ "pid":12345, "tid":4, "ts":1718090301796848, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3255. ,{ "pid":12345, "tid":4, "ts":1718090301796950, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeConstructorInfo.h" }}
  3256. ,{ "pid":12345, "tid":4, "ts":1718090301796949, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeConstructorInfo.h" }}
  3257. ,{ "pid":12345, "tid":4, "ts":1718090301797027, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3258. ,{ "pid":12345, "tid":4, "ts":1718090301797112, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/MonoMethod.cpp" }}
  3259. ,{ "pid":12345, "tid":4, "ts":1718090301797111, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/MonoMethod.cpp" }}
  3260. ,{ "pid":12345, "tid":4, "ts":1718090301797194, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3261. ,{ "pid":12345, "tid":4, "ts":1718090301797287, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/EventInfo.h" }}
  3262. ,{ "pid":12345, "tid":4, "ts":1718090301797285, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/EventInfo.h" }}
  3263. ,{ "pid":12345, "tid":4, "ts":1718090301797368, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3264. ,{ "pid":12345, "tid":4, "ts":1718090301797434, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/Assembly.cpp" }}
  3265. ,{ "pid":12345, "tid":4, "ts":1718090301797433, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/Assembly.cpp" }}
  3266. ,{ "pid":12345, "tid":4, "ts":1718090301797518, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3267. ,{ "pid":12345, "tid":4, "ts":1718090301797596, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/RegionInfo.h" }}
  3268. ,{ "pid":12345, "tid":4, "ts":1718090301797594, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/RegionInfo.h" }}
  3269. ,{ "pid":12345, "tid":4, "ts":1718090301797647, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3270. ,{ "pid":12345, "tid":4, "ts":1718090301797776, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3271. ,{ "pid":12345, "tid":4, "ts":1718090301797871, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CalendarData.h" }}
  3272. ,{ "pid":12345, "tid":4, "ts":1718090301797870, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CalendarData.h" }}
  3273. ,{ "pid":12345, "tid":4, "ts":1718090301797955, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3274. ,{ "pid":12345, "tid":4, "ts":1718090301798018, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Diagnostics/StackFrame.cpp" }}
  3275. ,{ "pid":12345, "tid":4, "ts":1718090301798016, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Diagnostics/StackFrame.cpp" }}
  3276. ,{ "pid":12345, "tid":4, "ts":1718090301798129, "dur":139, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/RuntimeMarshal.cpp" }}
  3277. ,{ "pid":12345, "tid":4, "ts":1718090301798128, "dur":141, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/RuntimeMarshal.cpp" }}
  3278. ,{ "pid":12345, "tid":4, "ts":1718090301798309, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono.Unity/UnityTls.h" }}
  3279. ,{ "pid":12345, "tid":4, "ts":1718090301798308, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono.Unity/UnityTls.h" }}
  3280. ,{ "pid":12345, "tid":4, "ts":1718090301798453, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/WriteBarrierValidation.h" }}
  3281. ,{ "pid":12345, "tid":4, "ts":1718090301798451, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/WriteBarrierValidation.h" }}
  3282. ,{ "pid":12345, "tid":4, "ts":1718090301798516, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3283. ,{ "pid":12345, "tid":4, "ts":1718090301798594, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/GCHandle.cpp" }}
  3284. ,{ "pid":12345, "tid":4, "ts":1718090301798593, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/GCHandle.cpp" }}
  3285. ,{ "pid":12345, "tid":4, "ts":1718090301798653, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3286. ,{ "pid":12345, "tid":4, "ts":1718090301798731, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/debugger/il2cpp-api-debugger.h" }}
  3287. ,{ "pid":12345, "tid":4, "ts":1718090301798729, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/debugger/il2cpp-api-debugger.h" }}
  3288. ,{ "pid":12345, "tid":4, "ts":1718090301798825, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3289. ,{ "pid":12345, "tid":4, "ts":1718090301798926, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-il2cpp.cpp" }}
  3290. ,{ "pid":12345, "tid":4, "ts":1718090301798925, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-il2cpp.cpp" }}
  3291. ,{ "pid":12345, "tid":4, "ts":1718090301799018, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3292. ,{ "pid":12345, "tid":4, "ts":1718090301799090, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/uncompr.c" }}
  3293. ,{ "pid":12345, "tid":4, "ts":1718090301799089, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/uncompr.c" }}
  3294. ,{ "pid":12345, "tid":4, "ts":1718090301799158, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3295. ,{ "pid":12345, "tid":4, "ts":1718090301799227, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/inflate.h" }}
  3296. ,{ "pid":12345, "tid":4, "ts":1718090301799225, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inflate.h" }}
  3297. ,{ "pid":12345, "tid":4, "ts":1718090301799306, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3298. ,{ "pid":12345, "tid":4, "ts":1718090301799374, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/gzread.c" }}
  3299. ,{ "pid":12345, "tid":4, "ts":1718090301799367, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/gzread.c" }}
  3300. ,{ "pid":12345, "tid":4, "ts":1718090301799447, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3301. ,{ "pid":12345, "tid":4, "ts":1718090301799523, "dur":147, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/crc32.c" }}
  3302. ,{ "pid":12345, "tid":4, "ts":1718090301799521, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/crc32.c" }}
  3303. ,{ "pid":12345, "tid":4, "ts":1718090301799671, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3304. ,{ "pid":12345, "tid":4, "ts":1718090301799750, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xamarin-android/README" }}
  3305. ,{ "pid":12345, "tid":4, "ts":1718090301799840, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3306. ,{ "pid":12345, "tid":4, "ts":1718090301799924, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/w32subset.h" }}
  3307. ,{ "pid":12345, "tid":4, "ts":1718090301799924, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/w32subset.h" }}
  3308. ,{ "pid":12345, "tid":4, "ts":1718090301800000, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3309. ,{ "pid":12345, "tid":4, "ts":1718090301800062, "dur":127, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/strenc.h" }}
  3310. ,{ "pid":12345, "tid":4, "ts":1718090301800061, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/strenc.h" }}
  3311. ,{ "pid":12345, "tid":4, "ts":1718090301800190, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3312. ,{ "pid":12345, "tid":4, "ts":1718090301800278, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/networking.h" }}
  3313. ,{ "pid":12345, "tid":4, "ts":1718090301800277, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/networking.h" }}
  3314. ,{ "pid":12345, "tid":4, "ts":1718090301800364, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3315. ,{ "pid":12345, "tid":4, "ts":1718090301800454, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/monobitset.c" }}
  3316. ,{ "pid":12345, "tid":4, "ts":1718090301800452, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/monobitset.c" }}
  3317. ,{ "pid":12345, "tid":4, "ts":1718090301800560, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3318. ,{ "pid":12345, "tid":4, "ts":1718090301800632, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-tls-inline.h" }}
  3319. ,{ "pid":12345, "tid":4, "ts":1718090301800630, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-tls-inline.h" }}
  3320. ,{ "pid":12345, "tid":4, "ts":1718090301800719, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3321. ,{ "pid":12345, "tid":4, "ts":1718090301800816, "dur":689, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-state-machine.c" }}
  3322. ,{ "pid":12345, "tid":4, "ts":1718090301800815, "dur":690, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-state-machine.c" }}
  3323. ,{ "pid":12345, "tid":4, "ts":1718090301801506, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3324. ,{ "pid":12345, "tid":4, "ts":1718090301801595, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-coop.c" }}
  3325. ,{ "pid":12345, "tid":4, "ts":1718090301801593, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-coop.c" }}
  3326. ,{ "pid":12345, "tid":4, "ts":1718090301801674, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3327. ,{ "pid":12345, "tid":4, "ts":1718090301801759, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-signal-handler.h" }}
  3328. ,{ "pid":12345, "tid":4, "ts":1718090301801758, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-signal-handler.h" }}
  3329. ,{ "pid":12345, "tid":4, "ts":1718090301801841, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3330. ,{ "pid":12345, "tid":4, "ts":1718090301801929, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-property-hash.c" }}
  3331. ,{ "pid":12345, "tid":4, "ts":1718090301801928, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-property-hash.c" }}
  3332. ,{ "pid":12345, "tid":4, "ts":1718090301802017, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3333. ,{ "pid":12345, "tid":4, "ts":1718090301802099, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-path.c" }}
  3334. ,{ "pid":12345, "tid":4, "ts":1718090301802099, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-path.c" }}
  3335. ,{ "pid":12345, "tid":4, "ts":1718090301802179, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3336. ,{ "pid":12345, "tid":4, "ts":1718090301802276, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-os-mutex.c" }}
  3337. ,{ "pid":12345, "tid":4, "ts":1718090301802275, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-os-mutex.c" }}
  3338. ,{ "pid":12345, "tid":4, "ts":1718090301802356, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3339. ,{ "pid":12345, "tid":4, "ts":1718090301802440, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-mmap-windows-internals.h" }}
  3340. ,{ "pid":12345, "tid":4, "ts":1718090301802438, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-mmap-windows-internals.h" }}
  3341. ,{ "pid":12345, "tid":4, "ts":1718090301802522, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3342. ,{ "pid":12345, "tid":4, "ts":1718090301802600, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-machine.h" }}
  3343. ,{ "pid":12345, "tid":4, "ts":1718090301802599, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-machine.h" }}
  3344. ,{ "pid":12345, "tid":4, "ts":1718090301802689, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3345. ,{ "pid":12345, "tid":4, "ts":1718090301802767, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-log-darwin.c" }}
  3346. ,{ "pid":12345, "tid":4, "ts":1718090301802766, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-log-darwin.c" }}
  3347. ,{ "pid":12345, "tid":4, "ts":1718090301802839, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3348. ,{ "pid":12345, "tid":4, "ts":1718090301802896, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-io-portability.c" }}
  3349. ,{ "pid":12345, "tid":4, "ts":1718090301802895, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-io-portability.c" }}
  3350. ,{ "pid":12345, "tid":4, "ts":1718090301802957, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3351. ,{ "pid":12345, "tid":4, "ts":1718090301803018, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-hwcap-vars.h" }}
  3352. ,{ "pid":12345, "tid":4, "ts":1718090301803017, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-hwcap-vars.h" }}
  3353. ,{ "pid":12345, "tid":4, "ts":1718090301803128, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-error.c" }}
  3354. ,{ "pid":12345, "tid":4, "ts":1718090301803127, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-error.c" }}
  3355. ,{ "pid":12345, "tid":4, "ts":1718090301803189, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3356. ,{ "pid":12345, "tid":4, "ts":1718090301803250, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl-windows-uwp.c" }}
  3357. ,{ "pid":12345, "tid":4, "ts":1718090301803249, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl-windows-uwp.c" }}
  3358. ,{ "pid":12345, "tid":4, "ts":1718090301803311, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3359. ,{ "pid":12345, "tid":4, "ts":1718090301803430, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3360. ,{ "pid":12345, "tid":4, "ts":1718090301803514, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-complex.h" }}
  3361. ,{ "pid":12345, "tid":4, "ts":1718090301803513, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-complex.h" }}
  3362. ,{ "pid":12345, "tid":4, "ts":1718090301803636, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mach-support.h" }}
  3363. ,{ "pid":12345, "tid":4, "ts":1718090301803635, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mach-support.h" }}
  3364. ,{ "pid":12345, "tid":4, "ts":1718090301803702, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3365. ,{ "pid":12345, "tid":4, "ts":1718090301803758, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/lock-free-array-queue.h" }}
  3366. ,{ "pid":12345, "tid":4, "ts":1718090301803758, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/lock-free-array-queue.h" }}
  3367. ,{ "pid":12345, "tid":4, "ts":1718090301803814, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3368. ,{ "pid":12345, "tid":4, "ts":1718090301803878, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/hazard-pointer.h" }}
  3369. ,{ "pid":12345, "tid":4, "ts":1718090301803929, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3370. ,{ "pid":12345, "tid":4, "ts":1718090301804003, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/dtrace.h" }}
  3371. ,{ "pid":12345, "tid":4, "ts":1718090301804002, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/dtrace.h" }}
  3372. ,{ "pid":12345, "tid":4, "ts":1718090301804055, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3373. ,{ "pid":12345, "tid":4, "ts":1718090301804121, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/atomic.c" }}
  3374. ,{ "pid":12345, "tid":4, "ts":1718090301804120, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/atomic.c" }}
  3375. ,{ "pid":12345, "tid":4, "ts":1718090301804179, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3376. ,{ "pid":12345, "tid":4, "ts":1718090301804238, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-simple-nursery.c" }}
  3377. ,{ "pid":12345, "tid":4, "ts":1718090301804237, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-simple-nursery.c" }}
  3378. ,{ "pid":12345, "tid":4, "ts":1718090301804297, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3379. ,{ "pid":12345, "tid":4, "ts":1718090301804374, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-pointer-queue.h" }}
  3380. ,{ "pid":12345, "tid":4, "ts":1718090301804374, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-pointer-queue.h" }}
  3381. ,{ "pid":12345, "tid":4, "ts":1718090301804459, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3382. ,{ "pid":12345, "tid":4, "ts":1718090301804544, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-minor-copy-object.h" }}
  3383. ,{ "pid":12345, "tid":4, "ts":1718090301804542, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-minor-copy-object.h" }}
  3384. ,{ "pid":12345, "tid":4, "ts":1718090301804610, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3385. ,{ "pid":12345, "tid":4, "ts":1718090301804692, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-layout-stats.h" }}
  3386. ,{ "pid":12345, "tid":4, "ts":1718090301804690, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-layout-stats.h" }}
  3387. ,{ "pid":12345, "tid":4, "ts":1718090301804764, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3388. ,{ "pid":12345, "tid":4, "ts":1718090301804868, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-gchandles.c" }}
  3389. ,{ "pid":12345, "tid":4, "ts":1718090301804867, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-gchandles.c" }}
  3390. ,{ "pid":12345, "tid":4, "ts":1718090301805004, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-copy-object.h" }}
  3391. ,{ "pid":12345, "tid":4, "ts":1718090301805002, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-copy-object.h" }}
  3392. ,{ "pid":12345, "tid":4, "ts":1718090301805060, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3393. ,{ "pid":12345, "tid":4, "ts":1718090301805125, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-archdep.h" }}
  3394. ,{ "pid":12345, "tid":4, "ts":1718090301805124, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-archdep.h" }}
  3395. ,{ "pid":12345, "tid":4, "ts":1718090301805181, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3396. ,{ "pid":12345, "tid":4, "ts":1718090301805242, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/debugger-engine.h" }}
  3397. ,{ "pid":12345, "tid":4, "ts":1718090301805241, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/debugger-engine.h" }}
  3398. ,{ "pid":12345, "tid":4, "ts":1718090301805293, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3399. ,{ "pid":12345, "tid":4, "ts":1718090301805359, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32socket-win32.c" }}
  3400. ,{ "pid":12345, "tid":4, "ts":1718090301805358, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32socket-win32.c" }}
  3401. ,{ "pid":12345, "tid":4, "ts":1718090301805423, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3402. ,{ "pid":12345, "tid":4, "ts":1718090301805484, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process.c" }}
  3403. ,{ "pid":12345, "tid":4, "ts":1718090301805483, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process.c" }}
  3404. ,{ "pid":12345, "tid":4, "ts":1718090301805553, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3405. ,{ "pid":12345, "tid":4, "ts":1718090301805657, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-internals.h" }}
  3406. ,{ "pid":12345, "tid":4, "ts":1718090301805655, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-internals.h" }}
  3407. ,{ "pid":12345, "tid":4, "ts":1718090301805725, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3408. ,{ "pid":12345, "tid":4, "ts":1718090301805805, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32handle-namespace.c" }}
  3409. ,{ "pid":12345, "tid":4, "ts":1718090301805804, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32handle-namespace.c" }}
  3410. ,{ "pid":12345, "tid":4, "ts":1718090301805895, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3411. ,{ "pid":12345, "tid":4, "ts":1718090301805985, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file-unix-glob.c" }}
  3412. ,{ "pid":12345, "tid":4, "ts":1718090301805983, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file-unix-glob.c" }}
  3413. ,{ "pid":12345, "tid":4, "ts":1718090301806066, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3414. ,{ "pid":12345, "tid":4, "ts":1718090301806155, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32error-unix.c" }}
  3415. ,{ "pid":12345, "tid":4, "ts":1718090301806154, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32error-unix.c" }}
  3416. ,{ "pid":12345, "tid":4, "ts":1718090301806250, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3417. ,{ "pid":12345, "tid":4, "ts":1718090301806343, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/unity-icall.c" }}
  3418. ,{ "pid":12345, "tid":4, "ts":1718090301806342, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/unity-icall.c" }}
  3419. ,{ "pid":12345, "tid":4, "ts":1718090301806434, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3420. ,{ "pid":12345, "tid":4, "ts":1718090301806525, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threadpool-worker.h" }}
  3421. ,{ "pid":12345, "tid":4, "ts":1718090301806524, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threadpool-worker.h" }}
  3422. ,{ "pid":12345, "tid":4, "ts":1718090301806605, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3423. ,{ "pid":12345, "tid":4, "ts":1718090301806690, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/string-icalls.h" }}
  3424. ,{ "pid":12345, "tid":4, "ts":1718090301806689, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/string-icalls.h" }}
  3425. ,{ "pid":12345, "tid":4, "ts":1718090301806770, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3426. ,{ "pid":12345, "tid":4, "ts":1718090301806856, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-toggleref.c" }}
  3427. ,{ "pid":12345, "tid":4, "ts":1718090301806854, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-toggleref.c" }}
  3428. ,{ "pid":12345, "tid":4, "ts":1718090301806934, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3429. ,{ "pid":12345, "tid":4, "ts":1718090301807048, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-bridge.h" }}
  3430. ,{ "pid":12345, "tid":4, "ts":1718090301807047, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-bridge.h" }}
  3431. ,{ "pid":12345, "tid":4, "ts":1718090301807134, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3432. ,{ "pid":12345, "tid":4, "ts":1718090301807229, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/security-manager.c" }}
  3433. ,{ "pid":12345, "tid":4, "ts":1718090301807227, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/security-manager.c" }}
  3434. ,{ "pid":12345, "tid":4, "ts":1718090301807315, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3435. ,{ "pid":12345, "tid":4, "ts":1718090301807400, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/remoting.c" }}
  3436. ,{ "pid":12345, "tid":4, "ts":1718090301807398, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/remoting.c" }}
  3437. ,{ "pid":12345, "tid":4, "ts":1718090301807490, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3438. ,{ "pid":12345, "tid":4, "ts":1718090301807585, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/property-bag.h" }}
  3439. ,{ "pid":12345, "tid":4, "ts":1718090301807583, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/property-bag.h" }}
  3440. ,{ "pid":12345, "tid":4, "ts":1718090301807650, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3441. ,{ "pid":12345, "tid":4, "ts":1718090301807752, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/private/threadpool-io-poll.c" }}
  3442. ,{ "pid":12345, "tid":4, "ts":1718090301807750, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/private/threadpool-io-poll.c" }}
  3443. ,{ "pid":12345, "tid":4, "ts":1718090301807832, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3444. ,{ "pid":12345, "tid":4, "ts":1718090301807931, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/object-offsets.h" }}
  3445. ,{ "pid":12345, "tid":4, "ts":1718090301807929, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/object-offsets.h" }}
  3446. ,{ "pid":12345, "tid":4, "ts":1718090301808009, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3447. ,{ "pid":12345, "tid":4, "ts":1718090301808101, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/null-gc-handles.h" }}
  3448. ,{ "pid":12345, "tid":4, "ts":1718090301808100, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/null-gc-handles.h" }}
  3449. ,{ "pid":12345, "tid":4, "ts":1718090301808185, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3450. ,{ "pid":12345, "tid":4, "ts":1718090301808247, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-ptr-array.h" }}
  3451. ,{ "pid":12345, "tid":4, "ts":1718090301808246, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-ptr-array.h" }}
  3452. ,{ "pid":12345, "tid":4, "ts":1718090301808342, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3453. ,{ "pid":12345, "tid":4, "ts":1718090301808428, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-hash-internals.h" }}
  3454. ,{ "pid":12345, "tid":4, "ts":1718090301808427, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-hash-internals.h" }}
  3455. ,{ "pid":12345, "tid":4, "ts":1718090301808510, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3456. ,{ "pid":12345, "tid":4, "ts":1718090301808598, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-config.h" }}
  3457. ,{ "pid":12345, "tid":4, "ts":1718090301808597, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-config.h" }}
  3458. ,{ "pid":12345, "tid":4, "ts":1718090301808668, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3459. ,{ "pid":12345, "tid":4, "ts":1718090301808758, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-basic-block.c" }}
  3460. ,{ "pid":12345, "tid":4, "ts":1718090301808757, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-basic-block.c" }}
  3461. ,{ "pid":12345, "tid":4, "ts":1718090301808824, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3462. ,{ "pid":12345, "tid":4, "ts":1718090301808920, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/metadata-verify.c" }}
  3463. ,{ "pid":12345, "tid":4, "ts":1718090301808918, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/metadata-verify.c" }}
  3464. ,{ "pid":12345, "tid":4, "ts":1718090301809028, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3465. ,{ "pid":12345, "tid":4, "ts":1718090301809129, "dur":103, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/marshal.c" }}
  3466. ,{ "pid":12345, "tid":4, "ts":1718090301809128, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/marshal.c" }}
  3467. ,{ "pid":12345, "tid":4, "ts":1718090301809233, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3468. ,{ "pid":12345, "tid":4, "ts":1718090301809339, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/locales.c" }}
  3469. ,{ "pid":12345, "tid":4, "ts":1718090301809337, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/locales.c" }}
  3470. ,{ "pid":12345, "tid":4, "ts":1718090301809439, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3471. ,{ "pid":12345, "tid":4, "ts":1718090301809549, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/image.c" }}
  3472. ,{ "pid":12345, "tid":4, "ts":1718090301809547, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/image.c" }}
  3473. ,{ "pid":12345, "tid":4, "ts":1718090301809649, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3474. ,{ "pid":12345, "tid":4, "ts":1718090301809768, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/icall-def.h" }}
  3475. ,{ "pid":12345, "tid":4, "ts":1718090301809767, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/icall-def.h" }}
  3476. ,{ "pid":12345, "tid":4, "ts":1718090301809868, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3477. ,{ "pid":12345, "tid":4, "ts":1718090301809953, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/filewatcher.h" }}
  3478. ,{ "pid":12345, "tid":4, "ts":1718090301809952, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/filewatcher.h" }}
  3479. ,{ "pid":12345, "tid":4, "ts":1718090301810039, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3480. ,{ "pid":12345, "tid":4, "ts":1718090301810139, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/exception.h" }}
  3481. ,{ "pid":12345, "tid":4, "ts":1718090301810138, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/exception.h" }}
  3482. ,{ "pid":12345, "tid":4, "ts":1718090301810233, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3483. ,{ "pid":12345, "tid":4, "ts":1718090301810340, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/dynamic-image-internals.h" }}
  3484. ,{ "pid":12345, "tid":4, "ts":1718090301810339, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/dynamic-image-internals.h" }}
  3485. ,{ "pid":12345, "tid":4, "ts":1718090301810401, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3486. ,{ "pid":12345, "tid":4, "ts":1718090301810518, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/debug-mono-ppdb.c" }}
  3487. ,{ "pid":12345, "tid":4, "ts":1718090301810516, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/debug-mono-ppdb.c" }}
  3488. ,{ "pid":12345, "tid":4, "ts":1718090301810579, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3489. ,{ "pid":12345, "tid":4, "ts":1718090301810673, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/culture-info-tables.h" }}
  3490. ,{ "pid":12345, "tid":4, "ts":1718090301810671, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/culture-info-tables.h" }}
  3491. ,{ "pid":12345, "tid":4, "ts":1718090301810741, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3492. ,{ "pid":12345, "tid":4, "ts":1718090301810825, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/console-io.h" }}
  3493. ,{ "pid":12345, "tid":4, "ts":1718090301810824, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/console-io.h" }}
  3494. ,{ "pid":12345, "tid":4, "ts":1718090301810897, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3495. ,{ "pid":12345, "tid":4, "ts":1718090301810960, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/class-private-definition.h" }}
  3496. ,{ "pid":12345, "tid":4, "ts":1718090301810958, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class-private-definition.h" }}
  3497. ,{ "pid":12345, "tid":4, "ts":1718090301811035, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3498. ,{ "pid":12345, "tid":4, "ts":1718090301811127, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/boehm-gc.c" }}
  3499. ,{ "pid":12345, "tid":4, "ts":1718090301811125, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/boehm-gc.c" }}
  3500. ,{ "pid":12345, "tid":4, "ts":1718090301811207, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3501. ,{ "pid":12345, "tid":4, "ts":1718090301811329, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/appdomain.c" }}
  3502. ,{ "pid":12345, "tid":4, "ts":1718090301811328, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/appdomain.c" }}
  3503. ,{ "pid":12345, "tid":4, "ts":1718090301811415, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3504. ,{ "pid":12345, "tid":4, "ts":1718090301811540, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gunicode-win32.c" }}
  3505. ,{ "pid":12345, "tid":4, "ts":1718090301811539, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gunicode-win32.c" }}
  3506. ,{ "pid":12345, "tid":4, "ts":1718090301811621, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3507. ,{ "pid":12345, "tid":4, "ts":1718090301811694, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gqueue.c" }}
  3508. ,{ "pid":12345, "tid":4, "ts":1718090301811692, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gqueue.c" }}
  3509. ,{ "pid":12345, "tid":4, "ts":1718090301811766, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3510. ,{ "pid":12345, "tid":4, "ts":1718090301811849, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gmisc-unity.c" }}
  3511. ,{ "pid":12345, "tid":4, "ts":1718090301811847, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gmisc-unity.c" }}
  3512. ,{ "pid":12345, "tid":4, "ts":1718090301811922, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3513. ,{ "pid":12345, "tid":4, "ts":1718090301812000, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gfile.c" }}
  3514. ,{ "pid":12345, "tid":4, "ts":1718090301811999, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gfile.c" }}
  3515. ,{ "pid":12345, "tid":4, "ts":1718090301812075, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3516. ,{ "pid":12345, "tid":4, "ts":1718090301812169, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/eglib-remap.h" }}
  3517. ,{ "pid":12345, "tid":4, "ts":1718090301812167, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/eglib-remap.h" }}
  3518. ,{ "pid":12345, "tid":4, "ts":1718090301812256, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3519. ,{ "pid":12345, "tid":4, "ts":1718090301812338, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/arch/arm/arm-vfp-codegen.h" }}
  3520. ,{ "pid":12345, "tid":4, "ts":1718090301812337, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/arch/arm/arm-vfp-codegen.h" }}
  3521. ,{ "pid":12345, "tid":4, "ts":1718090301812416, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3522. ,{ "pid":12345, "tid":4, "ts":1718090301812477, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/sparse_hash_map.h" }}
  3523. ,{ "pid":12345, "tid":4, "ts":1718090301812475, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/sparse_hash_map.h" }}
  3524. ,{ "pid":12345, "tid":4, "ts":1718090301812540, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3525. ,{ "pid":12345, "tid":4, "ts":1718090301812605, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/internal/hashtable-common.h" }}
  3526. ,{ "pid":12345, "tid":4, "ts":1718090301812604, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/internal/hashtable-common.h" }}
  3527. ,{ "pid":12345, "tid":4, "ts":1718090301812663, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3528. ,{ "pid":12345, "tid":4, "ts":1718090301812778, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tools/threadlibs.c" }}
  3529. ,{ "pid":12345, "tid":4, "ts":1718090301812776, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tools/threadlibs.c" }}
  3530. ,{ "pid":12345, "tid":4, "ts":1718090301812863, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3531. ,{ "pid":12345, "tid":4, "ts":1718090301812940, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/threadkey_test.c" }}
  3532. ,{ "pid":12345, "tid":4, "ts":1718090301812938, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/threadkey_test.c" }}
  3533. ,{ "pid":12345, "tid":4, "ts":1718090301813027, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3534. ,{ "pid":12345, "tid":4, "ts":1718090301813113, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/realloc_test.c" }}
  3535. ,{ "pid":12345, "tid":4, "ts":1718090301813111, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/realloc_test.c" }}
  3536. ,{ "pid":12345, "tid":4, "ts":1718090301813191, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3537. ,{ "pid":12345, "tid":4, "ts":1718090301813281, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/specific.c" }}
  3538. ,{ "pid":12345, "tid":4, "ts":1718090301813280, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/specific.c" }}
  3539. ,{ "pid":12345, "tid":4, "ts":1718090301813364, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3540. ,{ "pid":12345, "tid":4, "ts":1718090301813473, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/os_dep.c" }}
  3541. ,{ "pid":12345, "tid":4, "ts":1718090301813472, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/os_dep.c" }}
  3542. ,{ "pid":12345, "tid":4, "ts":1718090301813566, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3543. ,{ "pid":12345, "tid":4, "ts":1718090301813642, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/mach_dep.c" }}
  3544. ,{ "pid":12345, "tid":4, "ts":1718090301813641, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/mach_dep.c" }}
  3545. ,{ "pid":12345, "tid":4, "ts":1718090301813725, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3546. ,{ "pid":12345, "tid":4, "ts":1718090301813817, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ordered_except_wr.h" }}
  3547. ,{ "pid":12345, "tid":4, "ts":1718090301813815, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ordered_except_wr.h" }}
  3548. ,{ "pid":12345, "tid":4, "ts":1718090301813877, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3549. ,{ "pid":12345, "tid":4, "ts":1718090301813959, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/short_atomic_load.h" }}
  3550. ,{ "pid":12345, "tid":4, "ts":1718090301813957, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/short_atomic_load.h" }}
  3551. ,{ "pid":12345, "tid":4, "ts":1718090301814027, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3552. ,{ "pid":12345, "tid":4, "ts":1718090301814135, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/double_atomic_load_store.h" }}
  3553. ,{ "pid":12345, "tid":4, "ts":1718090301814133, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/double_atomic_load_store.h" }}
  3554. ,{ "pid":12345, "tid":4, "ts":1718090301814215, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3555. ,{ "pid":12345, "tid":4, "ts":1718090301814295, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/acquire_release_volatile.h" }}
  3556. ,{ "pid":12345, "tid":4, "ts":1718090301814293, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/acquire_release_volatile.h" }}
  3557. ,{ "pid":12345, "tid":4, "ts":1718090301814354, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3558. ,{ "pid":12345, "tid":4, "ts":1718090301814455, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/sh.h" }}
  3559. ,{ "pid":12345, "tid":4, "ts":1718090301814452, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/sh.h" }}
  3560. ,{ "pid":12345, "tid":4, "ts":1718090301814516, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3561. ,{ "pid":12345, "tid":4, "ts":1718090301814609, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/hppa.h" }}
  3562. ,{ "pid":12345, "tid":4, "ts":1718090301814607, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/hppa.h" }}
  3563. ,{ "pid":12345, "tid":4, "ts":1718090301814679, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3564. ,{ "pid":12345, "tid":4, "ts":1718090301814792, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/alpha.h" }}
  3565. ,{ "pid":12345, "tid":4, "ts":1718090301814791, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/alpha.h" }}
  3566. ,{ "pid":12345, "tid":4, "ts":1718090301814864, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3567. ,{ "pid":12345, "tid":4, "ts":1718090301814978, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_aligned_atomic_load_store.h" }}
  3568. ,{ "pid":12345, "tid":4, "ts":1718090301814976, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_aligned_atomic_load_store.h" }}
  3569. ,{ "pid":12345, "tid":4, "ts":1718090301815058, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3570. ,{ "pid":12345, "tid":4, "ts":1718090301815147, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops.c" }}
  3571. ,{ "pid":12345, "tid":4, "ts":1718090301815146, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops.c" }}
  3572. ,{ "pid":12345, "tid":4, "ts":1718090301815225, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3573. ,{ "pid":12345, "tid":4, "ts":1718090301815300, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/thread_local_alloc.h" }}
  3574. ,{ "pid":12345, "tid":4, "ts":1718090301815298, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/thread_local_alloc.h" }}
  3575. ,{ "pid":12345, "tid":4, "ts":1718090301815392, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3576. ,{ "pid":12345, "tid":4, "ts":1718090301815473, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/gc_locks.h" }}
  3577. ,{ "pid":12345, "tid":4, "ts":1718090301815471, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/gc_locks.h" }}
  3578. ,{ "pid":12345, "tid":4, "ts":1718090301815559, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3579. ,{ "pid":12345, "tid":4, "ts":1718090301815767, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Services.Core.dll" }}
  3580. ,{ "pid":12345, "tid":4, "ts":1718090301815865, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.BuildTools.dll" }}
  3581. ,{ "pid":12345, "tid":4, "ts":1718090301815765, "dur":432, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core-FeaturesChecked.txt" }}
  3582. ,{ "pid":12345, "tid":4, "ts":1718090301816239, "dur":290, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.WinRTCore-FeaturesChecked.txt" }}
  3583. ,{ "pid":12345, "tid":4, "ts":1718090301816572, "dur":325, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Data-FeaturesChecked.txt" }}
  3584. ,{ "pid":12345, "tid":4, "ts":1718090301816941, "dur":393, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Assembly-CSharp-FeaturesChecked.txt" }}
  3585. ,{ "pid":12345, "tid":4, "ts":1718090301817395, "dur":305, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.UnityWebRequestModule-FeaturesChecked.txt" }}
  3586. ,{ "pid":12345, "tid":4, "ts":1718090301817774, "dur":412, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/I18N.West-FeaturesChecked.txt" }}
  3587. ,{ "pid":12345, "tid":4, "ts":1718090301818227, "dur":305, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.TextRenderingModule-FeaturesChecked.txt" }}
  3588. ,{ "pid":12345, "tid":4, "ts":1718090301818577, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Services.Core.Telemetry.dll" }}
  3589. ,{ "pid":12345, "tid":4, "ts":1718090301818576, "dur":355, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Telemetry-FeaturesChecked.txt" }}
  3590. ,{ "pid":12345, "tid":4, "ts":1718090301818932, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3591. ,{ "pid":12345, "tid":4, "ts":1718090301819003, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.CoreModule.dll" }}
  3592. ,{ "pid":12345, "tid":4, "ts":1718090301819002, "dur":306, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.CoreModule-FeaturesChecked.txt" }}
  3593. ,{ "pid":12345, "tid":4, "ts":1718090301819365, "dur":398, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.PropertiesModule-FeaturesChecked.txt" }}
  3594. ,{ "pid":12345, "tid":4, "ts":1718090301819813, "dur":511, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.TextMeshPro-FeaturesChecked.txt" }}
  3595. ,{ "pid":12345, "tid":4, "ts":1718090301820324, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3596. ,{ "pid":12345, "tid":4, "ts":1718090301820410, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_version.h" }}
  3597. ,{ "pid":12345, "tid":4, "ts":1718090301820408, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_version.h" }}
  3598. ,{ "pid":12345, "tid":4, "ts":1718090301820468, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3599. ,{ "pid":12345, "tid":4, "ts":1718090301820574, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_tiny_fl.h" }}
  3600. ,{ "pid":12345, "tid":4, "ts":1718090301820572, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_tiny_fl.h" }}
  3601. ,{ "pid":12345, "tid":4, "ts":1718090301820635, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3602. ,{ "pid":12345, "tid":4, "ts":1718090301820724, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_inline.h" }}
  3603. ,{ "pid":12345, "tid":4, "ts":1718090301820723, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_inline.h" }}
  3604. ,{ "pid":12345, "tid":4, "ts":1718090301820895, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3605. ,{ "pid":12345, "tid":4, "ts":1718090301820972, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_allocator.h" }}
  3606. ,{ "pid":12345, "tid":4, "ts":1718090301820971, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_allocator.h" }}
  3607. ,{ "pid":12345, "tid":4, "ts":1718090301821065, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3608. ,{ "pid":12345, "tid":4, "ts":1718090301821152, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/cord.h" }}
  3609. ,{ "pid":12345, "tid":4, "ts":1718090301821151, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/cord.h" }}
  3610. ,{ "pid":12345, "tid":4, "ts":1718090301821249, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3611. ,{ "pid":12345, "tid":4, "ts":1718090301821335, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/fnlz_mlc.c" }}
  3612. ,{ "pid":12345, "tid":4, "ts":1718090301821334, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/fnlz_mlc.c" }}
  3613. ,{ "pid":12345, "tid":4, "ts":1718090301821427, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3614. ,{ "pid":12345, "tid":4, "ts":1718090301821511, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/extra/Mac_files/MacOS_config.h" }}
  3615. ,{ "pid":12345, "tid":4, "ts":1718090301821509, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/extra/Mac_files/MacOS_config.h" }}
  3616. ,{ "pid":12345, "tid":4, "ts":1718090301821586, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3617. ,{ "pid":12345, "tid":4, "ts":1718090301821682, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/extra/gc.c" }}
  3618. ,{ "pid":12345, "tid":4, "ts":1718090301821680, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/extra/gc.c" }}
  3619. ,{ "pid":12345, "tid":4, "ts":1718090301821747, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3620. ,{ "pid":12345, "tid":4, "ts":1718090301821815, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/darwin_stop_world.c" }}
  3621. ,{ "pid":12345, "tid":4, "ts":1718090301821813, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/darwin_stop_world.c" }}
  3622. ,{ "pid":12345, "tid":4, "ts":1718090301821896, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3623. ,{ "pid":12345, "tid":4, "ts":1718090301821994, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/cord/cordxtra.c" }}
  3624. ,{ "pid":12345, "tid":4, "ts":1718090301821992, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/cord/cordxtra.c" }}
  3625. ,{ "pid":12345, "tid":4, "ts":1718090301822067, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3626. ,{ "pid":12345, "tid":4, "ts":1718090301822155, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/alloc.c" }}
  3627. ,{ "pid":12345, "tid":4, "ts":1718090301822153, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/alloc.c" }}
  3628. ,{ "pid":12345, "tid":4, "ts":1718090301822256, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3629. ,{ "pid":12345, "tid":4, "ts":1718090301822355, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/WindowsGames/Include/BaselibPlatformSpecificEnvironment.h" }}
  3630. ,{ "pid":12345, "tid":4, "ts":1718090301822353, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/WindowsGames/Include/BaselibPlatformSpecificEnvironment.h" }}
  3631. ,{ "pid":12345, "tid":4, "ts":1718090301822464, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3632. ,{ "pid":12345, "tid":4, "ts":1718090301822567, "dur":140, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/WebGL/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  3633. ,{ "pid":12345, "tid":4, "ts":1718090301822565, "dur":142, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/WebGL/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  3634. ,{ "pid":12345, "tid":4, "ts":1718090301822708, "dur":208, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3635. ,{ "pid":12345, "tid":4, "ts":1718090301822926, "dur":179, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/VisionOS/Include/C/Baselib_FileIO.inl.h" }}
  3636. ,{ "pid":12345, "tid":4, "ts":1718090301822924, "dur":182, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/VisionOS/Include/C/Baselib_FileIO.inl.h" }}
  3637. ,{ "pid":12345, "tid":4, "ts":1718090301823107, "dur":190, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3638. ,{ "pid":12345, "tid":4, "ts":1718090301823304, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/UniversalWindows/Include/C/Baselib_ErrorState.inl.h" }}
  3639. ,{ "pid":12345, "tid":4, "ts":1718090301823303, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/UniversalWindows/Include/C/Baselib_ErrorState.inl.h" }}
  3640. ,{ "pid":12345, "tid":4, "ts":1718090301823397, "dur":260, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3641. ,{ "pid":12345, "tid":4, "ts":1718090301823668, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Tvos/Include/C/Baselib_ErrorState.inl.h" }}
  3642. ,{ "pid":12345, "tid":4, "ts":1718090301823666, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Tvos/Include/C/Baselib_ErrorState.inl.h" }}
  3643. ,{ "pid":12345, "tid":4, "ts":1718090301823799, "dur":241, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3644. ,{ "pid":12345, "tid":4, "ts":1718090301824048, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/OSX/Include/C/Baselib_ErrorState.inl.h" }}
  3645. ,{ "pid":12345, "tid":4, "ts":1718090301824046, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/OSX/Include/C/Baselib_ErrorState.inl.h" }}
  3646. ,{ "pid":12345, "tid":4, "ts":1718090301824125, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3647. ,{ "pid":12345, "tid":4, "ts":1718090301824293, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Linux/Include/BaselibPlatformSpecificEnvironment.h" }}
  3648. ,{ "pid":12345, "tid":4, "ts":1718090301824290, "dur":141, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Linux/Include/BaselibPlatformSpecificEnvironment.h" }}
  3649. ,{ "pid":12345, "tid":4, "ts":1718090301824431, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3650. ,{ "pid":12345, "tid":4, "ts":1718090301824510, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/EmbeddedLinux/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  3651. ,{ "pid":12345, "tid":4, "ts":1718090301824508, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/EmbeddedLinux/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  3652. ,{ "pid":12345, "tid":4, "ts":1718090301824576, "dur":178, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3653. ,{ "pid":12345, "tid":4, "ts":1718090301824760, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Android/Include/C/Baselib_FileIO.inl.h" }}
  3654. ,{ "pid":12345, "tid":4, "ts":1718090301824759, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Android/Include/C/Baselib_FileIO.inl.h" }}
  3655. ,{ "pid":12345, "tid":4, "ts":1718090301824849, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3656. ,{ "pid":12345, "tid":4, "ts":1718090301824964, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/VerifyPlatformEnvironment.h" }}
  3657. ,{ "pid":12345, "tid":4, "ts":1718090301824962, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/VerifyPlatformEnvironment.h" }}
  3658. ,{ "pid":12345, "tid":4, "ts":1718090301825071, "dur":175, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3659. ,{ "pid":12345, "tid":4, "ts":1718090301825255, "dur":140, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/CoreMacros.h" }}
  3660. ,{ "pid":12345, "tid":4, "ts":1718090301825254, "dur":142, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/CoreMacros.h" }}
  3661. ,{ "pid":12345, "tid":4, "ts":1718090301825397, "dur":171, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3662. ,{ "pid":12345, "tid":4, "ts":1718090301825575, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/ArchitectureDetection.h" }}
  3663. ,{ "pid":12345, "tid":4, "ts":1718090301825573, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/ArchitectureDetection.h" }}
  3664. ,{ "pid":12345, "tid":4, "ts":1718090301825698, "dur":144, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3665. ,{ "pid":12345, "tid":4, "ts":1718090301825855, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/tlsf_allocator.h" }}
  3666. ,{ "pid":12345, "tid":4, "ts":1718090301825852, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/tlsf_allocator.h" }}
  3667. ,{ "pid":12345, "tid":4, "ts":1718090301825931, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3668. ,{ "pid":12345, "tid":4, "ts":1718090301826062, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/ReentrantLock.h" }}
  3669. ,{ "pid":12345, "tid":4, "ts":1718090301826061, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/ReentrantLock.h" }}
  3670. ,{ "pid":12345, "tid":4, "ts":1718090301826171, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3671. ,{ "pid":12345, "tid":4, "ts":1718090301826253, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/mpmc_node.h" }}
  3672. ,{ "pid":12345, "tid":4, "ts":1718090301826252, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/mpmc_node.h" }}
  3673. ,{ "pid":12345, "tid":4, "ts":1718090301826347, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3674. ,{ "pid":12345, "tid":4, "ts":1718090301826413, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/page_allocator.inl.h" }}
  3675. ,{ "pid":12345, "tid":4, "ts":1718090301826411, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/page_allocator.inl.h" }}
  3676. ,{ "pid":12345, "tid":4, "ts":1718090301826488, "dur":185, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3677. ,{ "pid":12345, "tid":4, "ts":1718090301826695, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/Compiler/Msvc/AlgorithmMsvc.inl.h" }}
  3678. ,{ "pid":12345, "tid":4, "ts":1718090301826693, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/Compiler/Msvc/AlgorithmMsvc.inl.h" }}
  3679. ,{ "pid":12345, "tid":4, "ts":1718090301826789, "dur":141, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3680. ,{ "pid":12345, "tid":4, "ts":1718090301826936, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/EventSemaphore.h" }}
  3681. ,{ "pid":12345, "tid":4, "ts":1718090301826935, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/EventSemaphore.h" }}
  3682. ,{ "pid":12345, "tid":4, "ts":1718090301827059, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3683. ,{ "pid":12345, "tid":4, "ts":1718090301827140, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Barrier.h" }}
  3684. ,{ "pid":12345, "tid":4, "ts":1718090301827139, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Barrier.h" }}
  3685. ,{ "pid":12345, "tid":4, "ts":1718090301827241, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3686. ,{ "pid":12345, "tid":4, "ts":1718090301827374, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_LLSC_Gcc.inl.h" }}
  3687. ,{ "pid":12345, "tid":4, "ts":1718090301827372, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_LLSC_Gcc.inl.h" }}
  3688. ,{ "pid":12345, "tid":4, "ts":1718090301827440, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3689. ,{ "pid":12345, "tid":4, "ts":1718090301827541, "dur":129, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_ReentrantLock.inl.h" }}
  3690. ,{ "pid":12345, "tid":4, "ts":1718090301827539, "dur":132, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_ReentrantLock.inl.h" }}
  3691. ,{ "pid":12345, "tid":4, "ts":1718090301827671, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3692. ,{ "pid":12345, "tid":4, "ts":1718090301827751, "dur":135, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_EnumSizeCheck.h" }}
  3693. ,{ "pid":12345, "tid":4, "ts":1718090301827750, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_EnumSizeCheck.h" }}
  3694. ,{ "pid":12345, "tid":4, "ts":1718090301827887, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3695. ,{ "pid":12345, "tid":4, "ts":1718090301827976, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_SystemFutex.h" }}
  3696. ,{ "pid":12345, "tid":4, "ts":1718090301827975, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_SystemFutex.h" }}
  3697. ,{ "pid":12345, "tid":4, "ts":1718090301828096, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3698. ,{ "pid":12345, "tid":4, "ts":1718090301828156, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_NetworkAddress.h" }}
  3699. ,{ "pid":12345, "tid":4, "ts":1718090301828155, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_NetworkAddress.h" }}
  3700. ,{ "pid":12345, "tid":4, "ts":1718090301828247, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3701. ,{ "pid":12345, "tid":4, "ts":1718090301828374, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_ErrorState.h" }}
  3702. ,{ "pid":12345, "tid":4, "ts":1718090301828373, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_ErrorState.h" }}
  3703. ,{ "pid":12345, "tid":4, "ts":1718090301828437, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3704. ,{ "pid":12345, "tid":4, "ts":1718090301828515, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Atomic_Macros.h" }}
  3705. ,{ "pid":12345, "tid":4, "ts":1718090301828514, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Atomic_Macros.h" }}
  3706. ,{ "pid":12345, "tid":4, "ts":1718090301828607, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3707. ,{ "pid":12345, "tid":4, "ts":1718090301828706, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/UnityLinker.dll" }}
  3708. ,{ "pid":12345, "tid":4, "ts":1718090301828705, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/UnityLinker.dll" }}
  3709. ,{ "pid":12345, "tid":4, "ts":1718090301828777, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3710. ,{ "pid":12345, "tid":4, "ts":1718090301828861, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Linker.Api.pdb" }}
  3711. ,{ "pid":12345, "tid":4, "ts":1718090301828859, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Linker.Api.pdb" }}
  3712. ,{ "pid":12345, "tid":4, "ts":1718090301828932, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3713. ,{ "pid":12345, "tid":4, "ts":1718090301829002, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.pdb" }}
  3714. ,{ "pid":12345, "tid":4, "ts":1718090301829001, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.pdb" }}
  3715. ,{ "pid":12345, "tid":4, "ts":1718090301829066, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3716. ,{ "pid":12345, "tid":4, "ts":1718090301829143, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Common35.dll" }}
  3717. ,{ "pid":12345, "tid":4, "ts":1718090301829142, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Common35.dll" }}
  3718. ,{ "pid":12345, "tid":4, "ts":1718090301829210, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3719. ,{ "pid":12345, "tid":4, "ts":1718090301829298, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data.pdb" }}
  3720. ,{ "pid":12345, "tid":4, "ts":1718090301829295, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data.pdb" }}
  3721. ,{ "pid":12345, "tid":4, "ts":1718090301829390, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3722. ,{ "pid":12345, "tid":4, "ts":1718090301829505, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.VisionOS.pdb" }}
  3723. ,{ "pid":12345, "tid":4, "ts":1718090301829503, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.VisionOS.pdb" }}
  3724. ,{ "pid":12345, "tid":4, "ts":1718090301829560, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3725. ,{ "pid":12345, "tid":4, "ts":1718090301829636, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.Linux.pdb" }}
  3726. ,{ "pid":12345, "tid":4, "ts":1718090301829635, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.Linux.pdb" }}
  3727. ,{ "pid":12345, "tid":4, "ts":1718090301829707, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3728. ,{ "pid":12345, "tid":4, "ts":1718090301829824, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3729. ,{ "pid":12345, "tid":4, "ts":1718090301829880, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Api.pdb" }}
  3730. ,{ "pid":12345, "tid":4, "ts":1718090301829880, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Api.pdb" }}
  3731. ,{ "pid":12345, "tid":4, "ts":1718090301829951, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3732. ,{ "pid":12345, "tid":4, "ts":1718090301830028, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Cecil.Awesome.pdb" }}
  3733. ,{ "pid":12345, "tid":4, "ts":1718090301830028, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Cecil.Awesome.pdb" }}
  3734. ,{ "pid":12345, "tid":4, "ts":1718090301830111, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3735. ,{ "pid":12345, "tid":4, "ts":1718090301830207, "dur":135, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Xml.XmlDocument.dll" }}
  3736. ,{ "pid":12345, "tid":4, "ts":1718090301830205, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Xml.XmlDocument.dll" }}
  3737. ,{ "pid":12345, "tid":4, "ts":1718090301830343, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3738. ,{ "pid":12345, "tid":4, "ts":1718090301830468, "dur":138, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Web.HttpUtility.dll" }}
  3739. ,{ "pid":12345, "tid":4, "ts":1718090301830448, "dur":159, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Web.HttpUtility.dll" }}
  3740. ,{ "pid":12345, "tid":4, "ts":1718090301830607, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3741. ,{ "pid":12345, "tid":4, "ts":1718090301830704, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Threading.Thread.dll" }}
  3742. ,{ "pid":12345, "tid":4, "ts":1718090301830703, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Threading.Thread.dll" }}
  3743. ,{ "pid":12345, "tid":4, "ts":1718090301830787, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3744. ,{ "pid":12345, "tid":4, "ts":1718090301830894, "dur":151, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Threading.Channels.dll" }}
  3745. ,{ "pid":12345, "tid":4, "ts":1718090301830893, "dur":153, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Threading.Channels.dll" }}
  3746. ,{ "pid":12345, "tid":4, "ts":1718090301831050, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3747. ,{ "pid":12345, "tid":4, "ts":1718090301831138, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.ServiceModel.Web.dll" }}
  3748. ,{ "pid":12345, "tid":4, "ts":1718090301831137, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ServiceModel.Web.dll" }}
  3749. ,{ "pid":12345, "tid":4, "ts":1718090301831192, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3750. ,{ "pid":12345, "tid":4, "ts":1718090301831270, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.Cryptography.Primitives.dll" }}
  3751. ,{ "pid":12345, "tid":4, "ts":1718090301831269, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.Cryptography.Primitives.dll" }}
  3752. ,{ "pid":12345, "tid":4, "ts":1718090301831355, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3753. ,{ "pid":12345, "tid":4, "ts":1718090301831434, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.AccessControl.dll" }}
  3754. ,{ "pid":12345, "tid":4, "ts":1718090301831433, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.AccessControl.dll" }}
  3755. ,{ "pid":12345, "tid":4, "ts":1718090301831497, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3756. ,{ "pid":12345, "tid":4, "ts":1718090301831577, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.Loader.dll" }}
  3757. ,{ "pid":12345, "tid":4, "ts":1718090301831576, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Loader.dll" }}
  3758. ,{ "pid":12345, "tid":4, "ts":1718090301831657, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3759. ,{ "pid":12345, "tid":4, "ts":1718090301831739, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.CompilerServices.VisualC.dll" }}
  3760. ,{ "pid":12345, "tid":4, "ts":1718090301831737, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.CompilerServices.VisualC.dll" }}
  3761. ,{ "pid":12345, "tid":4, "ts":1718090301831847, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3762. ,{ "pid":12345, "tid":4, "ts":1718090301831932, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Reflection.Metadata.dll" }}
  3763. ,{ "pid":12345, "tid":4, "ts":1718090301831931, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Reflection.Metadata.dll" }}
  3764. ,{ "pid":12345, "tid":4, "ts":1718090301832029, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3765. ,{ "pid":12345, "tid":4, "ts":1718090301832104, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Private.Xml.Linq.dll" }}
  3766. ,{ "pid":12345, "tid":4, "ts":1718090301832103, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Private.Xml.Linq.dll" }}
  3767. ,{ "pid":12345, "tid":4, "ts":1718090301832180, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3768. ,{ "pid":12345, "tid":4, "ts":1718090301832268, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Numerics.dll" }}
  3769. ,{ "pid":12345, "tid":4, "ts":1718090301832267, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Numerics.dll" }}
  3770. ,{ "pid":12345, "tid":4, "ts":1718090301832336, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3771. ,{ "pid":12345, "tid":4, "ts":1718090301832428, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.ServicePoint.dll" }}
  3772. ,{ "pid":12345, "tid":4, "ts":1718090301832427, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.ServicePoint.dll" }}
  3773. ,{ "pid":12345, "tid":4, "ts":1718090301832500, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3774. ,{ "pid":12345, "tid":4, "ts":1718090301832608, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.NameResolution.dll" }}
  3775. ,{ "pid":12345, "tid":4, "ts":1718090301832608, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.NameResolution.dll" }}
  3776. ,{ "pid":12345, "tid":4, "ts":1718090301832692, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3777. ,{ "pid":12345, "tid":4, "ts":1718090301832789, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Linq.Queryable.dll" }}
  3778. ,{ "pid":12345, "tid":4, "ts":1718090301832787, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Linq.Queryable.dll" }}
  3779. ,{ "pid":12345, "tid":4, "ts":1718090301832869, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3780. ,{ "pid":12345, "tid":4, "ts":1718090301832941, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.MemoryMappedFiles.dll" }}
  3781. ,{ "pid":12345, "tid":4, "ts":1718090301832939, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.MemoryMappedFiles.dll" }}
  3782. ,{ "pid":12345, "tid":4, "ts":1718090301833018, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3783. ,{ "pid":12345, "tid":4, "ts":1718090301833126, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.dll" }}
  3784. ,{ "pid":12345, "tid":4, "ts":1718090301833125, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.dll" }}
  3785. ,{ "pid":12345, "tid":4, "ts":1718090301833248, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3786. ,{ "pid":12345, "tid":4, "ts":1718090301833380, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Globalization.Calendars.dll" }}
  3787. ,{ "pid":12345, "tid":4, "ts":1718090301833378, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Globalization.Calendars.dll" }}
  3788. ,{ "pid":12345, "tid":4, "ts":1718090301833467, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3789. ,{ "pid":12345, "tid":4, "ts":1718090301833571, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Diagnostics.Tools.dll" }}
  3790. ,{ "pid":12345, "tid":4, "ts":1718090301833569, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Diagnostics.Tools.dll" }}
  3791. ,{ "pid":12345, "tid":4, "ts":1718090301833643, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3792. ,{ "pid":12345, "tid":4, "ts":1718090301833780, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Diagnostics.Contracts.dll" }}
  3793. ,{ "pid":12345, "tid":4, "ts":1718090301833779, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Diagnostics.Contracts.dll" }}
  3794. ,{ "pid":12345, "tid":4, "ts":1718090301833880, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3795. ,{ "pid":12345, "tid":4, "ts":1718090301833999, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Configuration.dll" }}
  3796. ,{ "pid":12345, "tid":4, "ts":1718090301833998, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Configuration.dll" }}
  3797. ,{ "pid":12345, "tid":4, "ts":1718090301834102, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3798. ,{ "pid":12345, "tid":4, "ts":1718090301834178, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Collections.Specialized.dll" }}
  3799. ,{ "pid":12345, "tid":4, "ts":1718090301834176, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Collections.Specialized.dll" }}
  3800. ,{ "pid":12345, "tid":4, "ts":1718090301834273, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.AppContext.dll" }}
  3801. ,{ "pid":12345, "tid":4, "ts":1718090301834271, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.AppContext.dll" }}
  3802. ,{ "pid":12345, "tid":4, "ts":1718090301834349, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3803. ,{ "pid":12345, "tid":4, "ts":1718090301834469, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/monolinker.pdb" }}
  3804. ,{ "pid":12345, "tid":4, "ts":1718090301834466, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/monolinker.pdb" }}
  3805. ,{ "pid":12345, "tid":4, "ts":1718090301834575, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3806. ,{ "pid":12345, "tid":4, "ts":1718090301834710, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Mono.Cecil.Mdb.dll" }}
  3807. ,{ "pid":12345, "tid":4, "ts":1718090301834709, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Mono.Cecil.Mdb.dll" }}
  3808. ,{ "pid":12345, "tid":4, "ts":1718090301834808, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3809. ,{ "pid":12345, "tid":4, "ts":1718090301834877, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Microsoft.CSharp.dll" }}
  3810. ,{ "pid":12345, "tid":4, "ts":1718090301834875, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Microsoft.CSharp.dll" }}
  3811. ,{ "pid":12345, "tid":4, "ts":1718090301834954, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3812. ,{ "pid":12345, "tid":4, "ts":1718090301835034, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libSystem.IO.Compression.Native.dylib" }}
  3813. ,{ "pid":12345, "tid":4, "ts":1718090301835115, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3814. ,{ "pid":12345, "tid":4, "ts":1718090301835209, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libcoreclr.dylib" }}
  3815. ,{ "pid":12345, "tid":4, "ts":1718090301835318, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3816. ,{ "pid":12345, "tid":4, "ts":1718090301835443, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/il2cpp.deps.json" }}
  3817. ,{ "pid":12345, "tid":4, "ts":1718090301835440, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/il2cpp.deps.json" }}
  3818. ,{ "pid":12345, "tid":4, "ts":1718090301835555, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3819. ,{ "pid":12345, "tid":4, "ts":1718090301835658, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.TundraBackend.dll" }}
  3820. ,{ "pid":12345, "tid":4, "ts":1718090301835656, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.TundraBackend.dll" }}
  3821. ,{ "pid":12345, "tid":4, "ts":1718090301835760, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3822. ,{ "pid":12345, "tid":4, "ts":1718090301835862, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.VisualStudio.pdb" }}
  3823. ,{ "pid":12345, "tid":4, "ts":1718090301835859, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.VisualStudio.pdb" }}
  3824. ,{ "pid":12345, "tid":4, "ts":1718090301835948, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3825. ,{ "pid":12345, "tid":4, "ts":1718090301836034, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.TvOS.dll" }}
  3826. ,{ "pid":12345, "tid":4, "ts":1718090301836033, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.TvOS.dll" }}
  3827. ,{ "pid":12345, "tid":4, "ts":1718090301836125, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3828. ,{ "pid":12345, "tid":4, "ts":1718090301836203, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.IOS.pdb" }}
  3829. ,{ "pid":12345, "tid":4, "ts":1718090301836202, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.IOS.pdb" }}
  3830. ,{ "pid":12345, "tid":4, "ts":1718090301836268, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3831. ,{ "pid":12345, "tid":4, "ts":1718090301836339, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.EmbeddedLinux.pdb" }}
  3832. ,{ "pid":12345, "tid":4, "ts":1718090301836338, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.EmbeddedLinux.pdb" }}
  3833. ,{ "pid":12345, "tid":4, "ts":1718090301836431, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3834. ,{ "pid":12345, "tid":4, "ts":1718090301836563, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Stevedore.Program.dll" }}
  3835. ,{ "pid":12345, "tid":4, "ts":1718090301836561, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Stevedore.Program.dll" }}
  3836. ,{ "pid":12345, "tid":4, "ts":1718090301836658, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3837. ,{ "pid":12345, "tid":4, "ts":1718090301836738, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.CSharpSupport.dll" }}
  3838. ,{ "pid":12345, "tid":4, "ts":1718090301836736, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.CSharpSupport.dll" }}
  3839. ,{ "pid":12345, "tid":4, "ts":1718090301836831, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3840. ,{ "pid":12345, "tid":4, "ts":1718090301836939, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Analytics.pdb" }}
  3841. ,{ "pid":12345, "tid":4, "ts":1718090301836937, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Analytics.pdb" }}
  3842. ,{ "pid":12345, "tid":4, "ts":1718090301837014, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3843. ,{ "pid":12345, "tid":4, "ts":1718090301837077, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Analytics.Api.Output.dll" }}
  3844. ,{ "pid":12345, "tid":4, "ts":1718090301837076, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Analytics.Api.Output.dll" }}
  3845. ,{ "pid":12345, "tid":4, "ts":1718090301837142, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3846. ,{ "pid":12345, "tid":4, "ts":1718090301837206, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/UnityLinker.dll" }}
  3847. ,{ "pid":12345, "tid":4, "ts":1718090301837205, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/UnityLinker.dll" }}
  3848. ,{ "pid":12345, "tid":4, "ts":1718090301837293, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3849. ,{ "pid":12345, "tid":4, "ts":1718090301837375, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Linker.Api.Output.xml" }}
  3850. ,{ "pid":12345, "tid":4, "ts":1718090301837373, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Linker.Api.Output.xml" }}
  3851. ,{ "pid":12345, "tid":4, "ts":1718090301837434, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3852. ,{ "pid":12345, "tid":4, "ts":1718090301837542, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.dll" }}
  3853. ,{ "pid":12345, "tid":4, "ts":1718090301837541, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.dll" }}
  3854. ,{ "pid":12345, "tid":4, "ts":1718090301837603, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3855. ,{ "pid":12345, "tid":4, "ts":1718090301837709, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Common.pdb" }}
  3856. ,{ "pid":12345, "tid":4, "ts":1718090301837708, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Common.pdb" }}
  3857. ,{ "pid":12345, "tid":4, "ts":1718090301837763, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3858. ,{ "pid":12345, "tid":4, "ts":1718090301837848, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data.dll" }}
  3859. ,{ "pid":12345, "tid":4, "ts":1718090301837846, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data.dll" }}
  3860. ,{ "pid":12345, "tid":4, "ts":1718090301837923, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3861. ,{ "pid":12345, "tid":4, "ts":1718090301837987, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.VisionOS.pdb" }}
  3862. ,{ "pid":12345, "tid":4, "ts":1718090301837985, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.VisionOS.pdb" }}
  3863. ,{ "pid":12345, "tid":4, "ts":1718090301838079, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3864. ,{ "pid":12345, "tid":4, "ts":1718090301838176, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.Linux.dll" }}
  3865. ,{ "pid":12345, "tid":4, "ts":1718090301838174, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.Linux.dll" }}
  3866. ,{ "pid":12345, "tid":4, "ts":1718090301838340, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.Android.pdb" }}
  3867. ,{ "pid":12345, "tid":4, "ts":1718090301838339, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.Android.pdb" }}
  3868. ,{ "pid":12345, "tid":4, "ts":1718090301838431, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3869. ,{ "pid":12345, "tid":4, "ts":1718090301838526, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Cecil.Visitor.pdb" }}
  3870. ,{ "pid":12345, "tid":4, "ts":1718090301838524, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Cecil.Visitor.pdb" }}
  3871. ,{ "pid":12345, "tid":4, "ts":1718090301838616, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3872. ,{ "pid":12345, "tid":4, "ts":1718090301838707, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Xml.XPath.dll" }}
  3873. ,{ "pid":12345, "tid":4, "ts":1718090301838706, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Xml.XPath.dll" }}
  3874. ,{ "pid":12345, "tid":4, "ts":1718090301838830, "dur":138, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3875. ,{ "pid":12345, "tid":4, "ts":1718090301838991, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Xml.dll" }}
  3876. ,{ "pid":12345, "tid":4, "ts":1718090301838989, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Xml.dll" }}
  3877. ,{ "pid":12345, "tid":4, "ts":1718090301839108, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3878. ,{ "pid":12345, "tid":4, "ts":1718090301839187, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Threading.Timer.dll" }}
  3879. ,{ "pid":12345, "tid":4, "ts":1718090301839185, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Threading.Timer.dll" }}
  3880. ,{ "pid":12345, "tid":4, "ts":1718090301839308, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3881. ,{ "pid":12345, "tid":4, "ts":1718090301839378, "dur":147, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Threading.dll" }}
  3882. ,{ "pid":12345, "tid":4, "ts":1718090301839377, "dur":148, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Threading.dll" }}
  3883. ,{ "pid":12345, "tid":4, "ts":1718090301839526, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3884. ,{ "pid":12345, "tid":4, "ts":1718090301839625, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Text.Encoding.CodePages.dll" }}
  3885. ,{ "pid":12345, "tid":4, "ts":1718090301839623, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Text.Encoding.CodePages.dll" }}
  3886. ,{ "pid":12345, "tid":4, "ts":1718090301839714, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3887. ,{ "pid":12345, "tid":4, "ts":1718090301839792, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.Cryptography.X509Certificates.dll" }}
  3888. ,{ "pid":12345, "tid":4, "ts":1718090301839790, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.Cryptography.X509Certificates.dll" }}
  3889. ,{ "pid":12345, "tid":4, "ts":1718090301839891, "dur":197, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3890. ,{ "pid":12345, "tid":4, "ts":1718090301840110, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.Claims.dll" }}
  3891. ,{ "pid":12345, "tid":4, "ts":1718090301840109, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.Claims.dll" }}
  3892. ,{ "pid":12345, "tid":4, "ts":1718090301840215, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3893. ,{ "pid":12345, "tid":4, "ts":1718090301840297, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.Serialization.dll" }}
  3894. ,{ "pid":12345, "tid":4, "ts":1718090301840296, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.Serialization.dll" }}
  3895. ,{ "pid":12345, "tid":4, "ts":1718090301840374, "dur":151, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3896. ,{ "pid":12345, "tid":4, "ts":1718090301840530, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.Extensions.dll" }}
  3897. ,{ "pid":12345, "tid":4, "ts":1718090301840529, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.Extensions.dll" }}
  3898. ,{ "pid":12345, "tid":4, "ts":1718090301840654, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3899. ,{ "pid":12345, "tid":4, "ts":1718090301840782, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Reflection.TypeExtensions.dll" }}
  3900. ,{ "pid":12345, "tid":4, "ts":1718090301840781, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Reflection.TypeExtensions.dll" }}
  3901. ,{ "pid":12345, "tid":4, "ts":1718090301840858, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3902. ,{ "pid":12345, "tid":4, "ts":1718090301840926, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Reflection.dll" }}
  3903. ,{ "pid":12345, "tid":4, "ts":1718090301840925, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Reflection.dll" }}
  3904. ,{ "pid":12345, "tid":4, "ts":1718090301841038, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3905. ,{ "pid":12345, "tid":4, "ts":1718090301841102, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Private.CoreLib.dll" }}
  3906. ,{ "pid":12345, "tid":4, "ts":1718090301841101, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Private.CoreLib.dll" }}
  3907. ,{ "pid":12345, "tid":4, "ts":1718090301841208, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3908. ,{ "pid":12345, "tid":4, "ts":1718090301841312, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.WebClient.dll" }}
  3909. ,{ "pid":12345, "tid":4, "ts":1718090301841311, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.WebClient.dll" }}
  3910. ,{ "pid":12345, "tid":4, "ts":1718090301841366, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3911. ,{ "pid":12345, "tid":4, "ts":1718090301841437, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.Quic.dll" }}
  3912. ,{ "pid":12345, "tid":4, "ts":1718090301841435, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.Quic.dll" }}
  3913. ,{ "pid":12345, "tid":4, "ts":1718090301841558, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3914. ,{ "pid":12345, "tid":4, "ts":1718090301841704, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.Http.dll" }}
  3915. ,{ "pid":12345, "tid":4, "ts":1718090301841703, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.Http.dll" }}
  3916. ,{ "pid":12345, "tid":4, "ts":1718090301841770, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3917. ,{ "pid":12345, "tid":4, "ts":1718090301841851, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Linq.dll" }}
  3918. ,{ "pid":12345, "tid":4, "ts":1718090301841850, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Linq.dll" }}
  3919. ,{ "pid":12345, "tid":4, "ts":1718090301841943, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3920. ,{ "pid":12345, "tid":4, "ts":1718090301842083, "dur":188, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.FileSystem.Primitives.dll" }}
  3921. ,{ "pid":12345, "tid":4, "ts":1718090301842082, "dur":191, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.FileSystem.Primitives.dll" }}
  3922. ,{ "pid":12345, "tid":4, "ts":1718090301842273, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3923. ,{ "pid":12345, "tid":4, "ts":1718090301842377, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.Compression.dll" }}
  3924. ,{ "pid":12345, "tid":4, "ts":1718090301842376, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.Compression.dll" }}
  3925. ,{ "pid":12345, "tid":4, "ts":1718090301842455, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3926. ,{ "pid":12345, "tid":4, "ts":1718090301842566, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Drawing.Primitives.dll" }}
  3927. ,{ "pid":12345, "tid":4, "ts":1718090301842564, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Drawing.Primitives.dll" }}
  3928. ,{ "pid":12345, "tid":4, "ts":1718090301842645, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3929. ,{ "pid":12345, "tid":4, "ts":1718090301842797, "dur":152, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Diagnostics.StackTrace.dll" }}
  3930. ,{ "pid":12345, "tid":4, "ts":1718090301842796, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.StackTrace.dll" }}
  3931. ,{ "pid":12345, "tid":4, "ts":1718090301842950, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3932. ,{ "pid":12345, "tid":4, "ts":1718090301843081, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Data.DataSetExtensions.dll" }}
  3933. ,{ "pid":12345, "tid":4, "ts":1718090301843079, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Data.DataSetExtensions.dll" }}
  3934. ,{ "pid":12345, "tid":4, "ts":1718090301843198, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3935. ,{ "pid":12345, "tid":4, "ts":1718090301843264, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.ComponentModel.Primitives.dll" }}
  3936. ,{ "pid":12345, "tid":4, "ts":1718090301843263, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.ComponentModel.Primitives.dll" }}
  3937. ,{ "pid":12345, "tid":4, "ts":1718090301843374, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3938. ,{ "pid":12345, "tid":4, "ts":1718090301843452, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Collections.Immutable.dll" }}
  3939. ,{ "pid":12345, "tid":4, "ts":1718090301843450, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Collections.Immutable.dll" }}
  3940. ,{ "pid":12345, "tid":4, "ts":1718090301843536, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3941. ,{ "pid":12345, "tid":4, "ts":1718090301843619, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/NiceIO.dll" }}
  3942. ,{ "pid":12345, "tid":4, "ts":1718090301843617, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/NiceIO.dll" }}
  3943. ,{ "pid":12345, "tid":4, "ts":1718090301843710, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3944. ,{ "pid":12345, "tid":4, "ts":1718090301843799, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Mono.Cecil.Rocks.dll" }}
  3945. ,{ "pid":12345, "tid":4, "ts":1718090301843798, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Mono.Cecil.Rocks.dll" }}
  3946. ,{ "pid":12345, "tid":4, "ts":1718090301843870, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3947. ,{ "pid":12345, "tid":4, "ts":1718090301843960, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Microsoft.Win32.Primitives.dll" }}
  3948. ,{ "pid":12345, "tid":4, "ts":1718090301843959, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Microsoft.Win32.Primitives.dll" }}
  3949. ,{ "pid":12345, "tid":4, "ts":1718090301844032, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3950. ,{ "pid":12345, "tid":4, "ts":1718090301844125, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libSystem.Net.Security.Native.dylib" }}
  3951. ,{ "pid":12345, "tid":4, "ts":1718090301844200, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3952. ,{ "pid":12345, "tid":4, "ts":1718090301844286, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libhostfxr.dylib" }}
  3953. ,{ "pid":12345, "tid":4, "ts":1718090301844368, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3954. ,{ "pid":12345, "tid":4, "ts":1718090301844449, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/il2cpp.dll.config" }}
  3955. ,{ "pid":12345, "tid":4, "ts":1718090301844447, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/il2cpp.dll.config" }}
  3956. ,{ "pid":12345, "tid":4, "ts":1718090301844533, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3957. ,{ "pid":12345, "tid":4, "ts":1718090301844606, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.VisualStudioSolution.dll" }}
  3958. ,{ "pid":12345, "tid":4, "ts":1718090301844604, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.VisualStudioSolution.dll" }}
  3959. ,{ "pid":12345, "tid":4, "ts":1718090301844677, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3960. ,{ "pid":12345, "tid":4, "ts":1718090301844802, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.Windows.pdb" }}
  3961. ,{ "pid":12345, "tid":4, "ts":1718090301844800, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.Windows.pdb" }}
  3962. ,{ "pid":12345, "tid":4, "ts":1718090301844910, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3963. ,{ "pid":12345, "tid":4, "ts":1718090301844979, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.UWP.dll" }}
  3964. ,{ "pid":12345, "tid":4, "ts":1718090301844978, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.UWP.dll" }}
  3965. ,{ "pid":12345, "tid":4, "ts":1718090301845044, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3966. ,{ "pid":12345, "tid":4, "ts":1718090301845126, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.Linux.pdb" }}
  3967. ,{ "pid":12345, "tid":4, "ts":1718090301845125, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.Linux.pdb" }}
  3968. ,{ "pid":12345, "tid":4, "ts":1718090301845204, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3969. ,{ "pid":12345, "tid":4, "ts":1718090301845287, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.Emscripten.dll" }}
  3970. ,{ "pid":12345, "tid":4, "ts":1718090301845286, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.Emscripten.dll" }}
  3971. ,{ "pid":12345, "tid":4, "ts":1718090301845351, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3972. ,{ "pid":12345, "tid":4, "ts":1718090301845430, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.TinyProfiler2.dll" }}
  3973. ,{ "pid":12345, "tid":4, "ts":1718090301845428, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.TinyProfiler2.dll" }}
  3974. ,{ "pid":12345, "tid":4, "ts":1718090301845506, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3975. ,{ "pid":12345, "tid":4, "ts":1718090301845593, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.CSharpSupport.dll" }}
  3976. ,{ "pid":12345, "tid":4, "ts":1718090301845592, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.CSharpSupport.dll" }}
  3977. ,{ "pid":12345, "tid":4, "ts":1718090301845666, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3978. ,{ "pid":12345, "tid":4, "ts":1718090301845804, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Analytics.pdb" }}
  3979. ,{ "pid":12345, "tid":4, "ts":1718090301845802, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Analytics.pdb" }}
  3980. ,{ "pid":12345, "tid":4, "ts":1718090301845897, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3981. ,{ "pid":12345, "tid":4, "ts":1718090301845965, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/etc/mono/4.0/machine.config" }}
  3982. ,{ "pid":12345, "tid":4, "ts":1718090301845964, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/Managed/mono/4.0/machine.config" }}
  3983. ,{ "pid":12345, "tid":4, "ts":1718090301846043, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3984. ,{ "pid":12345, "tid":4, "ts":1718090301846131, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/UnityFramework/Info.plist" }}
  3985. ,{ "pid":12345, "tid":4, "ts":1718090301846259, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3986. ,{ "pid":12345, "tid":4, "ts":1718090301846353, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/unity default resources" }}
  3987. ,{ "pid":12345, "tid":4, "ts":1718090301846424, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3988. ,{ "pid":12345, "tid":4, "ts":1718090301846546, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UnityAppController+Rendering.mm" }}
  3989. ,{ "pid":12345, "tid":4, "ts":1718090301846657, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3990. ,{ "pid":12345, "tid":4, "ts":1718090301846745, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/UnityReplayKit_Scripting.mm" }}
  3991. ,{ "pid":12345, "tid":4, "ts":1718090301846808, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3992. ,{ "pid":12345, "tid":4, "ts":1718090301846919, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/OnDemandResources.mm" }}
  3993. ,{ "pid":12345, "tid":4, "ts":1718090301847015, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3994. ,{ "pid":12345, "tid":4, "ts":1718090301847091, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/Filesystem.mm" }}
  3995. ,{ "pid":12345, "tid":4, "ts":1718090301847177, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3996. ,{ "pid":12345, "tid":4, "ts":1718090301847257, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/CMVideoSampling.h" }}
  3997. ,{ "pid":12345, "tid":4, "ts":1718090301847256, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/CMVideoSampling.h" }}
  3998. ,{ "pid":12345, "tid":4, "ts":1718090301847330, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3999. ,{ "pid":12345, "tid":4, "ts":1718090301847407, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/UnityViewControllerBase.h" }}
  4000. ,{ "pid":12345, "tid":4, "ts":1718090301847405, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityViewControllerBase.h" }}
  4001. ,{ "pid":12345, "tid":4, "ts":1718090301847506, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4002. ,{ "pid":12345, "tid":4, "ts":1718090301847585, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityView.mm" }}
  4003. ,{ "pid":12345, "tid":4, "ts":1718090301847664, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4004. ,{ "pid":12345, "tid":4, "ts":1718090301847788, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityAppController+ViewHandling.mm" }}
  4005. ,{ "pid":12345, "tid":4, "ts":1718090301847874, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4006. ,{ "pid":12345, "tid":4, "ts":1718090301848038, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Prefix.pch" }}
  4007. ,{ "pid":12345, "tid":4, "ts":1718090301848157, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4008. ,{ "pid":12345, "tid":4, "ts":1718090301848235, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/PluginBase/AppDelegateListener.h" }}
  4009. ,{ "pid":12345, "tid":4, "ts":1718090301848234, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/PluginBase/AppDelegateListener.h" }}
  4010. ,{ "pid":12345, "tid":4, "ts":1718090301848315, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4011. ,{ "pid":12345, "tid":4, "ts":1718090301848385, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/AndroidRuntime.cpp" }}
  4012. ,{ "pid":12345, "tid":4, "ts":1718090301848384, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/AndroidRuntime.cpp" }}
  4013. ,{ "pid":12345, "tid":4, "ts":1718090301848467, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4014. ,{ "pid":12345, "tid":4, "ts":1718090301848550, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/AssemblyName.h" }}
  4015. ,{ "pid":12345, "tid":4, "ts":1718090301848549, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/AssemblyName.h" }}
  4016. ,{ "pid":12345, "tid":4, "ts":1718090301848621, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4017. ,{ "pid":12345, "tid":4, "ts":1718090301848710, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Class.h" }}
  4018. ,{ "pid":12345, "tid":4, "ts":1718090301848709, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Class.h" }}
  4019. ,{ "pid":12345, "tid":4, "ts":1718090301848788, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4020. ,{ "pid":12345, "tid":4, "ts":1718090301848912, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/COMEntryPoints.h" }}
  4021. ,{ "pid":12345, "tid":4, "ts":1718090301848910, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/COMEntryPoints.h" }}
  4022. ,{ "pid":12345, "tid":4, "ts":1718090301848984, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4023. ,{ "pid":12345, "tid":4, "ts":1718090301849078, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Enum.h" }}
  4024. ,{ "pid":12345, "tid":4, "ts":1718090301849078, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Enum.h" }}
  4025. ,{ "pid":12345, "tid":4, "ts":1718090301849160, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4026. ,{ "pid":12345, "tid":4, "ts":1718090301849250, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/GenericClass.cpp" }}
  4027. ,{ "pid":12345, "tid":4, "ts":1718090301849249, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/GenericClass.cpp" }}
  4028. ,{ "pid":12345, "tid":4, "ts":1718090301849317, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4029. ,{ "pid":12345, "tid":4, "ts":1718090301849478, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Il2CppHStringReference.cpp" }}
  4030. ,{ "pid":12345, "tid":4, "ts":1718090301849477, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Il2CppHStringReference.cpp" }}
  4031. ,{ "pid":12345, "tid":4, "ts":1718090301849561, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4032. ,{ "pid":12345, "tid":4, "ts":1718090301849657, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Liveness.cpp" }}
  4033. ,{ "pid":12345, "tid":4, "ts":1718090301849656, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Liveness.cpp" }}
  4034. ,{ "pid":12345, "tid":4, "ts":1718090301849750, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4035. ,{ "pid":12345, "tid":4, "ts":1718090301849843, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/MetadataAlloc.h" }}
  4036. ,{ "pid":12345, "tid":4, "ts":1718090301849842, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/MetadataAlloc.h" }}
  4037. ,{ "pid":12345, "tid":4, "ts":1718090301849920, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4038. ,{ "pid":12345, "tid":4, "ts":1718090301850016, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Module.h" }}
  4039. ,{ "pid":12345, "tid":4, "ts":1718090301850014, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Module.h" }}
  4040. ,{ "pid":12345, "tid":4, "ts":1718090301850086, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4041. ,{ "pid":12345, "tid":4, "ts":1718090301850204, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Path.cpp" }}
  4042. ,{ "pid":12345, "tid":4, "ts":1718090301850202, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Path.cpp" }}
  4043. ,{ "pid":12345, "tid":4, "ts":1718090301850278, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4044. ,{ "pid":12345, "tid":4, "ts":1718090301850357, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityBannerUnityWrapper.m" }}
  4045. ,{ "pid":12345, "tid":4, "ts":1718090301850428, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4046. ,{ "pid":12345, "tid":4, "ts":1718090301850558, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4047. ,{ "pid":12345, "tid":4, "ts":1718090301850640, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Reflection.cpp" }}
  4048. ,{ "pid":12345, "tid":4, "ts":1718090301850639, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Reflection.cpp" }}
  4049. ,{ "pid":12345, "tid":4, "ts":1718090301850709, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4050. ,{ "pid":12345, "tid":4, "ts":1718090301850767, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/StackTrace.cpp" }}
  4051. ,{ "pid":12345, "tid":4, "ts":1718090301850766, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/StackTrace.cpp" }}
  4052. ,{ "pid":12345, "tid":4, "ts":1718090301850847, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4053. ,{ "pid":12345, "tid":4, "ts":1718090301850943, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Type.h" }}
  4054. ,{ "pid":12345, "tid":4, "ts":1718090301850942, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Type.h" }}
  4055. ,{ "pid":12345, "tid":4, "ts":1718090301851000, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4056. ,{ "pid":12345, "tid":4, "ts":1718090301851056, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/WindowsRuntime.cpp" }}
  4057. ,{ "pid":12345, "tid":4, "ts":1718090301851055, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/WindowsRuntime.cpp" }}
  4058. ,{ "pid":12345, "tid":4, "ts":1718090301851114, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4059. ,{ "pid":12345, "tid":4, "ts":1718090301851198, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libmono/config/il2cpp-config-mono-osx.h" }}
  4060. ,{ "pid":12345, "tid":4, "ts":1718090301851197, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libmono/config/il2cpp-config-mono-osx.h" }}
  4061. ,{ "pid":12345, "tid":4, "ts":1718090301851285, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4062. ,{ "pid":12345, "tid":4, "ts":1718090301851420, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4063. ,{ "pid":12345, "tid":4, "ts":1718090301851563, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/LaunchScreen-iPhoneLandscape.png" }}
  4064. ,{ "pid":12345, "tid":4, "ts":1718090301851633, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4065. ,{ "pid":12345, "tid":4, "ts":1718090301851708, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-Settings-87.png" }}
  4066. ,{ "pid":12345, "tid":4, "ts":1718090301851789, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4067. ,{ "pid":12345, "tid":4, "ts":1718090301851866, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-Spotlight-40.png" }}
  4068. ,{ "pid":12345, "tid":4, "ts":1718090301851946, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4069. ,{ "pid":12345, "tid":4, "ts":1718090301852052, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4070. ,{ "pid":12345, "tid":4, "ts":1718090301852150, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4071. ,{ "pid":12345, "tid":4, "ts":1718090301852225, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAdsInitializationListener.mm" }}
  4072. ,{ "pid":12345, "tid":4, "ts":1718090301852292, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4073. ,{ "pid":12345, "tid":4, "ts":1718090301852383, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.purchasing/Plugins/UnityPurchasing/iOS/UnityPurchasing.m" }}
  4074. ,{ "pid":12345, "tid":4, "ts":1718090301852483, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4075. ,{ "pid":12345, "tid":4, "ts":1718090301852588, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4076. ,{ "pid":12345, "tid":4, "ts":1718090301852699, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4077. ,{ "pid":12345, "tid":4, "ts":1718090301852812, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4078. ,{ "pid":12345, "tid":4, "ts":1718090301852954, "dur":14648, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  4079. ,{ "pid":12345, "tid":4, "ts":1718090301867619, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4080. ,{ "pid":12345, "tid":4, "ts":1718090301867686, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GoogleMobileAds.Core_CodeGen.c" }}
  4081. ,{ "pid":12345, "tid":4, "ts":1718090301867685, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GoogleMobileAds.Core_CodeGen.c" }}
  4082. ,{ "pid":12345, "tid":4, "ts":1718090301867787, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4083. ,{ "pid":12345, "tid":4, "ts":1718090301867898, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppReversePInvokeWrapperTable.cpp" }}
  4084. ,{ "pid":12345, "tid":4, "ts":1718090301867897, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppReversePInvokeWrapperTable.cpp" }}
  4085. ,{ "pid":12345, "tid":4, "ts":1718090301867985, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4086. ,{ "pid":12345, "tid":4, "ts":1718090301868083, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__22.cpp" }}
  4087. ,{ "pid":12345, "tid":4, "ts":1718090301868082, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__22.cpp" }}
  4088. ,{ "pid":12345, "tid":4, "ts":1718090301868199, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4089. ,{ "pid":12345, "tid":4, "ts":1718090301868302, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__8.cpp" }}
  4090. ,{ "pid":12345, "tid":4, "ts":1718090301868300, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__8.cpp" }}
  4091. ,{ "pid":12345, "tid":4, "ts":1718090301868390, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4092. ,{ "pid":12345, "tid":4, "ts":1718090301868475, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__30.cpp" }}
  4093. ,{ "pid":12345, "tid":4, "ts":1718090301868474, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__30.cpp" }}
  4094. ,{ "pid":12345, "tid":4, "ts":1718090301868557, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4095. ,{ "pid":12345, "tid":4, "ts":1718090301868643, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Newtonsoft.Json__4.cpp" }}
  4096. ,{ "pid":12345, "tid":4, "ts":1718090301868642, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Newtonsoft.Json__4.cpp" }}
  4097. ,{ "pid":12345, "tid":4, "ts":1718090301868734, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4098. ,{ "pid":12345, "tid":4, "ts":1718090301868826, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__40.cpp" }}
  4099. ,{ "pid":12345, "tid":4, "ts":1718090301868824, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__40.cpp" }}
  4100. ,{ "pid":12345, "tid":4, "ts":1718090301868903, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4101. ,{ "pid":12345, "tid":4, "ts":1718090301868989, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__57.cpp" }}
  4102. ,{ "pid":12345, "tid":4, "ts":1718090301868988, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__57.cpp" }}
  4103. ,{ "pid":12345, "tid":4, "ts":1718090301869061, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4104. ,{ "pid":12345, "tid":4, "ts":1718090301869149, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__15.cpp" }}
  4105. ,{ "pid":12345, "tid":4, "ts":1718090301869148, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__15.cpp" }}
  4106. ,{ "pid":12345, "tid":4, "ts":1718090301869214, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4107. ,{ "pid":12345, "tid":4, "ts":1718090301869298, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GoogleMobileAds.cpp" }}
  4108. ,{ "pid":12345, "tid":4, "ts":1718090301869296, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GoogleMobileAds.cpp" }}
  4109. ,{ "pid":12345, "tid":4, "ts":1718090301869376, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4110. ,{ "pid":12345, "tid":4, "ts":1718090301869474, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__16.cpp" }}
  4111. ,{ "pid":12345, "tid":4, "ts":1718090301869473, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__16.cpp" }}
  4112. ,{ "pid":12345, "tid":4, "ts":1718090301869562, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4113. ,{ "pid":12345, "tid":4, "ts":1718090301869660, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/I18N.West_CodeGen.c" }}
  4114. ,{ "pid":12345, "tid":4, "ts":1718090301869658, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/I18N.West_CodeGen.c" }}
  4115. ,{ "pid":12345, "tid":4, "ts":1718090301869738, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4116. ,{ "pid":12345, "tid":4, "ts":1718090301869837, "dur":141, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.CoreModule_CodeGen.c" }}
  4117. ,{ "pid":12345, "tid":4, "ts":1718090301869835, "dur":144, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.CoreModule_CodeGen.c" }}
  4118. ,{ "pid":12345, "tid":4, "ts":1718090301869979, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4119. ,{ "pid":12345, "tid":4, "ts":1718090301870070, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/I18N.West__1.cpp" }}
  4120. ,{ "pid":12345, "tid":4, "ts":1718090301870069, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/I18N.West__1.cpp" }}
  4121. ,{ "pid":12345, "tid":4, "ts":1718090301870158, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4122. ,{ "pid":12345, "tid":4, "ts":1718090301870282, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/Managed/Resources/System.Data.dll-resources.dat" }}
  4123. ,{ "pid":12345, "tid":4, "ts":1718090301870376, "dur":135, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4124. ,{ "pid":12345, "tid":4, "ts":1718090301870518, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System__3.cpp" }}
  4125. ,{ "pid":12345, "tid":4, "ts":1718090301870517, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System__3.cpp" }}
  4126. ,{ "pid":12345, "tid":4, "ts":1718090301870606, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4127. ,{ "pid":12345, "tid":4, "ts":1718090301870706, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.PhysicsModule_CodeGen.c" }}
  4128. ,{ "pid":12345, "tid":4, "ts":1718090301870704, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.PhysicsModule_CodeGen.c" }}
  4129. ,{ "pid":12345, "tid":4, "ts":1718090301870800, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4130. ,{ "pid":12345, "tid":4, "ts":1718090301870902, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UnityAnalyticsModule_CodeGen.c" }}
  4131. ,{ "pid":12345, "tid":4, "ts":1718090301870901, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UnityAnalyticsModule_CodeGen.c" }}
  4132. ,{ "pid":12345, "tid":4, "ts":1718090301870979, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4133. ,{ "pid":12345, "tid":4, "ts":1718090301871058, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Assembly-CSharp__1.cpp" }}
  4134. ,{ "pid":12345, "tid":4, "ts":1718090301871057, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Assembly-CSharp__1.cpp" }}
  4135. ,{ "pid":12345, "tid":4, "ts":1718090301871135, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4136. ,{ "pid":12345, "tid":4, "ts":1718090301871224, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppGenericMethodPointerTable.c" }}
  4137. ,{ "pid":12345, "tid":4, "ts":1718090301871223, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppGenericMethodPointerTable.c" }}
  4138. ,{ "pid":12345, "tid":4, "ts":1718090301871303, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4139. ,{ "pid":12345, "tid":4, "ts":1718090301871386, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.GridModule.cpp" }}
  4140. ,{ "pid":12345, "tid":4, "ts":1718090301871384, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.GridModule.cpp" }}
  4141. ,{ "pid":12345, "tid":4, "ts":1718090301871476, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4142. ,{ "pid":12345, "tid":4, "ts":1718090301871579, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.TextCoreFontEngineModule_CodeGen.c" }}
  4143. ,{ "pid":12345, "tid":4, "ts":1718090301871577, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.TextCoreFontEngineModule_CodeGen.c" }}
  4144. ,{ "pid":12345, "tid":4, "ts":1718090301871673, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4145. ,{ "pid":12345, "tid":4, "ts":1718090301871771, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Purchasing.SecurityCore.cpp" }}
  4146. ,{ "pid":12345, "tid":4, "ts":1718090301871770, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Purchasing.SecurityCore.cpp" }}
  4147. ,{ "pid":12345, "tid":4, "ts":1718090301871856, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4148. ,{ "pid":12345, "tid":4, "ts":1718090301871950, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Purchasing.WinRTCore_CodeGen.c" }}
  4149. ,{ "pid":12345, "tid":4, "ts":1718090301871948, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Purchasing.WinRTCore_CodeGen.c" }}
  4150. ,{ "pid":12345, "tid":4, "ts":1718090301872033, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4151. ,{ "pid":12345, "tid":4, "ts":1718090301872130, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Purchasing.Stores__1.cpp" }}
  4152. ,{ "pid":12345, "tid":4, "ts":1718090301872128, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Purchasing.Stores__1.cpp" }}
  4153. ,{ "pid":12345, "tid":4, "ts":1718090301872215, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4154. ,{ "pid":12345, "tid":4, "ts":1718090301872305, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__15.cpp" }}
  4155. ,{ "pid":12345, "tid":4, "ts":1718090301872304, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__15.cpp" }}
  4156. ,{ "pid":12345, "tid":4, "ts":1718090301872442, "dur":311, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4157. ,{ "pid":12345, "tid":4, "ts":1718090301872779, "dur":265, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__63.cpp" }}
  4158. ,{ "pid":12345, "tid":4, "ts":1718090301872778, "dur":267, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__63.cpp" }}
  4159. ,{ "pid":12345, "tid":4, "ts":1718090301873046, "dur":312, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4160. ,{ "pid":12345, "tid":4, "ts":1718090301873366, "dur":202, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule__9.cpp" }}
  4161. ,{ "pid":12345, "tid":4, "ts":1718090301873365, "dur":204, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__9.cpp" }}
  4162. ,{ "pid":12345, "tid":4, "ts":1718090301873569, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4163. ,{ "pid":12345, "tid":4, "ts":1718090301873723, "dur":183, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule__11.cpp" }}
  4164. ,{ "pid":12345, "tid":4, "ts":1718090301873723, "dur":183, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__11.cpp" }}
  4165. ,{ "pid":12345, "tid":4, "ts":1718090301873907, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4166. ,{ "pid":12345, "tid":4, "ts":1718090301874038, "dur":161, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppCCalculateFieldValues2.cpp" }}
  4167. ,{ "pid":12345, "tid":4, "ts":1718090301874037, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppCCalculateFieldValues2.cpp" }}
  4168. ,{ "pid":12345, "tid":4, "ts":1718090301874201, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4169. ,{ "pid":12345, "tid":4, "ts":1718090301874283, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__12.cpp" }}
  4170. ,{ "pid":12345, "tid":4, "ts":1718090301874281, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__12.cpp" }}
  4171. ,{ "pid":12345, "tid":4, "ts":1718090301874406, "dur":171, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4172. ,{ "pid":12345, "tid":4, "ts":1718090301874600, "dur":154, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Assembly-CSharp.cpp" }}
  4173. ,{ "pid":12345, "tid":4, "ts":1718090301874600, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Assembly-CSharp.cpp" }}
  4174. ,{ "pid":12345, "tid":4, "ts":1718090301874754, "dur":160, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4175. ,{ "pid":12345, "tid":4, "ts":1718090301874923, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.2D.Animation.Runtime.cpp" }}
  4176. ,{ "pid":12345, "tid":4, "ts":1718090301874922, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.2D.Animation.Runtime.cpp" }}
  4177. ,{ "pid":12345, "tid":4, "ts":1718090301875035, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4178. ,{ "pid":12345, "tid":4, "ts":1718090301875124, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Mono.Security__1.cpp" }}
  4179. ,{ "pid":12345, "tid":4, "ts":1718090301875122, "dur":136, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Mono.Security__1.cpp" }}
  4180. ,{ "pid":12345, "tid":4, "ts":1718090301875258, "dur":135, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4181. ,{ "pid":12345, "tid":4, "ts":1718090301875420, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppInvokerTable.cpp" }}
  4182. ,{ "pid":12345, "tid":4, "ts":1718090301875418, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppInvokerTable.cpp" }}
  4183. ,{ "pid":12345, "tid":4, "ts":1718090301875526, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4184. ,{ "pid":12345, "tid":4, "ts":1718090301875627, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__15.cpp" }}
  4185. ,{ "pid":12345, "tid":4, "ts":1718090301875626, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__15.cpp" }}
  4186. ,{ "pid":12345, "tid":4, "ts":1718090301875703, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4187. ,{ "pid":12345, "tid":4, "ts":1718090301875815, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__17.cpp" }}
  4188. ,{ "pid":12345, "tid":4, "ts":1718090301875814, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__17.cpp" }}
  4189. ,{ "pid":12345, "tid":4, "ts":1718090301875903, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4190. ,{ "pid":12345, "tid":4, "ts":1718090301875999, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__6.cpp" }}
  4191. ,{ "pid":12345, "tid":4, "ts":1718090301875997, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__6.cpp" }}
  4192. ,{ "pid":12345, "tid":4, "ts":1718090301876075, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4193. ,{ "pid":12345, "tid":4, "ts":1718090301876173, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Internal_CodeGen.c" }}
  4194. ,{ "pid":12345, "tid":4, "ts":1718090301876172, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Internal_CodeGen.c" }}
  4195. ,{ "pid":12345, "tid":4, "ts":1718090301876268, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4196. ,{ "pid":12345, "tid":4, "ts":1718090301876360, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core_CodeGen.c" }}
  4197. ,{ "pid":12345, "tid":4, "ts":1718090301876359, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core_CodeGen.c" }}
  4198. ,{ "pid":12345, "tid":4, "ts":1718090301876440, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4199. ,{ "pid":12345, "tid":4, "ts":1718090301876519, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data_CodeGen.c" }}
  4200. ,{ "pid":12345, "tid":4, "ts":1718090301876518, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data_CodeGen.c" }}
  4201. ,{ "pid":12345, "tid":4, "ts":1718090301876593, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4202. ,{ "pid":12345, "tid":4, "ts":1718090301876670, "dur":195, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.TextMeshPro__5.cpp" }}
  4203. ,{ "pid":12345, "tid":4, "ts":1718090301876669, "dur":197, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.TextMeshPro__5.cpp" }}
  4204. ,{ "pid":12345, "tid":4, "ts":1718090301876867, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4205. ,{ "pid":12345, "tid":4, "ts":1718090301876940, "dur":164, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.GameCenterModule.cpp" }}
  4206. ,{ "pid":12345, "tid":4, "ts":1718090301876938, "dur":167, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.GameCenterModule.cpp" }}
  4207. ,{ "pid":12345, "tid":4, "ts":1718090301877105, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4208. ,{ "pid":12345, "tid":4, "ts":1718090301877210, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__18.cpp" }}
  4209. ,{ "pid":12345, "tid":4, "ts":1718090301877209, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__18.cpp" }}
  4210. ,{ "pid":12345, "tid":4, "ts":1718090301877285, "dur":162, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4211. ,{ "pid":12345, "tid":4, "ts":1718090301877452, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UI__3.cpp" }}
  4212. ,{ "pid":12345, "tid":4, "ts":1718090301877452, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UI__3.cpp" }}
  4213. ,{ "pid":12345, "tid":4, "ts":1718090301877539, "dur":191, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4214. ,{ "pid":12345, "tid":4, "ts":1718090301877740, "dur":207, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GoogleMobileAds.iOS_CodeGen.c" }}
  4215. ,{ "pid":12345, "tid":4, "ts":1718090301877739, "dur":208, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GoogleMobileAds.iOS_CodeGen.c" }}
  4216. ,{ "pid":12345, "tid":4, "ts":1718090301877948, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4217. ,{ "pid":12345, "tid":4, "ts":1718090301878057, "dur":150, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.ScreenCaptureModule.cpp" }}
  4218. ,{ "pid":12345, "tid":4, "ts":1718090301878055, "dur":153, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.ScreenCaptureModule.cpp" }}
  4219. ,{ "pid":12345, "tid":4, "ts":1718090301878208, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4220. ,{ "pid":12345, "tid":4, "ts":1718090301878340, "dur":144, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  4221. ,{ "pid":12345, "tid":5, "ts":1718090301624734, "dur":116377, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  4222. ,{ "pid":12345, "tid":5, "ts":1718090301741117, "dur":996, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  4223. ,{ "pid":12345, "tid":5, "ts":1718090301742113, "dur":1002, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  4224. ,{ "pid":12345, "tid":5, "ts":1718090301743115, "dur":909, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  4225. ,{ "pid":12345, "tid":5, "ts":1718090301744024, "dur":967, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  4226. ,{ "pid":12345, "tid":5, "ts":1718090301744991, "dur":1160, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  4227. ,{ "pid":12345, "tid":5, "ts":1718090301746151, "dur":30030, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  4228. ,{ "pid":12345, "tid":5, "ts":1718090301776290, "dur":105, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.UIModule-FeaturesChecked.txt_9bym.info" }}
  4229. ,{ "pid":12345, "tid":5, "ts":1718090301776466, "dur":51, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.Purchasing-FeaturesChecked.txt_b7xo.info" }}
  4230. ,{ "pid":12345, "tid":5, "ts":1718090301776543, "dur":57, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.JSONSerializeModule-FeaturesChecked.txt_h3yy.info" }}
  4231. ,{ "pid":12345, "tid":5, "ts":1718090301776628, "dur":67, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.CoreModule-FeaturesChecked.txt_8i9v.info" }}
  4232. ,{ "pid":12345, "tid":5, "ts":1718090301776698, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4233. ,{ "pid":12345, "tid":5, "ts":1718090301776765, "dur":187, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4234. ,{ "pid":12345, "tid":5, "ts":1718090301776962, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4235. ,{ "pid":12345, "tid":5, "ts":1718090301777087, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4236. ,{ "pid":12345, "tid":5, "ts":1718090301777278, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4237. ,{ "pid":12345, "tid":5, "ts":1718090301777363, "dur":151, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4238. ,{ "pid":12345, "tid":5, "ts":1718090301777519, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/armv7.swiftdoc" }}
  4239. ,{ "pid":12345, "tid":5, "ts":1718090301777610, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4240. ,{ "pid":12345, "tid":5, "ts":1718090301777689, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64.swiftinterface" }}
  4241. ,{ "pid":12345, "tid":5, "ts":1718090301777839, "dur":162, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4242. ,{ "pid":12345, "tid":5, "ts":1718090301778005, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm.swiftinterface" }}
  4243. ,{ "pid":12345, "tid":5, "ts":1718090301778156, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4244. ,{ "pid":12345, "tid":5, "ts":1718090301778310, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/USRVJsonStorageAggregator.h" }}
  4245. ,{ "pid":12345, "tid":5, "ts":1718090301778304, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/USRVJsonStorageAggregator.h" }}
  4246. ,{ "pid":12345, "tid":5, "ts":1718090301778419, "dur":205, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4247. ,{ "pid":12345, "tid":5, "ts":1718090301778632, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UPURStore.h" }}
  4248. ,{ "pid":12345, "tid":5, "ts":1718090301778630, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UPURStore.h" }}
  4249. ,{ "pid":12345, "tid":5, "ts":1718090301778759, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4250. ,{ "pid":12345, "tid":5, "ts":1718090301778891, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAnalyticsAcquisitionType.h" }}
  4251. ,{ "pid":12345, "tid":5, "ts":1718090301778890, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAnalyticsAcquisitionType.h" }}
  4252. ,{ "pid":12345, "tid":5, "ts":1718090301778984, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4253. ,{ "pid":12345, "tid":5, "ts":1718090301779116, "dur":126, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsLoadError.h" }}
  4254. ,{ "pid":12345, "tid":5, "ts":1718090301779115, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsLoadError.h" }}
  4255. ,{ "pid":12345, "tid":5, "ts":1718090301779258, "dur":158, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4256. ,{ "pid":12345, "tid":5, "ts":1718090301779436, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsDelegate.h" }}
  4257. ,{ "pid":12345, "tid":5, "ts":1718090301779433, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsDelegate.h" }}
  4258. ,{ "pid":12345, "tid":5, "ts":1718090301779531, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4259. ,{ "pid":12345, "tid":5, "ts":1718090301779635, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONPromoMetaData.h" }}
  4260. ,{ "pid":12345, "tid":5, "ts":1718090301779634, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONPromoMetaData.h" }}
  4261. ,{ "pid":12345, "tid":5, "ts":1718090301779750, "dur":163, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UANAApiAnalytics.h" }}
  4262. ,{ "pid":12345, "tid":5, "ts":1718090301779748, "dur":166, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UANAApiAnalytics.h" }}
  4263. ,{ "pid":12345, "tid":5, "ts":1718090301779914, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4264. ,{ "pid":12345, "tid":5, "ts":1718090301780019, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSLoadOptions.h" }}
  4265. ,{ "pid":12345, "tid":5, "ts":1718090301780017, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSLoadOptions.h" }}
  4266. ,{ "pid":12345, "tid":5, "ts":1718090301780075, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4267. ,{ "pid":12345, "tid":5, "ts":1718090301780209, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4268. ,{ "pid":12345, "tid":5, "ts":1718090301780329, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/NativeSymbol.cpp" }}
  4269. ,{ "pid":12345, "tid":5, "ts":1718090301780328, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/NativeSymbol.cpp" }}
  4270. ,{ "pid":12345, "tid":5, "ts":1718090301780440, "dur":165, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4271. ,{ "pid":12345, "tid":5, "ts":1718090301780617, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/icalls/mscorlib/System.Threading/Interlocked.h" }}
  4272. ,{ "pid":12345, "tid":5, "ts":1718090301780615, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/icalls/mscorlib/System.Threading/Interlocked.h" }}
  4273. ,{ "pid":12345, "tid":5, "ts":1718090301780744, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4274. ,{ "pid":12345, "tid":5, "ts":1718090301780851, "dur":137, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/Debugger.h" }}
  4275. ,{ "pid":12345, "tid":5, "ts":1718090301780849, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/Debugger.h" }}
  4276. ,{ "pid":12345, "tid":5, "ts":1718090301780989, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4277. ,{ "pid":12345, "tid":5, "ts":1718090301781128, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/utf8-cpp/source/utf8/checked.h" }}
  4278. ,{ "pid":12345, "tid":5, "ts":1718090301781127, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/utf8-cpp/source/utf8/checked.h" }}
  4279. ,{ "pid":12345, "tid":5, "ts":1718090301781250, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4280. ,{ "pid":12345, "tid":5, "ts":1718090301781321, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/StringView.h" }}
  4281. ,{ "pid":12345, "tid":5, "ts":1718090301781320, "dur":126, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/StringView.h" }}
  4282. ,{ "pid":12345, "tid":5, "ts":1718090301781447, "dur":159, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4283. ,{ "pid":12345, "tid":5, "ts":1718090301781611, "dur":127, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/PathUtils.h" }}
  4284. ,{ "pid":12345, "tid":5, "ts":1718090301781610, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/PathUtils.h" }}
  4285. ,{ "pid":12345, "tid":5, "ts":1718090301781739, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4286. ,{ "pid":12345, "tid":5, "ts":1718090301781898, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/mono-structs.cpp" }}
  4287. ,{ "pid":12345, "tid":5, "ts":1718090301781897, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/mono-structs.cpp" }}
  4288. ,{ "pid":12345, "tid":5, "ts":1718090301782003, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4289. ,{ "pid":12345, "tid":5, "ts":1718090301782112, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryPool.h" }}
  4290. ,{ "pid":12345, "tid":5, "ts":1718090301782111, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryPool.h" }}
  4291. ,{ "pid":12345, "tid":5, "ts":1718090301782179, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4292. ,{ "pid":12345, "tid":5, "ts":1718090301782268, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MathUtils.h" }}
  4293. ,{ "pid":12345, "tid":5, "ts":1718090301782267, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MathUtils.h" }}
  4294. ,{ "pid":12345, "tid":5, "ts":1718090301782338, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4295. ,{ "pid":12345, "tid":5, "ts":1718090301782448, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/InitOnce.h" }}
  4296. ,{ "pid":12345, "tid":5, "ts":1718090301782447, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/InitOnce.h" }}
  4297. ,{ "pid":12345, "tid":5, "ts":1718090301782532, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4298. ,{ "pid":12345, "tid":5, "ts":1718090301782618, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Functional.h" }}
  4299. ,{ "pid":12345, "tid":5, "ts":1718090301782616, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Functional.h" }}
  4300. ,{ "pid":12345, "tid":5, "ts":1718090301782696, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4301. ,{ "pid":12345, "tid":5, "ts":1718090301782810, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Environment.h" }}
  4302. ,{ "pid":12345, "tid":5, "ts":1718090301782809, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Environment.h" }}
  4303. ,{ "pid":12345, "tid":5, "ts":1718090301782910, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4304. ,{ "pid":12345, "tid":5, "ts":1718090301782994, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/CallOnce.h" }}
  4305. ,{ "pid":12345, "tid":5, "ts":1718090301782993, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/CallOnce.h" }}
  4306. ,{ "pid":12345, "tid":5, "ts":1718090301783068, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4307. ,{ "pid":12345, "tid":5, "ts":1718090301783130, "dur":148, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/pch/pch-c.c" }}
  4308. ,{ "pid":12345, "tid":5, "ts":1718090301783129, "dur":149, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/pch/pch-c.c" }}
  4309. ,{ "pid":12345, "tid":5, "ts":1718090301783278, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4310. ,{ "pid":12345, "tid":5, "ts":1718090301783349, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/Win32ApiSharedEmulation.cpp" }}
  4311. ,{ "pid":12345, "tid":5, "ts":1718090301783348, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Win32ApiSharedEmulation.cpp" }}
  4312. ,{ "pid":12345, "tid":5, "ts":1718090301783456, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4313. ,{ "pid":12345, "tid":5, "ts":1718090301783561, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4314. ,{ "pid":12345, "tid":5, "ts":1718090301783621, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/BrokeredFileSystem.cpp" }}
  4315. ,{ "pid":12345, "tid":5, "ts":1718090301783620, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/BrokeredFileSystem.cpp" }}
  4316. ,{ "pid":12345, "tid":5, "ts":1718090301783698, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4317. ,{ "pid":12345, "tid":5, "ts":1718090301783845, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/WindowsHeaders.h" }}
  4318. ,{ "pid":12345, "tid":5, "ts":1718090301783844, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/WindowsHeaders.h" }}
  4319. ,{ "pid":12345, "tid":5, "ts":1718090301783909, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4320. ,{ "pid":12345, "tid":5, "ts":1718090301784047, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Thread.cpp" }}
  4321. ,{ "pid":12345, "tid":5, "ts":1718090301784046, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Thread.cpp" }}
  4322. ,{ "pid":12345, "tid":5, "ts":1718090301784107, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4323. ,{ "pid":12345, "tid":5, "ts":1718090301784195, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Path.cpp" }}
  4324. ,{ "pid":12345, "tid":5, "ts":1718090301784194, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Path.cpp" }}
  4325. ,{ "pid":12345, "tid":5, "ts":1718090301784293, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4326. ,{ "pid":12345, "tid":5, "ts":1718090301784368, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Locale.cpp" }}
  4327. ,{ "pid":12345, "tid":5, "ts":1718090301784366, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Locale.cpp" }}
  4328. ,{ "pid":12345, "tid":5, "ts":1718090301784461, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4329. ,{ "pid":12345, "tid":5, "ts":1718090301784535, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/File.cpp" }}
  4330. ,{ "pid":12345, "tid":5, "ts":1718090301784534, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/File.cpp" }}
  4331. ,{ "pid":12345, "tid":5, "ts":1718090301784608, "dur":141, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4332. ,{ "pid":12345, "tid":5, "ts":1718090301784755, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Directory.cpp" }}
  4333. ,{ "pid":12345, "tid":5, "ts":1718090301784753, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Directory.cpp" }}
  4334. ,{ "pid":12345, "tid":5, "ts":1718090301784823, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4335. ,{ "pid":12345, "tid":5, "ts":1718090301784879, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/ConditionVariableImpl.h" }}
  4336. ,{ "pid":12345, "tid":5, "ts":1718090301784878, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/ConditionVariableImpl.h" }}
  4337. ,{ "pid":12345, "tid":5, "ts":1718090301784935, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4338. ,{ "pid":12345, "tid":5, "ts":1718090301785012, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/TimeZone.h" }}
  4339. ,{ "pid":12345, "tid":5, "ts":1718090301785011, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/TimeZone.h" }}
  4340. ,{ "pid":12345, "tid":5, "ts":1718090301785068, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4341. ,{ "pid":12345, "tid":5, "ts":1718090301785129, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/SystemCertificates.h" }}
  4342. ,{ "pid":12345, "tid":5, "ts":1718090301785127, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/SystemCertificates.h" }}
  4343. ,{ "pid":12345, "tid":5, "ts":1718090301785195, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4344. ,{ "pid":12345, "tid":5, "ts":1718090301785259, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/SocketBridge.h" }}
  4345. ,{ "pid":12345, "tid":5, "ts":1718090301785257, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/SocketBridge.h" }}
  4346. ,{ "pid":12345, "tid":5, "ts":1718090301785318, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4347. ,{ "pid":12345, "tid":5, "ts":1718090301785392, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ReaderWriterLock.h" }}
  4348. ,{ "pid":12345, "tid":5, "ts":1718090301785391, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ReaderWriterLock.h" }}
  4349. ,{ "pid":12345, "tid":5, "ts":1718090301785463, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4350. ,{ "pid":12345, "tid":5, "ts":1718090301785553, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/ThreadImpl.h" }}
  4351. ,{ "pid":12345, "tid":5, "ts":1718090301785552, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/ThreadImpl.h" }}
  4352. ,{ "pid":12345, "tid":5, "ts":1718090301785624, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4353. ,{ "pid":12345, "tid":5, "ts":1718090301785736, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4354. ,{ "pid":12345, "tid":5, "ts":1718090301785801, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/NetworkAccessHandlerStub.h" }}
  4355. ,{ "pid":12345, "tid":5, "ts":1718090301785800, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/NetworkAccessHandlerStub.h" }}
  4356. ,{ "pid":12345, "tid":5, "ts":1718090301785859, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4357. ,{ "pid":12345, "tid":5, "ts":1718090301785942, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/LibraryLoader.cpp" }}
  4358. ,{ "pid":12345, "tid":5, "ts":1718090301785941, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/LibraryLoader.cpp" }}
  4359. ,{ "pid":12345, "tid":5, "ts":1718090301786083, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/FileHandle.h" }}
  4360. ,{ "pid":12345, "tid":5, "ts":1718090301786082, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/FileHandle.h" }}
  4361. ,{ "pid":12345, "tid":5, "ts":1718090301786157, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4362. ,{ "pid":12345, "tid":5, "ts":1718090301786273, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Directory.cpp" }}
  4363. ,{ "pid":12345, "tid":5, "ts":1718090301786271, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Directory.cpp" }}
  4364. ,{ "pid":12345, "tid":5, "ts":1718090301786336, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4365. ,{ "pid":12345, "tid":5, "ts":1718090301786428, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Path.h" }}
  4366. ,{ "pid":12345, "tid":5, "ts":1718090301786427, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Path.h" }}
  4367. ,{ "pid":12345, "tid":5, "ts":1718090301786495, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4368. ,{ "pid":12345, "tid":5, "ts":1718090301786707, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Mutex.cpp" }}
  4369. ,{ "pid":12345, "tid":5, "ts":1718090301786706, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Mutex.cpp" }}
  4370. ,{ "pid":12345, "tid":5, "ts":1718090301786773, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4371. ,{ "pid":12345, "tid":5, "ts":1718090301786873, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/MarshalAlloc.h" }}
  4372. ,{ "pid":12345, "tid":5, "ts":1718090301786871, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/MarshalAlloc.h" }}
  4373. ,{ "pid":12345, "tid":5, "ts":1718090301786932, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4374. ,{ "pid":12345, "tid":5, "ts":1718090301787003, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Initialize.h" }}
  4375. ,{ "pid":12345, "tid":5, "ts":1718090301787002, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Initialize.h" }}
  4376. ,{ "pid":12345, "tid":5, "ts":1718090301787074, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4377. ,{ "pid":12345, "tid":5, "ts":1718090301787137, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/WaitObject.cpp" }}
  4378. ,{ "pid":12345, "tid":5, "ts":1718090301787136, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/WaitObject.cpp" }}
  4379. ,{ "pid":12345, "tid":5, "ts":1718090301787220, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4380. ,{ "pid":12345, "tid":5, "ts":1718090301787282, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/MutexImpl.h" }}
  4381. ,{ "pid":12345, "tid":5, "ts":1718090301787282, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/MutexImpl.h" }}
  4382. ,{ "pid":12345, "tid":5, "ts":1718090301787366, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4383. ,{ "pid":12345, "tid":5, "ts":1718090301787438, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/File.cpp" }}
  4384. ,{ "pid":12345, "tid":5, "ts":1718090301787436, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/File.cpp" }}
  4385. ,{ "pid":12345, "tid":5, "ts":1718090301787492, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4386. ,{ "pid":12345, "tid":5, "ts":1718090301787559, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/COM.cpp" }}
  4387. ,{ "pid":12345, "tid":5, "ts":1718090301787557, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/COM.cpp" }}
  4388. ,{ "pid":12345, "tid":5, "ts":1718090301787622, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4389. ,{ "pid":12345, "tid":5, "ts":1718090301787732, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/FastReaderReaderWriterLock.h" }}
  4390. ,{ "pid":12345, "tid":5, "ts":1718090301787731, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/FastReaderReaderWriterLock.h" }}
  4391. ,{ "pid":12345, "tid":5, "ts":1718090301787796, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4392. ,{ "pid":12345, "tid":5, "ts":1718090301787876, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Error.cpp" }}
  4393. ,{ "pid":12345, "tid":5, "ts":1718090301787874, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Error.cpp" }}
  4394. ,{ "pid":12345, "tid":5, "ts":1718090301787982, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4395. ,{ "pid":12345, "tid":5, "ts":1718090301788071, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Cryptography.h" }}
  4396. ,{ "pid":12345, "tid":5, "ts":1718090301788071, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Cryptography.h" }}
  4397. ,{ "pid":12345, "tid":5, "ts":1718090301788134, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4398. ,{ "pid":12345, "tid":5, "ts":1718090301788209, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ConditionVariable.h" }}
  4399. ,{ "pid":12345, "tid":5, "ts":1718090301788208, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ConditionVariable.h" }}
  4400. ,{ "pid":12345, "tid":5, "ts":1718090301788319, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4401. ,{ "pid":12345, "tid":5, "ts":1718090301788384, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_sizecheck.h" }}
  4402. ,{ "pid":12345, "tid":5, "ts":1718090301788383, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_sizecheck.h" }}
  4403. ,{ "pid":12345, "tid":5, "ts":1718090301788464, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4404. ,{ "pid":12345, "tid":5, "ts":1718090301788527, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_io.cpp" }}
  4405. ,{ "pid":12345, "tid":5, "ts":1718090301788527, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_io.cpp" }}
  4406. ,{ "pid":12345, "tid":5, "ts":1718090301788634, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4407. ,{ "pid":12345, "tid":5, "ts":1718090301788709, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/write_bits.h" }}
  4408. ,{ "pid":12345, "tid":5, "ts":1718090301788707, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/write_bits.h" }}
  4409. ,{ "pid":12345, "tid":5, "ts":1718090301788781, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4410. ,{ "pid":12345, "tid":5, "ts":1718090301788855, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/ringbuffer.h" }}
  4411. ,{ "pid":12345, "tid":5, "ts":1718090301788854, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/ringbuffer.h" }}
  4412. ,{ "pid":12345, "tid":5, "ts":1718090301788914, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4413. ,{ "pid":12345, "tid":5, "ts":1718090301788988, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/metablock.c" }}
  4414. ,{ "pid":12345, "tid":5, "ts":1718090301788987, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/metablock.c" }}
  4415. ,{ "pid":12345, "tid":5, "ts":1718090301789056, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4416. ,{ "pid":12345, "tid":5, "ts":1718090301789168, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/histogram.h" }}
  4417. ,{ "pid":12345, "tid":5, "ts":1718090301789166, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/histogram.h" }}
  4418. ,{ "pid":12345, "tid":5, "ts":1718090301789242, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4419. ,{ "pid":12345, "tid":5, "ts":1718090301789324, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_longest_match64_inc.h" }}
  4420. ,{ "pid":12345, "tid":5, "ts":1718090301789323, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_longest_match64_inc.h" }}
  4421. ,{ "pid":12345, "tid":5, "ts":1718090301789399, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4422. ,{ "pid":12345, "tid":5, "ts":1718090301789477, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/fast_log.h" }}
  4423. ,{ "pid":12345, "tid":5, "ts":1718090301789475, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/fast_log.h" }}
  4424. ,{ "pid":12345, "tid":5, "ts":1718090301789547, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4425. ,{ "pid":12345, "tid":5, "ts":1718090301789633, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/encoder_dict.c" }}
  4426. ,{ "pid":12345, "tid":5, "ts":1718090301789631, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/encoder_dict.c" }}
  4427. ,{ "pid":12345, "tid":5, "ts":1718090301789728, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4428. ,{ "pid":12345, "tid":5, "ts":1718090301789793, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment.h" }}
  4429. ,{ "pid":12345, "tid":5, "ts":1718090301789791, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment.h" }}
  4430. ,{ "pid":12345, "tid":5, "ts":1718090301789861, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4431. ,{ "pid":12345, "tid":5, "ts":1718090301789988, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4432. ,{ "pid":12345, "tid":5, "ts":1718090301790110, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4433. ,{ "pid":12345, "tid":5, "ts":1718090301790200, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references.h" }}
  4434. ,{ "pid":12345, "tid":5, "ts":1718090301790198, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references.h" }}
  4435. ,{ "pid":12345, "tid":5, "ts":1718090301790297, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/prefix.h" }}
  4436. ,{ "pid":12345, "tid":5, "ts":1718090301790296, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/prefix.h" }}
  4437. ,{ "pid":12345, "tid":5, "ts":1718090301790358, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4438. ,{ "pid":12345, "tid":5, "ts":1718090301790441, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/version.h" }}
  4439. ,{ "pid":12345, "tid":5, "ts":1718090301790440, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/version.h" }}
  4440. ,{ "pid":12345, "tid":5, "ts":1718090301790517, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4441. ,{ "pid":12345, "tid":5, "ts":1718090301790590, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/context.c" }}
  4442. ,{ "pid":12345, "tid":5, "ts":1718090301790588, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/context.c" }}
  4443. ,{ "pid":12345, "tid":5, "ts":1718090301790642, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4444. ,{ "pid":12345, "tid":5, "ts":1718090301790707, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Time-c-api.h" }}
  4445. ,{ "pid":12345, "tid":5, "ts":1718090301790706, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Time-c-api.h" }}
  4446. ,{ "pid":12345, "tid":5, "ts":1718090301790779, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4447. ,{ "pid":12345, "tid":5, "ts":1718090301790852, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Path-c-api.h" }}
  4448. ,{ "pid":12345, "tid":5, "ts":1718090301790903, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4449. ,{ "pid":12345, "tid":5, "ts":1718090301791000, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/File.cpp" }}
  4450. ,{ "pid":12345, "tid":5, "ts":1718090301790998, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/File.cpp" }}
  4451. ,{ "pid":12345, "tid":5, "ts":1718090301791088, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4452. ,{ "pid":12345, "tid":5, "ts":1718090301791174, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Directory.cpp" }}
  4453. ,{ "pid":12345, "tid":5, "ts":1718090301791172, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Directory.cpp" }}
  4454. ,{ "pid":12345, "tid":5, "ts":1718090301791234, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4455. ,{ "pid":12345, "tid":5, "ts":1718090301791305, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/BrokeredFileSystem.h" }}
  4456. ,{ "pid":12345, "tid":5, "ts":1718090301791303, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/BrokeredFileSystem.h" }}
  4457. ,{ "pid":12345, "tid":5, "ts":1718090301791460, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Android/Locale.cpp" }}
  4458. ,{ "pid":12345, "tid":5, "ts":1718090301791458, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Android/Locale.cpp" }}
  4459. ,{ "pid":12345, "tid":5, "ts":1718090301791533, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4460. ,{ "pid":12345, "tid":5, "ts":1718090301791691, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4461. ,{ "pid":12345, "tid":5, "ts":1718090301791814, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4462. ,{ "pid":12345, "tid":5, "ts":1718090301791891, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppSignature.h" }}
  4463. ,{ "pid":12345, "tid":5, "ts":1718090301791890, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppSignature.h" }}
  4464. ,{ "pid":12345, "tid":5, "ts":1718090301791959, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4465. ,{ "pid":12345, "tid":5, "ts":1718090301792026, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericInstHash.h" }}
  4466. ,{ "pid":12345, "tid":5, "ts":1718090301792025, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericInstHash.h" }}
  4467. ,{ "pid":12345, "tid":5, "ts":1718090301792078, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4468. ,{ "pid":12345, "tid":5, "ts":1718090301792144, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericContextCompare.h" }}
  4469. ,{ "pid":12345, "tid":5, "ts":1718090301792143, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericContextCompare.h" }}
  4470. ,{ "pid":12345, "tid":5, "ts":1718090301792277, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4471. ,{ "pid":12345, "tid":5, "ts":1718090301792384, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/GenericSharing.h" }}
  4472. ,{ "pid":12345, "tid":5, "ts":1718090301792382, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericSharing.h" }}
  4473. ,{ "pid":12345, "tid":5, "ts":1718090301792445, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4474. ,{ "pid":12345, "tid":5, "ts":1718090301792542, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/FieldLayout.h" }}
  4475. ,{ "pid":12345, "tid":5, "ts":1718090301792540, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/FieldLayout.h" }}
  4476. ,{ "pid":12345, "tid":5, "ts":1718090301792632, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4477. ,{ "pid":12345, "tid":5, "ts":1718090301792741, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/ArrayMetadata.h" }}
  4478. ,{ "pid":12345, "tid":5, "ts":1718090301792740, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/ArrayMetadata.h" }}
  4479. ,{ "pid":12345, "tid":5, "ts":1718090301792814, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4480. ,{ "pid":12345, "tid":5, "ts":1718090301792892, "dur":126, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-string-types.h" }}
  4481. ,{ "pid":12345, "tid":5, "ts":1718090301792891, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-string-types.h" }}
  4482. ,{ "pid":12345, "tid":5, "ts":1718090301793077, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-number-formatter.h" }}
  4483. ,{ "pid":12345, "tid":5, "ts":1718090301793076, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-number-formatter.h" }}
  4484. ,{ "pid":12345, "tid":5, "ts":1718090301793134, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4485. ,{ "pid":12345, "tid":5, "ts":1718090301793195, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-config.h" }}
  4486. ,{ "pid":12345, "tid":5, "ts":1718090301793194, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-config.h" }}
  4487. ,{ "pid":12345, "tid":5, "ts":1718090301793257, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4488. ,{ "pid":12345, "tid":5, "ts":1718090301793328, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-api.h" }}
  4489. ,{ "pid":12345, "tid":5, "ts":1718090301793327, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-api.h" }}
  4490. ,{ "pid":12345, "tid":5, "ts":1718090301793440, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4491. ,{ "pid":12345, "tid":5, "ts":1718090301793532, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net/Dns.h" }}
  4492. ,{ "pid":12345, "tid":5, "ts":1718090301793531, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net/Dns.h" }}
  4493. ,{ "pid":12345, "tid":5, "ts":1718090301793599, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4494. ,{ "pid":12345, "tid":5, "ts":1718090301793657, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.NetworkInformation/MacOsIPInterfaceProperties.cpp" }}
  4495. ,{ "pid":12345, "tid":5, "ts":1718090301793656, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.NetworkInformation/MacOsIPInterfaceProperties.cpp" }}
  4496. ,{ "pid":12345, "tid":5, "ts":1718090301793736, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4497. ,{ "pid":12345, "tid":5, "ts":1718090301793820, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/Process.h" }}
  4498. ,{ "pid":12345, "tid":5, "ts":1718090301793819, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/Process.h" }}
  4499. ,{ "pid":12345, "tid":5, "ts":1718090301793937, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4500. ,{ "pid":12345, "tid":5, "ts":1718090301794088, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/Mono.Net.Security/MonoTlsProviderFactory.cpp" }}
  4501. ,{ "pid":12345, "tid":5, "ts":1718090301794087, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/Mono.Net.Security/MonoTlsProviderFactory.cpp" }}
  4502. ,{ "pid":12345, "tid":5, "ts":1718090301794157, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4503. ,{ "pid":12345, "tid":5, "ts":1718090301794222, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/TypedReference.h" }}
  4504. ,{ "pid":12345, "tid":5, "ts":1718090301794221, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/TypedReference.h" }}
  4505. ,{ "pid":12345, "tid":5, "ts":1718090301794331, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4506. ,{ "pid":12345, "tid":5, "ts":1718090301794403, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeTypeHandle.cpp" }}
  4507. ,{ "pid":12345, "tid":5, "ts":1718090301794402, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeTypeHandle.cpp" }}
  4508. ,{ "pid":12345, "tid":5, "ts":1718090301794467, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4509. ,{ "pid":12345, "tid":5, "ts":1718090301794558, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Object.h" }}
  4510. ,{ "pid":12345, "tid":5, "ts":1718090301794557, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Object.h" }}
  4511. ,{ "pid":12345, "tid":5, "ts":1718090301794673, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4512. ,{ "pid":12345, "tid":5, "ts":1718090301794803, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/GC.h" }}
  4513. ,{ "pid":12345, "tid":5, "ts":1718090301794802, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/GC.h" }}
  4514. ,{ "pid":12345, "tid":5, "ts":1718090301794865, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4515. ,{ "pid":12345, "tid":5, "ts":1718090301794938, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Enum.h" }}
  4516. ,{ "pid":12345, "tid":5, "ts":1718090301794937, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Enum.h" }}
  4517. ,{ "pid":12345, "tid":5, "ts":1718090301795009, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4518. ,{ "pid":12345, "tid":5, "ts":1718090301795119, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/CurrentSystemTimeZone.cpp" }}
  4519. ,{ "pid":12345, "tid":5, "ts":1718090301795117, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/CurrentSystemTimeZone.cpp" }}
  4520. ,{ "pid":12345, "tid":5, "ts":1718090301795208, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4521. ,{ "pid":12345, "tid":5, "ts":1718090301795286, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Array.h" }}
  4522. ,{ "pid":12345, "tid":5, "ts":1718090301795285, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Array.h" }}
  4523. ,{ "pid":12345, "tid":5, "ts":1718090301795360, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4524. ,{ "pid":12345, "tid":5, "ts":1718090301795448, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Timer.h" }}
  4525. ,{ "pid":12345, "tid":5, "ts":1718090301795446, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Timer.h" }}
  4526. ,{ "pid":12345, "tid":5, "ts":1718090301795573, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/NativeEventCalls.cpp" }}
  4527. ,{ "pid":12345, "tid":5, "ts":1718090301795572, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/NativeEventCalls.cpp" }}
  4528. ,{ "pid":12345, "tid":5, "ts":1718090301795644, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4529. ,{ "pid":12345, "tid":5, "ts":1718090301795740, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Text/Normalization.h" }}
  4530. ,{ "pid":12345, "tid":5, "ts":1718090301795739, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Text/Normalization.h" }}
  4531. ,{ "pid":12345, "tid":5, "ts":1718090301795807, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4532. ,{ "pid":12345, "tid":5, "ts":1718090301795898, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsImpersonationContext.cpp" }}
  4533. ,{ "pid":12345, "tid":5, "ts":1718090301795896, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsImpersonationContext.cpp" }}
  4534. ,{ "pid":12345, "tid":5, "ts":1718090301795955, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4535. ,{ "pid":12345, "tid":5, "ts":1718090301796031, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime/RuntimeImports.h" }}
  4536. ,{ "pid":12345, "tid":5, "ts":1718090301796030, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime/RuntimeImports.h" }}
  4537. ,{ "pid":12345, "tid":5, "ts":1718090301796119, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4538. ,{ "pid":12345, "tid":5, "ts":1718090301796243, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Proxies/RealProxy.cpp" }}
  4539. ,{ "pid":12345, "tid":5, "ts":1718090301796242, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Proxies/RealProxy.cpp" }}
  4540. ,{ "pid":12345, "tid":5, "ts":1718090301796330, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4541. ,{ "pid":12345, "tid":5, "ts":1718090301796409, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Activation/ActivationServices.h" }}
  4542. ,{ "pid":12345, "tid":5, "ts":1718090301796406, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Activation/ActivationServices.h" }}
  4543. ,{ "pid":12345, "tid":5, "ts":1718090301796503, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4544. ,{ "pid":12345, "tid":5, "ts":1718090301796588, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/GCHandle.cpp" }}
  4545. ,{ "pid":12345, "tid":5, "ts":1718090301796587, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/GCHandle.cpp" }}
  4546. ,{ "pid":12345, "tid":5, "ts":1718090301796670, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4547. ,{ "pid":12345, "tid":5, "ts":1718090301796763, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeModule.h" }}
  4548. ,{ "pid":12345, "tid":5, "ts":1718090301796762, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeModule.h" }}
  4549. ,{ "pid":12345, "tid":5, "ts":1718090301796831, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4550. ,{ "pid":12345, "tid":5, "ts":1718090301796930, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeEventInfo.cpp" }}
  4551. ,{ "pid":12345, "tid":5, "ts":1718090301796929, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeEventInfo.cpp" }}
  4552. ,{ "pid":12345, "tid":5, "ts":1718090301797013, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4553. ,{ "pid":12345, "tid":5, "ts":1718090301797109, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/MonoMethodInfo.cpp" }}
  4554. ,{ "pid":12345, "tid":5, "ts":1718090301797108, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/MonoMethodInfo.cpp" }}
  4555. ,{ "pid":12345, "tid":5, "ts":1718090301797192, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4556. ,{ "pid":12345, "tid":5, "ts":1718090301797274, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/FieldInfo.cpp" }}
  4557. ,{ "pid":12345, "tid":5, "ts":1718090301797273, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/FieldInfo.cpp" }}
  4558. ,{ "pid":12345, "tid":5, "ts":1718090301797349, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4559. ,{ "pid":12345, "tid":5, "ts":1718090301797428, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/Assembly.h" }}
  4560. ,{ "pid":12345, "tid":5, "ts":1718090301797426, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/Assembly.h" }}
  4561. ,{ "pid":12345, "tid":5, "ts":1718090301797501, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4562. ,{ "pid":12345, "tid":5, "ts":1718090301797577, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/DriveInfo.cpp" }}
  4563. ,{ "pid":12345, "tid":5, "ts":1718090301797576, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/DriveInfo.cpp" }}
  4564. ,{ "pid":12345, "tid":5, "ts":1718090301797660, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4565. ,{ "pid":12345, "tid":5, "ts":1718090301797757, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfo.cpp" }}
  4566. ,{ "pid":12345, "tid":5, "ts":1718090301797756, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfo.cpp" }}
  4567. ,{ "pid":12345, "tid":5, "ts":1718090301797817, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4568. ,{ "pid":12345, "tid":5, "ts":1718090301797910, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CalendarData.cpp" }}
  4569. ,{ "pid":12345, "tid":5, "ts":1718090301797908, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CalendarData.cpp" }}
  4570. ,{ "pid":12345, "tid":5, "ts":1718090301797972, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4571. ,{ "pid":12345, "tid":5, "ts":1718090301798067, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/SafeStringMarshal.h" }}
  4572. ,{ "pid":12345, "tid":5, "ts":1718090301798065, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/SafeStringMarshal.h" }}
  4573. ,{ "pid":12345, "tid":5, "ts":1718090301798121, "dur":138, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4574. ,{ "pid":12345, "tid":5, "ts":1718090301798288, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4575. ,{ "pid":12345, "tid":5, "ts":1718090301798371, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Microsoft.Win32/NativeMethods.h" }}
  4576. ,{ "pid":12345, "tid":5, "ts":1718090301798369, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Microsoft.Win32/NativeMethods.h" }}
  4577. ,{ "pid":12345, "tid":5, "ts":1718090301798459, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4578. ,{ "pid":12345, "tid":5, "ts":1718090301798535, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/gc_wrapper.h" }}
  4579. ,{ "pid":12345, "tid":5, "ts":1718090301798534, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/gc_wrapper.h" }}
  4580. ,{ "pid":12345, "tid":5, "ts":1718090301798599, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4581. ,{ "pid":12345, "tid":5, "ts":1718090301798698, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/Allocator.h" }}
  4582. ,{ "pid":12345, "tid":5, "ts":1718090301798697, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/Allocator.h" }}
  4583. ,{ "pid":12345, "tid":5, "ts":1718090301798793, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4584. ,{ "pid":12345, "tid":5, "ts":1718090301798905, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-il2cpp.h" }}
  4585. ,{ "pid":12345, "tid":5, "ts":1718090301798904, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-il2cpp.h" }}
  4586. ,{ "pid":12345, "tid":5, "ts":1718090301798977, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4587. ,{ "pid":12345, "tid":5, "ts":1718090301799051, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/zutil.c" }}
  4588. ,{ "pid":12345, "tid":5, "ts":1718090301799050, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/zutil.c" }}
  4589. ,{ "pid":12345, "tid":5, "ts":1718090301799124, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4590. ,{ "pid":12345, "tid":5, "ts":1718090301799200, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/inftrees.h" }}
  4591. ,{ "pid":12345, "tid":5, "ts":1718090301799198, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inftrees.h" }}
  4592. ,{ "pid":12345, "tid":5, "ts":1718090301799272, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4593. ,{ "pid":12345, "tid":5, "ts":1718090301799334, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/infback.c" }}
  4594. ,{ "pid":12345, "tid":5, "ts":1718090301799332, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/infback.c" }}
  4595. ,{ "pid":12345, "tid":5, "ts":1718090301799443, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/deflate.h" }}
  4596. ,{ "pid":12345, "tid":5, "ts":1718090301799443, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/deflate.h" }}
  4597. ,{ "pid":12345, "tid":5, "ts":1718090301799515, "dur":144, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4598. ,{ "pid":12345, "tid":5, "ts":1718090301799664, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/xxHash/xxh3.h" }}
  4599. ,{ "pid":12345, "tid":5, "ts":1718090301799663, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xxHash/xxh3.h" }}
  4600. ,{ "pid":12345, "tid":5, "ts":1718090301799736, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4601. ,{ "pid":12345, "tid":5, "ts":1718090301799805, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/xamarin-android/logger.h" }}
  4602. ,{ "pid":12345, "tid":5, "ts":1718090301799803, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xamarin-android/logger.h" }}
  4603. ,{ "pid":12345, "tid":5, "ts":1718090301799895, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4604. ,{ "pid":12345, "tid":5, "ts":1718090301799984, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/valgrind.h" }}
  4605. ,{ "pid":12345, "tid":5, "ts":1718090301799983, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/valgrind.h" }}
  4606. ,{ "pid":12345, "tid":5, "ts":1718090301800054, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4607. ,{ "pid":12345, "tid":5, "ts":1718090301800172, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/parse.h" }}
  4608. ,{ "pid":12345, "tid":5, "ts":1718090301800171, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/parse.h" }}
  4609. ,{ "pid":12345, "tid":5, "ts":1718090301800253, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4610. ,{ "pid":12345, "tid":5, "ts":1718090301800323, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/networking.c" }}
  4611. ,{ "pid":12345, "tid":5, "ts":1718090301800321, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/networking.c" }}
  4612. ,{ "pid":12345, "tid":5, "ts":1718090301800395, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4613. ,{ "pid":12345, "tid":5, "ts":1718090301800500, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-value-hash.h" }}
  4614. ,{ "pid":12345, "tid":5, "ts":1718090301800498, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-value-hash.h" }}
  4615. ,{ "pid":12345, "tid":5, "ts":1718090301800574, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4616. ,{ "pid":12345, "tid":5, "ts":1718090301800652, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-time.h" }}
  4617. ,{ "pid":12345, "tid":5, "ts":1718090301800651, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-time.h" }}
  4618. ,{ "pid":12345, "tid":5, "ts":1718090301800748, "dur":694, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4619. ,{ "pid":12345, "tid":5, "ts":1718090301801448, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-posix-signals.c" }}
  4620. ,{ "pid":12345, "tid":5, "ts":1718090301801447, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-posix-signals.c" }}
  4621. ,{ "pid":12345, "tid":5, "ts":1718090301801538, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4622. ,{ "pid":12345, "tid":5, "ts":1718090301801623, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-android.c" }}
  4623. ,{ "pid":12345, "tid":5, "ts":1718090301801621, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-android.c" }}
  4624. ,{ "pid":12345, "tid":5, "ts":1718090301801707, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4625. ,{ "pid":12345, "tid":5, "ts":1718090301801792, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-sha1.c" }}
  4626. ,{ "pid":12345, "tid":5, "ts":1718090301801791, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-sha1.c" }}
  4627. ,{ "pid":12345, "tid":5, "ts":1718090301801883, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4628. ,{ "pid":12345, "tid":5, "ts":1718090301801998, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-proclib.c" }}
  4629. ,{ "pid":12345, "tid":5, "ts":1718090301801996, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-proclib.c" }}
  4630. ,{ "pid":12345, "tid":5, "ts":1718090301802072, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4631. ,{ "pid":12345, "tid":5, "ts":1718090301802155, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-os-wait-win32.c" }}
  4632. ,{ "pid":12345, "tid":5, "ts":1718090301802154, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-os-wait-win32.c" }}
  4633. ,{ "pid":12345, "tid":5, "ts":1718090301802220, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4634. ,{ "pid":12345, "tid":5, "ts":1718090301802310, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-networkinterfaces.h" }}
  4635. ,{ "pid":12345, "tid":5, "ts":1718090301802309, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-networkinterfaces.h" }}
  4636. ,{ "pid":12345, "tid":5, "ts":1718090301802393, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4637. ,{ "pid":12345, "tid":5, "ts":1718090301802465, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-mmap-internals.h" }}
  4638. ,{ "pid":12345, "tid":5, "ts":1718090301802464, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-mmap-internals.h" }}
  4639. ,{ "pid":12345, "tid":5, "ts":1718090301802531, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4640. ,{ "pid":12345, "tid":5, "ts":1718090301802615, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-logger.h" }}
  4641. ,{ "pid":12345, "tid":5, "ts":1718090301802613, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-logger.h" }}
  4642. ,{ "pid":12345, "tid":5, "ts":1718090301802698, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4643. ,{ "pid":12345, "tid":5, "ts":1718090301802776, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-log-common.c" }}
  4644. ,{ "pid":12345, "tid":5, "ts":1718090301802773, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-log-common.c" }}
  4645. ,{ "pid":12345, "tid":5, "ts":1718090301802847, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4646. ,{ "pid":12345, "tid":5, "ts":1718090301802905, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-internal-hash.h" }}
  4647. ,{ "pid":12345, "tid":5, "ts":1718090301802904, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-internal-hash.h" }}
  4648. ,{ "pid":12345, "tid":5, "ts":1718090301802965, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4649. ,{ "pid":12345, "tid":5, "ts":1718090301803026, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-hwcap-arm64.c" }}
  4650. ,{ "pid":12345, "tid":5, "ts":1718090301803025, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-hwcap-arm64.c" }}
  4651. ,{ "pid":12345, "tid":5, "ts":1718090301803084, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4652. ,{ "pid":12345, "tid":5, "ts":1718090301803140, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-error-internals.h" }}
  4653. ,{ "pid":12345, "tid":5, "ts":1718090301803140, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-error-internals.h" }}
  4654. ,{ "pid":12345, "tid":5, "ts":1718090301803202, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4655. ,{ "pid":12345, "tid":5, "ts":1718090301803265, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl-windows-internals.h" }}
  4656. ,{ "pid":12345, "tid":5, "ts":1718090301803264, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl-windows-internals.h" }}
  4657. ,{ "pid":12345, "tid":5, "ts":1718090301803320, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4658. ,{ "pid":12345, "tid":5, "ts":1718090301803375, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-counters.h" }}
  4659. ,{ "pid":12345, "tid":5, "ts":1718090301803374, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-counters.h" }}
  4660. ,{ "pid":12345, "tid":5, "ts":1718090301803426, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4661. ,{ "pid":12345, "tid":5, "ts":1718090301803485, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-conc-hashtable.c" }}
  4662. ,{ "pid":12345, "tid":5, "ts":1718090301803484, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-conc-hashtable.c" }}
  4663. ,{ "pid":12345, "tid":5, "ts":1718090301803563, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4664. ,{ "pid":12345, "tid":5, "ts":1718090301803628, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/memcheck.h" }}
  4665. ,{ "pid":12345, "tid":5, "ts":1718090301803626, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/memcheck.h" }}
  4666. ,{ "pid":12345, "tid":5, "ts":1718090301803693, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4667. ,{ "pid":12345, "tid":5, "ts":1718090301803751, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/lock-free-queue.c" }}
  4668. ,{ "pid":12345, "tid":5, "ts":1718090301803750, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/lock-free-queue.c" }}
  4669. ,{ "pid":12345, "tid":5, "ts":1718090301803806, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4670. ,{ "pid":12345, "tid":5, "ts":1718090301803867, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/json.c" }}
  4671. ,{ "pid":12345, "tid":5, "ts":1718090301803918, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4672. ,{ "pid":12345, "tid":5, "ts":1718090301803988, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/freebsd-dwarf.h" }}
  4673. ,{ "pid":12345, "tid":5, "ts":1718090301803987, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/freebsd-dwarf.h" }}
  4674. ,{ "pid":12345, "tid":5, "ts":1718090301804043, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4675. ,{ "pid":12345, "tid":5, "ts":1718090301804106, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/atomic.h" }}
  4676. ,{ "pid":12345, "tid":5, "ts":1718090301804105, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/atomic.h" }}
  4677. ,{ "pid":12345, "tid":5, "ts":1718090301804165, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4678. ,{ "pid":12345, "tid":5, "ts":1718090301804223, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-split-nursery.c" }}
  4679. ,{ "pid":12345, "tid":5, "ts":1718090301804222, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-split-nursery.c" }}
  4680. ,{ "pid":12345, "tid":5, "ts":1718090301804286, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4681. ,{ "pid":12345, "tid":5, "ts":1718090301804364, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-protocol-def.h" }}
  4682. ,{ "pid":12345, "tid":5, "ts":1718090301804363, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-protocol-def.h" }}
  4683. ,{ "pid":12345, "tid":5, "ts":1718090301804440, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4684. ,{ "pid":12345, "tid":5, "ts":1718090301804514, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-nursery-allocator.c" }}
  4685. ,{ "pid":12345, "tid":5, "ts":1718090301804513, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-nursery-allocator.c" }}
  4686. ,{ "pid":12345, "tid":5, "ts":1718090301804575, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4687. ,{ "pid":12345, "tid":5, "ts":1718090301804637, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-marksweep-drain-gray-stack.h" }}
  4688. ,{ "pid":12345, "tid":5, "ts":1718090301804636, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-marksweep-drain-gray-stack.h" }}
  4689. ,{ "pid":12345, "tid":5, "ts":1718090301804716, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4690. ,{ "pid":12345, "tid":5, "ts":1718090301804813, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-hash-table.c" }}
  4691. ,{ "pid":12345, "tid":5, "ts":1718090301804811, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-hash-table.c" }}
  4692. ,{ "pid":12345, "tid":5, "ts":1718090301804895, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4693. ,{ "pid":12345, "tid":5, "ts":1718090301804973, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-descriptor.c" }}
  4694. ,{ "pid":12345, "tid":5, "ts":1718090301804972, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-descriptor.c" }}
  4695. ,{ "pid":12345, "tid":5, "ts":1718090301805033, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4696. ,{ "pid":12345, "tid":5, "ts":1718090301805098, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-array-list.h" }}
  4697. ,{ "pid":12345, "tid":5, "ts":1718090301805097, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-array-list.h" }}
  4698. ,{ "pid":12345, "tid":5, "ts":1718090301805154, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4699. ,{ "pid":12345, "tid":5, "ts":1718090301805215, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/debugger-state-machine.h" }}
  4700. ,{ "pid":12345, "tid":5, "ts":1718090301805214, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/debugger-state-machine.h" }}
  4701. ,{ "pid":12345, "tid":5, "ts":1718090301805270, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4702. ,{ "pid":12345, "tid":5, "ts":1718090301805336, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32socket.h" }}
  4703. ,{ "pid":12345, "tid":5, "ts":1718090301805335, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32socket.h" }}
  4704. ,{ "pid":12345, "tid":5, "ts":1718090301805396, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4705. ,{ "pid":12345, "tid":5, "ts":1718090301805461, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32semaphore-unix.c" }}
  4706. ,{ "pid":12345, "tid":5, "ts":1718090301805460, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32semaphore-unix.c" }}
  4707. ,{ "pid":12345, "tid":5, "ts":1718090301805531, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4708. ,{ "pid":12345, "tid":5, "ts":1718090301805620, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-unix-default.c" }}
  4709. ,{ "pid":12345, "tid":5, "ts":1718090301805619, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-unix-default.c" }}
  4710. ,{ "pid":12345, "tid":5, "ts":1718090301805748, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32handle.c" }}
  4711. ,{ "pid":12345, "tid":5, "ts":1718090301805745, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32handle.c" }}
  4712. ,{ "pid":12345, "tid":5, "ts":1718090301805832, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4713. ,{ "pid":12345, "tid":5, "ts":1718090301805940, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file-unix-glob.h" }}
  4714. ,{ "pid":12345, "tid":5, "ts":1718090301805939, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file-unix-glob.h" }}
  4715. ,{ "pid":12345, "tid":5, "ts":1718090301806029, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4716. ,{ "pid":12345, "tid":5, "ts":1718090301806108, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32error.h" }}
  4717. ,{ "pid":12345, "tid":5, "ts":1718090301806106, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32error.h" }}
  4718. ,{ "pid":12345, "tid":5, "ts":1718090301806191, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4719. ,{ "pid":12345, "tid":5, "ts":1718090301806287, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/unity-utils.c" }}
  4720. ,{ "pid":12345, "tid":5, "ts":1718090301806286, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/unity-utils.c" }}
  4721. ,{ "pid":12345, "tid":5, "ts":1718090301806376, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4722. ,{ "pid":12345, "tid":5, "ts":1718090301806463, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threadpool.h" }}
  4723. ,{ "pid":12345, "tid":5, "ts":1718090301806462, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threadpool.h" }}
  4724. ,{ "pid":12345, "tid":5, "ts":1718090301806536, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4725. ,{ "pid":12345, "tid":5, "ts":1718090301806616, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sysmath.h" }}
  4726. ,{ "pid":12345, "tid":5, "ts":1718090301806615, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sysmath.h" }}
  4727. ,{ "pid":12345, "tid":5, "ts":1718090301806699, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4728. ,{ "pid":12345, "tid":5, "ts":1718090301806763, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sre-encode.c" }}
  4729. ,{ "pid":12345, "tid":5, "ts":1718090301806761, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sre-encode.c" }}
  4730. ,{ "pid":12345, "tid":5, "ts":1718090301806841, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4731. ,{ "pid":12345, "tid":5, "ts":1718090301806922, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-mono.c" }}
  4732. ,{ "pid":12345, "tid":5, "ts":1718090301806921, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-mono.c" }}
  4733. ,{ "pid":12345, "tid":5, "ts":1718090301807012, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4734. ,{ "pid":12345, "tid":5, "ts":1718090301807099, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/seq-points-data.c" }}
  4735. ,{ "pid":12345, "tid":5, "ts":1718090301807097, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/seq-points-data.c" }}
  4736. ,{ "pid":12345, "tid":5, "ts":1718090301807192, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4737. ,{ "pid":12345, "tid":5, "ts":1718090301807279, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/runtime.c" }}
  4738. ,{ "pid":12345, "tid":5, "ts":1718090301807278, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/runtime.c" }}
  4739. ,{ "pid":12345, "tid":5, "ts":1718090301807372, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4740. ,{ "pid":12345, "tid":5, "ts":1718090301807465, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/reflection-cache.h" }}
  4741. ,{ "pid":12345, "tid":5, "ts":1718090301807463, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/reflection-cache.h" }}
  4742. ,{ "pid":12345, "tid":5, "ts":1718090301807550, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4743. ,{ "pid":12345, "tid":5, "ts":1718090301807639, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/profiler-private.h" }}
  4744. ,{ "pid":12345, "tid":5, "ts":1718090301807637, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/profiler-private.h" }}
  4745. ,{ "pid":12345, "tid":5, "ts":1718090301807726, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4746. ,{ "pid":12345, "tid":5, "ts":1718090301807823, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/opcodes.c" }}
  4747. ,{ "pid":12345, "tid":5, "ts":1718090301807821, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/opcodes.c" }}
  4748. ,{ "pid":12345, "tid":5, "ts":1718090301807899, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4749. ,{ "pid":12345, "tid":5, "ts":1718090301807987, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/number-ms.c" }}
  4750. ,{ "pid":12345, "tid":5, "ts":1718090301807985, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/number-ms.c" }}
  4751. ,{ "pid":12345, "tid":5, "ts":1718090301808070, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4752. ,{ "pid":12345, "tid":5, "ts":1718090301808172, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-security-windows-internals.h" }}
  4753. ,{ "pid":12345, "tid":5, "ts":1718090301808170, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-security-windows-internals.h" }}
  4754. ,{ "pid":12345, "tid":5, "ts":1718090301808262, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4755. ,{ "pid":12345, "tid":5, "ts":1718090301808359, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-mlist.c" }}
  4756. ,{ "pid":12345, "tid":5, "ts":1718090301808357, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-mlist.c" }}
  4757. ,{ "pid":12345, "tid":5, "ts":1718090301808421, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4758. ,{ "pid":12345, "tid":5, "ts":1718090301808502, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-endian.c" }}
  4759. ,{ "pid":12345, "tid":5, "ts":1718090301808500, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-endian.c" }}
  4760. ,{ "pid":12345, "tid":5, "ts":1718090301808580, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4761. ,{ "pid":12345, "tid":5, "ts":1718090301808661, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-conc-hash.h" }}
  4762. ,{ "pid":12345, "tid":5, "ts":1718090301808659, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-conc-hash.h" }}
  4763. ,{ "pid":12345, "tid":5, "ts":1718090301808744, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4764. ,{ "pid":12345, "tid":5, "ts":1718090301808824, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/method-builder.c" }}
  4765. ,{ "pid":12345, "tid":5, "ts":1718090301808822, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/method-builder.c" }}
  4766. ,{ "pid":12345, "tid":5, "ts":1718090301808902, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4767. ,{ "pid":12345, "tid":5, "ts":1718090301809018, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mempool.h" }}
  4768. ,{ "pid":12345, "tid":5, "ts":1718090301809017, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mempool.h" }}
  4769. ,{ "pid":12345, "tid":5, "ts":1718090301809108, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4770. ,{ "pid":12345, "tid":5, "ts":1718090301809217, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/marshal-internals.h" }}
  4771. ,{ "pid":12345, "tid":5, "ts":1718090301809216, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/marshal-internals.h" }}
  4772. ,{ "pid":12345, "tid":5, "ts":1718090301809320, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4773. ,{ "pid":12345, "tid":5, "ts":1718090301809426, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/loader-internals.h" }}
  4774. ,{ "pid":12345, "tid":5, "ts":1718090301809424, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/loader-internals.h" }}
  4775. ,{ "pid":12345, "tid":5, "ts":1718090301809526, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4776. ,{ "pid":12345, "tid":5, "ts":1718090301809631, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/icall.c" }}
  4777. ,{ "pid":12345, "tid":5, "ts":1718090301809630, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/icall.c" }}
  4778. ,{ "pid":12345, "tid":5, "ts":1718090301809731, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4779. ,{ "pid":12345, "tid":5, "ts":1718090301809832, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/handle-decl.h" }}
  4780. ,{ "pid":12345, "tid":5, "ts":1718090301809830, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/handle-decl.h" }}
  4781. ,{ "pid":12345, "tid":5, "ts":1718090301809915, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4782. ,{ "pid":12345, "tid":5, "ts":1718090301810015, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/file-mmap-windows.c" }}
  4783. ,{ "pid":12345, "tid":5, "ts":1718090301810014, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/file-mmap-windows.c" }}
  4784. ,{ "pid":12345, "tid":5, "ts":1718090301810106, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4785. ,{ "pid":12345, "tid":5, "ts":1718090301810206, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/environment.h" }}
  4786. ,{ "pid":12345, "tid":5, "ts":1718090301810204, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/environment.h" }}
  4787. ,{ "pid":12345, "tid":5, "ts":1718090301810294, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4788. ,{ "pid":12345, "tid":5, "ts":1718090301810400, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/decimal-ms.h" }}
  4789. ,{ "pid":12345, "tid":5, "ts":1718090301810398, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/decimal-ms.h" }}
  4790. ,{ "pid":12345, "tid":5, "ts":1718090301810476, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4791. ,{ "pid":12345, "tid":5, "ts":1718090301810556, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/debug-internals.h" }}
  4792. ,{ "pid":12345, "tid":5, "ts":1718090301810554, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/debug-internals.h" }}
  4793. ,{ "pid":12345, "tid":5, "ts":1718090301810635, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4794. ,{ "pid":12345, "tid":5, "ts":1718090301810733, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/coree.c" }}
  4795. ,{ "pid":12345, "tid":5, "ts":1718090301810732, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/coree.c" }}
  4796. ,{ "pid":12345, "tid":5, "ts":1718090301810815, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4797. ,{ "pid":12345, "tid":5, "ts":1718090301810885, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/cominterop-win32-internals.h" }}
  4798. ,{ "pid":12345, "tid":5, "ts":1718090301810883, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/cominterop-win32-internals.h" }}
  4799. ,{ "pid":12345, "tid":5, "ts":1718090301810963, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4800. ,{ "pid":12345, "tid":5, "ts":1718090301811048, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/class-accessors.c" }}
  4801. ,{ "pid":12345, "tid":5, "ts":1718090301811046, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class-accessors.c" }}
  4802. ,{ "pid":12345, "tid":5, "ts":1718090301811136, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4803. ,{ "pid":12345, "tid":5, "ts":1718090301811221, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/attach.c" }}
  4804. ,{ "pid":12345, "tid":5, "ts":1718090301811220, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/attach.c" }}
  4805. ,{ "pid":12345, "tid":5, "ts":1718090301811307, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4806. ,{ "pid":12345, "tid":5, "ts":1718090301811404, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/abi-details.h" }}
  4807. ,{ "pid":12345, "tid":5, "ts":1718090301811393, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/abi-details.h" }}
  4808. ,{ "pid":12345, "tid":5, "ts":1718090301811521, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4809. ,{ "pid":12345, "tid":5, "ts":1718090301811606, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gstring.c" }}
  4810. ,{ "pid":12345, "tid":5, "ts":1718090301811605, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gstring.c" }}
  4811. ,{ "pid":12345, "tid":5, "ts":1718090301811674, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4812. ,{ "pid":12345, "tid":5, "ts":1718090301811750, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gptrarray.c" }}
  4813. ,{ "pid":12345, "tid":5, "ts":1718090301811749, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gptrarray.c" }}
  4814. ,{ "pid":12345, "tid":5, "ts":1718090301811828, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4815. ,{ "pid":12345, "tid":5, "ts":1718090301811907, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gmarkup.c" }}
  4816. ,{ "pid":12345, "tid":5, "ts":1718090301811906, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gmarkup.c" }}
  4817. ,{ "pid":12345, "tid":5, "ts":1718090301811981, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4818. ,{ "pid":12345, "tid":5, "ts":1718090301812050, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gerror.c" }}
  4819. ,{ "pid":12345, "tid":5, "ts":1718090301812048, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gerror.c" }}
  4820. ,{ "pid":12345, "tid":5, "ts":1718090301812126, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4821. ,{ "pid":12345, "tid":5, "ts":1718090301812240, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/cil/opcode.def" }}
  4822. ,{ "pid":12345, "tid":5, "ts":1718090301812325, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4823. ,{ "pid":12345, "tid":5, "ts":1718090301812404, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/arch/amd64/amd64-codegen.h" }}
  4824. ,{ "pid":12345, "tid":5, "ts":1718090301812402, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/arch/amd64/amd64-codegen.h" }}
  4825. ,{ "pid":12345, "tid":5, "ts":1718090301812477, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4826. ,{ "pid":12345, "tid":5, "ts":1718090301812576, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4827. ,{ "pid":12345, "tid":5, "ts":1718090301812655, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/windows-untested/stdafx.h" }}
  4828. ,{ "pid":12345, "tid":5, "ts":1718090301812653, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/windows-untested/stdafx.h" }}
  4829. ,{ "pid":12345, "tid":5, "ts":1718090301812719, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4830. ,{ "pid":12345, "tid":5, "ts":1718090301812813, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tools/if_not_there.c" }}
  4831. ,{ "pid":12345, "tid":5, "ts":1718090301812812, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tools/if_not_there.c" }}
  4832. ,{ "pid":12345, "tid":5, "ts":1718090301812889, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4833. ,{ "pid":12345, "tid":5, "ts":1718090301812972, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/test.c" }}
  4834. ,{ "pid":12345, "tid":5, "ts":1718090301812971, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/test.c" }}
  4835. ,{ "pid":12345, "tid":5, "ts":1718090301813053, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4836. ,{ "pid":12345, "tid":5, "ts":1718090301813142, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/leak_test.c" }}
  4837. ,{ "pid":12345, "tid":5, "ts":1718090301813141, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/leak_test.c" }}
  4838. ,{ "pid":12345, "tid":5, "ts":1718090301813228, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4839. ,{ "pid":12345, "tid":5, "ts":1718090301813318, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/README.md" }}
  4840. ,{ "pid":12345, "tid":5, "ts":1718090301813408, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4841. ,{ "pid":12345, "tid":5, "ts":1718090301813513, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/new_hblk.c" }}
  4842. ,{ "pid":12345, "tid":5, "ts":1718090301813511, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/new_hblk.c" }}
  4843. ,{ "pid":12345, "tid":5, "ts":1718090301813587, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4844. ,{ "pid":12345, "tid":5, "ts":1718090301813667, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/test_and_set_t_is_char.h" }}
  4845. ,{ "pid":12345, "tid":5, "ts":1718090301813665, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/test_and_set_t_is_char.h" }}
  4846. ,{ "pid":12345, "tid":5, "ts":1718090301813748, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4847. ,{ "pid":12345, "tid":5, "ts":1718090301813830, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ordered.h" }}
  4848. ,{ "pid":12345, "tid":5, "ts":1718090301813828, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ordered.h" }}
  4849. ,{ "pid":12345, "tid":5, "ts":1718090301813902, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4850. ,{ "pid":12345, "tid":5, "ts":1718090301813988, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/short_acquire_release_volatile.h" }}
  4851. ,{ "pid":12345, "tid":5, "ts":1718090301813986, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/short_acquire_release_volatile.h" }}
  4852. ,{ "pid":12345, "tid":5, "ts":1718090301814067, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4853. ,{ "pid":12345, "tid":5, "ts":1718090301814171, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/char_atomic_store.h" }}
  4854. ,{ "pid":12345, "tid":5, "ts":1718090301814169, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/char_atomic_store.h" }}
  4855. ,{ "pid":12345, "tid":5, "ts":1718090301814256, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4856. ,{ "pid":12345, "tid":5, "ts":1718090301814318, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ibmc/powerpc.h" }}
  4857. ,{ "pid":12345, "tid":5, "ts":1718090301814316, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ibmc/powerpc.h" }}
  4858. ,{ "pid":12345, "tid":5, "ts":1718090301814392, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4859. ,{ "pid":12345, "tid":5, "ts":1718090301814476, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/s390.h" }}
  4860. ,{ "pid":12345, "tid":5, "ts":1718090301814474, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/s390.h" }}
  4861. ,{ "pid":12345, "tid":5, "ts":1718090301814543, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4862. ,{ "pid":12345, "tid":5, "ts":1718090301814622, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/hexagon.h" }}
  4863. ,{ "pid":12345, "tid":5, "ts":1718090301814620, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/hexagon.h" }}
  4864. ,{ "pid":12345, "tid":5, "ts":1718090301814686, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4865. ,{ "pid":12345, "tid":5, "ts":1718090301814787, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/arm.h" }}
  4866. ,{ "pid":12345, "tid":5, "ts":1718090301814785, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/arm.h" }}
  4867. ,{ "pid":12345, "tid":5, "ts":1718090301814852, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4868. ,{ "pid":12345, "tid":5, "ts":1718090301814956, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_atomic_load_store.h" }}
  4869. ,{ "pid":12345, "tid":5, "ts":1718090301814954, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_atomic_load_store.h" }}
  4870. ,{ "pid":12345, "tid":5, "ts":1718090301815033, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4871. ,{ "pid":12345, "tid":5, "ts":1718090301815125, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops.h" }}
  4872. ,{ "pid":12345, "tid":5, "ts":1718090301815123, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops.h" }}
  4873. ,{ "pid":12345, "tid":5, "ts":1718090301815218, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4874. ,{ "pid":12345, "tid":5, "ts":1718090301815306, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/specific.h" }}
  4875. ,{ "pid":12345, "tid":5, "ts":1718090301815305, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/specific.h" }}
  4876. ,{ "pid":12345, "tid":5, "ts":1718090301815390, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4877. ,{ "pid":12345, "tid":5, "ts":1718090301815478, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/gc_hdrs.h" }}
  4878. ,{ "pid":12345, "tid":5, "ts":1718090301815476, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/gc_hdrs.h" }}
  4879. ,{ "pid":12345, "tid":5, "ts":1718090301815553, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4880. ,{ "pid":12345, "tid":5, "ts":1718090301815639, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/new_gc_alloc.h" }}
  4881. ,{ "pid":12345, "tid":5, "ts":1718090301815637, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/new_gc_alloc.h" }}
  4882. ,{ "pid":12345, "tid":5, "ts":1718090301815810, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.DotNet.dll" }}
  4883. ,{ "pid":12345, "tid":5, "ts":1718090301815755, "dur":229, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Mono.Security-FeaturesChecked.txt" }}
  4884. ,{ "pid":12345, "tid":5, "ts":1718090301816000, "dur":67, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Mono.Security-FeaturesChecked.txt" }}
  4885. ,{ "pid":12345, "tid":5, "ts":1718090301816089, "dur":203, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.WinRTStub-FeaturesChecked.txt" }}
  4886. ,{ "pid":12345, "tid":5, "ts":1718090301816350, "dur":252, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.IMGUIModule-FeaturesChecked.txt" }}
  4887. ,{ "pid":12345, "tid":5, "ts":1718090301816644, "dur":287, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Core-FeaturesChecked.txt" }}
  4888. ,{ "pid":12345, "tid":5, "ts":1718090301816974, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/GoogleMobileAds.dll" }}
  4889. ,{ "pid":12345, "tid":5, "ts":1718090301817206, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.Toolchain.Xcode.dll" }}
  4890. ,{ "pid":12345, "tid":5, "ts":1718090301816973, "dur":531, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/GoogleMobileAds-FeaturesChecked.txt" }}
  4891. ,{ "pid":12345, "tid":5, "ts":1718090301817559, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.InternalAPIEngineBridge.001.dll" }}
  4892. ,{ "pid":12345, "tid":5, "ts":1718090301817558, "dur":315, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.InternalAPIEngineBridge.001-FeaturesChecked.txt" }}
  4893. ,{ "pid":12345, "tid":5, "ts":1718090301817946, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.Physics2DModule.dll" }}
  4894. ,{ "pid":12345, "tid":5, "ts":1718090301817944, "dur":472, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Physics2DModule-FeaturesChecked.txt" }}
  4895. ,{ "pid":12345, "tid":5, "ts":1718090301818475, "dur":314, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.Stores-FeaturesChecked.txt" }}
  4896. ,{ "pid":12345, "tid":5, "ts":1718090301818841, "dur":515, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Device-FeaturesChecked.txt" }}
  4897. ,{ "pid":12345, "tid":5, "ts":1718090301819356, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4898. ,{ "pid":12345, "tid":5, "ts":1718090301819447, "dur":273, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.UIElementsModule-FeaturesChecked.txt" }}
  4899. ,{ "pid":12345, "tid":5, "ts":1718090301819777, "dur":448, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Collections-FeaturesChecked.txt" }}
  4900. ,{ "pid":12345, "tid":5, "ts":1718090301820308, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4901. ,{ "pid":12345, "tid":5, "ts":1718090301820374, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/javaxfc.h" }}
  4902. ,{ "pid":12345, "tid":5, "ts":1718090301820373, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/javaxfc.h" }}
  4903. ,{ "pid":12345, "tid":5, "ts":1718090301820435, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4904. ,{ "pid":12345, "tid":5, "ts":1718090301820534, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_typed.h" }}
  4905. ,{ "pid":12345, "tid":5, "ts":1718090301820532, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_typed.h" }}
  4906. ,{ "pid":12345, "tid":5, "ts":1718090301820620, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4907. ,{ "pid":12345, "tid":5, "ts":1718090301820703, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_mark.h" }}
  4908. ,{ "pid":12345, "tid":5, "ts":1718090301820701, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_mark.h" }}
  4909. ,{ "pid":12345, "tid":5, "ts":1718090301820827, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_cpp.h" }}
  4910. ,{ "pid":12345, "tid":5, "ts":1718090301820825, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_cpp.h" }}
  4911. ,{ "pid":12345, "tid":5, "ts":1718090301820902, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4912. ,{ "pid":12345, "tid":5, "ts":1718090301820980, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc.h" }}
  4913. ,{ "pid":12345, "tid":5, "ts":1718090301820979, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc.h" }}
  4914. ,{ "pid":12345, "tid":5, "ts":1718090301821064, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4915. ,{ "pid":12345, "tid":5, "ts":1718090301821147, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/cord_pos.h" }}
  4916. ,{ "pid":12345, "tid":5, "ts":1718090301821146, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/cord_pos.h" }}
  4917. ,{ "pid":12345, "tid":5, "ts":1718090301821228, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4918. ,{ "pid":12345, "tid":5, "ts":1718090301821308, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/gcj_mlc.c" }}
  4919. ,{ "pid":12345, "tid":5, "ts":1718090301821307, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/gcj_mlc.c" }}
  4920. ,{ "pid":12345, "tid":5, "ts":1718090301821378, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4921. ,{ "pid":12345, "tid":5, "ts":1718090301821450, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/extra/pcr_interface.c" }}
  4922. ,{ "pid":12345, "tid":5, "ts":1718090301821448, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/extra/pcr_interface.c" }}
  4923. ,{ "pid":12345, "tid":5, "ts":1718090301821535, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4924. ,{ "pid":12345, "tid":5, "ts":1718090301821610, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/extra/Mac_files/dataend.c" }}
  4925. ,{ "pid":12345, "tid":5, "ts":1718090301821609, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/extra/Mac_files/dataend.c" }}
  4926. ,{ "pid":12345, "tid":5, "ts":1718090301821698, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4927. ,{ "pid":12345, "tid":5, "ts":1718090301821780, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/dbg_mlc.c" }}
  4928. ,{ "pid":12345, "tid":5, "ts":1718090301821778, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/dbg_mlc.c" }}
  4929. ,{ "pid":12345, "tid":5, "ts":1718090301821853, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4930. ,{ "pid":12345, "tid":5, "ts":1718090301821977, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/cord/tests/cordtest.c" }}
  4931. ,{ "pid":12345, "tid":5, "ts":1718090301821975, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/cord/tests/cordtest.c" }}
  4932. ,{ "pid":12345, "tid":5, "ts":1718090301822047, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4933. ,{ "pid":12345, "tid":5, "ts":1718090301822144, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/backgraph.c" }}
  4934. ,{ "pid":12345, "tid":5, "ts":1718090301822142, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/backgraph.c" }}
  4935. ,{ "pid":12345, "tid":5, "ts":1718090301822230, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4936. ,{ "pid":12345, "tid":5, "ts":1718090301822346, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/WindowsGames/Include/C/Baselib_DynamicLibrary.inl.h" }}
  4937. ,{ "pid":12345, "tid":5, "ts":1718090301822343, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/WindowsGames/Include/C/Baselib_DynamicLibrary.inl.h" }}
  4938. ,{ "pid":12345, "tid":5, "ts":1718090301822458, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4939. ,{ "pid":12345, "tid":5, "ts":1718090301822531, "dur":156, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Windows/Include/BaselibPlatformSpecificEnvironment.h" }}
  4940. ,{ "pid":12345, "tid":5, "ts":1718090301822529, "dur":159, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Windows/Include/BaselibPlatformSpecificEnvironment.h" }}
  4941. ,{ "pid":12345, "tid":5, "ts":1718090301822688, "dur":158, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4942. ,{ "pid":12345, "tid":5, "ts":1718090301822854, "dur":167, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/VisionOS/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  4943. ,{ "pid":12345, "tid":5, "ts":1718090301822853, "dur":168, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/VisionOS/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  4944. ,{ "pid":12345, "tid":5, "ts":1718090301823022, "dur":249, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4945. ,{ "pid":12345, "tid":5, "ts":1718090301823280, "dur":150, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/UniversalWindows/Include/C/Baselib_FileIO.inl.h" }}
  4946. ,{ "pid":12345, "tid":5, "ts":1718090301823278, "dur":153, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/UniversalWindows/Include/C/Baselib_FileIO.inl.h" }}
  4947. ,{ "pid":12345, "tid":5, "ts":1718090301823432, "dur":241, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4948. ,{ "pid":12345, "tid":5, "ts":1718090301823679, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Tvos/Include/C/Baselib_DynamicLibrary.inl.h" }}
  4949. ,{ "pid":12345, "tid":5, "ts":1718090301823677, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Tvos/Include/C/Baselib_DynamicLibrary.inl.h" }}
  4950. ,{ "pid":12345, "tid":5, "ts":1718090301823767, "dur":281, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4951. ,{ "pid":12345, "tid":5, "ts":1718090301824056, "dur":149, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/OSX/Include/C/Baselib_DynamicLibrary.inl.h" }}
  4952. ,{ "pid":12345, "tid":5, "ts":1718090301824054, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/OSX/Include/C/Baselib_DynamicLibrary.inl.h" }}
  4953. ,{ "pid":12345, "tid":5, "ts":1718090301824213, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4954. ,{ "pid":12345, "tid":5, "ts":1718090301824300, "dur":148, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/IOS/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  4955. ,{ "pid":12345, "tid":5, "ts":1718090301824298, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/IOS/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  4956. ,{ "pid":12345, "tid":5, "ts":1718090301824449, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4957. ,{ "pid":12345, "tid":5, "ts":1718090301824524, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/EmbeddedLinux/Include/C/Baselib_FileIO.inl.h" }}
  4958. ,{ "pid":12345, "tid":5, "ts":1718090301824522, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/EmbeddedLinux/Include/C/Baselib_FileIO.inl.h" }}
  4959. ,{ "pid":12345, "tid":5, "ts":1718090301824618, "dur":147, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4960. ,{ "pid":12345, "tid":5, "ts":1718090301824771, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Android/Include/C/Baselib_ErrorState.inl.h" }}
  4961. ,{ "pid":12345, "tid":5, "ts":1718090301824769, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Android/Include/C/Baselib_ErrorState.inl.h" }}
  4962. ,{ "pid":12345, "tid":5, "ts":1718090301824862, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4963. ,{ "pid":12345, "tid":5, "ts":1718090301824976, "dur":146, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/UndefineCoreMacros.h" }}
  4964. ,{ "pid":12345, "tid":5, "ts":1718090301824975, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/UndefineCoreMacros.h" }}
  4965. ,{ "pid":12345, "tid":5, "ts":1718090301825123, "dur":138, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4966. ,{ "pid":12345, "tid":5, "ts":1718090301825273, "dur":199, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/Compiler/CompilerEnvironmentMsvc.h" }}
  4967. ,{ "pid":12345, "tid":5, "ts":1718090301825271, "dur":201, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/Compiler/CompilerEnvironmentMsvc.h" }}
  4968. ,{ "pid":12345, "tid":5, "ts":1718090301825472, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4969. ,{ "pid":12345, "tid":5, "ts":1718090301825594, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/External/utfcpp/source/utf8/cpp17.h" }}
  4970. ,{ "pid":12345, "tid":5, "ts":1718090301825593, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/External/utfcpp/source/utf8/cpp17.h" }}
  4971. ,{ "pid":12345, "tid":5, "ts":1718090301825712, "dur":141, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4972. ,{ "pid":12345, "tid":5, "ts":1718090301825859, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Time.h" }}
  4973. ,{ "pid":12345, "tid":5, "ts":1718090301825857, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Time.h" }}
  4974. ,{ "pid":12345, "tid":5, "ts":1718090301825952, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4975. ,{ "pid":12345, "tid":5, "ts":1718090301826073, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/page_allocator.h" }}
  4976. ,{ "pid":12345, "tid":5, "ts":1718090301826071, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/page_allocator.h" }}
  4977. ,{ "pid":12345, "tid":5, "ts":1718090301826180, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4978. ,{ "pid":12345, "tid":5, "ts":1718090301826247, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/mpmc_node_queue.h" }}
  4979. ,{ "pid":12345, "tid":5, "ts":1718090301826245, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/mpmc_node_queue.h" }}
  4980. ,{ "pid":12345, "tid":5, "ts":1718090301826310, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4981. ,{ "pid":12345, "tid":5, "ts":1718090301826412, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/tlsf_allocator.inl.h" }}
  4982. ,{ "pid":12345, "tid":5, "ts":1718090301826409, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/tlsf_allocator.inl.h" }}
  4983. ,{ "pid":12345, "tid":5, "ts":1718090301826474, "dur":180, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4984. ,{ "pid":12345, "tid":5, "ts":1718090301826662, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/ConditionVariableData_FutexBased.inl.h" }}
  4985. ,{ "pid":12345, "tid":5, "ts":1718090301826660, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/ConditionVariableData_FutexBased.inl.h" }}
  4986. ,{ "pid":12345, "tid":5, "ts":1718090301826750, "dur":146, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4987. ,{ "pid":12345, "tid":5, "ts":1718090301826904, "dur":130, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/heap_allocator.h" }}
  4988. ,{ "pid":12345, "tid":5, "ts":1718090301826902, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/heap_allocator.h" }}
  4989. ,{ "pid":12345, "tid":5, "ts":1718090301827038, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4990. ,{ "pid":12345, "tid":5, "ts":1718090301827116, "dur":144, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/BinarySemaphore.h" }}
  4991. ,{ "pid":12345, "tid":5, "ts":1718090301827114, "dur":146, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/BinarySemaphore.h" }}
  4992. ,{ "pid":12345, "tid":5, "ts":1718090301827260, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4993. ,{ "pid":12345, "tid":5, "ts":1718090301827354, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_Msvc.h" }}
  4994. ,{ "pid":12345, "tid":5, "ts":1718090301827352, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_Msvc.h" }}
  4995. ,{ "pid":12345, "tid":5, "ts":1718090301827430, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4996. ,{ "pid":12345, "tid":5, "ts":1718090301827561, "dur":136, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_Lock_FutexBased.inl.h" }}
  4997. ,{ "pid":12345, "tid":5, "ts":1718090301827554, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_Lock_FutexBased.inl.h" }}
  4998. ,{ "pid":12345, "tid":5, "ts":1718090301827697, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4999. ,{ "pid":12345, "tid":5, "ts":1718090301827757, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_CappedSemaphore_SemaphoreBased.inl.h" }}
  5000. ,{ "pid":12345, "tid":5, "ts":1718090301827756, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_CappedSemaphore_SemaphoreBased.inl.h" }}
  5001. ,{ "pid":12345, "tid":5, "ts":1718090301827873, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5002. ,{ "pid":12345, "tid":5, "ts":1718090301827987, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_StaticAssert.h" }}
  5003. ,{ "pid":12345, "tid":5, "ts":1718090301827986, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_StaticAssert.h" }}
  5004. ,{ "pid":12345, "tid":5, "ts":1718090301828076, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5005. ,{ "pid":12345, "tid":5, "ts":1718090301828179, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Memory.h" }}
  5006. ,{ "pid":12345, "tid":5, "ts":1718090301828177, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Memory.h" }}
  5007. ,{ "pid":12345, "tid":5, "ts":1718090301828314, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5008. ,{ "pid":12345, "tid":5, "ts":1718090301828395, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_DynamicLibrary.h" }}
  5009. ,{ "pid":12345, "tid":5, "ts":1718090301828394, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_DynamicLibrary.h" }}
  5010. ,{ "pid":12345, "tid":5, "ts":1718090301828465, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5011. ,{ "pid":12345, "tid":5, "ts":1718090301828536, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Atomic.h" }}
  5012. ,{ "pid":12345, "tid":5, "ts":1718090301828535, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Atomic.h" }}
  5013. ,{ "pid":12345, "tid":5, "ts":1718090301828619, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5014. ,{ "pid":12345, "tid":5, "ts":1718090301828687, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/UnityLinker.dll.config" }}
  5015. ,{ "pid":12345, "tid":5, "ts":1718090301828686, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/UnityLinker.dll.config" }}
  5016. ,{ "pid":12345, "tid":5, "ts":1718090301828764, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5017. ,{ "pid":12345, "tid":5, "ts":1718090301828845, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Options.pdb" }}
  5018. ,{ "pid":12345, "tid":5, "ts":1718090301828844, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Options.pdb" }}
  5019. ,{ "pid":12345, "tid":5, "ts":1718090301828917, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5020. ,{ "pid":12345, "tid":5, "ts":1718090301828986, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Shell.pdb" }}
  5021. ,{ "pid":12345, "tid":5, "ts":1718090301828985, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Shell.pdb" }}
  5022. ,{ "pid":12345, "tid":5, "ts":1718090301829048, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5023. ,{ "pid":12345, "tid":5, "ts":1718090301829109, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.DataModel.dll" }}
  5024. ,{ "pid":12345, "tid":5, "ts":1718090301829108, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.DataModel.dll" }}
  5025. ,{ "pid":12345, "tid":5, "ts":1718090301829174, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5026. ,{ "pid":12345, "tid":5, "ts":1718090301829260, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Building.pdb" }}
  5027. ,{ "pid":12345, "tid":5, "ts":1718090301829259, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Building.pdb" }}
  5028. ,{ "pid":12345, "tid":5, "ts":1718090301829368, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5029. ,{ "pid":12345, "tid":5, "ts":1718090301829552, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5030. ,{ "pid":12345, "tid":5, "ts":1718090301829643, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.Linux.dll" }}
  5031. ,{ "pid":12345, "tid":5, "ts":1718090301829642, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.Linux.dll" }}
  5032. ,{ "pid":12345, "tid":5, "ts":1718090301829715, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5033. ,{ "pid":12345, "tid":5, "ts":1718090301829783, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.AppleTV.pdb" }}
  5034. ,{ "pid":12345, "tid":5, "ts":1718090301829781, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.AppleTV.pdb" }}
  5035. ,{ "pid":12345, "tid":5, "ts":1718090301829847, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5036. ,{ "pid":12345, "tid":5, "ts":1718090301829919, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Api.Output.dll" }}
  5037. ,{ "pid":12345, "tid":5, "ts":1718090301829918, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Api.Output.dll" }}
  5038. ,{ "pid":12345, "tid":5, "ts":1718090301829988, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5039. ,{ "pid":12345, "tid":5, "ts":1718090301830076, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Api.Attributes.dll" }}
  5040. ,{ "pid":12345, "tid":5, "ts":1718090301830075, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Api.Attributes.dll" }}
  5041. ,{ "pid":12345, "tid":5, "ts":1718090301830170, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5042. ,{ "pid":12345, "tid":5, "ts":1718090301830319, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Xml.ReaderWriter.dll" }}
  5043. ,{ "pid":12345, "tid":5, "ts":1718090301830317, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Xml.ReaderWriter.dll" }}
  5044. ,{ "pid":12345, "tid":5, "ts":1718090301830398, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5045. ,{ "pid":12345, "tid":5, "ts":1718090301830555, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Transactions.Local.dll" }}
  5046. ,{ "pid":12345, "tid":5, "ts":1718090301830553, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Transactions.Local.dll" }}
  5047. ,{ "pid":12345, "tid":5, "ts":1718090301830663, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5048. ,{ "pid":12345, "tid":5, "ts":1718090301830750, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Threading.Tasks.dll" }}
  5049. ,{ "pid":12345, "tid":5, "ts":1718090301830749, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Threading.Tasks.dll" }}
  5050. ,{ "pid":12345, "tid":5, "ts":1718090301830867, "dur":144, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5051. ,{ "pid":12345, "tid":5, "ts":1718090301831017, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Text.Encoding.Extensions.dll" }}
  5052. ,{ "pid":12345, "tid":5, "ts":1718090301831016, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Text.Encoding.Extensions.dll" }}
  5053. ,{ "pid":12345, "tid":5, "ts":1718090301831094, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5054. ,{ "pid":12345, "tid":5, "ts":1718090301831187, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.Principal.dll" }}
  5055. ,{ "pid":12345, "tid":5, "ts":1718090301831185, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.Principal.dll" }}
  5056. ,{ "pid":12345, "tid":5, "ts":1718090301831262, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5057. ,{ "pid":12345, "tid":5, "ts":1718090301831367, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.Cryptography.Cng.dll" }}
  5058. ,{ "pid":12345, "tid":5, "ts":1718090301831365, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.Cryptography.Cng.dll" }}
  5059. ,{ "pid":12345, "tid":5, "ts":1718090301831442, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5060. ,{ "pid":12345, "tid":5, "ts":1718090301831509, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.Serialization.Formatters.dll" }}
  5061. ,{ "pid":12345, "tid":5, "ts":1718090301831508, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Serialization.Formatters.dll" }}
  5062. ,{ "pid":12345, "tid":5, "ts":1718090301831586, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5063. ,{ "pid":12345, "tid":5, "ts":1718090301831676, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.Extensions.dll" }}
  5064. ,{ "pid":12345, "tid":5, "ts":1718090301831676, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Extensions.dll" }}
  5065. ,{ "pid":12345, "tid":5, "ts":1718090301831757, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5066. ,{ "pid":12345, "tid":5, "ts":1718090301831866, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Reflection.TypeExtensions.dll" }}
  5067. ,{ "pid":12345, "tid":5, "ts":1718090301831864, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Reflection.TypeExtensions.dll" }}
  5068. ,{ "pid":12345, "tid":5, "ts":1718090301831948, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5069. ,{ "pid":12345, "tid":5, "ts":1718090301832053, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Reflection.dll" }}
  5070. ,{ "pid":12345, "tid":5, "ts":1718090301832051, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Reflection.dll" }}
  5071. ,{ "pid":12345, "tid":5, "ts":1718090301832126, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5072. ,{ "pid":12345, "tid":5, "ts":1718090301832192, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Private.CoreLib.dll" }}
  5073. ,{ "pid":12345, "tid":5, "ts":1718090301832191, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Private.CoreLib.dll" }}
  5074. ,{ "pid":12345, "tid":5, "ts":1718090301832277, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5075. ,{ "pid":12345, "tid":5, "ts":1718090301832354, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.WebHeaderCollection.dll" }}
  5076. ,{ "pid":12345, "tid":5, "ts":1718090301832353, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.WebHeaderCollection.dll" }}
  5077. ,{ "pid":12345, "tid":5, "ts":1718090301832433, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5078. ,{ "pid":12345, "tid":5, "ts":1718090301832550, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.Ping.dll" }}
  5079. ,{ "pid":12345, "tid":5, "ts":1718090301832536, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Ping.dll" }}
  5080. ,{ "pid":12345, "tid":5, "ts":1718090301832615, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5081. ,{ "pid":12345, "tid":5, "ts":1718090301832702, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.Http.dll" }}
  5082. ,{ "pid":12345, "tid":5, "ts":1718090301832701, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Http.dll" }}
  5083. ,{ "pid":12345, "tid":5, "ts":1718090301832778, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5084. ,{ "pid":12345, "tid":5, "ts":1718090301832852, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Linq.dll" }}
  5085. ,{ "pid":12345, "tid":5, "ts":1718090301832850, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Linq.dll" }}
  5086. ,{ "pid":12345, "tid":5, "ts":1718090301832926, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5087. ,{ "pid":12345, "tid":5, "ts":1718090301833009, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.FileSystem.Primitives.dll" }}
  5088. ,{ "pid":12345, "tid":5, "ts":1718090301833008, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.FileSystem.Primitives.dll" }}
  5089. ,{ "pid":12345, "tid":5, "ts":1718090301833133, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5090. ,{ "pid":12345, "tid":5, "ts":1718090301833259, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.Compression.dll" }}
  5091. ,{ "pid":12345, "tid":5, "ts":1718090301833257, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.Compression.dll" }}
  5092. ,{ "pid":12345, "tid":5, "ts":1718090301833369, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5093. ,{ "pid":12345, "tid":5, "ts":1718090301833465, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Drawing.Primitives.dll" }}
  5094. ,{ "pid":12345, "tid":5, "ts":1718090301833464, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Drawing.Primitives.dll" }}
  5095. ,{ "pid":12345, "tid":5, "ts":1718090301833535, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5096. ,{ "pid":12345, "tid":5, "ts":1718090301833612, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Diagnostics.Process.dll" }}
  5097. ,{ "pid":12345, "tid":5, "ts":1718090301833611, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Diagnostics.Process.dll" }}
  5098. ,{ "pid":12345, "tid":5, "ts":1718090301833732, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5099. ,{ "pid":12345, "tid":5, "ts":1718090301833832, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Data.Common.dll" }}
  5100. ,{ "pid":12345, "tid":5, "ts":1718090301833830, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Data.Common.dll" }}
  5101. ,{ "pid":12345, "tid":5, "ts":1718090301833948, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5102. ,{ "pid":12345, "tid":5, "ts":1718090301834084, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.ComponentModel.DataAnnotations.dll" }}
  5103. ,{ "pid":12345, "tid":5, "ts":1718090301834083, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ComponentModel.DataAnnotations.dll" }}
  5104. ,{ "pid":12345, "tid":5, "ts":1718090301834161, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5105. ,{ "pid":12345, "tid":5, "ts":1718090301834264, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Buffers.dll" }}
  5106. ,{ "pid":12345, "tid":5, "ts":1718090301834262, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Buffers.dll" }}
  5107. ,{ "pid":12345, "tid":5, "ts":1718090301834343, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5108. ,{ "pid":12345, "tid":5, "ts":1718090301834460, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/mscorlib.dll" }}
  5109. ,{ "pid":12345, "tid":5, "ts":1718090301834458, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/mscorlib.dll" }}
  5110. ,{ "pid":12345, "tid":5, "ts":1718090301834567, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5111. ,{ "pid":12345, "tid":5, "ts":1718090301834694, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Mono.Cecil.Mdb.pdb" }}
  5112. ,{ "pid":12345, "tid":5, "ts":1718090301834693, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Mono.Cecil.Mdb.pdb" }}
  5113. ,{ "pid":12345, "tid":5, "ts":1718090301834807, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5114. ,{ "pid":12345, "tid":5, "ts":1718090301834888, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Microsoft.Bcl.HashCode.dll" }}
  5115. ,{ "pid":12345, "tid":5, "ts":1718090301834887, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Microsoft.Bcl.HashCode.dll" }}
  5116. ,{ "pid":12345, "tid":5, "ts":1718090301834990, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5117. ,{ "pid":12345, "tid":5, "ts":1718090301835066, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libmscordbi.dylib" }}
  5118. ,{ "pid":12345, "tid":5, "ts":1718090301835156, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5119. ,{ "pid":12345, "tid":5, "ts":1718090301835239, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libclrjit.dylib" }}
  5120. ,{ "pid":12345, "tid":5, "ts":1718090301835349, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5121. ,{ "pid":12345, "tid":5, "ts":1718090301835459, "dur":141, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/il2cpp" }}
  5122. ,{ "pid":12345, "tid":5, "ts":1718090301835600, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5123. ,{ "pid":12345, "tid":5, "ts":1718090301835692, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Tools.pdb" }}
  5124. ,{ "pid":12345, "tid":5, "ts":1718090301835691, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Tools.pdb" }}
  5125. ,{ "pid":12345, "tid":5, "ts":1718090301835790, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5126. ,{ "pid":12345, "tid":5, "ts":1718090301835886, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.VisualStudio.dll" }}
  5127. ,{ "pid":12345, "tid":5, "ts":1718090301835884, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.VisualStudio.dll" }}
  5128. ,{ "pid":12345, "tid":5, "ts":1718090301835965, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5129. ,{ "pid":12345, "tid":5, "ts":1718090301836053, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.MacOS.pdb" }}
  5130. ,{ "pid":12345, "tid":5, "ts":1718090301836052, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.MacOS.pdb" }}
  5131. ,{ "pid":12345, "tid":5, "ts":1718090301836143, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5132. ,{ "pid":12345, "tid":5, "ts":1718090301836241, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.IOS.dll" }}
  5133. ,{ "pid":12345, "tid":5, "ts":1718090301836240, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.IOS.dll" }}
  5134. ,{ "pid":12345, "tid":5, "ts":1718090301836315, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5135. ,{ "pid":12345, "tid":5, "ts":1718090301836413, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.Android.pdb" }}
  5136. ,{ "pid":12345, "tid":5, "ts":1718090301836412, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Android.pdb" }}
  5137. ,{ "pid":12345, "tid":5, "ts":1718090301836514, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5138. ,{ "pid":12345, "tid":5, "ts":1718090301836632, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.NativeProgramSupport.dll" }}
  5139. ,{ "pid":12345, "tid":5, "ts":1718090301836631, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.NativeProgramSupport.dll" }}
  5140. ,{ "pid":12345, "tid":5, "ts":1718090301836722, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5141. ,{ "pid":12345, "tid":5, "ts":1718090301836844, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.BeeDriver.pdb" }}
  5142. ,{ "pid":12345, "tid":5, "ts":1718090301836842, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.BeeDriver.pdb" }}
  5143. ,{ "pid":12345, "tid":5, "ts":1718090301836929, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5144. ,{ "pid":12345, "tid":5, "ts":1718090301837038, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Analytics.Api.Output.pdb" }}
  5145. ,{ "pid":12345, "tid":5, "ts":1718090301837036, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Analytics.Api.Output.pdb" }}
  5146. ,{ "pid":12345, "tid":5, "ts":1718090301837124, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5147. ,{ "pid":12345, "tid":5, "ts":1718090301837234, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.TinyProfiler.pdb" }}
  5148. ,{ "pid":12345, "tid":5, "ts":1718090301837233, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.TinyProfiler.pdb" }}
  5149. ,{ "pid":12345, "tid":5, "ts":1718090301837307, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5150. ,{ "pid":12345, "tid":5, "ts":1718090301837366, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Linker.Api.pdb" }}
  5151. ,{ "pid":12345, "tid":5, "ts":1718090301837365, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Linker.Api.pdb" }}
  5152. ,{ "pid":12345, "tid":5, "ts":1718090301837439, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5153. ,{ "pid":12345, "tid":5, "ts":1718090301837561, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.DataModel.dll" }}
  5154. ,{ "pid":12345, "tid":5, "ts":1718090301837559, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.DataModel.dll" }}
  5155. ,{ "pid":12345, "tid":5, "ts":1718090301837622, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5156. ,{ "pid":12345, "tid":5, "ts":1718090301837702, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Common35.dll" }}
  5157. ,{ "pid":12345, "tid":5, "ts":1718090301837699, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Common35.dll" }}
  5158. ,{ "pid":12345, "tid":5, "ts":1718090301837757, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5159. ,{ "pid":12345, "tid":5, "ts":1718090301837836, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data.pdb" }}
  5160. ,{ "pid":12345, "tid":5, "ts":1718090301837834, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data.pdb" }}
  5161. ,{ "pid":12345, "tid":5, "ts":1718090301837912, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5162. ,{ "pid":12345, "tid":5, "ts":1718090301838003, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.VisionOS.dll" }}
  5163. ,{ "pid":12345, "tid":5, "ts":1718090301838002, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.VisionOS.dll" }}
  5164. ,{ "pid":12345, "tid":5, "ts":1718090301838071, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5165. ,{ "pid":12345, "tid":5, "ts":1718090301838149, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.Linux.pdb" }}
  5166. ,{ "pid":12345, "tid":5, "ts":1718090301838147, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.Linux.pdb" }}
  5167. ,{ "pid":12345, "tid":5, "ts":1718090301838213, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5168. ,{ "pid":12345, "tid":5, "ts":1718090301838310, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.AppleTV.pdb" }}
  5169. ,{ "pid":12345, "tid":5, "ts":1718090301838308, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.AppleTV.pdb" }}
  5170. ,{ "pid":12345, "tid":5, "ts":1718090301838385, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5171. ,{ "pid":12345, "tid":5, "ts":1718090301838479, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Api.Output.dll" }}
  5172. ,{ "pid":12345, "tid":5, "ts":1718090301838478, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Api.Output.dll" }}
  5173. ,{ "pid":12345, "tid":5, "ts":1718090301838569, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5174. ,{ "pid":12345, "tid":5, "ts":1718090301838661, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Api.Attributes.dll" }}
  5175. ,{ "pid":12345, "tid":5, "ts":1718090301838660, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Api.Attributes.dll" }}
  5176. ,{ "pid":12345, "tid":5, "ts":1718090301838772, "dur":148, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5177. ,{ "pid":12345, "tid":5, "ts":1718090301838930, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Xml.ReaderWriter.dll" }}
  5178. ,{ "pid":12345, "tid":5, "ts":1718090301838928, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Xml.ReaderWriter.dll" }}
  5179. ,{ "pid":12345, "tid":5, "ts":1718090301839055, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5180. ,{ "pid":12345, "tid":5, "ts":1718090301839145, "dur":103, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Transactions.Local.dll" }}
  5181. ,{ "pid":12345, "tid":5, "ts":1718090301839144, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Transactions.Local.dll" }}
  5182. ,{ "pid":12345, "tid":5, "ts":1718090301839249, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5183. ,{ "pid":12345, "tid":5, "ts":1718090301839330, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Threading.Tasks.dll" }}
  5184. ,{ "pid":12345, "tid":5, "ts":1718090301839329, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Threading.Tasks.dll" }}
  5185. ,{ "pid":12345, "tid":5, "ts":1718090301839393, "dur":154, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5186. ,{ "pid":12345, "tid":5, "ts":1718090301839552, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Text.Encodings.Web.dll" }}
  5187. ,{ "pid":12345, "tid":5, "ts":1718090301839551, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Text.Encodings.Web.dll" }}
  5188. ,{ "pid":12345, "tid":5, "ts":1718090301839654, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5189. ,{ "pid":12345, "tid":5, "ts":1718090301839734, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.Principal.Windows.dll" }}
  5190. ,{ "pid":12345, "tid":5, "ts":1718090301839733, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.Principal.Windows.dll" }}
  5191. ,{ "pid":12345, "tid":5, "ts":1718090301839799, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5192. ,{ "pid":12345, "tid":5, "ts":1718090301839921, "dur":197, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.Cryptography.Csp.dll" }}
  5193. ,{ "pid":12345, "tid":5, "ts":1718090301839920, "dur":217, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.Cryptography.Csp.dll" }}
  5194. ,{ "pid":12345, "tid":5, "ts":1718090301840137, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5195. ,{ "pid":12345, "tid":5, "ts":1718090301840229, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.Serialization.Json.dll" }}
  5196. ,{ "pid":12345, "tid":5, "ts":1718090301840228, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.Serialization.Json.dll" }}
  5197. ,{ "pid":12345, "tid":5, "ts":1718090301840320, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5198. ,{ "pid":12345, "tid":5, "ts":1718090301840417, "dur":142, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.InteropServices.dll" }}
  5199. ,{ "pid":12345, "tid":5, "ts":1718090301840415, "dur":145, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.InteropServices.dll" }}
  5200. ,{ "pid":12345, "tid":5, "ts":1718090301840560, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5201. ,{ "pid":12345, "tid":5, "ts":1718090301840695, "dur":140, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Resources.ResourceManager.dll" }}
  5202. ,{ "pid":12345, "tid":5, "ts":1718090301840694, "dur":141, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Resources.ResourceManager.dll" }}
  5203. ,{ "pid":12345, "tid":5, "ts":1718090301840835, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5204. ,{ "pid":12345, "tid":5, "ts":1718090301840920, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Reflection.Emit.dll" }}
  5205. ,{ "pid":12345, "tid":5, "ts":1718090301840919, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Reflection.Emit.dll" }}
  5206. ,{ "pid":12345, "tid":5, "ts":1718090301841029, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5207. ,{ "pid":12345, "tid":5, "ts":1718090301841125, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.ObjectModel.dll" }}
  5208. ,{ "pid":12345, "tid":5, "ts":1718090301841108, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.ObjectModel.dll" }}
  5209. ,{ "pid":12345, "tid":5, "ts":1718090301841220, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5210. ,{ "pid":12345, "tid":5, "ts":1718090301841295, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.WebHeaderCollection.dll" }}
  5211. ,{ "pid":12345, "tid":5, "ts":1718090301841294, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.WebHeaderCollection.dll" }}
  5212. ,{ "pid":12345, "tid":5, "ts":1718090301841407, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5213. ,{ "pid":12345, "tid":5, "ts":1718090301841520, "dur":136, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.Ping.dll" }}
  5214. ,{ "pid":12345, "tid":5, "ts":1718090301841519, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.Ping.dll" }}
  5215. ,{ "pid":12345, "tid":5, "ts":1718090301841657, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5216. ,{ "pid":12345, "tid":5, "ts":1718090301841740, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.dll" }}
  5217. ,{ "pid":12345, "tid":5, "ts":1718090301841739, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.dll" }}
  5218. ,{ "pid":12345, "tid":5, "ts":1718090301841818, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5219. ,{ "pid":12345, "tid":5, "ts":1718090301841901, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.Pipes.dll" }}
  5220. ,{ "pid":12345, "tid":5, "ts":1718090301841900, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.Pipes.dll" }}
  5221. ,{ "pid":12345, "tid":5, "ts":1718090301842000, "dur":138, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5222. ,{ "pid":12345, "tid":5, "ts":1718090301842160, "dur":153, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.FileSystem.dll" }}
  5223. ,{ "pid":12345, "tid":5, "ts":1718090301842159, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.FileSystem.dll" }}
  5224. ,{ "pid":12345, "tid":5, "ts":1718090301842317, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5225. ,{ "pid":12345, "tid":5, "ts":1718090301842426, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Globalization.dll" }}
  5226. ,{ "pid":12345, "tid":5, "ts":1718090301842424, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Globalization.dll" }}
  5227. ,{ "pid":12345, "tid":5, "ts":1718090301842490, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5228. ,{ "pid":12345, "tid":5, "ts":1718090301842585, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Drawing.dll" }}
  5229. ,{ "pid":12345, "tid":5, "ts":1718090301842584, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Drawing.dll" }}
  5230. ,{ "pid":12345, "tid":5, "ts":1718090301842682, "dur":211, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5231. ,{ "pid":12345, "tid":5, "ts":1718090301842898, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Diagnostics.Process.dll" }}
  5232. ,{ "pid":12345, "tid":5, "ts":1718090301842896, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.Process.dll" }}
  5233. ,{ "pid":12345, "tid":5, "ts":1718090301843021, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5234. ,{ "pid":12345, "tid":5, "ts":1718090301843166, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Data.Common.dll" }}
  5235. ,{ "pid":12345, "tid":5, "ts":1718090301843164, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Data.Common.dll" }}
  5236. ,{ "pid":12345, "tid":5, "ts":1718090301843234, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5237. ,{ "pid":12345, "tid":5, "ts":1718090301843375, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.ComponentModel.DataAnnotations.dll" }}
  5238. ,{ "pid":12345, "tid":5, "ts":1718090301843373, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.ComponentModel.DataAnnotations.dll" }}
  5239. ,{ "pid":12345, "tid":5, "ts":1718090301843457, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5240. ,{ "pid":12345, "tid":5, "ts":1718090301843566, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Buffers.dll" }}
  5241. ,{ "pid":12345, "tid":5, "ts":1718090301843558, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Buffers.dll" }}
  5242. ,{ "pid":12345, "tid":5, "ts":1718090301843629, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5243. ,{ "pid":12345, "tid":5, "ts":1718090301843729, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/mscorlib.dll" }}
  5244. ,{ "pid":12345, "tid":5, "ts":1718090301843728, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/mscorlib.dll" }}
  5245. ,{ "pid":12345, "tid":5, "ts":1718090301843826, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5246. ,{ "pid":12345, "tid":5, "ts":1718090301843892, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Mono.Cecil.pdb" }}
  5247. ,{ "pid":12345, "tid":5, "ts":1718090301843891, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Mono.Cecil.pdb" }}
  5248. ,{ "pid":12345, "tid":5, "ts":1718090301843972, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5249. ,{ "pid":12345, "tid":5, "ts":1718090301844052, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Microsoft.CSharp.dll" }}
  5250. ,{ "pid":12345, "tid":5, "ts":1718090301844051, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Microsoft.CSharp.dll" }}
  5251. ,{ "pid":12345, "tid":5, "ts":1718090301844128, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5252. ,{ "pid":12345, "tid":5, "ts":1718090301844209, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libSystem.Globalization.Native.dylib" }}
  5253. ,{ "pid":12345, "tid":5, "ts":1718090301844308, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5254. ,{ "pid":12345, "tid":5, "ts":1718090301844387, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/il2cpp.runtimeconfig.json" }}
  5255. ,{ "pid":12345, "tid":5, "ts":1718090301844386, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/il2cpp.runtimeconfig.json" }}
  5256. ,{ "pid":12345, "tid":5, "ts":1718090301844463, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5257. ,{ "pid":12345, "tid":5, "ts":1718090301844539, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/createdump" }}
  5258. ,{ "pid":12345, "tid":5, "ts":1718090301844614, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5259. ,{ "pid":12345, "tid":5, "ts":1718090301844675, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Tools.dll" }}
  5260. ,{ "pid":12345, "tid":5, "ts":1718090301844673, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Tools.dll" }}
  5261. ,{ "pid":12345, "tid":5, "ts":1718090301844785, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5262. ,{ "pid":12345, "tid":5, "ts":1718090301844918, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.VisionOS.dll" }}
  5263. ,{ "pid":12345, "tid":5, "ts":1718090301844917, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.VisionOS.dll" }}
  5264. ,{ "pid":12345, "tid":5, "ts":1718090301844997, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5265. ,{ "pid":12345, "tid":5, "ts":1718090301845087, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.LLVM.pdb" }}
  5266. ,{ "pid":12345, "tid":5, "ts":1718090301845086, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.LLVM.pdb" }}
  5267. ,{ "pid":12345, "tid":5, "ts":1718090301845169, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5268. ,{ "pid":12345, "tid":5, "ts":1718090301845255, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.GNU.dll" }}
  5269. ,{ "pid":12345, "tid":5, "ts":1718090301845253, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.GNU.dll" }}
  5270. ,{ "pid":12345, "tid":5, "ts":1718090301845327, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5271. ,{ "pid":12345, "tid":5, "ts":1718090301845419, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.TinyProfiler2.pdb" }}
  5272. ,{ "pid":12345, "tid":5, "ts":1718090301845418, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.TinyProfiler2.pdb" }}
  5273. ,{ "pid":12345, "tid":5, "ts":1718090301845514, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5274. ,{ "pid":12345, "tid":5, "ts":1718090301845578, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.DotNet.dll" }}
  5275. ,{ "pid":12345, "tid":5, "ts":1718090301845577, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.DotNet.dll" }}
  5276. ,{ "pid":12345, "tid":5, "ts":1718090301845657, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5277. ,{ "pid":12345, "tid":5, "ts":1718090301845782, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Analytics.runtimeconfig.json" }}
  5278. ,{ "pid":12345, "tid":5, "ts":1718090301845781, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Analytics.runtimeconfig.json" }}
  5279. ,{ "pid":12345, "tid":5, "ts":1718090301845871, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5280. ,{ "pid":12345, "tid":5, "ts":1718090301845954, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Analytics" }}
  5281. ,{ "pid":12345, "tid":5, "ts":1718090301846023, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5282. ,{ "pid":12345, "tid":5, "ts":1718090301846105, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/UnityFramework/UnityFramework.h" }}
  5283. ,{ "pid":12345, "tid":5, "ts":1718090301846104, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/UnityFramework/UnityFramework.h" }}
  5284. ,{ "pid":12345, "tid":5, "ts":1718090301846198, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5285. ,{ "pid":12345, "tid":5, "ts":1718090301846315, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/MainApp/main.mm" }}
  5286. ,{ "pid":12345, "tid":5, "ts":1718090301846389, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5287. ,{ "pid":12345, "tid":5, "ts":1718090301846496, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UnityAppController+UnityInterface.mm" }}
  5288. ,{ "pid":12345, "tid":5, "ts":1718090301846582, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5289. ,{ "pid":12345, "tid":5, "ts":1718090301846706, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/UnityTrampolineCompatibility.h" }}
  5290. ,{ "pid":12345, "tid":5, "ts":1718090301846705, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/UnityTrampolineCompatibility.h" }}
  5291. ,{ "pid":12345, "tid":5, "ts":1718090301846759, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5292. ,{ "pid":12345, "tid":5, "ts":1718090301846816, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/UnityMetalSupport.h" }}
  5293. ,{ "pid":12345, "tid":5, "ts":1718090301846815, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/UnityMetalSupport.h" }}
  5294. ,{ "pid":12345, "tid":5, "ts":1718090301846920, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5295. ,{ "pid":12345, "tid":5, "ts":1718090301846993, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/IUnityInterface.h" }}
  5296. ,{ "pid":12345, "tid":5, "ts":1718090301846992, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/IUnityInterface.h" }}
  5297. ,{ "pid":12345, "tid":5, "ts":1718090301847066, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5298. ,{ "pid":12345, "tid":5, "ts":1718090301847149, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/DisplayManager.h" }}
  5299. ,{ "pid":12345, "tid":5, "ts":1718090301847148, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/DisplayManager.h" }}
  5300. ,{ "pid":12345, "tid":5, "ts":1718090301847231, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5301. ,{ "pid":12345, "tid":5, "ts":1718090301847307, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/CameraCapture.h" }}
  5302. ,{ "pid":12345, "tid":5, "ts":1718090301847305, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/CameraCapture.h" }}
  5303. ,{ "pid":12345, "tid":5, "ts":1718090301847367, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5304. ,{ "pid":12345, "tid":5, "ts":1718090301847497, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/UnityViewControllerBase+visionOS.h" }}
  5305. ,{ "pid":12345, "tid":5, "ts":1718090301847496, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityViewControllerBase+visionOS.h" }}
  5306. ,{ "pid":12345, "tid":5, "ts":1718090301847568, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5307. ,{ "pid":12345, "tid":5, "ts":1718090301847653, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityView+tvOS.mm" }}
  5308. ,{ "pid":12345, "tid":5, "ts":1718090301847771, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5309. ,{ "pid":12345, "tid":5, "ts":1718090301847852, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/StoreReview.m" }}
  5310. ,{ "pid":12345, "tid":5, "ts":1718090301847994, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/RedefinePlatforms.h" }}
  5311. ,{ "pid":12345, "tid":5, "ts":1718090301847992, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/RedefinePlatforms.h" }}
  5312. ,{ "pid":12345, "tid":5, "ts":1718090301848098, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5313. ,{ "pid":12345, "tid":5, "ts":1718090301848183, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/PluginBase/LifeCycleListener.mm" }}
  5314. ,{ "pid":12345, "tid":5, "ts":1718090301848254, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5315. ,{ "pid":12345, "tid":5, "ts":1718090301848330, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/iPhone_Sensors.h" }}
  5316. ,{ "pid":12345, "tid":5, "ts":1718090301848329, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/iPhone_Sensors.h" }}
  5317. ,{ "pid":12345, "tid":5, "ts":1718090301848416, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5318. ,{ "pid":12345, "tid":5, "ts":1718090301848491, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Assembly.h" }}
  5319. ,{ "pid":12345, "tid":5, "ts":1718090301848490, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Assembly.h" }}
  5320. ,{ "pid":12345, "tid":5, "ts":1718090301848566, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5321. ,{ "pid":12345, "tid":5, "ts":1718090301848652, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/CCWBase.h" }}
  5322. ,{ "pid":12345, "tid":5, "ts":1718090301848651, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/CCWBase.h" }}
  5323. ,{ "pid":12345, "tid":5, "ts":1718090301848739, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5324. ,{ "pid":12345, "tid":5, "ts":1718090301848819, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/COM.cpp" }}
  5325. ,{ "pid":12345, "tid":5, "ts":1718090301848817, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/COM.cpp" }}
  5326. ,{ "pid":12345, "tid":5, "ts":1718090301848921, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5327. ,{ "pid":12345, "tid":5, "ts":1718090301849010, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Domain.h" }}
  5328. ,{ "pid":12345, "tid":5, "ts":1718090301849009, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Domain.h" }}
  5329. ,{ "pid":12345, "tid":5, "ts":1718090301849099, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5330. ,{ "pid":12345, "tid":5, "ts":1718090301849167, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Field.cpp" }}
  5331. ,{ "pid":12345, "tid":5, "ts":1718090301849166, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Field.cpp" }}
  5332. ,{ "pid":12345, "tid":5, "ts":1718090301849253, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5333. ,{ "pid":12345, "tid":5, "ts":1718090301849325, "dur":144, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/GlobalMetadata.h" }}
  5334. ,{ "pid":12345, "tid":5, "ts":1718090301849324, "dur":146, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/GlobalMetadata.h" }}
  5335. ,{ "pid":12345, "tid":5, "ts":1718090301849470, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5336. ,{ "pid":12345, "tid":5, "ts":1718090301849622, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5337. ,{ "pid":12345, "tid":5, "ts":1718090301849725, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/MemoryInformation.cpp" }}
  5338. ,{ "pid":12345, "tid":5, "ts":1718090301849724, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/MemoryInformation.cpp" }}
  5339. ,{ "pid":12345, "tid":5, "ts":1718090301849826, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5340. ,{ "pid":12345, "tid":5, "ts":1718090301849899, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/MetadataLoader.h" }}
  5341. ,{ "pid":12345, "tid":5, "ts":1718090301849898, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/MetadataLoader.h" }}
  5342. ,{ "pid":12345, "tid":5, "ts":1718090301849970, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5343. ,{ "pid":12345, "tid":5, "ts":1718090301850047, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Monitor.h" }}
  5344. ,{ "pid":12345, "tid":5, "ts":1718090301850045, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Monitor.h" }}
  5345. ,{ "pid":12345, "tid":5, "ts":1718090301850134, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5346. ,{ "pid":12345, "tid":5, "ts":1718090301850215, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Path.h" }}
  5347. ,{ "pid":12345, "tid":5, "ts":1718090301850214, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Path.h" }}
  5348. ,{ "pid":12345, "tid":5, "ts":1718090301850294, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5349. ,{ "pid":12345, "tid":5, "ts":1718090301850370, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAdsUnityWrapper.m" }}
  5350. ,{ "pid":12345, "tid":5, "ts":1718090301850452, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5351. ,{ "pid":12345, "tid":5, "ts":1718090301850535, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Random.cpp" }}
  5352. ,{ "pid":12345, "tid":5, "ts":1718090301850534, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Random.cpp" }}
  5353. ,{ "pid":12345, "tid":5, "ts":1718090301850621, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5354. ,{ "pid":12345, "tid":5, "ts":1718090301850689, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Runtime.h" }}
  5355. ,{ "pid":12345, "tid":5, "ts":1718090301850688, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Runtime.h" }}
  5356. ,{ "pid":12345, "tid":5, "ts":1718090301850751, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5357. ,{ "pid":12345, "tid":5, "ts":1718090301850819, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Thread.cpp" }}
  5358. ,{ "pid":12345, "tid":5, "ts":1718090301850817, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Thread.cpp" }}
  5359. ,{ "pid":12345, "tid":5, "ts":1718090301850884, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5360. ,{ "pid":12345, "tid":5, "ts":1718090301850969, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/WaitHandle.cpp" }}
  5361. ,{ "pid":12345, "tid":5, "ts":1718090301850967, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/WaitHandle.cpp" }}
  5362. ,{ "pid":12345, "tid":5, "ts":1718090301851029, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5363. ,{ "pid":12345, "tid":5, "ts":1718090301851100, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libmono/config/eglib-config.h" }}
  5364. ,{ "pid":12345, "tid":5, "ts":1718090301851099, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libmono/config/eglib-config.h" }}
  5365. ,{ "pid":12345, "tid":5, "ts":1718090301851158, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5366. ,{ "pid":12345, "tid":5, "ts":1718090301851225, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libmono/config/il2cpp-config-mono-web.h" }}
  5367. ,{ "pid":12345, "tid":5, "ts":1718090301851223, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libmono/config/il2cpp-config-mono-web.h" }}
  5368. ,{ "pid":12345, "tid":5, "ts":1718090301851303, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5369. ,{ "pid":12345, "tid":5, "ts":1718090301851435, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5370. ,{ "pid":12345, "tid":5, "ts":1718090301851571, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/LaunchScreen-iPad.storyboard" }}
  5371. ,{ "pid":12345, "tid":5, "ts":1718090301851670, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5372. ,{ "pid":12345, "tid":5, "ts":1718090301851749, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-Notification-40.png" }}
  5373. ,{ "pid":12345, "tid":5, "ts":1718090301851823, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5374. ,{ "pid":12345, "tid":5, "ts":1718090301851931, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-152.png" }}
  5375. ,{ "pid":12345, "tid":5, "ts":1718090301852006, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5376. ,{ "pid":12345, "tid":5, "ts":1718090301852088, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.services.core/Runtime/Device/UserIdProviders/NSUserDefaults.mm" }}
  5377. ,{ "pid":12345, "tid":5, "ts":1718090301852179, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5378. ,{ "pid":12345, "tid":5, "ts":1718090301852252, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAdsShowListener.mm" }}
  5379. ,{ "pid":12345, "tid":5, "ts":1718090301852324, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5380. ,{ "pid":12345, "tid":5, "ts":1718090301852394, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAnalyticsWrapper.m" }}
  5381. ,{ "pid":12345, "tid":5, "ts":1718090301852461, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5382. ,{ "pid":12345, "tid":5, "ts":1718090301852609, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5383. ,{ "pid":12345, "tid":5, "ts":1718090301852739, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5384. ,{ "pid":12345, "tid":5, "ts":1718090301852852, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5385. ,{ "pid":12345, "tid":5, "ts":1718090301852929, "dur":14641, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  5386. ,{ "pid":12345, "tid":5, "ts":1718090301867648, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__10.cpp" }}
  5387. ,{ "pid":12345, "tid":5, "ts":1718090301867645, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__10.cpp" }}
  5388. ,{ "pid":12345, "tid":5, "ts":1718090301867736, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5389. ,{ "pid":12345, "tid":5, "ts":1718090301867856, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Collections_CodeGen.c" }}
  5390. ,{ "pid":12345, "tid":5, "ts":1718090301867855, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Collections_CodeGen.c" }}
  5391. ,{ "pid":12345, "tid":5, "ts":1718090301867944, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5392. ,{ "pid":12345, "tid":5, "ts":1718090301868036, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__3.cpp" }}
  5393. ,{ "pid":12345, "tid":5, "ts":1718090301868034, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__3.cpp" }}
  5394. ,{ "pid":12345, "tid":5, "ts":1718090301868127, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5395. ,{ "pid":12345, "tid":5, "ts":1718090301868256, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppCCFieldValuesTable.cpp" }}
  5396. ,{ "pid":12345, "tid":5, "ts":1718090301868254, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppCCFieldValuesTable.cpp" }}
  5397. ,{ "pid":12345, "tid":5, "ts":1718090301868350, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5398. ,{ "pid":12345, "tid":5, "ts":1718090301868441, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/I18N.CJK_CodeGen.c" }}
  5399. ,{ "pid":12345, "tid":5, "ts":1718090301868440, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/I18N.CJK_CodeGen.c" }}
  5400. ,{ "pid":12345, "tid":5, "ts":1718090301868519, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5401. ,{ "pid":12345, "tid":5, "ts":1718090301868611, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.SharedInternalsModule.cpp" }}
  5402. ,{ "pid":12345, "tid":5, "ts":1718090301868609, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.SharedInternalsModule.cpp" }}
  5403. ,{ "pid":12345, "tid":5, "ts":1718090301868700, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5404. ,{ "pid":12345, "tid":5, "ts":1718090301868786, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__43.cpp" }}
  5405. ,{ "pid":12345, "tid":5, "ts":1718090301868785, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__43.cpp" }}
  5406. ,{ "pid":12345, "tid":5, "ts":1718090301868876, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5407. ,{ "pid":12345, "tid":5, "ts":1718090301868950, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.SpriteShapeModule.cpp" }}
  5408. ,{ "pid":12345, "tid":5, "ts":1718090301868949, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.SpriteShapeModule.cpp" }}
  5409. ,{ "pid":12345, "tid":5, "ts":1718090301869041, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5410. ,{ "pid":12345, "tid":5, "ts":1718090301869122, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__8.cpp" }}
  5411. ,{ "pid":12345, "tid":5, "ts":1718090301869121, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__8.cpp" }}
  5412. ,{ "pid":12345, "tid":5, "ts":1718090301869185, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5413. ,{ "pid":12345, "tid":5, "ts":1718090301869274, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.PropertiesModule_CodeGen.c" }}
  5414. ,{ "pid":12345, "tid":5, "ts":1718090301869272, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.PropertiesModule_CodeGen.c" }}
  5415. ,{ "pid":12345, "tid":5, "ts":1718090301869360, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5416. ,{ "pid":12345, "tid":5, "ts":1718090301869463, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.cpp" }}
  5417. ,{ "pid":12345, "tid":5, "ts":1718090301869462, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.cpp" }}
  5418. ,{ "pid":12345, "tid":5, "ts":1718090301869550, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5419. ,{ "pid":12345, "tid":5, "ts":1718090301869649, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__17.cpp" }}
  5420. ,{ "pid":12345, "tid":5, "ts":1718090301869647, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__17.cpp" }}
  5421. ,{ "pid":12345, "tid":5, "ts":1718090301869726, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5422. ,{ "pid":12345, "tid":5, "ts":1718090301869824, "dur":138, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Runtime.Serialization_CodeGen.c" }}
  5423. ,{ "pid":12345, "tid":5, "ts":1718090301869822, "dur":141, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Runtime.Serialization_CodeGen.c" }}
  5424. ,{ "pid":12345, "tid":5, "ts":1718090301869963, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5425. ,{ "pid":12345, "tid":5, "ts":1718090301870052, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__15.cpp" }}
  5426. ,{ "pid":12345, "tid":5, "ts":1718090301870050, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__15.cpp" }}
  5427. ,{ "pid":12345, "tid":5, "ts":1718090301870130, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5428. ,{ "pid":12345, "tid":5, "ts":1718090301870246, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System__8.cpp" }}
  5429. ,{ "pid":12345, "tid":5, "ts":1718090301870245, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System__8.cpp" }}
  5430. ,{ "pid":12345, "tid":5, "ts":1718090301870326, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5431. ,{ "pid":12345, "tid":5, "ts":1718090301870464, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml.Linq.cpp" }}
  5432. ,{ "pid":12345, "tid":5, "ts":1718090301870462, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml.Linq.cpp" }}
  5433. ,{ "pid":12345, "tid":5, "ts":1718090301870555, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5434. ,{ "pid":12345, "tid":5, "ts":1718090301870655, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__29.cpp" }}
  5435. ,{ "pid":12345, "tid":5, "ts":1718090301870654, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__29.cpp" }}
  5436. ,{ "pid":12345, "tid":5, "ts":1718090301870747, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5437. ,{ "pid":12345, "tid":5, "ts":1718090301870848, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.AudioModule.cpp" }}
  5438. ,{ "pid":12345, "tid":5, "ts":1718090301870846, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.AudioModule.cpp" }}
  5439. ,{ "pid":12345, "tid":5, "ts":1718090301870934, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5440. ,{ "pid":12345, "tid":5, "ts":1718090301871018, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.TextRenderingModule.cpp" }}
  5441. ,{ "pid":12345, "tid":5, "ts":1718090301871016, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.TextRenderingModule.cpp" }}
  5442. ,{ "pid":12345, "tid":5, "ts":1718090301871092, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5443. ,{ "pid":12345, "tid":5, "ts":1718090301871183, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppGenericMethodDefinitions.c" }}
  5444. ,{ "pid":12345, "tid":5, "ts":1718090301871181, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppGenericMethodDefinitions.c" }}
  5445. ,{ "pid":12345, "tid":5, "ts":1718090301871259, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5446. ,{ "pid":12345, "tid":5, "ts":1718090301871342, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__5.cpp" }}
  5447. ,{ "pid":12345, "tid":5, "ts":1718090301871341, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__5.cpp" }}
  5448. ,{ "pid":12345, "tid":5, "ts":1718090301871425, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5449. ,{ "pid":12345, "tid":5, "ts":1718090301871527, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__52.cpp" }}
  5450. ,{ "pid":12345, "tid":5, "ts":1718090301871526, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__52.cpp" }}
  5451. ,{ "pid":12345, "tid":5, "ts":1718090301871633, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5452. ,{ "pid":12345, "tid":5, "ts":1718090301871716, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Burst.cpp" }}
  5453. ,{ "pid":12345, "tid":5, "ts":1718090301871714, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Burst.cpp" }}
  5454. ,{ "pid":12345, "tid":5, "ts":1718090301871806, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5455. ,{ "pid":12345, "tid":5, "ts":1718090301871897, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Purchasing.AppleMacosStub.cpp" }}
  5456. ,{ "pid":12345, "tid":5, "ts":1718090301871896, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Purchasing.AppleMacosStub.cpp" }}
  5457. ,{ "pid":12345, "tid":5, "ts":1718090301871982, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5458. ,{ "pid":12345, "tid":5, "ts":1718090301872072, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Purchasing.WinRTCore.cpp" }}
  5459. ,{ "pid":12345, "tid":5, "ts":1718090301872071, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Purchasing.WinRTCore.cpp" }}
  5460. ,{ "pid":12345, "tid":5, "ts":1718090301872165, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5461. ,{ "pid":12345, "tid":5, "ts":1718090301872255, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__17.cpp" }}
  5462. ,{ "pid":12345, "tid":5, "ts":1718090301872254, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__17.cpp" }}
  5463. ,{ "pid":12345, "tid":5, "ts":1718090301872370, "dur":246, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5464. ,{ "pid":12345, "tid":5, "ts":1718090301872641, "dur":213, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Purchasing.Common.cpp" }}
  5465. ,{ "pid":12345, "tid":5, "ts":1718090301872640, "dur":214, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Purchasing.Common.cpp" }}
  5466. ,{ "pid":12345, "tid":5, "ts":1718090301872855, "dur":405, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5467. ,{ "pid":12345, "tid":5, "ts":1718090301873269, "dur":182, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule__1.cpp" }}
  5468. ,{ "pid":12345, "tid":5, "ts":1718090301873268, "dur":197, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__1.cpp" }}
  5469. ,{ "pid":12345, "tid":5, "ts":1718090301873466, "dur":156, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5470. ,{ "pid":12345, "tid":5, "ts":1718090301873650, "dur":152, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule.cpp" }}
  5471. ,{ "pid":12345, "tid":5, "ts":1718090301873648, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule.cpp" }}
  5472. ,{ "pid":12345, "tid":5, "ts":1718090301873803, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5473. ,{ "pid":12345, "tid":5, "ts":1718090301873935, "dur":128, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.AndroidJNIModule_CodeGen.c" }}
  5474. ,{ "pid":12345, "tid":5, "ts":1718090301873934, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.AndroidJNIModule_CodeGen.c" }}
  5475. ,{ "pid":12345, "tid":5, "ts":1718090301874064, "dur":162, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5476. ,{ "pid":12345, "tid":5, "ts":1718090301874237, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Advertisements.cpp" }}
  5477. ,{ "pid":12345, "tid":5, "ts":1718090301874235, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Advertisements.cpp" }}
  5478. ,{ "pid":12345, "tid":5, "ts":1718090301874317, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5479. ,{ "pid":12345, "tid":5, "ts":1718090301874426, "dur":203, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib_CodeGen.c" }}
  5480. ,{ "pid":12345, "tid":5, "ts":1718090301874425, "dur":205, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib_CodeGen.c" }}
  5481. ,{ "pid":12345, "tid":5, "ts":1718090301874630, "dur":169, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5482. ,{ "pid":12345, "tid":5, "ts":1718090301874833, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__58.cpp" }}
  5483. ,{ "pid":12345, "tid":5, "ts":1718090301874823, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__58.cpp" }}
  5484. ,{ "pid":12345, "tid":5, "ts":1718090301874947, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5485. ,{ "pid":12345, "tid":5, "ts":1718090301875058, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.TextMeshPro.cpp" }}
  5486. ,{ "pid":12345, "tid":5, "ts":1718090301875057, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.TextMeshPro.cpp" }}
  5487. ,{ "pid":12345, "tid":5, "ts":1718090301875191, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5488. ,{ "pid":12345, "tid":5, "ts":1718090301875307, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__8.cpp" }}
  5489. ,{ "pid":12345, "tid":5, "ts":1718090301875305, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__8.cpp" }}
  5490. ,{ "pid":12345, "tid":5, "ts":1718090301875429, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5491. ,{ "pid":12345, "tid":5, "ts":1718090301875545, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__14.cpp" }}
  5492. ,{ "pid":12345, "tid":5, "ts":1718090301875544, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__14.cpp" }}
  5493. ,{ "pid":12345, "tid":5, "ts":1718090301875630, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5494. ,{ "pid":12345, "tid":5, "ts":1718090301875719, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__10.cpp" }}
  5495. ,{ "pid":12345, "tid":5, "ts":1718090301875717, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__10.cpp" }}
  5496. ,{ "pid":12345, "tid":5, "ts":1718090301875824, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5497. ,{ "pid":12345, "tid":5, "ts":1718090301875926, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__5.cpp" }}
  5498. ,{ "pid":12345, "tid":5, "ts":1718090301875924, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__5.cpp" }}
  5499. ,{ "pid":12345, "tid":5, "ts":1718090301876009, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5500. ,{ "pid":12345, "tid":5, "ts":1718090301876094, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Telemetry_CodeGen.c" }}
  5501. ,{ "pid":12345, "tid":5, "ts":1718090301876093, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Telemetry_CodeGen.c" }}
  5502. ,{ "pid":12345, "tid":5, "ts":1718090301876182, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5503. ,{ "pid":12345, "tid":5, "ts":1718090301876294, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Registration_CodeGen.c" }}
  5504. ,{ "pid":12345, "tid":5, "ts":1718090301876293, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Registration_CodeGen.c" }}
  5505. ,{ "pid":12345, "tid":5, "ts":1718090301876377, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5506. ,{ "pid":12345, "tid":5, "ts":1718090301876455, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__12.cpp" }}
  5507. ,{ "pid":12345, "tid":5, "ts":1718090301876454, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__12.cpp" }}
  5508. ,{ "pid":12345, "tid":5, "ts":1718090301876545, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5509. ,{ "pid":12345, "tid":5, "ts":1718090301876615, "dur":153, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.TextMeshPro__6.cpp" }}
  5510. ,{ "pid":12345, "tid":5, "ts":1718090301876613, "dur":155, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.TextMeshPro__6.cpp" }}
  5511. ,{ "pid":12345, "tid":5, "ts":1718090301876769, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5512. ,{ "pid":12345, "tid":5, "ts":1718090301876893, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System__5.cpp" }}
  5513. ,{ "pid":12345, "tid":5, "ts":1718090301876890, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System__5.cpp" }}
  5514. ,{ "pid":12345, "tid":5, "ts":1718090301877009, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5515. ,{ "pid":12345, "tid":5, "ts":1718090301877147, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__26.cpp" }}
  5516. ,{ "pid":12345, "tid":5, "ts":1718090301877146, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__26.cpp" }}
  5517. ,{ "pid":12345, "tid":5, "ts":1718090301877237, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5518. ,{ "pid":12345, "tid":5, "ts":1718090301877370, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.IMGUIModule_CodeGen.c" }}
  5519. ,{ "pid":12345, "tid":5, "ts":1718090301877368, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.IMGUIModule_CodeGen.c" }}
  5520. ,{ "pid":12345, "tid":5, "ts":1718090301877488, "dur":138, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5521. ,{ "pid":12345, "tid":5, "ts":1718090301877634, "dur":171, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.InputLegacyModule_CodeGen.c" }}
  5522. ,{ "pid":12345, "tid":5, "ts":1718090301877632, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.InputLegacyModule_CodeGen.c" }}
  5523. ,{ "pid":12345, "tid":5, "ts":1718090301877806, "dur":201, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5524. ,{ "pid":12345, "tid":5, "ts":1718090301878014, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__46.cpp" }}
  5525. ,{ "pid":12345, "tid":5, "ts":1718090301878013, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__46.cpp" }}
  5526. ,{ "pid":12345, "tid":5, "ts":1718090301878085, "dur":195, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5527. ,{ "pid":12345, "tid":5, "ts":1718090301878285, "dur":206, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  5528. ,{ "pid":12345, "tid":6, "ts":1718090301624788, "dur":116332, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  5529. ,{ "pid":12345, "tid":6, "ts":1718090301741125, "dur":972, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  5530. ,{ "pid":12345, "tid":6, "ts":1718090301742097, "dur":1003, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  5531. ,{ "pid":12345, "tid":6, "ts":1718090301743100, "dur":909, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  5532. ,{ "pid":12345, "tid":6, "ts":1718090301744009, "dur":974, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  5533. ,{ "pid":12345, "tid":6, "ts":1718090301744983, "dur":1172, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  5534. ,{ "pid":12345, "tid":6, "ts":1718090301746155, "dur":30034, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  5535. ,{ "pid":12345, "tid":6, "ts":1718090301776385, "dur":65, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.SharedInternalsModule-FeaturesChecked.txt_u2vb.info" }}
  5536. ,{ "pid":12345, "tid":6, "ts":1718090301776505, "dur":128, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.PropertiesModule-FeaturesChecked.txt_8j0m.info" }}
  5537. ,{ "pid":12345, "tid":6, "ts":1718090301776759, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5538. ,{ "pid":12345, "tid":6, "ts":1718090301776894, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5539. ,{ "pid":12345, "tid":6, "ts":1718090301777072, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5540. ,{ "pid":12345, "tid":6, "ts":1718090301777190, "dur":55, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/Newtonsoft.Json-FeaturesChecked.txt_ps0v.info" }}
  5541. ,{ "pid":12345, "tid":6, "ts":1718090301777248, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5542. ,{ "pid":12345, "tid":6, "ts":1718090301777360, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5543. ,{ "pid":12345, "tid":6, "ts":1718090301777496, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/armv7.swiftinterface" }}
  5544. ,{ "pid":12345, "tid":6, "ts":1718090301777605, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5545. ,{ "pid":12345, "tid":6, "ts":1718090301777667, "dur":165, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64.swiftmodule" }}
  5546. ,{ "pid":12345, "tid":6, "ts":1718090301777833, "dur":156, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5547. ,{ "pid":12345, "tid":6, "ts":1718090301777996, "dur":132, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm.swiftmodule" }}
  5548. ,{ "pid":12345, "tid":6, "ts":1718090301778128, "dur":142, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5549. ,{ "pid":12345, "tid":6, "ts":1718090301778282, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/USRVUnityPurchasingDelegate.h" }}
  5550. ,{ "pid":12345, "tid":6, "ts":1718090301778277, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/USRVUnityPurchasingDelegate.h" }}
  5551. ,{ "pid":12345, "tid":6, "ts":1718090301778354, "dur":206, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5552. ,{ "pid":12345, "tid":6, "ts":1718090301778566, "dur":207, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UPURTransactionError.h" }}
  5553. ,{ "pid":12345, "tid":6, "ts":1718090301778564, "dur":210, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UPURTransactionError.h" }}
  5554. ,{ "pid":12345, "tid":6, "ts":1718090301778774, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5555. ,{ "pid":12345, "tid":6, "ts":1718090301778899, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAnalytics.h" }}
  5556. ,{ "pid":12345, "tid":6, "ts":1718090301778898, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAnalytics.h" }}
  5557. ,{ "pid":12345, "tid":6, "ts":1718090301779009, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5558. ,{ "pid":12345, "tid":6, "ts":1718090301779122, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsLoadDelegate.h" }}
  5559. ,{ "pid":12345, "tid":6, "ts":1718090301779121, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsLoadDelegate.h" }}
  5560. ,{ "pid":12345, "tid":6, "ts":1718090301779229, "dur":181, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5561. ,{ "pid":12345, "tid":6, "ts":1718090301779423, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSBannerView.h" }}
  5562. ,{ "pid":12345, "tid":6, "ts":1718090301779421, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSBannerView.h" }}
  5563. ,{ "pid":12345, "tid":6, "ts":1718090301779508, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5564. ,{ "pid":12345, "tid":6, "ts":1718090301779613, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONRewardablePlacementContent.h" }}
  5565. ,{ "pid":12345, "tid":6, "ts":1718090301779613, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONRewardablePlacementContent.h" }}
  5566. ,{ "pid":12345, "tid":6, "ts":1718090301779723, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONItem.h" }}
  5567. ,{ "pid":12345, "tid":6, "ts":1718090301779723, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONItem.h" }}
  5568. ,{ "pid":12345, "tid":6, "ts":1718090301779825, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5569. ,{ "pid":12345, "tid":6, "ts":1718090301779947, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSMediationMetaData.h" }}
  5570. ,{ "pid":12345, "tid":6, "ts":1718090301779945, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSMediationMetaData.h" }}
  5571. ,{ "pid":12345, "tid":6, "ts":1718090301780055, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5572. ,{ "pid":12345, "tid":6, "ts":1718090301780138, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ApplePrivacyManifestsMerge.txt" }}
  5573. ,{ "pid":12345, "tid":6, "ts":1718090301780137, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/UnityFramework/ApplePrivacyManifestsMerge.txt" }}
  5574. ,{ "pid":12345, "tid":6, "ts":1718090301780198, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5575. ,{ "pid":12345, "tid":6, "ts":1718090301780309, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/NativeSymbol.h" }}
  5576. ,{ "pid":12345, "tid":6, "ts":1718090301780308, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/NativeSymbol.h" }}
  5577. ,{ "pid":12345, "tid":6, "ts":1718090301780389, "dur":205, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5578. ,{ "pid":12345, "tid":6, "ts":1718090301780600, "dur":128, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/icalls/mscorlib/System/Math.cpp" }}
  5579. ,{ "pid":12345, "tid":6, "ts":1718090301780598, "dur":130, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/icalls/mscorlib/System/Math.cpp" }}
  5580. ,{ "pid":12345, "tid":6, "ts":1718090301780729, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5581. ,{ "pid":12345, "tid":6, "ts":1718090301780838, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/DebugSymbolReader.cpp" }}
  5582. ,{ "pid":12345, "tid":6, "ts":1718090301780837, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/DebugSymbolReader.cpp" }}
  5583. ,{ "pid":12345, "tid":6, "ts":1718090301780956, "dur":147, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5584. ,{ "pid":12345, "tid":6, "ts":1718090301781107, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/utf8-cpp/source/utf8/core.h" }}
  5585. ,{ "pid":12345, "tid":6, "ts":1718090301781106, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/utf8-cpp/source/utf8/core.h" }}
  5586. ,{ "pid":12345, "tid":6, "ts":1718090301781241, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5587. ,{ "pid":12345, "tid":6, "ts":1718090301781325, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/StringUtils.h" }}
  5588. ,{ "pid":12345, "tid":6, "ts":1718090301781324, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/StringUtils.h" }}
  5589. ,{ "pid":12345, "tid":6, "ts":1718090301781438, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5590. ,{ "pid":12345, "tid":6, "ts":1718090301781556, "dur":158, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Runtime.cpp" }}
  5591. ,{ "pid":12345, "tid":6, "ts":1718090301781555, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Runtime.cpp" }}
  5592. ,{ "pid":12345, "tid":6, "ts":1718090301781715, "dur":166, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5593. ,{ "pid":12345, "tid":6, "ts":1718090301781886, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/New.h" }}
  5594. ,{ "pid":12345, "tid":6, "ts":1718090301781885, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/New.h" }}
  5595. ,{ "pid":12345, "tid":6, "ts":1718090301781973, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5596. ,{ "pid":12345, "tid":6, "ts":1718090301782104, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryPoolAddressSanitizer.cpp" }}
  5597. ,{ "pid":12345, "tid":6, "ts":1718090301782103, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryPoolAddressSanitizer.cpp" }}
  5598. ,{ "pid":12345, "tid":6, "ts":1718090301782164, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5599. ,{ "pid":12345, "tid":6, "ts":1718090301782253, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Memory.cpp" }}
  5600. ,{ "pid":12345, "tid":6, "ts":1718090301782252, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Memory.cpp" }}
  5601. ,{ "pid":12345, "tid":6, "ts":1718090301782331, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5602. ,{ "pid":12345, "tid":6, "ts":1718090301782412, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/KeyWrapper.h" }}
  5603. ,{ "pid":12345, "tid":6, "ts":1718090301782411, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/KeyWrapper.h" }}
  5604. ,{ "pid":12345, "tid":6, "ts":1718090301782501, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5605. ,{ "pid":12345, "tid":6, "ts":1718090301782567, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Il2CppError.cpp" }}
  5606. ,{ "pid":12345, "tid":6, "ts":1718090301782566, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Il2CppError.cpp" }}
  5607. ,{ "pid":12345, "tid":6, "ts":1718090301782658, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5608. ,{ "pid":12345, "tid":6, "ts":1718090301782769, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Exception.h" }}
  5609. ,{ "pid":12345, "tid":6, "ts":1718090301782768, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Exception.h" }}
  5610. ,{ "pid":12345, "tid":6, "ts":1718090301782840, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5611. ,{ "pid":12345, "tid":6, "ts":1718090301782958, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Collections.h" }}
  5612. ,{ "pid":12345, "tid":6, "ts":1718090301782957, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Collections.h" }}
  5613. ,{ "pid":12345, "tid":6, "ts":1718090301783039, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5614. ,{ "pid":12345, "tid":6, "ts":1718090301783108, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/pch/pch-cpp.cpp" }}
  5615. ,{ "pid":12345, "tid":6, "ts":1718090301783107, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/pch/pch-cpp.cpp" }}
  5616. ,{ "pid":12345, "tid":6, "ts":1718090301783218, "dur":170, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5617. ,{ "pid":12345, "tid":6, "ts":1718090301783497, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/MarshalAlloc.cpp" }}
  5618. ,{ "pid":12345, "tid":6, "ts":1718090301783495, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/MarshalAlloc.cpp" }}
  5619. ,{ "pid":12345, "tid":6, "ts":1718090301783580, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5620. ,{ "pid":12345, "tid":6, "ts":1718090301783653, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WindowsGames/Win32ApiWindowsGamesEmulation.cpp" }}
  5621. ,{ "pid":12345, "tid":6, "ts":1718090301783651, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WindowsGames/Win32ApiWindowsGamesEmulation.cpp" }}
  5622. ,{ "pid":12345, "tid":6, "ts":1718090301783722, "dur":146, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5623. ,{ "pid":12345, "tid":6, "ts":1718090301783873, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Time.cpp" }}
  5624. ,{ "pid":12345, "tid":6, "ts":1718090301783872, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Time.cpp" }}
  5625. ,{ "pid":12345, "tid":6, "ts":1718090301783968, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5626. ,{ "pid":12345, "tid":6, "ts":1718090301784083, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/SynchronizationContext.cpp" }}
  5627. ,{ "pid":12345, "tid":6, "ts":1718090301784082, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/SynchronizationContext.cpp" }}
  5628. ,{ "pid":12345, "tid":6, "ts":1718090301784141, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5629. ,{ "pid":12345, "tid":6, "ts":1718090301784218, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/NativeMethods.cpp" }}
  5630. ,{ "pid":12345, "tid":6, "ts":1718090301784217, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/NativeMethods.cpp" }}
  5631. ,{ "pid":12345, "tid":6, "ts":1718090301784278, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5632. ,{ "pid":12345, "tid":6, "ts":1718090301784359, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/MarshalAlloc.cpp" }}
  5633. ,{ "pid":12345, "tid":6, "ts":1718090301784358, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/MarshalAlloc.cpp" }}
  5634. ,{ "pid":12345, "tid":6, "ts":1718090301784447, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5635. ,{ "pid":12345, "tid":6, "ts":1718090301784526, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/FileSystemWatcher.cpp" }}
  5636. ,{ "pid":12345, "tid":6, "ts":1718090301784577, "dur":148, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5637. ,{ "pid":12345, "tid":6, "ts":1718090301784731, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/DllMain.cpp" }}
  5638. ,{ "pid":12345, "tid":6, "ts":1718090301784730, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/DllMain.cpp" }}
  5639. ,{ "pid":12345, "tid":6, "ts":1718090301784787, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5640. ,{ "pid":12345, "tid":6, "ts":1718090301784858, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/CpuInfo.cpp" }}
  5641. ,{ "pid":12345, "tid":6, "ts":1718090301784857, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/CpuInfo.cpp" }}
  5642. ,{ "pid":12345, "tid":6, "ts":1718090301784927, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5643. ,{ "pid":12345, "tid":6, "ts":1718090301784998, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WaitStatus.h" }}
  5644. ,{ "pid":12345, "tid":6, "ts":1718090301784997, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WaitStatus.h" }}
  5645. ,{ "pid":12345, "tid":6, "ts":1718090301785097, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5646. ,{ "pid":12345, "tid":6, "ts":1718090301785154, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Std/ThreadImpl.h" }}
  5647. ,{ "pid":12345, "tid":6, "ts":1718090301785153, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Std/ThreadImpl.h" }}
  5648. ,{ "pid":12345, "tid":6, "ts":1718090301785218, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5649. ,{ "pid":12345, "tid":6, "ts":1718090301785288, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Socket.cpp" }}
  5650. ,{ "pid":12345, "tid":6, "ts":1718090301785287, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Socket.cpp" }}
  5651. ,{ "pid":12345, "tid":6, "ts":1718090301785358, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5652. ,{ "pid":12345, "tid":6, "ts":1718090301785425, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ReaderWriterLock.cpp" }}
  5653. ,{ "pid":12345, "tid":6, "ts":1718090301785424, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ReaderWriterLock.cpp" }}
  5654. ,{ "pid":12345, "tid":6, "ts":1718090301785486, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5655. ,{ "pid":12345, "tid":6, "ts":1718090301785574, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/ThreadImpl.cpp" }}
  5656. ,{ "pid":12345, "tid":6, "ts":1718090301785573, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/ThreadImpl.cpp" }}
  5657. ,{ "pid":12345, "tid":6, "ts":1718090301785638, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5658. ,{ "pid":12345, "tid":6, "ts":1718090301785708, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/ReaderWriterLockImpl.h" }}
  5659. ,{ "pid":12345, "tid":6, "ts":1718090301785706, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/ReaderWriterLockImpl.h" }}
  5660. ,{ "pid":12345, "tid":6, "ts":1718090301785760, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5661. ,{ "pid":12345, "tid":6, "ts":1718090301785848, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5662. ,{ "pid":12345, "tid":6, "ts":1718090301785922, "dur":136, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/MarshalAlloc.cpp" }}
  5663. ,{ "pid":12345, "tid":6, "ts":1718090301785921, "dur":141, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/MarshalAlloc.cpp" }}
  5664. ,{ "pid":12345, "tid":6, "ts":1718090301786062, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5665. ,{ "pid":12345, "tid":6, "ts":1718090301786116, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/File.cpp" }}
  5666. ,{ "pid":12345, "tid":6, "ts":1718090301786115, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/File.cpp" }}
  5667. ,{ "pid":12345, "tid":6, "ts":1718090301786176, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5668. ,{ "pid":12345, "tid":6, "ts":1718090301786289, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5669. ,{ "pid":12345, "tid":6, "ts":1718090301786410, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/ConditionVariableImpl.h" }}
  5670. ,{ "pid":12345, "tid":6, "ts":1718090301786408, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/ConditionVariableImpl.h" }}
  5671. ,{ "pid":12345, "tid":6, "ts":1718090301786477, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5672. ,{ "pid":12345, "tid":6, "ts":1718090301786596, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/OSX/Process.cpp" }}
  5673. ,{ "pid":12345, "tid":6, "ts":1718090301786595, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/OSX/Process.cpp" }}
  5674. ,{ "pid":12345, "tid":6, "ts":1718090301786669, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5675. ,{ "pid":12345, "tid":6, "ts":1718090301786748, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Messages.cpp" }}
  5676. ,{ "pid":12345, "tid":6, "ts":1718090301786746, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Messages.cpp" }}
  5677. ,{ "pid":12345, "tid":6, "ts":1718090301786831, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5678. ,{ "pid":12345, "tid":6, "ts":1718090301786904, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Linux/pal_linux.h" }}
  5679. ,{ "pid":12345, "tid":6, "ts":1718090301786903, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Linux/pal_linux.h" }}
  5680. ,{ "pid":12345, "tid":6, "ts":1718090301786977, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5681. ,{ "pid":12345, "tid":6, "ts":1718090301787042, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Image.cpp" }}
  5682. ,{ "pid":12345, "tid":6, "ts":1718090301787041, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Image.cpp" }}
  5683. ,{ "pid":12345, "tid":6, "ts":1718090301787128, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5684. ,{ "pid":12345, "tid":6, "ts":1718090301787210, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/SocketImpl.cpp" }}
  5685. ,{ "pid":12345, "tid":6, "ts":1718090301787209, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/SocketImpl.cpp" }}
  5686. ,{ "pid":12345, "tid":6, "ts":1718090301787269, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5687. ,{ "pid":12345, "tid":6, "ts":1718090301787346, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/MarshalStringAlloc.cpp" }}
  5688. ,{ "pid":12345, "tid":6, "ts":1718090301787346, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/MarshalStringAlloc.cpp" }}
  5689. ,{ "pid":12345, "tid":6, "ts":1718090301787405, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5690. ,{ "pid":12345, "tid":6, "ts":1718090301787471, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/EventImpl.h" }}
  5691. ,{ "pid":12345, "tid":6, "ts":1718090301787470, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/EventImpl.h" }}
  5692. ,{ "pid":12345, "tid":6, "ts":1718090301787530, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5693. ,{ "pid":12345, "tid":6, "ts":1718090301787597, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/BrokeredFileSystem.cpp" }}
  5694. ,{ "pid":12345, "tid":6, "ts":1718090301787596, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/BrokeredFileSystem.cpp" }}
  5695. ,{ "pid":12345, "tid":6, "ts":1718090301787668, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5696. ,{ "pid":12345, "tid":6, "ts":1718090301787777, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/FastReaderReaderWriterLock.cpp" }}
  5697. ,{ "pid":12345, "tid":6, "ts":1718090301787776, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/FastReaderReaderWriterLock.cpp" }}
  5698. ,{ "pid":12345, "tid":6, "ts":1718090301787842, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5699. ,{ "pid":12345, "tid":6, "ts":1718090301787900, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Environment.h" }}
  5700. ,{ "pid":12345, "tid":6, "ts":1718090301787899, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Environment.h" }}
  5701. ,{ "pid":12345, "tid":6, "ts":1718090301787998, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5702. ,{ "pid":12345, "tid":6, "ts":1718090301788060, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Debug.h" }}
  5703. ,{ "pid":12345, "tid":6, "ts":1718090301788059, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Debug.h" }}
  5704. ,{ "pid":12345, "tid":6, "ts":1718090301788120, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5705. ,{ "pid":12345, "tid":6, "ts":1718090301788185, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Console.h" }}
  5706. ,{ "pid":12345, "tid":6, "ts":1718090301788184, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Console.h" }}
  5707. ,{ "pid":12345, "tid":6, "ts":1718090301788304, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5708. ,{ "pid":12345, "tid":6, "ts":1718090301788364, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_time.cpp" }}
  5709. ,{ "pid":12345, "tid":6, "ts":1718090301788363, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_time.cpp" }}
  5710. ,{ "pid":12345, "tid":6, "ts":1718090301788437, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5711. ,{ "pid":12345, "tid":6, "ts":1718090301788508, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_mirror_structs.h" }}
  5712. ,{ "pid":12345, "tid":6, "ts":1718090301788506, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_mirror_structs.h" }}
  5713. ,{ "pid":12345, "tid":6, "ts":1718090301788585, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5714. ,{ "pid":12345, "tid":6, "ts":1718090301788678, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/decode.h" }}
  5715. ,{ "pid":12345, "tid":6, "ts":1718090301788677, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/decode.h" }}
  5716. ,{ "pid":12345, "tid":6, "ts":1718090301788744, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5717. ,{ "pid":12345, "tid":6, "ts":1718090301788828, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/static_dict.c" }}
  5718. ,{ "pid":12345, "tid":6, "ts":1718090301788827, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/static_dict.c" }}
  5719. ,{ "pid":12345, "tid":6, "ts":1718090301788888, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5720. ,{ "pid":12345, "tid":6, "ts":1718090301788961, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/metablock.h" }}
  5721. ,{ "pid":12345, "tid":6, "ts":1718090301788960, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/metablock.h" }}
  5722. ,{ "pid":12345, "tid":6, "ts":1718090301789037, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5723. ,{ "pid":12345, "tid":6, "ts":1718090301789130, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/histogram_inc.h" }}
  5724. ,{ "pid":12345, "tid":6, "ts":1718090301789129, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/histogram_inc.h" }}
  5725. ,{ "pid":12345, "tid":6, "ts":1718090301789221, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5726. ,{ "pid":12345, "tid":6, "ts":1718090301789311, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_longest_match_inc.h" }}
  5727. ,{ "pid":12345, "tid":6, "ts":1718090301789310, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_longest_match_inc.h" }}
  5728. ,{ "pid":12345, "tid":6, "ts":1718090301789391, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5729. ,{ "pid":12345, "tid":6, "ts":1718090301789490, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/fast_log.c" }}
  5730. ,{ "pid":12345, "tid":6, "ts":1718090301789489, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/fast_log.c" }}
  5731. ,{ "pid":12345, "tid":6, "ts":1718090301789561, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5732. ,{ "pid":12345, "tid":6, "ts":1718090301789646, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/encode.c" }}
  5733. ,{ "pid":12345, "tid":6, "ts":1718090301789645, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/encode.c" }}
  5734. ,{ "pid":12345, "tid":6, "ts":1718090301789736, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5735. ,{ "pid":12345, "tid":6, "ts":1718090301789810, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment.c" }}
  5736. ,{ "pid":12345, "tid":6, "ts":1718090301789809, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment.c" }}
  5737. ,{ "pid":12345, "tid":6, "ts":1718090301789870, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5738. ,{ "pid":12345, "tid":6, "ts":1718090301789933, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/cluster.c" }}
  5739. ,{ "pid":12345, "tid":6, "ts":1718090301789933, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/cluster.c" }}
  5740. ,{ "pid":12345, "tid":6, "ts":1718090301789992, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5741. ,{ "pid":12345, "tid":6, "ts":1718090301790120, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5742. ,{ "pid":12345, "tid":6, "ts":1718090301790189, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references_hq.c" }}
  5743. ,{ "pid":12345, "tid":6, "ts":1718090301790187, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references_hq.c" }}
  5744. ,{ "pid":12345, "tid":6, "ts":1718090301790252, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5745. ,{ "pid":12345, "tid":6, "ts":1718090301790312, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/huffman.c" }}
  5746. ,{ "pid":12345, "tid":6, "ts":1718090301790310, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/huffman.c" }}
  5747. ,{ "pid":12345, "tid":6, "ts":1718090301790388, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5748. ,{ "pid":12345, "tid":6, "ts":1718090301790461, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/transform.c" }}
  5749. ,{ "pid":12345, "tid":6, "ts":1718090301790459, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/transform.c" }}
  5750. ,{ "pid":12345, "tid":6, "ts":1718090301790577, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/dictionary.c" }}
  5751. ,{ "pid":12345, "tid":6, "ts":1718090301790575, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/dictionary.c" }}
  5752. ,{ "pid":12345, "tid":6, "ts":1718090301790629, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5753. ,{ "pid":12345, "tid":6, "ts":1718090301790701, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Time.cpp" }}
  5754. ,{ "pid":12345, "tid":6, "ts":1718090301790700, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Time.cpp" }}
  5755. ,{ "pid":12345, "tid":6, "ts":1718090301790757, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5756. ,{ "pid":12345, "tid":6, "ts":1718090301790847, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Path.cpp" }}
  5757. ,{ "pid":12345, "tid":6, "ts":1718090301790846, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Path.cpp" }}
  5758. ,{ "pid":12345, "tid":6, "ts":1718090301790918, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5759. ,{ "pid":12345, "tid":6, "ts":1718090301791022, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5760. ,{ "pid":12345, "tid":6, "ts":1718090301791135, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Environment-c-api.h" }}
  5761. ,{ "pid":12345, "tid":6, "ts":1718090301791134, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Environment-c-api.h" }}
  5762. ,{ "pid":12345, "tid":6, "ts":1718090301791191, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5763. ,{ "pid":12345, "tid":6, "ts":1718090301791255, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Allocator.h" }}
  5764. ,{ "pid":12345, "tid":6, "ts":1718090301791254, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Allocator.h" }}
  5765. ,{ "pid":12345, "tid":6, "ts":1718090301791373, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Android/StackTrace.cpp" }}
  5766. ,{ "pid":12345, "tid":6, "ts":1718090301791372, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Android/StackTrace.cpp" }}
  5767. ,{ "pid":12345, "tid":6, "ts":1718090301791459, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5768. ,{ "pid":12345, "tid":6, "ts":1718090301791529, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/ThreadPoolWorkerThread.cpp" }}
  5769. ,{ "pid":12345, "tid":6, "ts":1718090301791528, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/ThreadPoolWorkerThread.cpp" }}
  5770. ,{ "pid":12345, "tid":6, "ts":1718090301791637, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/threadpool-ms-io.h" }}
  5771. ,{ "pid":12345, "tid":6, "ts":1718090301791635, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/threadpool-ms-io.h" }}
  5772. ,{ "pid":12345, "tid":6, "ts":1718090301791703, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5773. ,{ "pid":12345, "tid":6, "ts":1718090301791762, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/MonoPosixHelper.cpp" }}
  5774. ,{ "pid":12345, "tid":6, "ts":1718090301791761, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/MonoPosixHelper.cpp" }}
  5775. ,{ "pid":12345, "tid":6, "ts":1718090301791832, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5776. ,{ "pid":12345, "tid":6, "ts":1718090301791919, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericMethodHash.h" }}
  5777. ,{ "pid":12345, "tid":6, "ts":1718090301791917, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericMethodHash.h" }}
  5778. ,{ "pid":12345, "tid":6, "ts":1718090301791977, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5779. ,{ "pid":12345, "tid":6, "ts":1718090301792048, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericInstCompare.h" }}
  5780. ,{ "pid":12345, "tid":6, "ts":1718090301792046, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericInstCompare.h" }}
  5781. ,{ "pid":12345, "tid":6, "ts":1718090301792110, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5782. ,{ "pid":12345, "tid":6, "ts":1718090301792264, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericClassHash.h" }}
  5783. ,{ "pid":12345, "tid":6, "ts":1718090301792263, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericClassHash.h" }}
  5784. ,{ "pid":12345, "tid":6, "ts":1718090301792376, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5785. ,{ "pid":12345, "tid":6, "ts":1718090301792435, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/GenericMethod.h" }}
  5786. ,{ "pid":12345, "tid":6, "ts":1718090301792434, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericMethod.h" }}
  5787. ,{ "pid":12345, "tid":6, "ts":1718090301792516, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5788. ,{ "pid":12345, "tid":6, "ts":1718090301792605, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/CustomAttributeDataReader.h" }}
  5789. ,{ "pid":12345, "tid":6, "ts":1718090301792604, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/CustomAttributeDataReader.h" }}
  5790. ,{ "pid":12345, "tid":6, "ts":1718090301792724, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5791. ,{ "pid":12345, "tid":6, "ts":1718090301792798, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/libil2cpp.icalls" }}
  5792. ,{ "pid":12345, "tid":6, "ts":1718090301792882, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5793. ,{ "pid":12345, "tid":6, "ts":1718090301792962, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-runtime-stats.h" }}
  5794. ,{ "pid":12345, "tid":6, "ts":1718090301792960, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-runtime-stats.h" }}
  5795. ,{ "pid":12345, "tid":6, "ts":1718090301793067, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5796. ,{ "pid":12345, "tid":6, "ts":1718090301793128, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-normalization-tables.h" }}
  5797. ,{ "pid":12345, "tid":6, "ts":1718090301793127, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-normalization-tables.h" }}
  5798. ,{ "pid":12345, "tid":6, "ts":1718090301793189, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5799. ,{ "pid":12345, "tid":6, "ts":1718090301793269, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-class-internals.h" }}
  5800. ,{ "pid":12345, "tid":6, "ts":1718090301793268, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-class-internals.h" }}
  5801. ,{ "pid":12345, "tid":6, "ts":1718090301793335, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5802. ,{ "pid":12345, "tid":6, "ts":1718090301793431, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-api-types.h" }}
  5803. ,{ "pid":12345, "tid":6, "ts":1718090301793430, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-api-types.h" }}
  5804. ,{ "pid":12345, "tid":6, "ts":1718090301793505, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5805. ,{ "pid":12345, "tid":6, "ts":1718090301793577, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net/Dns.cpp" }}
  5806. ,{ "pid":12345, "tid":6, "ts":1718090301793576, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net/Dns.cpp" }}
  5807. ,{ "pid":12345, "tid":6, "ts":1718090301793638, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5808. ,{ "pid":12345, "tid":6, "ts":1718090301793709, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.NetworkInformation/LinuxNetworkInterface.h" }}
  5809. ,{ "pid":12345, "tid":6, "ts":1718090301793708, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.NetworkInformation/LinuxNetworkInterface.h" }}
  5810. ,{ "pid":12345, "tid":6, "ts":1718090301793788, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5811. ,{ "pid":12345, "tid":6, "ts":1718090301793869, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/Process.cpp" }}
  5812. ,{ "pid":12345, "tid":6, "ts":1718090301793868, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/Process.cpp" }}
  5813. ,{ "pid":12345, "tid":6, "ts":1718090301793961, "dur":153, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5814. ,{ "pid":12345, "tid":6, "ts":1718090301794119, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/Microsoft.Win32/NativeMethods.h" }}
  5815. ,{ "pid":12345, "tid":6, "ts":1718090301794118, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/Microsoft.Win32/NativeMethods.h" }}
  5816. ,{ "pid":12345, "tid":6, "ts":1718090301794191, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5817. ,{ "pid":12345, "tid":6, "ts":1718090301794268, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Type.h" }}
  5818. ,{ "pid":12345, "tid":6, "ts":1718090301794267, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Type.h" }}
  5819. ,{ "pid":12345, "tid":6, "ts":1718090301794380, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5820. ,{ "pid":12345, "tid":6, "ts":1718090301794437, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeType.cpp" }}
  5821. ,{ "pid":12345, "tid":6, "ts":1718090301794435, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeType.cpp" }}
  5822. ,{ "pid":12345, "tid":6, "ts":1718090301794508, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5823. ,{ "pid":12345, "tid":6, "ts":1718090301794599, "dur":164, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/NumberFormatter.h" }}
  5824. ,{ "pid":12345, "tid":6, "ts":1718090301794596, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/NumberFormatter.h" }}
  5825. ,{ "pid":12345, "tid":6, "ts":1718090301794767, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5826. ,{ "pid":12345, "tid":6, "ts":1718090301794851, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Exception.h" }}
  5827. ,{ "pid":12345, "tid":6, "ts":1718090301794850, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Exception.h" }}
  5828. ,{ "pid":12345, "tid":6, "ts":1718090301794931, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5829. ,{ "pid":12345, "tid":6, "ts":1718090301795007, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Delegate.cpp" }}
  5830. ,{ "pid":12345, "tid":6, "ts":1718090301795005, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Delegate.cpp" }}
  5831. ,{ "pid":12345, "tid":6, "ts":1718090301795104, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5832. ,{ "pid":12345, "tid":6, "ts":1718090301795192, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/CLRConfig.h" }}
  5833. ,{ "pid":12345, "tid":6, "ts":1718090301795191, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/CLRConfig.h" }}
  5834. ,{ "pid":12345, "tid":6, "ts":1718090301795254, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5835. ,{ "pid":12345, "tid":6, "ts":1718090301795343, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/ArgIterator.cpp" }}
  5836. ,{ "pid":12345, "tid":6, "ts":1718090301795342, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/ArgIterator.cpp" }}
  5837. ,{ "pid":12345, "tid":6, "ts":1718090301795419, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5838. ,{ "pid":12345, "tid":6, "ts":1718090301795503, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Thread.h" }}
  5839. ,{ "pid":12345, "tid":6, "ts":1718090301795501, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Thread.h" }}
  5840. ,{ "pid":12345, "tid":6, "ts":1718090301795556, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5841. ,{ "pid":12345, "tid":6, "ts":1718090301795620, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Mutex.cpp" }}
  5842. ,{ "pid":12345, "tid":6, "ts":1718090301795618, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Mutex.cpp" }}
  5843. ,{ "pid":12345, "tid":6, "ts":1718090301795677, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5844. ,{ "pid":12345, "tid":6, "ts":1718090301795770, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Text/EncodingHelper.h" }}
  5845. ,{ "pid":12345, "tid":6, "ts":1718090301795769, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Text/EncodingHelper.h" }}
  5846. ,{ "pid":12345, "tid":6, "ts":1718090301795863, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5847. ,{ "pid":12345, "tid":6, "ts":1718090301795928, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsIdentity.cpp" }}
  5848. ,{ "pid":12345, "tid":6, "ts":1718090301795926, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsIdentity.cpp" }}
  5849. ,{ "pid":12345, "tid":6, "ts":1718090301795990, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5850. ,{ "pid":12345, "tid":6, "ts":1718090301796064, "dur":127, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Versioning/VersioningHelper.h" }}
  5851. ,{ "pid":12345, "tid":6, "ts":1718090301796063, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Versioning/VersioningHelper.h" }}
  5852. ,{ "pid":12345, "tid":6, "ts":1718090301796191, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5853. ,{ "pid":12345, "tid":6, "ts":1718090301796289, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/AsyncResult.h" }}
  5854. ,{ "pid":12345, "tid":6, "ts":1718090301796286, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/AsyncResult.h" }}
  5855. ,{ "pid":12345, "tid":6, "ts":1718090301796361, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5856. ,{ "pid":12345, "tid":6, "ts":1718090301796444, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/RuntimeInformation.cpp" }}
  5857. ,{ "pid":12345, "tid":6, "ts":1718090301796443, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/RuntimeInformation.cpp" }}
  5858. ,{ "pid":12345, "tid":6, "ts":1718090301796528, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5859. ,{ "pid":12345, "tid":6, "ts":1718090301796618, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimePropertyInfo.h" }}
  5860. ,{ "pid":12345, "tid":6, "ts":1718090301796616, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimePropertyInfo.h" }}
  5861. ,{ "pid":12345, "tid":6, "ts":1718090301796712, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5862. ,{ "pid":12345, "tid":6, "ts":1718090301796801, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeMethodInfo.cpp" }}
  5863. ,{ "pid":12345, "tid":6, "ts":1718090301796799, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeMethodInfo.cpp" }}
  5864. ,{ "pid":12345, "tid":6, "ts":1718090301796874, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5865. ,{ "pid":12345, "tid":6, "ts":1718090301796967, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeConstructorInfo.cpp" }}
  5866. ,{ "pid":12345, "tid":6, "ts":1718090301796965, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeConstructorInfo.cpp" }}
  5867. ,{ "pid":12345, "tid":6, "ts":1718090301797034, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5868. ,{ "pid":12345, "tid":6, "ts":1718090301797128, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/Module.h" }}
  5869. ,{ "pid":12345, "tid":6, "ts":1718090301797126, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/Module.h" }}
  5870. ,{ "pid":12345, "tid":6, "ts":1718090301797209, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5871. ,{ "pid":12345, "tid":6, "ts":1718090301797303, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/EventInfo.cpp" }}
  5872. ,{ "pid":12345, "tid":6, "ts":1718090301797302, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/EventInfo.cpp" }}
  5873. ,{ "pid":12345, "tid":6, "ts":1718090301797360, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5874. ,{ "pid":12345, "tid":6, "ts":1718090301797443, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/Path.h" }}
  5875. ,{ "pid":12345, "tid":6, "ts":1718090301797442, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/Path.h" }}
  5876. ,{ "pid":12345, "tid":6, "ts":1718090301797511, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5877. ,{ "pid":12345, "tid":6, "ts":1718090301797583, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/BrokeredFileSystem.h" }}
  5878. ,{ "pid":12345, "tid":6, "ts":1718090301797582, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/BrokeredFileSystem.h" }}
  5879. ,{ "pid":12345, "tid":6, "ts":1718090301797705, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/Generated/CultureInfoInternalsNet_4_0.h" }}
  5880. ,{ "pid":12345, "tid":6, "ts":1718090301797703, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/Generated/CultureInfoInternalsNet_4_0.h" }}
  5881. ,{ "pid":12345, "tid":6, "ts":1718090301797801, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5882. ,{ "pid":12345, "tid":6, "ts":1718090301797861, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CompareInfo.h" }}
  5883. ,{ "pid":12345, "tid":6, "ts":1718090301797860, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CompareInfo.h" }}
  5884. ,{ "pid":12345, "tid":6, "ts":1718090301797946, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5885. ,{ "pid":12345, "tid":6, "ts":1718090301798082, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5886. ,{ "pid":12345, "tid":6, "ts":1718090301798150, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/RuntimeGPtrArrayHandle.h" }}
  5887. ,{ "pid":12345, "tid":6, "ts":1718090301798149, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/RuntimeGPtrArrayHandle.h" }}
  5888. ,{ "pid":12345, "tid":6, "ts":1718090301798234, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5889. ,{ "pid":12345, "tid":6, "ts":1718090301798316, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono.Unity/UnityTls.cpp" }}
  5890. ,{ "pid":12345, "tid":6, "ts":1718090301798315, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono.Unity/UnityTls.cpp" }}
  5891. ,{ "pid":12345, "tid":6, "ts":1718090301798374, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5892. ,{ "pid":12345, "tid":6, "ts":1718090301798474, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/WriteBarrier.h" }}
  5893. ,{ "pid":12345, "tid":6, "ts":1718090301798472, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/WriteBarrier.h" }}
  5894. ,{ "pid":12345, "tid":6, "ts":1718090301798546, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5895. ,{ "pid":12345, "tid":6, "ts":1718090301798665, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5896. ,{ "pid":12345, "tid":6, "ts":1718090301798787, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-tiny.h" }}
  5897. ,{ "pid":12345, "tid":6, "ts":1718090301798785, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-tiny.h" }}
  5898. ,{ "pid":12345, "tid":6, "ts":1718090301798897, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5899. ,{ "pid":12345, "tid":6, "ts":1718090301798965, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/char-conversions.h" }}
  5900. ,{ "pid":12345, "tid":6, "ts":1718090301798963, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/char-conversions.h" }}
  5901. ,{ "pid":12345, "tid":6, "ts":1718090301799034, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5902. ,{ "pid":12345, "tid":6, "ts":1718090301799109, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/trees.h" }}
  5903. ,{ "pid":12345, "tid":6, "ts":1718090301799108, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/trees.h" }}
  5904. ,{ "pid":12345, "tid":6, "ts":1718090301799179, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5905. ,{ "pid":12345, "tid":6, "ts":1718090301799259, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/inffixed.h" }}
  5906. ,{ "pid":12345, "tid":6, "ts":1718090301799257, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inffixed.h" }}
  5907. ,{ "pid":12345, "tid":6, "ts":1718090301799321, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5908. ,{ "pid":12345, "tid":6, "ts":1718090301799393, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/gzguts.h" }}
  5909. ,{ "pid":12345, "tid":6, "ts":1718090301799392, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/gzguts.h" }}
  5910. ,{ "pid":12345, "tid":6, "ts":1718090301799450, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5911. ,{ "pid":12345, "tid":6, "ts":1718090301799551, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/xxHash/xxhash.h" }}
  5912. ,{ "pid":12345, "tid":6, "ts":1718090301799551, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xxHash/xxhash.h" }}
  5913. ,{ "pid":12345, "tid":6, "ts":1718090301799652, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5914. ,{ "pid":12345, "tid":6, "ts":1718090301799755, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/xamarin-android/xamarin_getifaddrs.c" }}
  5915. ,{ "pid":12345, "tid":6, "ts":1718090301799746, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xamarin-android/xamarin_getifaddrs.c" }}
  5916. ,{ "pid":12345, "tid":6, "ts":1718090301799823, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5917. ,{ "pid":12345, "tid":6, "ts":1718090301799916, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/ward.h" }}
  5918. ,{ "pid":12345, "tid":6, "ts":1718090301799915, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/ward.h" }}
  5919. ,{ "pid":12345, "tid":6, "ts":1718090301799995, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5920. ,{ "pid":12345, "tid":6, "ts":1718090301800064, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/strenc.c" }}
  5921. ,{ "pid":12345, "tid":6, "ts":1718090301800063, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/strenc.c" }}
  5922. ,{ "pid":12345, "tid":6, "ts":1718090301800183, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5923. ,{ "pid":12345, "tid":6, "ts":1718090301800260, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/os-event-win32.c" }}
  5924. ,{ "pid":12345, "tid":6, "ts":1718090301800259, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/os-event-win32.c" }}
  5925. ,{ "pid":12345, "tid":6, "ts":1718090301800324, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5926. ,{ "pid":12345, "tid":6, "ts":1718090301800412, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/networking-posix.c" }}
  5927. ,{ "pid":12345, "tid":6, "ts":1718090301800411, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/networking-posix.c" }}
  5928. ,{ "pid":12345, "tid":6, "ts":1718090301800506, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5929. ,{ "pid":12345, "tid":6, "ts":1718090301800600, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-uri.c" }}
  5930. ,{ "pid":12345, "tid":6, "ts":1718090301800599, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-uri.c" }}
  5931. ,{ "pid":12345, "tid":6, "ts":1718090301800668, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5932. ,{ "pid":12345, "tid":6, "ts":1718090301800774, "dur":696, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-windows.c" }}
  5933. ,{ "pid":12345, "tid":6, "ts":1718090301800773, "dur":697, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-windows.c" }}
  5934. ,{ "pid":12345, "tid":6, "ts":1718090301801471, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5935. ,{ "pid":12345, "tid":6, "ts":1718090301801538, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-debug.h" }}
  5936. ,{ "pid":12345, "tid":6, "ts":1718090301801537, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-debug.h" }}
  5937. ,{ "pid":12345, "tid":6, "ts":1718090301801625, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5938. ,{ "pid":12345, "tid":6, "ts":1718090301801711, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-stdlib.c" }}
  5939. ,{ "pid":12345, "tid":6, "ts":1718090301801709, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-stdlib.c" }}
  5940. ,{ "pid":12345, "tid":6, "ts":1718090301801803, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5941. ,{ "pid":12345, "tid":6, "ts":1718090301801869, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-publib.c" }}
  5942. ,{ "pid":12345, "tid":6, "ts":1718090301801869, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-publib.c" }}
  5943. ,{ "pid":12345, "tid":6, "ts":1718090301801975, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5944. ,{ "pid":12345, "tid":6, "ts":1718090301802065, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-poll.c" }}
  5945. ,{ "pid":12345, "tid":6, "ts":1718090301802064, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-poll.c" }}
  5946. ,{ "pid":12345, "tid":6, "ts":1718090301802131, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5947. ,{ "pid":12345, "tid":6, "ts":1718090301802196, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-os-semaphore-win32.c" }}
  5948. ,{ "pid":12345, "tid":6, "ts":1718090301802195, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-os-semaphore-win32.c" }}
  5949. ,{ "pid":12345, "tid":6, "ts":1718090301802277, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5950. ,{ "pid":12345, "tid":6, "ts":1718090301802358, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-mmap.c" }}
  5951. ,{ "pid":12345, "tid":6, "ts":1718090301802356, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-mmap.c" }}
  5952. ,{ "pid":12345, "tid":6, "ts":1718090301802442, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5953. ,{ "pid":12345, "tid":6, "ts":1718090301802516, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-math.h" }}
  5954. ,{ "pid":12345, "tid":6, "ts":1718090301802515, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-math.h" }}
  5955. ,{ "pid":12345, "tid":6, "ts":1718090301802579, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5956. ,{ "pid":12345, "tid":6, "ts":1718090301802683, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-log-unity.c" }}
  5957. ,{ "pid":12345, "tid":6, "ts":1718090301802682, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-log-unity.c" }}
  5958. ,{ "pid":12345, "tid":6, "ts":1718090301802751, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5959. ,{ "pid":12345, "tid":6, "ts":1718090301802838, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-lazy-init.h" }}
  5960. ,{ "pid":12345, "tid":6, "ts":1718090301802837, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-lazy-init.h" }}
  5961. ,{ "pid":12345, "tid":6, "ts":1718090301802889, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5962. ,{ "pid":12345, "tid":6, "ts":1718090301802956, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-hwcap-x86.c" }}
  5963. ,{ "pid":12345, "tid":6, "ts":1718090301802955, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-hwcap-x86.c" }}
  5964. ,{ "pid":12345, "tid":6, "ts":1718090301803011, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5965. ,{ "pid":12345, "tid":6, "ts":1718090301803083, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-filemap.c" }}
  5966. ,{ "pid":12345, "tid":6, "ts":1718090301803076, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-filemap.c" }}
  5967. ,{ "pid":12345, "tid":6, "ts":1718090301803133, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5968. ,{ "pid":12345, "tid":6, "ts":1718090301803202, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl.c" }}
  5969. ,{ "pid":12345, "tid":6, "ts":1718090301803201, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl.c" }}
  5970. ,{ "pid":12345, "tid":6, "ts":1718090301803264, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5971. ,{ "pid":12345, "tid":6, "ts":1718090301803320, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl-darwin.c" }}
  5972. ,{ "pid":12345, "tid":6, "ts":1718090301803319, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl-darwin.c" }}
  5973. ,{ "pid":12345, "tid":6, "ts":1718090301803376, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5974. ,{ "pid":12345, "tid":6, "ts":1718090301803444, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-context.h" }}
  5975. ,{ "pid":12345, "tid":6, "ts":1718090301803443, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-context.h" }}
  5976. ,{ "pid":12345, "tid":6, "ts":1718090301803500, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5977. ,{ "pid":12345, "tid":6, "ts":1718090301803593, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-codeman.c" }}
  5978. ,{ "pid":12345, "tid":6, "ts":1718090301803592, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-codeman.c" }}
  5979. ,{ "pid":12345, "tid":6, "ts":1718090301803648, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5980. ,{ "pid":12345, "tid":6, "ts":1718090301803720, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mach-support-arm64.c" }}
  5981. ,{ "pid":12345, "tid":6, "ts":1718090301803719, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mach-support-arm64.c" }}
  5982. ,{ "pid":12345, "tid":6, "ts":1718090301803776, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5983. ,{ "pid":12345, "tid":6, "ts":1718090301803832, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/lock-free-alloc.c" }}
  5984. ,{ "pid":12345, "tid":6, "ts":1718090301803831, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/lock-free-alloc.c" }}
  5985. ,{ "pid":12345, "tid":6, "ts":1718090301803892, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5986. ,{ "pid":12345, "tid":6, "ts":1718090301803947, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/freebsd-elf_common.h" }}
  5987. ,{ "pid":12345, "tid":6, "ts":1718090301803946, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/freebsd-elf_common.h" }}
  5988. ,{ "pid":12345, "tid":6, "ts":1718090301804065, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/dlmalloc.c" }}
  5989. ,{ "pid":12345, "tid":6, "ts":1718090301804064, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/dlmalloc.c" }}
  5990. ,{ "pid":12345, "tid":6, "ts":1718090301804126, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5991. ,{ "pid":12345, "tid":6, "ts":1718090301804187, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-workers.c" }}
  5992. ,{ "pid":12345, "tid":6, "ts":1718090301804186, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-workers.c" }}
  5993. ,{ "pid":12345, "tid":6, "ts":1718090301804245, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5994. ,{ "pid":12345, "tid":6, "ts":1718090301804315, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-qsort.h" }}
  5995. ,{ "pid":12345, "tid":6, "ts":1718090301804314, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-qsort.h" }}
  5996. ,{ "pid":12345, "tid":6, "ts":1718090301804400, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5997. ,{ "pid":12345, "tid":6, "ts":1718090301804485, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-pinning.h" }}
  5998. ,{ "pid":12345, "tid":6, "ts":1718090301804484, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-pinning.h" }}
  5999. ,{ "pid":12345, "tid":6, "ts":1718090301804556, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6000. ,{ "pid":12345, "tid":6, "ts":1718090301804628, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-memory-governor.c" }}
  6001. ,{ "pid":12345, "tid":6, "ts":1718090301804626, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-memory-governor.c" }}
  6002. ,{ "pid":12345, "tid":6, "ts":1718090301804698, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6003. ,{ "pid":12345, "tid":6, "ts":1718090301804783, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-internal.c" }}
  6004. ,{ "pid":12345, "tid":6, "ts":1718090301804782, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-internal.c" }}
  6005. ,{ "pid":12345, "tid":6, "ts":1718090301804867, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6006. ,{ "pid":12345, "tid":6, "ts":1718090301804940, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-gc.c" }}
  6007. ,{ "pid":12345, "tid":6, "ts":1718090301804939, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-gc.c" }}
  6008. ,{ "pid":12345, "tid":6, "ts":1718090301804997, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6009. ,{ "pid":12345, "tid":6, "ts":1718090301805059, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-client.h" }}
  6010. ,{ "pid":12345, "tid":6, "ts":1718090301805058, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-client.h" }}
  6011. ,{ "pid":12345, "tid":6, "ts":1718090301805119, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6012. ,{ "pid":12345, "tid":6, "ts":1718090301805180, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/gc-internal-agnostic.h" }}
  6013. ,{ "pid":12345, "tid":6, "ts":1718090301805179, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/gc-internal-agnostic.h" }}
  6014. ,{ "pid":12345, "tid":6, "ts":1718090301805235, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6015. ,{ "pid":12345, "tid":6, "ts":1718090301805299, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/debugger-agent.h" }}
  6016. ,{ "pid":12345, "tid":6, "ts":1718090301805298, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/debugger-agent.h" }}
  6017. ,{ "pid":12345, "tid":6, "ts":1718090301805360, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6018. ,{ "pid":12345, "tid":6, "ts":1718090301805423, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32socket-internals.h" }}
  6019. ,{ "pid":12345, "tid":6, "ts":1718090301805422, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32socket-internals.h" }}
  6020. ,{ "pid":12345, "tid":6, "ts":1718090301805487, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6021. ,{ "pid":12345, "tid":6, "ts":1718090301805566, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-win32-internals.h" }}
  6022. ,{ "pid":12345, "tid":6, "ts":1718090301805565, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-win32-internals.h" }}
  6023. ,{ "pid":12345, "tid":6, "ts":1718090301805640, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6024. ,{ "pid":12345, "tid":6, "ts":1718090301805710, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32mutex-win32.c" }}
  6025. ,{ "pid":12345, "tid":6, "ts":1718090301805708, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32mutex-win32.c" }}
  6026. ,{ "pid":12345, "tid":6, "ts":1718090301805780, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6027. ,{ "pid":12345, "tid":6, "ts":1718090301805869, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file.c" }}
  6028. ,{ "pid":12345, "tid":6, "ts":1718090301805867, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file.c" }}
  6029. ,{ "pid":12345, "tid":6, "ts":1718090301805965, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6030. ,{ "pid":12345, "tid":6, "ts":1718090301806049, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32event.h" }}
  6031. ,{ "pid":12345, "tid":6, "ts":1718090301806048, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32event.h" }}
  6032. ,{ "pid":12345, "tid":6, "ts":1718090301806127, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6033. ,{ "pid":12345, "tid":6, "ts":1718090301806230, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/verify.c" }}
  6034. ,{ "pid":12345, "tid":6, "ts":1718090301806229, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/verify.c" }}
  6035. ,{ "pid":12345, "tid":6, "ts":1718090301806320, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6036. ,{ "pid":12345, "tid":6, "ts":1718090301806406, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threads.h" }}
  6037. ,{ "pid":12345, "tid":6, "ts":1718090301806404, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threads.h" }}
  6038. ,{ "pid":12345, "tid":6, "ts":1718090301806478, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6039. ,{ "pid":12345, "tid":6, "ts":1718090301806556, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threadpool-io.h" }}
  6040. ,{ "pid":12345, "tid":6, "ts":1718090301806554, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threadpool-io.h" }}
  6041. ,{ "pid":12345, "tid":6, "ts":1718090301806653, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6042. ,{ "pid":12345, "tid":6, "ts":1718090301806733, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sre.c" }}
  6043. ,{ "pid":12345, "tid":6, "ts":1718090301806732, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sre.c" }}
  6044. ,{ "pid":12345, "tid":6, "ts":1718090301806811, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6045. ,{ "pid":12345, "tid":6, "ts":1718090301806895, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-stw.c" }}
  6046. ,{ "pid":12345, "tid":6, "ts":1718090301806893, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-stw.c" }}
  6047. ,{ "pid":12345, "tid":6, "ts":1718090301806969, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6048. ,{ "pid":12345, "tid":6, "ts":1718090301807066, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-bridge.c" }}
  6049. ,{ "pid":12345, "tid":6, "ts":1718090301807064, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-bridge.c" }}
  6050. ,{ "pid":12345, "tid":6, "ts":1718090301807147, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6051. ,{ "pid":12345, "tid":6, "ts":1718090301807232, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/security-core-clr.h" }}
  6052. ,{ "pid":12345, "tid":6, "ts":1718090301807230, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/security-core-clr.h" }}
  6053. ,{ "pid":12345, "tid":6, "ts":1718090301807321, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6054. ,{ "pid":12345, "tid":6, "ts":1718090301807415, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/reflection.h" }}
  6055. ,{ "pid":12345, "tid":6, "ts":1718090301807413, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/reflection.h" }}
  6056. ,{ "pid":12345, "tid":6, "ts":1718090301807496, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6057. ,{ "pid":12345, "tid":6, "ts":1718090301807602, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/profiler.h" }}
  6058. ,{ "pid":12345, "tid":6, "ts":1718090301807599, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/profiler.h" }}
  6059. ,{ "pid":12345, "tid":6, "ts":1718090301807688, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6060. ,{ "pid":12345, "tid":6, "ts":1718090301807786, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/private/threadpool-io-epoll.c" }}
  6061. ,{ "pid":12345, "tid":6, "ts":1718090301807784, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/private/threadpool-io-epoll.c" }}
  6062. ,{ "pid":12345, "tid":6, "ts":1718090301807874, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6063. ,{ "pid":12345, "tid":6, "ts":1718090301807953, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/object-forward.h" }}
  6064. ,{ "pid":12345, "tid":6, "ts":1718090301807952, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/object-forward.h" }}
  6065. ,{ "pid":12345, "tid":6, "ts":1718090301808029, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6066. ,{ "pid":12345, "tid":6, "ts":1718090301808124, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-security.c" }}
  6067. ,{ "pid":12345, "tid":6, "ts":1718090301808122, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-security.c" }}
  6068. ,{ "pid":12345, "tid":6, "ts":1718090301808205, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6069. ,{ "pid":12345, "tid":6, "ts":1718090301808294, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-perfcounters.c" }}
  6070. ,{ "pid":12345, "tid":6, "ts":1718090301808292, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-perfcounters.c" }}
  6071. ,{ "pid":12345, "tid":6, "ts":1718090301808366, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6072. ,{ "pid":12345, "tid":6, "ts":1718090301808452, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-gc.h" }}
  6073. ,{ "pid":12345, "tid":6, "ts":1718090301808450, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-gc.h" }}
  6074. ,{ "pid":12345, "tid":6, "ts":1718090301808528, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6075. ,{ "pid":12345, "tid":6, "ts":1718090301808620, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-config-dirs.h" }}
  6076. ,{ "pid":12345, "tid":6, "ts":1718090301808618, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-config-dirs.h" }}
  6077. ,{ "pid":12345, "tid":6, "ts":1718090301808694, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6078. ,{ "pid":12345, "tid":6, "ts":1718090301808778, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/monitor.c" }}
  6079. ,{ "pid":12345, "tid":6, "ts":1718090301808777, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/monitor.c" }}
  6080. ,{ "pid":12345, "tid":6, "ts":1718090301808849, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6081. ,{ "pid":12345, "tid":6, "ts":1718090301808945, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/metadata-internals.h" }}
  6082. ,{ "pid":12345, "tid":6, "ts":1718090301808943, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/metadata-internals.h" }}
  6083. ,{ "pid":12345, "tid":6, "ts":1718090301809053, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6084. ,{ "pid":12345, "tid":6, "ts":1718090301809161, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/marshal-windows.c" }}
  6085. ,{ "pid":12345, "tid":6, "ts":1718090301809159, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/marshal-windows.c" }}
  6086. ,{ "pid":12345, "tid":6, "ts":1718090301809261, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6087. ,{ "pid":12345, "tid":6, "ts":1718090301809376, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/loader.h" }}
  6088. ,{ "pid":12345, "tid":6, "ts":1718090301809374, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/loader.h" }}
  6089. ,{ "pid":12345, "tid":6, "ts":1718090301809466, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6090. ,{ "pid":12345, "tid":6, "ts":1718090301809578, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/image-internals.h" }}
  6091. ,{ "pid":12345, "tid":6, "ts":1718090301809576, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/image-internals.h" }}
  6092. ,{ "pid":12345, "tid":6, "ts":1718090301809670, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6093. ,{ "pid":12345, "tid":6, "ts":1718090301809781, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/handle.h" }}
  6094. ,{ "pid":12345, "tid":6, "ts":1718090301809779, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/handle.h" }}
  6095. ,{ "pid":12345, "tid":6, "ts":1718090301809861, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6096. ,{ "pid":12345, "tid":6, "ts":1718090301809960, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/filewatcher.c" }}
  6097. ,{ "pid":12345, "tid":6, "ts":1718090301809959, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/filewatcher.c" }}
  6098. ,{ "pid":12345, "tid":6, "ts":1718090301810045, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6099. ,{ "pid":12345, "tid":6, "ts":1718090301810146, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/exception.c" }}
  6100. ,{ "pid":12345, "tid":6, "ts":1718090301810144, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/exception.c" }}
  6101. ,{ "pid":12345, "tid":6, "ts":1718090301810226, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6102. ,{ "pid":12345, "tid":6, "ts":1718090301810325, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/dynamic-image.c" }}
  6103. ,{ "pid":12345, "tid":6, "ts":1718090301810323, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/dynamic-image.c" }}
  6104. ,{ "pid":12345, "tid":6, "ts":1718090301810394, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6105. ,{ "pid":12345, "tid":6, "ts":1718090301810476, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/debug-mono-symfile.c" }}
  6106. ,{ "pid":12345, "tid":6, "ts":1718090301810474, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/debug-mono-symfile.c" }}
  6107. ,{ "pid":12345, "tid":6, "ts":1718090301810545, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6108. ,{ "pid":12345, "tid":6, "ts":1718090301810648, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/custom-attrs-internals.h" }}
  6109. ,{ "pid":12345, "tid":6, "ts":1718090301810646, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/custom-attrs-internals.h" }}
  6110. ,{ "pid":12345, "tid":6, "ts":1718090301810725, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6111. ,{ "pid":12345, "tid":6, "ts":1718090301810811, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/console-unix.c" }}
  6112. ,{ "pid":12345, "tid":6, "ts":1718090301810809, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/console-unix.c" }}
  6113. ,{ "pid":12345, "tid":6, "ts":1718090301810887, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6114. ,{ "pid":12345, "tid":6, "ts":1718090301810976, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/class-internals.h" }}
  6115. ,{ "pid":12345, "tid":6, "ts":1718090301810974, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class-internals.h" }}
  6116. ,{ "pid":12345, "tid":6, "ts":1718090301811051, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6117. ,{ "pid":12345, "tid":6, "ts":1718090301811131, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/blob.h" }}
  6118. ,{ "pid":12345, "tid":6, "ts":1718090301811130, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/blob.h" }}
  6119. ,{ "pid":12345, "tid":6, "ts":1718090301811224, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6120. ,{ "pid":12345, "tid":6, "ts":1718090301811304, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/assembly-internals.h" }}
  6121. ,{ "pid":12345, "tid":6, "ts":1718090301811302, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/assembly-internals.h" }}
  6122. ,{ "pid":12345, "tid":6, "ts":1718090301811399, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6123. ,{ "pid":12345, "tid":6, "ts":1718090301811521, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gunicode.c" }}
  6124. ,{ "pid":12345, "tid":6, "ts":1718090301811520, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gunicode.c" }}
  6125. ,{ "pid":12345, "tid":6, "ts":1718090301811608, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6126. ,{ "pid":12345, "tid":6, "ts":1718090301811683, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gshell.c" }}
  6127. ,{ "pid":12345, "tid":6, "ts":1718090301811681, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gshell.c" }}
  6128. ,{ "pid":12345, "tid":6, "ts":1718090301811751, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6129. ,{ "pid":12345, "tid":6, "ts":1718090301811838, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gmodule.h" }}
  6130. ,{ "pid":12345, "tid":6, "ts":1718090301811836, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gmodule.h" }}
  6131. ,{ "pid":12345, "tid":6, "ts":1718090301811910, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6132. ,{ "pid":12345, "tid":6, "ts":1718090301811989, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/ghashtable.c" }}
  6133. ,{ "pid":12345, "tid":6, "ts":1718090301811988, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/ghashtable.c" }}
  6134. ,{ "pid":12345, "tid":6, "ts":1718090301812060, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6135. ,{ "pid":12345, "tid":6, "ts":1718090301812161, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/garray.c" }}
  6136. ,{ "pid":12345, "tid":6, "ts":1718090301812159, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/garray.c" }}
  6137. ,{ "pid":12345, "tid":6, "ts":1718090301812240, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6138. ,{ "pid":12345, "tid":6, "ts":1718090301812327, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/arch/arm/arm_dpimacros.h" }}
  6139. ,{ "pid":12345, "tid":6, "ts":1718090301812326, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/arch/arm/arm_dpimacros.h" }}
  6140. ,{ "pid":12345, "tid":6, "ts":1718090301812407, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6141. ,{ "pid":12345, "tid":6, "ts":1718090301812489, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/sparsetable.h" }}
  6142. ,{ "pid":12345, "tid":6, "ts":1718090301812488, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/sparsetable.h" }}
  6143. ,{ "pid":12345, "tid":6, "ts":1718090301812563, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6144. ,{ "pid":12345, "tid":6, "ts":1718090301812638, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/dense_hash_map.h" }}
  6145. ,{ "pid":12345, "tid":6, "ts":1718090301812637, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/dense_hash_map.h" }}
  6146. ,{ "pid":12345, "tid":6, "ts":1718090301812703, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6147. ,{ "pid":12345, "tid":6, "ts":1718090301812801, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tools/setjmp_t.c" }}
  6148. ,{ "pid":12345, "tid":6, "ts":1718090301812799, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tools/setjmp_t.c" }}
  6149. ,{ "pid":12345, "tid":6, "ts":1718090301812877, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6150. ,{ "pid":12345, "tid":6, "ts":1718090301812959, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/test_atomic_ops.c" }}
  6151. ,{ "pid":12345, "tid":6, "ts":1718090301812958, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/test_atomic_ops.c" }}
  6152. ,{ "pid":12345, "tid":6, "ts":1718090301813037, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6153. ,{ "pid":12345, "tid":6, "ts":1718090301813126, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/middle.c" }}
  6154. ,{ "pid":12345, "tid":6, "ts":1718090301813125, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/middle.c" }}
  6155. ,{ "pid":12345, "tid":6, "ts":1718090301813200, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6156. ,{ "pid":12345, "tid":6, "ts":1718090301813288, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/reclaim.c" }}
  6157. ,{ "pid":12345, "tid":6, "ts":1718090301813287, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/reclaim.c" }}
  6158. ,{ "pid":12345, "tid":6, "ts":1718090301813378, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6159. ,{ "pid":12345, "tid":6, "ts":1718090301813487, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/obj_map.c" }}
  6160. ,{ "pid":12345, "tid":6, "ts":1718090301813485, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/obj_map.c" }}
  6161. ,{ "pid":12345, "tid":6, "ts":1718090301813575, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6162. ,{ "pid":12345, "tid":6, "ts":1718090301813637, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/malloc.c" }}
  6163. ,{ "pid":12345, "tid":6, "ts":1718090301813636, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/malloc.c" }}
  6164. ,{ "pid":12345, "tid":6, "ts":1718090301813715, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6165. ,{ "pid":12345, "tid":6, "ts":1718090301813801, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/read_ordered.h" }}
  6166. ,{ "pid":12345, "tid":6, "ts":1718090301813799, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/read_ordered.h" }}
  6167. ,{ "pid":12345, "tid":6, "ts":1718090301813870, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6168. ,{ "pid":12345, "tid":6, "ts":1718090301813952, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/short_atomic_store.h" }}
  6169. ,{ "pid":12345, "tid":6, "ts":1718090301813950, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/short_atomic_store.h" }}
  6170. ,{ "pid":12345, "tid":6, "ts":1718090301814020, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6171. ,{ "pid":12345, "tid":6, "ts":1718090301814122, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/int_acquire_release_volatile.h" }}
  6172. ,{ "pid":12345, "tid":6, "ts":1718090301814120, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/int_acquire_release_volatile.h" }}
  6173. ,{ "pid":12345, "tid":6, "ts":1718090301814202, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6174. ,{ "pid":12345, "tid":6, "ts":1718090301814300, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/icc/ia64.h" }}
  6175. ,{ "pid":12345, "tid":6, "ts":1718090301814298, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/icc/ia64.h" }}
  6176. ,{ "pid":12345, "tid":6, "ts":1718090301814359, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6177. ,{ "pid":12345, "tid":6, "ts":1718090301814445, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/sparc.h" }}
  6178. ,{ "pid":12345, "tid":6, "ts":1718090301814444, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/sparc.h" }}
  6179. ,{ "pid":12345, "tid":6, "ts":1718090301814529, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6180. ,{ "pid":12345, "tid":6, "ts":1718090301814630, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/generic.h" }}
  6181. ,{ "pid":12345, "tid":6, "ts":1718090301814628, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/generic.h" }}
  6182. ,{ "pid":12345, "tid":6, "ts":1718090301814727, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6183. ,{ "pid":12345, "tid":6, "ts":1718090301814824, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/aarch64.h" }}
  6184. ,{ "pid":12345, "tid":6, "ts":1718090301814822, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/aarch64.h" }}
  6185. ,{ "pid":12345, "tid":6, "ts":1718090301814905, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6186. ,{ "pid":12345, "tid":6, "ts":1718090301815008, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_acquire_release_volatile.h" }}
  6187. ,{ "pid":12345, "tid":6, "ts":1718090301815006, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_acquire_release_volatile.h" }}
  6188. ,{ "pid":12345, "tid":6, "ts":1718090301815083, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6189. ,{ "pid":12345, "tid":6, "ts":1718090301815185, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/README.md" }}
  6190. ,{ "pid":12345, "tid":6, "ts":1718090301815257, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6191. ,{ "pid":12345, "tid":6, "ts":1718090301815342, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/pthread_support.h" }}
  6192. ,{ "pid":12345, "tid":6, "ts":1718090301815340, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/pthread_support.h" }}
  6193. ,{ "pid":12345, "tid":6, "ts":1718090301815424, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6194. ,{ "pid":12345, "tid":6, "ts":1718090301815510, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/gc_atomic_ops.h" }}
  6195. ,{ "pid":12345, "tid":6, "ts":1718090301815509, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/gc_atomic_ops.h" }}
  6196. ,{ "pid":12345, "tid":6, "ts":1718090301815581, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6197. ,{ "pid":12345, "tid":6, "ts":1718090301815770, "dur":213, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/GoogleMobileAds.Ump-FeaturesChecked.txt" }}
  6198. ,{ "pid":12345, "tid":6, "ts":1718090301815997, "dur":61, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/GoogleMobileAds.Ump-FeaturesChecked.txt" }}
  6199. ,{ "pid":12345, "tid":6, "ts":1718090301816127, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.TinyProfiler2.dll" }}
  6200. ,{ "pid":12345, "tid":6, "ts":1718090301816071, "dur":493, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Registration-FeaturesChecked.txt" }}
  6201. ,{ "pid":12345, "tid":6, "ts":1718090301816586, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Burst.dll" }}
  6202. ,{ "pid":12345, "tid":6, "ts":1718090301816585, "dur":355, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Burst-FeaturesChecked.txt" }}
  6203. ,{ "pid":12345, "tid":6, "ts":1718090301816940, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6204. ,{ "pid":12345, "tid":6, "ts":1718090301817034, "dur":228, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Newtonsoft.Json-FeaturesChecked.txt" }}
  6205. ,{ "pid":12345, "tid":6, "ts":1718090301817312, "dur":339, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/I18N-FeaturesChecked.txt" }}
  6206. ,{ "pid":12345, "tid":6, "ts":1718090301817709, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Firebase.Auth.dll" }}
  6207. ,{ "pid":12345, "tid":6, "ts":1718090301817708, "dur":450, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Firebase.Auth-FeaturesChecked.txt" }}
  6208. ,{ "pid":12345, "tid":6, "ts":1718090301818208, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.JSONSerializeModule.dll" }}
  6209. ,{ "pid":12345, "tid":6, "ts":1718090301818488, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.Toolchain.GNU.dll" }}
  6210. ,{ "pid":12345, "tid":6, "ts":1718090301818206, "dur":616, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.JSONSerializeModule-FeaturesChecked.txt" }}
  6211. ,{ "pid":12345, "tid":6, "ts":1718090301818882, "dur":316, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Drawing-FeaturesChecked.txt" }}
  6212. ,{ "pid":12345, "tid":6, "ts":1718090301819233, "dur":337, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing-FeaturesChecked.txt" }}
  6213. ,{ "pid":12345, "tid":6, "ts":1718090301819609, "dur":477, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Internal-FeaturesChecked.txt" }}
  6214. ,{ "pid":12345, "tid":6, "ts":1718090301820596, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.UnityWebRequestModule.dll" }}
  6215. ,{ "pid":12345, "tid":6, "ts":1718090301820153, "dur":501, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ICallRegistrationGenerator /Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/UnityICallRegistration.cpp" }}
  6216. ,{ "pid":12345, "tid":6, "ts":1718090301820830, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6217. ,{ "pid":12345, "tid":6, "ts":1718090301820924, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_backptr.h" }}
  6218. ,{ "pid":12345, "tid":6, "ts":1718090301820923, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_backptr.h" }}
  6219. ,{ "pid":12345, "tid":6, "ts":1718090301821004, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6220. ,{ "pid":12345, "tid":6, "ts":1718090301821084, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/extra/gc_cpp.h" }}
  6221. ,{ "pid":12345, "tid":6, "ts":1718090301821083, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/extra/gc_cpp.h" }}
  6222. ,{ "pid":12345, "tid":6, "ts":1718090301821163, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6223. ,{ "pid":12345, "tid":6, "ts":1718090301821241, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/heapsections.c" }}
  6224. ,{ "pid":12345, "tid":6, "ts":1718090301821240, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/heapsections.c" }}
  6225. ,{ "pid":12345, "tid":6, "ts":1718090301821322, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6226. ,{ "pid":12345, "tid":6, "ts":1718090301821410, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/finalize.c" }}
  6227. ,{ "pid":12345, "tid":6, "ts":1718090301821409, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/finalize.c" }}
  6228. ,{ "pid":12345, "tid":6, "ts":1718090301821489, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6229. ,{ "pid":12345, "tid":6, "ts":1718090301821571, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/extra/Mac_files/datastart.c" }}
  6230. ,{ "pid":12345, "tid":6, "ts":1718090301821569, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/extra/Mac_files/datastart.c" }}
  6231. ,{ "pid":12345, "tid":6, "ts":1718090301821640, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6232. ,{ "pid":12345, "tid":6, "ts":1718090301821720, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/extra/AmigaOS.c" }}
  6233. ,{ "pid":12345, "tid":6, "ts":1718090301821718, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/extra/AmigaOS.c" }}
  6234. ,{ "pid":12345, "tid":6, "ts":1718090301821780, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6235. ,{ "pid":12345, "tid":6, "ts":1718090301821843, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/cord/tests/de_win.h" }}
  6236. ,{ "pid":12345, "tid":6, "ts":1718090301821842, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/cord/tests/de_win.h" }}
  6237. ,{ "pid":12345, "tid":6, "ts":1718090301821922, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6238. ,{ "pid":12345, "tid":6, "ts":1718090301822020, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/cord/cordprnt.c" }}
  6239. ,{ "pid":12345, "tid":6, "ts":1718090301822019, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/cord/cordprnt.c" }}
  6240. ,{ "pid":12345, "tid":6, "ts":1718090301822097, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6241. ,{ "pid":12345, "tid":6, "ts":1718090301822183, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/allchblk.c" }}
  6242. ,{ "pid":12345, "tid":6, "ts":1718090301822182, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/allchblk.c" }}
  6243. ,{ "pid":12345, "tid":6, "ts":1718090301822279, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6244. ,{ "pid":12345, "tid":6, "ts":1718090301822368, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Windows/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  6245. ,{ "pid":12345, "tid":6, "ts":1718090301822366, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Windows/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  6246. ,{ "pid":12345, "tid":6, "ts":1718090301822483, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6247. ,{ "pid":12345, "tid":6, "ts":1718090301822604, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/WebGL/Include/C/Baselib_FileIO.inl.h" }}
  6248. ,{ "pid":12345, "tid":6, "ts":1718090301822603, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/WebGL/Include/C/Baselib_FileIO.inl.h" }}
  6249. ,{ "pid":12345, "tid":6, "ts":1718090301822723, "dur":216, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6250. ,{ "pid":12345, "tid":6, "ts":1718090301822948, "dur":209, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/VisionOS/Include/C/Baselib_ErrorState.inl.h" }}
  6251. ,{ "pid":12345, "tid":6, "ts":1718090301822946, "dur":212, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/VisionOS/Include/C/Baselib_ErrorState.inl.h" }}
  6252. ,{ "pid":12345, "tid":6, "ts":1718090301823158, "dur":160, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6253. ,{ "pid":12345, "tid":6, "ts":1718090301823323, "dur":170, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/UniversalWindows/Include/C/Baselib_DynamicLibrary.inl.h" }}
  6254. ,{ "pid":12345, "tid":6, "ts":1718090301823322, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/UniversalWindows/Include/C/Baselib_DynamicLibrary.inl.h" }}
  6255. ,{ "pid":12345, "tid":6, "ts":1718090301823494, "dur":205, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6256. ,{ "pid":12345, "tid":6, "ts":1718090301823709, "dur":148, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Tvos/Include/BaselibPlatformSpecificEnvironment.h" }}
  6257. ,{ "pid":12345, "tid":6, "ts":1718090301823707, "dur":151, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Tvos/Include/BaselibPlatformSpecificEnvironment.h" }}
  6258. ,{ "pid":12345, "tid":6, "ts":1718090301823864, "dur":221, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6259. ,{ "pid":12345, "tid":6, "ts":1718090301824095, "dur":148, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Linux/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  6260. ,{ "pid":12345, "tid":6, "ts":1718090301824093, "dur":152, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Linux/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  6261. ,{ "pid":12345, "tid":6, "ts":1718090301824245, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6262. ,{ "pid":12345, "tid":6, "ts":1718090301824332, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/IOS/Include/C/Baselib_FileIO.inl.h" }}
  6263. ,{ "pid":12345, "tid":6, "ts":1718090301824331, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/IOS/Include/C/Baselib_FileIO.inl.h" }}
  6264. ,{ "pid":12345, "tid":6, "ts":1718090301824445, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6265. ,{ "pid":12345, "tid":6, "ts":1718090301824530, "dur":124, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/EmbeddedLinux/Include/C/Baselib_ErrorState.inl.h" }}
  6266. ,{ "pid":12345, "tid":6, "ts":1718090301824528, "dur":126, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/EmbeddedLinux/Include/C/Baselib_ErrorState.inl.h" }}
  6267. ,{ "pid":12345, "tid":6, "ts":1718090301824655, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6268. ,{ "pid":12345, "tid":6, "ts":1718090301824776, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Android/Include/C/Baselib_DynamicLibrary.inl.h" }}
  6269. ,{ "pid":12345, "tid":6, "ts":1718090301824775, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Android/Include/C/Baselib_DynamicLibrary.inl.h" }}
  6270. ,{ "pid":12345, "tid":6, "ts":1718090301824866, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6271. ,{ "pid":12345, "tid":6, "ts":1718090301824990, "dur":166, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/UndefineCompilerMacros.h" }}
  6272. ,{ "pid":12345, "tid":6, "ts":1718090301824989, "dur":168, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/UndefineCompilerMacros.h" }}
  6273. ,{ "pid":12345, "tid":6, "ts":1718090301825157, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6274. ,{ "pid":12345, "tid":6, "ts":1718090301825279, "dur":187, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/Compiler/CompilerEnvironmentGcc.h" }}
  6275. ,{ "pid":12345, "tid":6, "ts":1718090301825277, "dur":190, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/Compiler/CompilerEnvironmentGcc.h" }}
  6276. ,{ "pid":12345, "tid":6, "ts":1718090301825468, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6277. ,{ "pid":12345, "tid":6, "ts":1718090301825582, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/External/utfcpp/source/utf8/unchecked.h" }}
  6278. ,{ "pid":12345, "tid":6, "ts":1718090301825581, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/External/utfcpp/source/utf8/unchecked.h" }}
  6279. ,{ "pid":12345, "tid":6, "ts":1718090301825684, "dur":127, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6280. ,{ "pid":12345, "tid":6, "ts":1718090301825838, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/External/utfcpp/source/utf8/checked.h" }}
  6281. ,{ "pid":12345, "tid":6, "ts":1718090301825835, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/External/utfcpp/source/utf8/checked.h" }}
  6282. ,{ "pid":12345, "tid":6, "ts":1718090301825911, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6283. ,{ "pid":12345, "tid":6, "ts":1718090301826052, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Semaphore.h" }}
  6284. ,{ "pid":12345, "tid":6, "ts":1718090301826051, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Semaphore.h" }}
  6285. ,{ "pid":12345, "tid":6, "ts":1718090301826168, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6286. ,{ "pid":12345, "tid":6, "ts":1718090301826241, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/mpmc_node_stack.h" }}
  6287. ,{ "pid":12345, "tid":6, "ts":1718090301826240, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/mpmc_node_stack.h" }}
  6288. ,{ "pid":12345, "tid":6, "ts":1718090301826319, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6289. ,{ "pid":12345, "tid":6, "ts":1718090301826425, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/heap_allocator.inl.h" }}
  6290. ,{ "pid":12345, "tid":6, "ts":1718090301826416, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/heap_allocator.inl.h" }}
  6291. ,{ "pid":12345, "tid":6, "ts":1718090301826512, "dur":166, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6292. ,{ "pid":12345, "tid":6, "ts":1718090301826701, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/Compiler/ClangOrGcc/AlgorithmClangOrGcc.inl.h" }}
  6293. ,{ "pid":12345, "tid":6, "ts":1718090301826699, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/Compiler/ClangOrGcc/AlgorithmClangOrGcc.inl.h" }}
  6294. ,{ "pid":12345, "tid":6, "ts":1718090301826782, "dur":165, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6295. ,{ "pid":12345, "tid":6, "ts":1718090301826968, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/CountdownTimer.h" }}
  6296. ,{ "pid":12345, "tid":6, "ts":1718090301826967, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/CountdownTimer.h" }}
  6297. ,{ "pid":12345, "tid":6, "ts":1718090301827069, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6298. ,{ "pid":12345, "tid":6, "ts":1718090301827153, "dur":147, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Atomic.h" }}
  6299. ,{ "pid":12345, "tid":6, "ts":1718090301827152, "dur":149, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Atomic.h" }}
  6300. ,{ "pid":12345, "tid":6, "ts":1718090301827383, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_Gcc_Patch_PostInclude.h" }}
  6301. ,{ "pid":12345, "tid":6, "ts":1718090301827380, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_Gcc_Patch_PostInclude.h" }}
  6302. ,{ "pid":12345, "tid":6, "ts":1718090301827449, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6303. ,{ "pid":12345, "tid":6, "ts":1718090301827590, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_HighCapacitySemaphore_SemaphoreBased.inl.h" }}
  6304. ,{ "pid":12345, "tid":6, "ts":1718090301827589, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_HighCapacitySemaphore_SemaphoreBased.inl.h" }}
  6305. ,{ "pid":12345, "tid":6, "ts":1718090301827682, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6306. ,{ "pid":12345, "tid":6, "ts":1718090301827773, "dur":103, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_WakeupFallbackStrategy.h" }}
  6307. ,{ "pid":12345, "tid":6, "ts":1718090301827771, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_WakeupFallbackStrategy.h" }}
  6308. ,{ "pid":12345, "tid":6, "ts":1718090301827877, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6309. ,{ "pid":12345, "tid":6, "ts":1718090301828024, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6310. ,{ "pid":12345, "tid":6, "ts":1718090301828131, "dur":143, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_RegisteredNetwork.h" }}
  6311. ,{ "pid":12345, "tid":6, "ts":1718090301828130, "dur":145, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_RegisteredNetwork.h" }}
  6312. ,{ "pid":12345, "tid":6, "ts":1718090301828276, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6313. ,{ "pid":12345, "tid":6, "ts":1718090301828380, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_ErrorCode.h" }}
  6314. ,{ "pid":12345, "tid":6, "ts":1718090301828378, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_ErrorCode.h" }}
  6315. ,{ "pid":12345, "tid":6, "ts":1718090301828441, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6316. ,{ "pid":12345, "tid":6, "ts":1718090301828526, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Atomic_LLSC.h" }}
  6317. ,{ "pid":12345, "tid":6, "ts":1718090301828525, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Atomic_LLSC.h" }}
  6318. ,{ "pid":12345, "tid":6, "ts":1718090301828601, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6319. ,{ "pid":12345, "tid":6, "ts":1718090301828678, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/UnityLinker.pdb" }}
  6320. ,{ "pid":12345, "tid":6, "ts":1718090301828676, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/UnityLinker.pdb" }}
  6321. ,{ "pid":12345, "tid":6, "ts":1718090301828753, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6322. ,{ "pid":12345, "tid":6, "ts":1718090301828848, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Options.dll" }}
  6323. ,{ "pid":12345, "tid":6, "ts":1718090301828848, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Options.dll" }}
  6324. ,{ "pid":12345, "tid":6, "ts":1718090301828922, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6325. ,{ "pid":12345, "tid":6, "ts":1718090301828991, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Shell.dll" }}
  6326. ,{ "pid":12345, "tid":6, "ts":1718090301828991, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Shell.dll" }}
  6327. ,{ "pid":12345, "tid":6, "ts":1718090301829056, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6328. ,{ "pid":12345, "tid":6, "ts":1718090301829128, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.CompilerServices.dll" }}
  6329. ,{ "pid":12345, "tid":6, "ts":1718090301829127, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.CompilerServices.dll" }}
  6330. ,{ "pid":12345, "tid":6, "ts":1718090301829198, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6331. ,{ "pid":12345, "tid":6, "ts":1718090301829267, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Building.dll" }}
  6332. ,{ "pid":12345, "tid":6, "ts":1718090301829265, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Building.dll" }}
  6333. ,{ "pid":12345, "tid":6, "ts":1718090301829366, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6334. ,{ "pid":12345, "tid":6, "ts":1718090301829456, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop.dll" }}
  6335. ,{ "pid":12345, "tid":6, "ts":1718090301829455, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop.dll" }}
  6336. ,{ "pid":12345, "tid":6, "ts":1718090301829537, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6337. ,{ "pid":12345, "tid":6, "ts":1718090301829621, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.MacOSX.pdb" }}
  6338. ,{ "pid":12345, "tid":6, "ts":1718090301829619, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.MacOSX.pdb" }}
  6339. ,{ "pid":12345, "tid":6, "ts":1718090301829704, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6340. ,{ "pid":12345, "tid":6, "ts":1718090301829796, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.AppleTV.dll" }}
  6341. ,{ "pid":12345, "tid":6, "ts":1718090301829793, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.AppleTV.dll" }}
  6342. ,{ "pid":12345, "tid":6, "ts":1718090301829857, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6343. ,{ "pid":12345, "tid":6, "ts":1718090301829930, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Api.dll" }}
  6344. ,{ "pid":12345, "tid":6, "ts":1718090301829929, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Api.dll" }}
  6345. ,{ "pid":12345, "tid":6, "ts":1718090301829999, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6346. ,{ "pid":12345, "tid":6, "ts":1718090301830093, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Xml.XPath.XDocument.dll" }}
  6347. ,{ "pid":12345, "tid":6, "ts":1718090301830092, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Xml.XPath.XDocument.dll" }}
  6348. ,{ "pid":12345, "tid":6, "ts":1718090301830176, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6349. ,{ "pid":12345, "tid":6, "ts":1718090301830320, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Xml.Linq.dll" }}
  6350. ,{ "pid":12345, "tid":6, "ts":1718090301830318, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Xml.Linq.dll" }}
  6351. ,{ "pid":12345, "tid":6, "ts":1718090301830412, "dur":145, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6352. ,{ "pid":12345, "tid":6, "ts":1718090301830562, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Transactions.dll" }}
  6353. ,{ "pid":12345, "tid":6, "ts":1718090301830561, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Transactions.dll" }}
  6354. ,{ "pid":12345, "tid":6, "ts":1718090301830676, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6355. ,{ "pid":12345, "tid":6, "ts":1718090301830753, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Threading.Tasks.Dataflow.dll" }}
  6356. ,{ "pid":12345, "tid":6, "ts":1718090301830752, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Threading.Tasks.Dataflow.dll" }}
  6357. ,{ "pid":12345, "tid":6, "ts":1718090301830852, "dur":142, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6358. ,{ "pid":12345, "tid":6, "ts":1718090301831001, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Text.Encodings.Web.dll" }}
  6359. ,{ "pid":12345, "tid":6, "ts":1718090301831000, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Text.Encodings.Web.dll" }}
  6360. ,{ "pid":12345, "tid":6, "ts":1718090301831082, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6361. ,{ "pid":12345, "tid":6, "ts":1718090301831153, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.SecureString.dll" }}
  6362. ,{ "pid":12345, "tid":6, "ts":1718090301831152, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.SecureString.dll" }}
  6363. ,{ "pid":12345, "tid":6, "ts":1718090301831227, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6364. ,{ "pid":12345, "tid":6, "ts":1718090301831289, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.Cryptography.OpenSsl.dll" }}
  6365. ,{ "pid":12345, "tid":6, "ts":1718090301831287, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.Cryptography.OpenSsl.dll" }}
  6366. ,{ "pid":12345, "tid":6, "ts":1718090301831367, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6367. ,{ "pid":12345, "tid":6, "ts":1718090301831443, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.Serialization.Xml.dll" }}
  6368. ,{ "pid":12345, "tid":6, "ts":1718090301831442, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Serialization.Xml.dll" }}
  6369. ,{ "pid":12345, "tid":6, "ts":1718090301831521, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6370. ,{ "pid":12345, "tid":6, "ts":1718090301831600, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.Intrinsics.dll" }}
  6371. ,{ "pid":12345, "tid":6, "ts":1718090301831598, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Intrinsics.dll" }}
  6372. ,{ "pid":12345, "tid":6, "ts":1718090301831676, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6373. ,{ "pid":12345, "tid":6, "ts":1718090301831753, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.CompilerServices.Unsafe.dll" }}
  6374. ,{ "pid":12345, "tid":6, "ts":1718090301831751, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.CompilerServices.Unsafe.dll" }}
  6375. ,{ "pid":12345, "tid":6, "ts":1718090301831857, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6376. ,{ "pid":12345, "tid":6, "ts":1718090301831937, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Reflection.Extensions.dll" }}
  6377. ,{ "pid":12345, "tid":6, "ts":1718090301831936, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Reflection.Extensions.dll" }}
  6378. ,{ "pid":12345, "tid":6, "ts":1718090301832043, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6379. ,{ "pid":12345, "tid":6, "ts":1718090301832138, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Private.Xml.dll" }}
  6380. ,{ "pid":12345, "tid":6, "ts":1718090301832137, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Private.Xml.dll" }}
  6381. ,{ "pid":12345, "tid":6, "ts":1718090301832210, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6382. ,{ "pid":12345, "tid":6, "ts":1718090301832286, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.WebSockets.dll" }}
  6383. ,{ "pid":12345, "tid":6, "ts":1718090301832285, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.WebSockets.dll" }}
  6384. ,{ "pid":12345, "tid":6, "ts":1718090301832363, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6385. ,{ "pid":12345, "tid":6, "ts":1718090301832446, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.Security.dll" }}
  6386. ,{ "pid":12345, "tid":6, "ts":1718090301832446, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Security.dll" }}
  6387. ,{ "pid":12345, "tid":6, "ts":1718090301832552, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6388. ,{ "pid":12345, "tid":6, "ts":1718090301832632, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.Mail.dll" }}
  6389. ,{ "pid":12345, "tid":6, "ts":1718090301832631, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Mail.dll" }}
  6390. ,{ "pid":12345, "tid":6, "ts":1718090301832723, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6391. ,{ "pid":12345, "tid":6, "ts":1718090301832798, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Linq.Parallel.dll" }}
  6392. ,{ "pid":12345, "tid":6, "ts":1718090301832796, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Linq.Parallel.dll" }}
  6393. ,{ "pid":12345, "tid":6, "ts":1718090301832884, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6394. ,{ "pid":12345, "tid":6, "ts":1718090301832958, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.IsolatedStorage.dll" }}
  6395. ,{ "pid":12345, "tid":6, "ts":1718090301832956, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.IsolatedStorage.dll" }}
  6396. ,{ "pid":12345, "tid":6, "ts":1718090301833029, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6397. ,{ "pid":12345, "tid":6, "ts":1718090301833155, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.Compression.ZipFile.dll" }}
  6398. ,{ "pid":12345, "tid":6, "ts":1718090301833153, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.Compression.ZipFile.dll" }}
  6399. ,{ "pid":12345, "tid":6, "ts":1718090301833276, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6400. ,{ "pid":12345, "tid":6, "ts":1718090301833393, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Formats.Asn1.dll" }}
  6401. ,{ "pid":12345, "tid":6, "ts":1718090301833391, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Formats.Asn1.dll" }}
  6402. ,{ "pid":12345, "tid":6, "ts":1718090301833540, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Diagnostics.TraceSource.dll" }}
  6403. ,{ "pid":12345, "tid":6, "ts":1718090301833538, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Diagnostics.TraceSource.dll" }}
  6404. ,{ "pid":12345, "tid":6, "ts":1718090301833625, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6405. ,{ "pid":12345, "tid":6, "ts":1718090301833769, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Diagnostics.Debug.dll" }}
  6406. ,{ "pid":12345, "tid":6, "ts":1718090301833768, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Diagnostics.Debug.dll" }}
  6407. ,{ "pid":12345, "tid":6, "ts":1718090301833865, "dur":145, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6408. ,{ "pid":12345, "tid":6, "ts":1718090301834016, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.ComponentModel.TypeConverter.dll" }}
  6409. ,{ "pid":12345, "tid":6, "ts":1718090301834014, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ComponentModel.TypeConverter.dll" }}
  6410. ,{ "pid":12345, "tid":6, "ts":1718090301834114, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6411. ,{ "pid":12345, "tid":6, "ts":1718090301834195, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Collections.NonGeneric.dll" }}
  6412. ,{ "pid":12345, "tid":6, "ts":1718090301834194, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Collections.NonGeneric.dll" }}
  6413. ,{ "pid":12345, "tid":6, "ts":1718090301834260, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6414. ,{ "pid":12345, "tid":6, "ts":1718090301834358, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/NiceIO.pdb" }}
  6415. ,{ "pid":12345, "tid":6, "ts":1718090301834357, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/NiceIO.pdb" }}
  6416. ,{ "pid":12345, "tid":6, "ts":1718090301834459, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6417. ,{ "pid":12345, "tid":6, "ts":1718090301834564, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Mono.Cecil.Rocks.pdb" }}
  6418. ,{ "pid":12345, "tid":6, "ts":1718090301834562, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Mono.Cecil.Rocks.pdb" }}
  6419. ,{ "pid":12345, "tid":6, "ts":1718090301834663, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6420. ,{ "pid":12345, "tid":6, "ts":1718090301834770, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Mono.Cecil.dll" }}
  6421. ,{ "pid":12345, "tid":6, "ts":1718090301834769, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Mono.Cecil.dll" }}
  6422. ,{ "pid":12345, "tid":6, "ts":1718090301834850, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6423. ,{ "pid":12345, "tid":6, "ts":1718090301834918, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libSystem.Security.Cryptography.Native.OpenSsl.dylib" }}
  6424. ,{ "pid":12345, "tid":6, "ts":1718090301835017, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6425. ,{ "pid":12345, "tid":6, "ts":1718090301835105, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libmscordaccore.dylib" }}
  6426. ,{ "pid":12345, "tid":6, "ts":1718090301835191, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6427. ,{ "pid":12345, "tid":6, "ts":1718090301835305, "dur":103, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/il2cpp.runtimeconfig.json" }}
  6428. ,{ "pid":12345, "tid":6, "ts":1718090301835303, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/il2cpp.runtimeconfig.json" }}
  6429. ,{ "pid":12345, "tid":6, "ts":1718090301835410, "dur":157, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6430. ,{ "pid":12345, "tid":6, "ts":1718090301835626, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.VisualStudioSolution.pdb" }}
  6431. ,{ "pid":12345, "tid":6, "ts":1718090301835610, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.VisualStudioSolution.pdb" }}
  6432. ,{ "pid":12345, "tid":6, "ts":1718090301835717, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6433. ,{ "pid":12345, "tid":6, "ts":1718090301835822, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.Windows.pdb" }}
  6434. ,{ "pid":12345, "tid":6, "ts":1718090301835821, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Windows.pdb" }}
  6435. ,{ "pid":12345, "tid":6, "ts":1718090301835909, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6436. ,{ "pid":12345, "tid":6, "ts":1718090301836000, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.UWP.dll" }}
  6437. ,{ "pid":12345, "tid":6, "ts":1718090301835998, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.UWP.dll" }}
  6438. ,{ "pid":12345, "tid":6, "ts":1718090301836090, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6439. ,{ "pid":12345, "tid":6, "ts":1718090301836186, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.Linux.pdb" }}
  6440. ,{ "pid":12345, "tid":6, "ts":1718090301836185, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Linux.pdb" }}
  6441. ,{ "pid":12345, "tid":6, "ts":1718090301836254, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6442. ,{ "pid":12345, "tid":6, "ts":1718090301836336, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.Emscripten.dll" }}
  6443. ,{ "pid":12345, "tid":6, "ts":1718090301836335, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Emscripten.dll" }}
  6444. ,{ "pid":12345, "tid":6, "ts":1718090301836439, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6445. ,{ "pid":12345, "tid":6, "ts":1718090301836556, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Stevedore.Program.pdb" }}
  6446. ,{ "pid":12345, "tid":6, "ts":1718090301836553, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Stevedore.Program.pdb" }}
  6447. ,{ "pid":12345, "tid":6, "ts":1718090301836642, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6448. ,{ "pid":12345, "tid":6, "ts":1718090301836754, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Core.pdb" }}
  6449. ,{ "pid":12345, "tid":6, "ts":1718090301836751, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Core.pdb" }}
  6450. ,{ "pid":12345, "tid":6, "ts":1718090301836875, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6451. ,{ "pid":12345, "tid":6, "ts":1718090301836980, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Analytics.dll" }}
  6452. ,{ "pid":12345, "tid":6, "ts":1718090301836979, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Analytics.dll" }}
  6453. ,{ "pid":12345, "tid":6, "ts":1718090301837062, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6454. ,{ "pid":12345, "tid":6, "ts":1718090301837149, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/UnityLinker.dll.config" }}
  6455. ,{ "pid":12345, "tid":6, "ts":1718090301837148, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/UnityLinker.dll.config" }}
  6456. ,{ "pid":12345, "tid":6, "ts":1718090301837243, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6457. ,{ "pid":12345, "tid":6, "ts":1718090301837305, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.TinyProfiler.dll" }}
  6458. ,{ "pid":12345, "tid":6, "ts":1718090301837304, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.TinyProfiler.dll" }}
  6459. ,{ "pid":12345, "tid":6, "ts":1718090301837385, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6460. ,{ "pid":12345, "tid":6, "ts":1718090301837470, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Shell.pdb" }}
  6461. ,{ "pid":12345, "tid":6, "ts":1718090301837469, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Shell.pdb" }}
  6462. ,{ "pid":12345, "tid":6, "ts":1718090301837533, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6463. ,{ "pid":12345, "tid":6, "ts":1718090301837612, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.CompilerServices.dll" }}
  6464. ,{ "pid":12345, "tid":6, "ts":1718090301837603, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.CompilerServices.dll" }}
  6465. ,{ "pid":12345, "tid":6, "ts":1718090301837763, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.pdb" }}
  6466. ,{ "pid":12345, "tid":6, "ts":1718090301837760, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.pdb" }}
  6467. ,{ "pid":12345, "tid":6, "ts":1718090301837850, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6468. ,{ "pid":12345, "tid":6, "ts":1718090301837936, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.WebGL.pdb" }}
  6469. ,{ "pid":12345, "tid":6, "ts":1718090301837935, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.WebGL.pdb" }}
  6470. ,{ "pid":12345, "tid":6, "ts":1718090301838012, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6471. ,{ "pid":12345, "tid":6, "ts":1718090301838106, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.MacOSX.pdb" }}
  6472. ,{ "pid":12345, "tid":6, "ts":1718090301838104, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.MacOSX.pdb" }}
  6473. ,{ "pid":12345, "tid":6, "ts":1718090301838177, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6474. ,{ "pid":12345, "tid":6, "ts":1718090301838334, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6475. ,{ "pid":12345, "tid":6, "ts":1718090301838438, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Api.Output.xml" }}
  6476. ,{ "pid":12345, "tid":6, "ts":1718090301838436, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Api.Output.xml" }}
  6477. ,{ "pid":12345, "tid":6, "ts":1718090301838534, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6478. ,{ "pid":12345, "tid":6, "ts":1718090301838631, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Cecil.Awesome.dll" }}
  6479. ,{ "pid":12345, "tid":6, "ts":1718090301838630, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Cecil.Awesome.dll" }}
  6480. ,{ "pid":12345, "tid":6, "ts":1718090301838709, "dur":151, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6481. ,{ "pid":12345, "tid":6, "ts":1718090301838869, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Xml.XDocument.dll" }}
  6482. ,{ "pid":12345, "tid":6, "ts":1718090301838867, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Xml.XDocument.dll" }}
  6483. ,{ "pid":12345, "tid":6, "ts":1718090301838983, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6484. ,{ "pid":12345, "tid":6, "ts":1718090301839089, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Web.dll" }}
  6485. ,{ "pid":12345, "tid":6, "ts":1718090301839088, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Web.dll" }}
  6486. ,{ "pid":12345, "tid":6, "ts":1718090301839175, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6487. ,{ "pid":12345, "tid":6, "ts":1718090301839294, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Threading.Tasks.Parallel.dll" }}
  6488. ,{ "pid":12345, "tid":6, "ts":1718090301839293, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Threading.Tasks.Parallel.dll" }}
  6489. ,{ "pid":12345, "tid":6, "ts":1718090301839353, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6490. ,{ "pid":12345, "tid":6, "ts":1718090301839417, "dur":172, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Text.RegularExpressions.dll" }}
  6491. ,{ "pid":12345, "tid":6, "ts":1718090301839416, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Text.RegularExpressions.dll" }}
  6492. ,{ "pid":12345, "tid":6, "ts":1718090301839590, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6493. ,{ "pid":12345, "tid":6, "ts":1718090301839681, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.ServiceModel.Web.dll" }}
  6494. ,{ "pid":12345, "tid":6, "ts":1718090301839680, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.ServiceModel.Web.dll" }}
  6495. ,{ "pid":12345, "tid":6, "ts":1718090301839754, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6496. ,{ "pid":12345, "tid":6, "ts":1718090301839830, "dur":156, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.Cryptography.OpenSsl.dll" }}
  6497. ,{ "pid":12345, "tid":6, "ts":1718090301839830, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.Cryptography.OpenSsl.dll" }}
  6498. ,{ "pid":12345, "tid":6, "ts":1718090301839987, "dur":181, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6499. ,{ "pid":12345, "tid":6, "ts":1718090301840176, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.Serialization.Xml.dll" }}
  6500. ,{ "pid":12345, "tid":6, "ts":1718090301840175, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.Serialization.Xml.dll" }}
  6501. ,{ "pid":12345, "tid":6, "ts":1718090301840259, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6502. ,{ "pid":12345, "tid":6, "ts":1718090301840342, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.Intrinsics.dll" }}
  6503. ,{ "pid":12345, "tid":6, "ts":1718090301840341, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.Intrinsics.dll" }}
  6504. ,{ "pid":12345, "tid":6, "ts":1718090301840457, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6505. ,{ "pid":12345, "tid":6, "ts":1718090301840587, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.CompilerServices.Unsafe.dll" }}
  6506. ,{ "pid":12345, "tid":6, "ts":1718090301840586, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.CompilerServices.Unsafe.dll" }}
  6507. ,{ "pid":12345, "tid":6, "ts":1718090301840707, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6508. ,{ "pid":12345, "tid":6, "ts":1718090301840823, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Reflection.Metadata.dll" }}
  6509. ,{ "pid":12345, "tid":6, "ts":1718090301840822, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Reflection.Metadata.dll" }}
  6510. ,{ "pid":12345, "tid":6, "ts":1718090301840903, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6511. ,{ "pid":12345, "tid":6, "ts":1718090301840999, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Private.Xml.dll" }}
  6512. ,{ "pid":12345, "tid":6, "ts":1718090301840998, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Private.Xml.dll" }}
  6513. ,{ "pid":12345, "tid":6, "ts":1718090301841079, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6514. ,{ "pid":12345, "tid":6, "ts":1718090301841211, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.WebSockets.Client.dll" }}
  6515. ,{ "pid":12345, "tid":6, "ts":1718090301841208, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.WebSockets.Client.dll" }}
  6516. ,{ "pid":12345, "tid":6, "ts":1718090301841279, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6517. ,{ "pid":12345, "tid":6, "ts":1718090301841360, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.ServicePoint.dll" }}
  6518. ,{ "pid":12345, "tid":6, "ts":1718090301841359, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.ServicePoint.dll" }}
  6519. ,{ "pid":12345, "tid":6, "ts":1718090301841468, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6520. ,{ "pid":12345, "tid":6, "ts":1718090301841594, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.Mail.dll" }}
  6521. ,{ "pid":12345, "tid":6, "ts":1718090301841593, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.Mail.dll" }}
  6522. ,{ "pid":12345, "tid":6, "ts":1718090301841706, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6523. ,{ "pid":12345, "tid":6, "ts":1718090301841787, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Linq.Parallel.dll" }}
  6524. ,{ "pid":12345, "tid":6, "ts":1718090301841786, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Linq.Parallel.dll" }}
  6525. ,{ "pid":12345, "tid":6, "ts":1718090301841874, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6526. ,{ "pid":12345, "tid":6, "ts":1718090301841977, "dur":140, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.IsolatedStorage.dll" }}
  6527. ,{ "pid":12345, "tid":6, "ts":1718090301841975, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.IsolatedStorage.dll" }}
  6528. ,{ "pid":12345, "tid":6, "ts":1718090301842118, "dur":166, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6529. ,{ "pid":12345, "tid":6, "ts":1718090301842294, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.Compression.ZipFile.dll" }}
  6530. ,{ "pid":12345, "tid":6, "ts":1718090301842292, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.Compression.ZipFile.dll" }}
  6531. ,{ "pid":12345, "tid":6, "ts":1718090301842401, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6532. ,{ "pid":12345, "tid":6, "ts":1718090301842484, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Formats.Asn1.dll" }}
  6533. ,{ "pid":12345, "tid":6, "ts":1718090301842483, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Formats.Asn1.dll" }}
  6534. ,{ "pid":12345, "tid":6, "ts":1718090301842572, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6535. ,{ "pid":12345, "tid":6, "ts":1718090301842673, "dur":170, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Diagnostics.Tools.dll" }}
  6536. ,{ "pid":12345, "tid":6, "ts":1718090301842672, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.Tools.dll" }}
  6537. ,{ "pid":12345, "tid":6, "ts":1718090301842844, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6538. ,{ "pid":12345, "tid":6, "ts":1718090301842998, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Diagnostics.Contracts.dll" }}
  6539. ,{ "pid":12345, "tid":6, "ts":1718090301842996, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.Contracts.dll" }}
  6540. ,{ "pid":12345, "tid":6, "ts":1718090301843116, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6541. ,{ "pid":12345, "tid":6, "ts":1718090301843215, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.ComponentModel.TypeConverter.dll" }}
  6542. ,{ "pid":12345, "tid":6, "ts":1718090301843213, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.ComponentModel.TypeConverter.dll" }}
  6543. ,{ "pid":12345, "tid":6, "ts":1718090301843326, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6544. ,{ "pid":12345, "tid":6, "ts":1718090301843418, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Collections.NonGeneric.dll" }}
  6545. ,{ "pid":12345, "tid":6, "ts":1718090301843417, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Collections.NonGeneric.dll" }}
  6546. ,{ "pid":12345, "tid":6, "ts":1718090301843501, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6547. ,{ "pid":12345, "tid":6, "ts":1718090301843588, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/NiceIO.pdb" }}
  6548. ,{ "pid":12345, "tid":6, "ts":1718090301843587, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/NiceIO.pdb" }}
  6549. ,{ "pid":12345, "tid":6, "ts":1718090301843664, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6550. ,{ "pid":12345, "tid":6, "ts":1718090301843763, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Mono.Cecil.Rocks.pdb" }}
  6551. ,{ "pid":12345, "tid":6, "ts":1718090301843762, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Mono.Cecil.Rocks.pdb" }}
  6552. ,{ "pid":12345, "tid":6, "ts":1718090301843836, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6553. ,{ "pid":12345, "tid":6, "ts":1718090301843906, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Mono.Cecil.Mdb.dll" }}
  6554. ,{ "pid":12345, "tid":6, "ts":1718090301843905, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Mono.Cecil.Mdb.dll" }}
  6555. ,{ "pid":12345, "tid":6, "ts":1718090301843968, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6556. ,{ "pid":12345, "tid":6, "ts":1718090301844040, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Microsoft.VisualBasic.Core.dll" }}
  6557. ,{ "pid":12345, "tid":6, "ts":1718090301844039, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Microsoft.VisualBasic.Core.dll" }}
  6558. ,{ "pid":12345, "tid":6, "ts":1718090301844112, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6559. ,{ "pid":12345, "tid":6, "ts":1718090301844195, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libSystem.IO.Compression.Native.dylib" }}
  6560. ,{ "pid":12345, "tid":6, "ts":1718090301844267, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6561. ,{ "pid":12345, "tid":6, "ts":1718090301844362, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libcoreclr.dylib" }}
  6562. ,{ "pid":12345, "tid":6, "ts":1718090301844424, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6563. ,{ "pid":12345, "tid":6, "ts":1718090301844507, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/il2cpp.deps.json" }}
  6564. ,{ "pid":12345, "tid":6, "ts":1718090301844506, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/il2cpp.deps.json" }}
  6565. ,{ "pid":12345, "tid":6, "ts":1718090301844590, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6566. ,{ "pid":12345, "tid":6, "ts":1718090301844661, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Tools.pdb" }}
  6567. ,{ "pid":12345, "tid":6, "ts":1718090301844659, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Tools.pdb" }}
  6568. ,{ "pid":12345, "tid":6, "ts":1718090301844756, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6569. ,{ "pid":12345, "tid":6, "ts":1718090301844900, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.VisualStudio.dll" }}
  6570. ,{ "pid":12345, "tid":6, "ts":1718090301844898, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.VisualStudio.dll" }}
  6571. ,{ "pid":12345, "tid":6, "ts":1718090301844965, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6572. ,{ "pid":12345, "tid":6, "ts":1718090301845041, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.MacOS.pdb" }}
  6573. ,{ "pid":12345, "tid":6, "ts":1718090301845041, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.MacOS.pdb" }}
  6574. ,{ "pid":12345, "tid":6, "ts":1718090301845110, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6575. ,{ "pid":12345, "tid":6, "ts":1718090301845191, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.IOS.dll" }}
  6576. ,{ "pid":12345, "tid":6, "ts":1718090301845190, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.IOS.dll" }}
  6577. ,{ "pid":12345, "tid":6, "ts":1718090301845267, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6578. ,{ "pid":12345, "tid":6, "ts":1718090301845337, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.Android.pdb" }}
  6579. ,{ "pid":12345, "tid":6, "ts":1718090301845336, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.Android.pdb" }}
  6580. ,{ "pid":12345, "tid":6, "ts":1718090301845402, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6581. ,{ "pid":12345, "tid":6, "ts":1718090301845491, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.NativeProgramSupport.dll" }}
  6582. ,{ "pid":12345, "tid":6, "ts":1718090301845490, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.NativeProgramSupport.dll" }}
  6583. ,{ "pid":12345, "tid":6, "ts":1718090301845562, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6584. ,{ "pid":12345, "tid":6, "ts":1718090301845632, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Core.dll" }}
  6585. ,{ "pid":12345, "tid":6, "ts":1718090301845630, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Core.dll" }}
  6586. ,{ "pid":12345, "tid":6, "ts":1718090301845752, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6587. ,{ "pid":12345, "tid":6, "ts":1718090301845848, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Analytics.Api.Output.xml" }}
  6588. ,{ "pid":12345, "tid":6, "ts":1718090301845847, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Analytics.Api.Output.xml" }}
  6589. ,{ "pid":12345, "tid":6, "ts":1718090301845926, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6590. ,{ "pid":12345, "tid":6, "ts":1718090301845989, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6591. ,{ "pid":12345, "tid":6, "ts":1718090301846074, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/libiPhone-lib.a" }}
  6592. ,{ "pid":12345, "tid":6, "ts":1718090301846160, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6593. ,{ "pid":12345, "tid":6, "ts":1718090301846301, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/process_symbols.sh" }}
  6594. ,{ "pid":12345, "tid":6, "ts":1718090301846396, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6595. ,{ "pid":12345, "tid":6, "ts":1718090301846517, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UnityAppController+UnityInterface.h" }}
  6596. ,{ "pid":12345, "tid":6, "ts":1718090301846515, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UnityAppController+UnityInterface.h" }}
  6597. ,{ "pid":12345, "tid":6, "ts":1718090301846597, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6598. ,{ "pid":12345, "tid":6, "ts":1718090301846720, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/UnitySharedDecls.h" }}
  6599. ,{ "pid":12345, "tid":6, "ts":1718090301846718, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/UnitySharedDecls.h" }}
  6600. ,{ "pid":12345, "tid":6, "ts":1718090301846791, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6601. ,{ "pid":12345, "tid":6, "ts":1718090301846893, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/UnityForwardDecls.h" }}
  6602. ,{ "pid":12345, "tid":6, "ts":1718090301846892, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/UnityForwardDecls.h" }}
  6603. ,{ "pid":12345, "tid":6, "ts":1718090301846964, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6604. ,{ "pid":12345, "tid":6, "ts":1718090301847049, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/IUnityGraphics.h" }}
  6605. ,{ "pid":12345, "tid":6, "ts":1718090301847047, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/IUnityGraphics.h" }}
  6606. ,{ "pid":12345, "tid":6, "ts":1718090301847115, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6607. ,{ "pid":12345, "tid":6, "ts":1718090301847193, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/CVTextureCache.mm" }}
  6608. ,{ "pid":12345, "tid":6, "ts":1718090301847281, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6609. ,{ "pid":12345, "tid":6, "ts":1718090301847350, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/AVCapture.h" }}
  6610. ,{ "pid":12345, "tid":6, "ts":1718090301847348, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/AVCapture.h" }}
  6611. ,{ "pid":12345, "tid":6, "ts":1718090301847464, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6612. ,{ "pid":12345, "tid":6, "ts":1718090301847545, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/UnityViewControllerBase+tvOS.h" }}
  6613. ,{ "pid":12345, "tid":6, "ts":1718090301847544, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityViewControllerBase+tvOS.h" }}
  6614. ,{ "pid":12345, "tid":6, "ts":1718090301847626, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6615. ,{ "pid":12345, "tid":6, "ts":1718090301847728, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityView+Keyboard.mm" }}
  6616. ,{ "pid":12345, "tid":6, "ts":1718090301847837, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6617. ,{ "pid":12345, "tid":6, "ts":1718090301847942, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/Keyboard.h" }}
  6618. ,{ "pid":12345, "tid":6, "ts":1718090301847941, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/Keyboard.h" }}
  6619. ,{ "pid":12345, "tid":6, "ts":1718090301848005, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6620. ,{ "pid":12345, "tid":6, "ts":1718090301848092, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/PluginBase/UnityViewControllerListener.mm" }}
  6621. ,{ "pid":12345, "tid":6, "ts":1718090301848167, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6622. ,{ "pid":12345, "tid":6, "ts":1718090301848245, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/PLCrashReporter.h" }}
  6623. ,{ "pid":12345, "tid":6, "ts":1718090301848244, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/PLCrashReporter.h" }}
  6624. ,{ "pid":12345, "tid":6, "ts":1718090301848337, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6625. ,{ "pid":12345, "tid":6, "ts":1718090301848395, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/AndroidRuntime.h" }}
  6626. ,{ "pid":12345, "tid":6, "ts":1718090301848394, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/AndroidRuntime.h" }}
  6627. ,{ "pid":12345, "tid":6, "ts":1718090301848476, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6628. ,{ "pid":12345, "tid":6, "ts":1718090301848555, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/CachedCCWBase.h" }}
  6629. ,{ "pid":12345, "tid":6, "ts":1718090301848554, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/CachedCCWBase.h" }}
  6630. ,{ "pid":12345, "tid":6, "ts":1718090301848636, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6631. ,{ "pid":12345, "tid":6, "ts":1718090301848729, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ClassInlines.cpp" }}
  6632. ,{ "pid":12345, "tid":6, "ts":1718090301848728, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ClassInlines.cpp" }}
  6633. ,{ "pid":12345, "tid":6, "ts":1718090301848801, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6634. ,{ "pid":12345, "tid":6, "ts":1718090301848886, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/COM.h" }}
  6635. ,{ "pid":12345, "tid":6, "ts":1718090301848884, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/COM.h" }}
  6636. ,{ "pid":12345, "tid":6, "ts":1718090301848973, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6637. ,{ "pid":12345, "tid":6, "ts":1718090301849065, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Enum.cpp" }}
  6638. ,{ "pid":12345, "tid":6, "ts":1718090301849064, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Enum.cpp" }}
  6639. ,{ "pid":12345, "tid":6, "ts":1718090301849150, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6640. ,{ "pid":12345, "tid":6, "ts":1718090301849237, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Field.h" }}
  6641. ,{ "pid":12345, "tid":6, "ts":1718090301849235, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Field.h" }}
  6642. ,{ "pid":12345, "tid":6, "ts":1718090301849312, "dur":143, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6643. ,{ "pid":12345, "tid":6, "ts":1718090301849461, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/GlobalMetadataFileInternals.h" }}
  6644. ,{ "pid":12345, "tid":6, "ts":1718090301849460, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/GlobalMetadataFileInternals.h" }}
  6645. ,{ "pid":12345, "tid":6, "ts":1718090301849549, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6646. ,{ "pid":12345, "tid":6, "ts":1718090301849619, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/LastError.cpp" }}
  6647. ,{ "pid":12345, "tid":6, "ts":1718090301849618, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/LastError.cpp" }}
  6648. ,{ "pid":12345, "tid":6, "ts":1718090301849700, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6649. ,{ "pid":12345, "tid":6, "ts":1718090301849816, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/MemoryInformation.h" }}
  6650. ,{ "pid":12345, "tid":6, "ts":1718090301849815, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/MemoryInformation.h" }}
  6651. ,{ "pid":12345, "tid":6, "ts":1718090301849870, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6652. ,{ "pid":12345, "tid":6, "ts":1718090301849943, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/MetadataLock.h" }}
  6653. ,{ "pid":12345, "tid":6, "ts":1718090301849942, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/MetadataLock.h" }}
  6654. ,{ "pid":12345, "tid":6, "ts":1718090301850010, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6655. ,{ "pid":12345, "tid":6, "ts":1718090301850123, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/NonCachedCCWBase.h" }}
  6656. ,{ "pid":12345, "tid":6, "ts":1718090301850121, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/NonCachedCCWBase.h" }}
  6657. ,{ "pid":12345, "tid":6, "ts":1718090301850242, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/PlatformInvoke.cpp" }}
  6658. ,{ "pid":12345, "tid":6, "ts":1718090301850241, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/PlatformInvoke.cpp" }}
  6659. ,{ "pid":12345, "tid":6, "ts":1718090301850314, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6660. ,{ "pid":12345, "tid":6, "ts":1718090301850397, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/Plugins/iOS/unity-plugin-library.a" }}
  6661. ,{ "pid":12345, "tid":6, "ts":1718090301850483, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6662. ,{ "pid":12345, "tid":6, "ts":1718090301850549, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Random.h" }}
  6663. ,{ "pid":12345, "tid":6, "ts":1718090301850548, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Random.h" }}
  6664. ,{ "pid":12345, "tid":6, "ts":1718090301850626, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6665. ,{ "pid":12345, "tid":6, "ts":1718090301850710, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ScopedThreadAttacher.h" }}
  6666. ,{ "pid":12345, "tid":6, "ts":1718090301850708, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ScopedThreadAttacher.h" }}
  6667. ,{ "pid":12345, "tid":6, "ts":1718090301850774, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6668. ,{ "pid":12345, "tid":6, "ts":1718090301850845, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Thread.h" }}
  6669. ,{ "pid":12345, "tid":6, "ts":1718090301850843, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Thread.h" }}
  6670. ,{ "pid":12345, "tid":6, "ts":1718090301850914, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6671. ,{ "pid":12345, "tid":6, "ts":1718090301850993, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/WeakReference.cpp" }}
  6672. ,{ "pid":12345, "tid":6, "ts":1718090301850992, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/WeakReference.cpp" }}
  6673. ,{ "pid":12345, "tid":6, "ts":1718090301851055, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6674. ,{ "pid":12345, "tid":6, "ts":1718090301851115, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libmono/config/il2cpp-config-mono-android.h" }}
  6675. ,{ "pid":12345, "tid":6, "ts":1718090301851114, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libmono/config/il2cpp-config-mono-android.h" }}
  6676. ,{ "pid":12345, "tid":6, "ts":1718090301851193, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6677. ,{ "pid":12345, "tid":6, "ts":1718090301851270, "dur":146, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libmono/config/il2cpp-config-mono.h" }}
  6678. ,{ "pid":12345, "tid":6, "ts":1718090301851269, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libmono/config/il2cpp-config-mono.h" }}
  6679. ,{ "pid":12345, "tid":6, "ts":1718090301851419, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6680. ,{ "pid":12345, "tid":6, "ts":1718090301851546, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/LaunchScreen-iPhonePortrait.png" }}
  6681. ,{ "pid":12345, "tid":6, "ts":1718090301851626, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6682. ,{ "pid":12345, "tid":6, "ts":1718090301851699, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-Settings-58.png" }}
  6683. ,{ "pid":12345, "tid":6, "ts":1718090301851773, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6684. ,{ "pid":12345, "tid":6, "ts":1718090301851863, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-Settings-58.png" }}
  6685. ,{ "pid":12345, "tid":6, "ts":1718090301851938, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6686. ,{ "pid":12345, "tid":6, "ts":1718090301852022, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-167.png" }}
  6687. ,{ "pid":12345, "tid":6, "ts":1718090301852088, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6688. ,{ "pid":12345, "tid":6, "ts":1718090301852172, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/Plugins/iOS/Firebase/libFirebaseCppApp.a" }}
  6689. ,{ "pid":12345, "tid":6, "ts":1718090301852239, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6690. ,{ "pid":12345, "tid":6, "ts":1718090301852311, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAdvertisement.swift" }}
  6691. ,{ "pid":12345, "tid":6, "ts":1718090301852381, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6692. ,{ "pid":12345, "tid":6, "ts":1718090301852474, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/AppleAuth/Native/iOS/AppleAuthSerializer.m" }}
  6693. ,{ "pid":12345, "tid":6, "ts":1718090301852553, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6694. ,{ "pid":12345, "tid":6, "ts":1718090301852676, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6695. ,{ "pid":12345, "tid":6, "ts":1718090301852731, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PlayerDataCache/iOS2/Data/RuntimeInitializeOnLoads.json" }}
  6696. ,{ "pid":12345, "tid":6, "ts":1718090301852730, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/RuntimeInitializeOnLoads.json" }}
  6697. ,{ "pid":12345, "tid":6, "ts":1718090301852785, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6698. ,{ "pid":12345, "tid":6, "ts":1718090301852953, "dur":14625, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  6699. ,{ "pid":12345, "tid":6, "ts":1718090301867633, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GoogleMobileAds.Ump.iOS.cpp" }}
  6700. ,{ "pid":12345, "tid":6, "ts":1718090301867631, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GoogleMobileAds.Ump.iOS.cpp" }}
  6701. ,{ "pid":12345, "tid":6, "ts":1718090301867713, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6702. ,{ "pid":12345, "tid":6, "ts":1718090301867835, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__51.cpp" }}
  6703. ,{ "pid":12345, "tid":6, "ts":1718090301867833, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__51.cpp" }}
  6704. ,{ "pid":12345, "tid":6, "ts":1718090301867927, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6705. ,{ "pid":12345, "tid":6, "ts":1718090301868016, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System__9.cpp" }}
  6706. ,{ "pid":12345, "tid":6, "ts":1718090301868014, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System__9.cpp" }}
  6707. ,{ "pid":12345, "tid":6, "ts":1718090301868112, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6708. ,{ "pid":12345, "tid":6, "ts":1718090301868237, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Core__1.cpp" }}
  6709. ,{ "pid":12345, "tid":6, "ts":1718090301868236, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Core__1.cpp" }}
  6710. ,{ "pid":12345, "tid":6, "ts":1718090301868329, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6711. ,{ "pid":12345, "tid":6, "ts":1718090301868419, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System__2.cpp" }}
  6712. ,{ "pid":12345, "tid":6, "ts":1718090301868418, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System__2.cpp" }}
  6713. ,{ "pid":12345, "tid":6, "ts":1718090301868500, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6714. ,{ "pid":12345, "tid":6, "ts":1718090301868590, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml.cpp" }}
  6715. ,{ "pid":12345, "tid":6, "ts":1718090301868589, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml.cpp" }}
  6716. ,{ "pid":12345, "tid":6, "ts":1718090301868669, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6717. ,{ "pid":12345, "tid":6, "ts":1718090301868768, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/AppleAuth_CodeGen.c" }}
  6718. ,{ "pid":12345, "tid":6, "ts":1718090301868767, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/AppleAuth_CodeGen.c" }}
  6719. ,{ "pid":12345, "tid":6, "ts":1718090301868846, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6720. ,{ "pid":12345, "tid":6, "ts":1718090301868934, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.SpriteShapeModule_CodeGen.c" }}
  6721. ,{ "pid":12345, "tid":6, "ts":1718090301868932, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.SpriteShapeModule_CodeGen.c" }}
  6722. ,{ "pid":12345, "tid":6, "ts":1718090301869011, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6723. ,{ "pid":12345, "tid":6, "ts":1718090301869089, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__14.cpp" }}
  6724. ,{ "pid":12345, "tid":6, "ts":1718090301869088, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__14.cpp" }}
  6725. ,{ "pid":12345, "tid":6, "ts":1718090301869168, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6726. ,{ "pid":12345, "tid":6, "ts":1718090301869253, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__2.cpp" }}
  6727. ,{ "pid":12345, "tid":6, "ts":1718090301869252, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__2.cpp" }}
  6728. ,{ "pid":12345, "tid":6, "ts":1718090301869336, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6729. ,{ "pid":12345, "tid":6, "ts":1718090301869421, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__9.cpp" }}
  6730. ,{ "pid":12345, "tid":6, "ts":1718090301869419, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__9.cpp" }}
  6731. ,{ "pid":12345, "tid":6, "ts":1718090301869515, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6732. ,{ "pid":12345, "tid":6, "ts":1718090301869615, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__1.cpp" }}
  6733. ,{ "pid":12345, "tid":6, "ts":1718090301869613, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__1.cpp" }}
  6734. ,{ "pid":12345, "tid":6, "ts":1718090301869698, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6735. ,{ "pid":12345, "tid":6, "ts":1718090301869785, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__11.cpp" }}
  6736. ,{ "pid":12345, "tid":6, "ts":1718090301869783, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__11.cpp" }}
  6737. ,{ "pid":12345, "tid":6, "ts":1718090301869877, "dur":144, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6738. ,{ "pid":12345, "tid":6, "ts":1718090301870028, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UI_CodeGen.c" }}
  6739. ,{ "pid":12345, "tid":6, "ts":1718090301870027, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UI_CodeGen.c" }}
  6740. ,{ "pid":12345, "tid":6, "ts":1718090301870106, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6741. ,{ "pid":12345, "tid":6, "ts":1718090301870212, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIModule.cpp" }}
  6742. ,{ "pid":12345, "tid":6, "ts":1718090301870210, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIModule.cpp" }}
  6743. ,{ "pid":12345, "tid":6, "ts":1718090301870301, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6744. ,{ "pid":12345, "tid":6, "ts":1718090301870394, "dur":129, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Firebase.Platform.cpp" }}
  6745. ,{ "pid":12345, "tid":6, "ts":1718090301870392, "dur":132, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Firebase.Platform.cpp" }}
  6746. ,{ "pid":12345, "tid":6, "ts":1718090301870525, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6747. ,{ "pid":12345, "tid":6, "ts":1718090301870631, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__28.cpp" }}
  6748. ,{ "pid":12345, "tid":6, "ts":1718090301870630, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__28.cpp" }}
  6749. ,{ "pid":12345, "tid":6, "ts":1718090301870720, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6750. ,{ "pid":12345, "tid":6, "ts":1718090301870817, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.AudioModule_CodeGen.c" }}
  6751. ,{ "pid":12345, "tid":6, "ts":1718090301870815, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.AudioModule_CodeGen.c" }}
  6752. ,{ "pid":12345, "tid":6, "ts":1718090301870922, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6753. ,{ "pid":12345, "tid":6, "ts":1718090301870999, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__33.cpp" }}
  6754. ,{ "pid":12345, "tid":6, "ts":1718090301870998, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__33.cpp" }}
  6755. ,{ "pid":12345, "tid":6, "ts":1718090301871072, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6756. ,{ "pid":12345, "tid":6, "ts":1718090301871162, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Firebase.App.cpp" }}
  6757. ,{ "pid":12345, "tid":6, "ts":1718090301871161, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Firebase.App.cpp" }}
  6758. ,{ "pid":12345, "tid":6, "ts":1718090301871235, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6759. ,{ "pid":12345, "tid":6, "ts":1718090301871318, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__21.cpp" }}
  6760. ,{ "pid":12345, "tid":6, "ts":1718090301871316, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__21.cpp" }}
  6761. ,{ "pid":12345, "tid":6, "ts":1718090301871392, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6762. ,{ "pid":12345, "tid":6, "ts":1718090301871493, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__13.cpp" }}
  6763. ,{ "pid":12345, "tid":6, "ts":1718090301871492, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__13.cpp" }}
  6764. ,{ "pid":12345, "tid":6, "ts":1718090301871578, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6765. ,{ "pid":12345, "tid":6, "ts":1718090301871666, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.TextCoreTextEngineModule__2.cpp" }}
  6766. ,{ "pid":12345, "tid":6, "ts":1718090301871664, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.TextCoreTextEngineModule__2.cpp" }}
  6767. ,{ "pid":12345, "tid":6, "ts":1718090301871752, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6768. ,{ "pid":12345, "tid":6, "ts":1718090301871846, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Purchasing.AppleMacosStub_CodeGen.c" }}
  6769. ,{ "pid":12345, "tid":6, "ts":1718090301871844, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Purchasing.AppleMacosStub_CodeGen.c" }}
  6770. ,{ "pid":12345, "tid":6, "ts":1718090301871932, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6771. ,{ "pid":12345, "tid":6, "ts":1718090301872027, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Purchasing.cpp" }}
  6772. ,{ "pid":12345, "tid":6, "ts":1718090301872025, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Purchasing.cpp" }}
  6773. ,{ "pid":12345, "tid":6, "ts":1718090301872107, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6774. ,{ "pid":12345, "tid":6, "ts":1718090301872202, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.cpp" }}
  6775. ,{ "pid":12345, "tid":6, "ts":1718090301872200, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.cpp" }}
  6776. ,{ "pid":12345, "tid":6, "ts":1718090301872277, "dur":199, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6777. ,{ "pid":12345, "tid":6, "ts":1718090301872484, "dur":303, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.AnimationModule.cpp" }}
  6778. ,{ "pid":12345, "tid":6, "ts":1718090301872483, "dur":305, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.AnimationModule.cpp" }}
  6779. ,{ "pid":12345, "tid":6, "ts":1718090301872788, "dur":371, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6780. ,{ "pid":12345, "tid":6, "ts":1718090301873182, "dur":190, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule__4.cpp" }}
  6781. ,{ "pid":12345, "tid":6, "ts":1718090301873181, "dur":192, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__4.cpp" }}
  6782. ,{ "pid":12345, "tid":6, "ts":1718090301873374, "dur":202, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6783. ,{ "pid":12345, "tid":6, "ts":1718090301873583, "dur":166, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule__3.cpp" }}
  6784. ,{ "pid":12345, "tid":6, "ts":1718090301873582, "dur":168, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__3.cpp" }}
  6785. ,{ "pid":12345, "tid":6, "ts":1718090301873750, "dur":171, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6786. ,{ "pid":12345, "tid":6, "ts":1718090301873927, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.TilemapModule.cpp" }}
  6787. ,{ "pid":12345, "tid":6, "ts":1718090301873926, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.TilemapModule.cpp" }}
  6788. ,{ "pid":12345, "tid":6, "ts":1718090301874049, "dur":158, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6789. ,{ "pid":12345, "tid":6, "ts":1718090301874215, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__7.cpp" }}
  6790. ,{ "pid":12345, "tid":6, "ts":1718090301874214, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__7.cpp" }}
  6791. ,{ "pid":12345, "tid":6, "ts":1718090301874290, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6792. ,{ "pid":12345, "tid":6, "ts":1718090301874421, "dur":244, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__9.cpp" }}
  6793. ,{ "pid":12345, "tid":6, "ts":1718090301874420, "dur":246, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__9.cpp" }}
  6794. ,{ "pid":12345, "tid":6, "ts":1718090301874690, "dur":141, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6795. ,{ "pid":12345, "tid":6, "ts":1718090301874883, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__1.cpp" }}
  6796. ,{ "pid":12345, "tid":6, "ts":1718090301874881, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__1.cpp" }}
  6797. ,{ "pid":12345, "tid":6, "ts":1718090301874977, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6798. ,{ "pid":12345, "tid":6, "ts":1718090301875064, "dur":141, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Core__3.cpp" }}
  6799. ,{ "pid":12345, "tid":6, "ts":1718090301875063, "dur":142, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Core__3.cpp" }}
  6800. ,{ "pid":12345, "tid":6, "ts":1718090301875206, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6801. ,{ "pid":12345, "tid":6, "ts":1718090301875289, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/Managed/Resources/I18N.CJK.dll-resources.dat" }}
  6802. ,{ "pid":12345, "tid":6, "ts":1718090301875408, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6803. ,{ "pid":12345, "tid":6, "ts":1718090301875515, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__1.cpp" }}
  6804. ,{ "pid":12345, "tid":6, "ts":1718090301875513, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__1.cpp" }}
  6805. ,{ "pid":12345, "tid":6, "ts":1718090301875595, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6806. ,{ "pid":12345, "tid":6, "ts":1718090301875682, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__16.cpp" }}
  6807. ,{ "pid":12345, "tid":6, "ts":1718090301875681, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__16.cpp" }}
  6808. ,{ "pid":12345, "tid":6, "ts":1718090301875758, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6809. ,{ "pid":12345, "tid":6, "ts":1718090301875897, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Burst.Unsafe.cpp" }}
  6810. ,{ "pid":12345, "tid":6, "ts":1718090301875896, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Burst.Unsafe.cpp" }}
  6811. ,{ "pid":12345, "tid":6, "ts":1718090301875978, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6812. ,{ "pid":12345, "tid":6, "ts":1718090301876057, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__18.cpp" }}
  6813. ,{ "pid":12345, "tid":6, "ts":1718090301876056, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__18.cpp" }}
  6814. ,{ "pid":12345, "tid":6, "ts":1718090301876150, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6815. ,{ "pid":12345, "tid":6, "ts":1718090301876241, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Threading.cpp" }}
  6816. ,{ "pid":12345, "tid":6, "ts":1718090301876239, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Threading.cpp" }}
  6817. ,{ "pid":12345, "tid":6, "ts":1718090301876342, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6818. ,{ "pid":12345, "tid":6, "ts":1718090301876426, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Registration.cpp" }}
  6819. ,{ "pid":12345, "tid":6, "ts":1718090301876425, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Registration.cpp" }}
  6820. ,{ "pid":12345, "tid":6, "ts":1718090301876517, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6821. ,{ "pid":12345, "tid":6, "ts":1718090301876589, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.TextMeshPro__4.cpp" }}
  6822. ,{ "pid":12345, "tid":6, "ts":1718090301876588, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.TextMeshPro__4.cpp" }}
  6823. ,{ "pid":12345, "tid":6, "ts":1718090301876696, "dur":158, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6824. ,{ "pid":12345, "tid":6, "ts":1718090301876867, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__55.cpp" }}
  6825. ,{ "pid":12345, "tid":6, "ts":1718090301876866, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__55.cpp" }}
  6826. ,{ "pid":12345, "tid":6, "ts":1718090301876918, "dur":182, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6827. ,{ "pid":12345, "tid":6, "ts":1718090301877105, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__12.cpp" }}
  6828. ,{ "pid":12345, "tid":6, "ts":1718090301877104, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__12.cpp" }}
  6829. ,{ "pid":12345, "tid":6, "ts":1718090301877199, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6830. ,{ "pid":12345, "tid":6, "ts":1718090301877287, "dur":181, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Core.cpp" }}
  6831. ,{ "pid":12345, "tid":6, "ts":1718090301877286, "dur":183, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Core.cpp" }}
  6832. ,{ "pid":12345, "tid":6, "ts":1718090301877470, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6833. ,{ "pid":12345, "tid":6, "ts":1718090301877605, "dur":162, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Core__4.cpp" }}
  6834. ,{ "pid":12345, "tid":6, "ts":1718090301877604, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Core__4.cpp" }}
  6835. ,{ "pid":12345, "tid":6, "ts":1718090301877769, "dur":220, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6836. ,{ "pid":12345, "tid":6, "ts":1718090301877997, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__3.cpp" }}
  6837. ,{ "pid":12345, "tid":6, "ts":1718090301877996, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__3.cpp" }}
  6838. ,{ "pid":12345, "tid":6, "ts":1718090301878062, "dur":180, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6839. ,{ "pid":12345, "tid":6, "ts":1718090301878268, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__19.cpp" }}
  6840. ,{ "pid":12345, "tid":6, "ts":1718090301878267, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__19.cpp" }}
  6841. ,{ "pid":12345, "tid":7, "ts":1718090301624811, "dur":116315, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  6842. ,{ "pid":12345, "tid":7, "ts":1718090301741131, "dur":992, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  6843. ,{ "pid":12345, "tid":7, "ts":1718090301742123, "dur":1000, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  6844. ,{ "pid":12345, "tid":7, "ts":1718090301743123, "dur":931, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  6845. ,{ "pid":12345, "tid":7, "ts":1718090301744055, "dur":967, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  6846. ,{ "pid":12345, "tid":7, "ts":1718090301745022, "dur":1166, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  6847. ,{ "pid":12345, "tid":7, "ts":1718090301746188, "dur":30008, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  6848. ,{ "pid":12345, "tid":7, "ts":1718090301776214, "dur":86, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/Firebase.Auth-FeaturesChecked.txt_zva7.info" }}
  6849. ,{ "pid":12345, "tid":7, "ts":1718090301776310, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6850. ,{ "pid":12345, "tid":7, "ts":1718090301776402, "dur":261, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.TextCoreFontEngineModule-FeaturesChecked.txt_u5c4.info" }}
  6851. ,{ "pid":12345, "tid":7, "ts":1718090301776669, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6852. ,{ "pid":12345, "tid":7, "ts":1718090301776753, "dur":182, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6853. ,{ "pid":12345, "tid":7, "ts":1718090301776945, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6854. ,{ "pid":12345, "tid":7, "ts":1718090301777081, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6855. ,{ "pid":12345, "tid":7, "ts":1718090301777215, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6856. ,{ "pid":12345, "tid":7, "ts":1718090301777330, "dur":147, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6857. ,{ "pid":12345, "tid":7, "ts":1718090301777660, "dur":144, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/iOSPlayerBuildProgram.exe" }}
  6858. ,{ "pid":12345, "tid":7, "ts":1718090301777828, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" }}
  6859. ,{ "pid":12345, "tid":7, "ts":1718090301777998, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" }}
  6860. ,{ "pid":12345, "tid":7, "ts":1718090301777491, "dur":589, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MergeApplePrivacyManifests Library/Bee/artifacts/iOS/PrivacyInfo.xcprivacy (+1 other)" }}
  6861. ,{ "pid":12345, "tid":7, "ts":1718090301778081, "dur":243, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6862. ,{ "pid":12345, "tid":7, "ts":1718090301778347, "dur":185, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsDelegateUtil.h" }}
  6863. ,{ "pid":12345, "tid":7, "ts":1718090301778346, "dur":187, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsDelegateUtil.h" }}
  6864. ,{ "pid":12345, "tid":7, "ts":1718090301778533, "dur":190, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6865. ,{ "pid":12345, "tid":7, "ts":1718090301778747, "dur":126, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityServices.h" }}
  6866. ,{ "pid":12345, "tid":7, "ts":1718090301778746, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityServices.h" }}
  6867. ,{ "pid":12345, "tid":7, "ts":1718090301778875, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6868. ,{ "pid":12345, "tid":7, "ts":1718090301778966, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsShowError.h" }}
  6869. ,{ "pid":12345, "tid":7, "ts":1718090301778965, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsShowError.h" }}
  6870. ,{ "pid":12345, "tid":7, "ts":1718090301779100, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6871. ,{ "pid":12345, "tid":7, "ts":1718090301779165, "dur":189, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsInitializationDelegate.h" }}
  6872. ,{ "pid":12345, "tid":7, "ts":1718090301779164, "dur":191, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsInitializationDelegate.h" }}
  6873. ,{ "pid":12345, "tid":7, "ts":1718090301779355, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6874. ,{ "pid":12345, "tid":7, "ts":1718090301779492, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsBannerDelegate.h" }}
  6875. ,{ "pid":12345, "tid":7, "ts":1718090301779491, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsBannerDelegate.h" }}
  6876. ,{ "pid":12345, "tid":7, "ts":1718090301779593, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6877. ,{ "pid":12345, "tid":7, "ts":1718090301779673, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONPlacementContent.h" }}
  6878. ,{ "pid":12345, "tid":7, "ts":1718090301779672, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONPlacementContent.h" }}
  6879. ,{ "pid":12345, "tid":7, "ts":1718090301779760, "dur":139, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6880. ,{ "pid":12345, "tid":7, "ts":1718090301779904, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSPlayerMetaData.h" }}
  6881. ,{ "pid":12345, "tid":7, "ts":1718090301779903, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSPlayerMetaData.h" }}
  6882. ,{ "pid":12345, "tid":7, "ts":1718090301779966, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6883. ,{ "pid":12345, "tid":7, "ts":1718090301780066, "dur":127, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSBannerViewDelegate.h" }}
  6884. ,{ "pid":12345, "tid":7, "ts":1718090301780065, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSBannerViewDelegate.h" }}
  6885. ,{ "pid":12345, "tid":7, "ts":1718090301780194, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6886. ,{ "pid":12345, "tid":7, "ts":1718090301780355, "dur":208, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6887. ,{ "pid":12345, "tid":7, "ts":1718090301780568, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/icalls/mscorlib/System/MathF.cpp" }}
  6888. ,{ "pid":12345, "tid":7, "ts":1718090301780567, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/icalls/mscorlib/System/MathF.cpp" }}
  6889. ,{ "pid":12345, "tid":7, "ts":1718090301780703, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6890. ,{ "pid":12345, "tid":7, "ts":1718090301780805, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/Finally.cpp" }}
  6891. ,{ "pid":12345, "tid":7, "ts":1718090301780804, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/Finally.cpp" }}
  6892. ,{ "pid":12345, "tid":7, "ts":1718090301780941, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6893. ,{ "pid":12345, "tid":7, "ts":1718090301781097, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/utf8-cpp/source/utf8/unchecked.h" }}
  6894. ,{ "pid":12345, "tid":7, "ts":1718090301781096, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/utf8-cpp/source/utf8/unchecked.h" }}
  6895. ,{ "pid":12345, "tid":7, "ts":1718090301781221, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6896. ,{ "pid":12345, "tid":7, "ts":1718090301781302, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/StringViewUtils.h" }}
  6897. ,{ "pid":12345, "tid":7, "ts":1718090301781300, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/StringViewUtils.h" }}
  6898. ,{ "pid":12345, "tid":7, "ts":1718090301781381, "dur":141, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6899. ,{ "pid":12345, "tid":7, "ts":1718090301781528, "dur":157, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Runtime.h" }}
  6900. ,{ "pid":12345, "tid":7, "ts":1718090301781526, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Runtime.h" }}
  6901. ,{ "pid":12345, "tid":7, "ts":1718090301781686, "dur":156, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6902. ,{ "pid":12345, "tid":7, "ts":1718090301781867, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/NonCopyable.h" }}
  6903. ,{ "pid":12345, "tid":7, "ts":1718090301781865, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/NonCopyable.h" }}
  6904. ,{ "pid":12345, "tid":7, "ts":1718090301781946, "dur":139, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6905. ,{ "pid":12345, "tid":7, "ts":1718090301782095, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryPoolAddressSanitizer.h" }}
  6906. ,{ "pid":12345, "tid":7, "ts":1718090301782093, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryPoolAddressSanitizer.h" }}
  6907. ,{ "pid":12345, "tid":7, "ts":1718090301782159, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6908. ,{ "pid":12345, "tid":7, "ts":1718090301782246, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Memory.h" }}
  6909. ,{ "pid":12345, "tid":7, "ts":1718090301782245, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Memory.h" }}
  6910. ,{ "pid":12345, "tid":7, "ts":1718090301782318, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6911. ,{ "pid":12345, "tid":7, "ts":1718090301782392, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Logging.cpp" }}
  6912. ,{ "pid":12345, "tid":7, "ts":1718090301782390, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Logging.cpp" }}
  6913. ,{ "pid":12345, "tid":7, "ts":1718090301782491, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6914. ,{ "pid":12345, "tid":7, "ts":1718090301782580, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/HashUtils.h" }}
  6915. ,{ "pid":12345, "tid":7, "ts":1718090301782579, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/HashUtils.h" }}
  6916. ,{ "pid":12345, "tid":7, "ts":1718090301782673, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6917. ,{ "pid":12345, "tid":7, "ts":1718090301782772, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Exception.cpp" }}
  6918. ,{ "pid":12345, "tid":7, "ts":1718090301782770, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Exception.cpp" }}
  6919. ,{ "pid":12345, "tid":7, "ts":1718090301782834, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6920. ,{ "pid":12345, "tid":7, "ts":1718090301782947, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/DirectoryUtils.cpp" }}
  6921. ,{ "pid":12345, "tid":7, "ts":1718090301782946, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/DirectoryUtils.cpp" }}
  6922. ,{ "pid":12345, "tid":7, "ts":1718090301783019, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6923. ,{ "pid":12345, "tid":7, "ts":1718090301783114, "dur":151, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/pch/pch-c.h" }}
  6924. ,{ "pid":12345, "tid":7, "ts":1718090301783113, "dur":153, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/pch/pch-c.h" }}
  6925. ,{ "pid":12345, "tid":7, "ts":1718090301783266, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6926. ,{ "pid":12345, "tid":7, "ts":1718090301783337, "dur":103, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/Win32ApiSharedEmulation.h" }}
  6927. ,{ "pid":12345, "tid":7, "ts":1718090301783336, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Win32ApiSharedEmulation.h" }}
  6928. ,{ "pid":12345, "tid":7, "ts":1718090301783442, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6929. ,{ "pid":12345, "tid":7, "ts":1718090301783597, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/Cryptography.cpp" }}
  6930. ,{ "pid":12345, "tid":7, "ts":1718090301783595, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Cryptography.cpp" }}
  6931. ,{ "pid":12345, "tid":7, "ts":1718090301783659, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6932. ,{ "pid":12345, "tid":7, "ts":1718090301783771, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/WindowsHelpers.h" }}
  6933. ,{ "pid":12345, "tid":7, "ts":1718090301783770, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/WindowsHelpers.h" }}
  6934. ,{ "pid":12345, "tid":7, "ts":1718090301783883, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6935. ,{ "pid":12345, "tid":7, "ts":1718090301783996, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/ThreadImpl.h" }}
  6936. ,{ "pid":12345, "tid":7, "ts":1718090301783996, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/ThreadImpl.h" }}
  6937. ,{ "pid":12345, "tid":7, "ts":1718090301784094, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6938. ,{ "pid":12345, "tid":7, "ts":1718090301784197, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6939. ,{ "pid":12345, "tid":7, "ts":1718090301784286, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/MemoryMappedFile.cpp" }}
  6940. ,{ "pid":12345, "tid":7, "ts":1718090301784285, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/MemoryMappedFile.cpp" }}
  6941. ,{ "pid":12345, "tid":7, "ts":1718090301784352, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6942. ,{ "pid":12345, "tid":7, "ts":1718090301784454, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/LastError.cpp" }}
  6943. ,{ "pid":12345, "tid":7, "ts":1718090301784453, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/LastError.cpp" }}
  6944. ,{ "pid":12345, "tid":7, "ts":1718090301784517, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6945. ,{ "pid":12345, "tid":7, "ts":1718090301784602, "dur":128, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Environment.cpp" }}
  6946. ,{ "pid":12345, "tid":7, "ts":1718090301784601, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Environment.cpp" }}
  6947. ,{ "pid":12345, "tid":7, "ts":1718090301784792, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Debug.cpp" }}
  6948. ,{ "pid":12345, "tid":7, "ts":1718090301784791, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Debug.cpp" }}
  6949. ,{ "pid":12345, "tid":7, "ts":1718090301784859, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6950. ,{ "pid":12345, "tid":7, "ts":1718090301784920, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/ConditionVariableImpl.cpp" }}
  6951. ,{ "pid":12345, "tid":7, "ts":1718090301784919, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/ConditionVariableImpl.cpp" }}
  6952. ,{ "pid":12345, "tid":7, "ts":1718090301785008, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6953. ,{ "pid":12345, "tid":7, "ts":1718090301785085, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ThreadLocalValue.h" }}
  6954. ,{ "pid":12345, "tid":7, "ts":1718090301785083, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ThreadLocalValue.h" }}
  6955. ,{ "pid":12345, "tid":7, "ts":1718090301785148, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6956. ,{ "pid":12345, "tid":7, "ts":1718090301785215, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Std/ThreadImpl.cpp" }}
  6957. ,{ "pid":12345, "tid":7, "ts":1718090301785213, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Std/ThreadImpl.cpp" }}
  6958. ,{ "pid":12345, "tid":7, "ts":1718090301785266, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6959. ,{ "pid":12345, "tid":7, "ts":1718090301785343, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Semaphore.h" }}
  6960. ,{ "pid":12345, "tid":7, "ts":1718090301785342, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Semaphore.h" }}
  6961. ,{ "pid":12345, "tid":7, "ts":1718090301785405, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6962. ,{ "pid":12345, "tid":7, "ts":1718090301785478, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/TimeZone.cpp" }}
  6963. ,{ "pid":12345, "tid":7, "ts":1718090301785477, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/TimeZone.cpp" }}
  6964. ,{ "pid":12345, "tid":7, "ts":1718090301785553, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6965. ,{ "pid":12345, "tid":7, "ts":1718090301785617, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/SystemCertificates.cpp" }}
  6966. ,{ "pid":12345, "tid":7, "ts":1718090301785616, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/SystemCertificates.cpp" }}
  6967. ,{ "pid":12345, "tid":7, "ts":1718090301785675, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6968. ,{ "pid":12345, "tid":7, "ts":1718090301785748, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/PosixHelpers.h" }}
  6969. ,{ "pid":12345, "tid":7, "ts":1718090301785747, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/PosixHelpers.h" }}
  6970. ,{ "pid":12345, "tid":7, "ts":1718090301785867, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/MutexImpl.h" }}
  6971. ,{ "pid":12345, "tid":7, "ts":1718090301785866, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/MutexImpl.h" }}
  6972. ,{ "pid":12345, "tid":7, "ts":1718090301785946, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6973. ,{ "pid":12345, "tid":7, "ts":1718090301786050, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/FileSystemWatcher.cpp" }}
  6974. ,{ "pid":12345, "tid":7, "ts":1718090301786049, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/FileSystemWatcher.cpp" }}
  6975. ,{ "pid":12345, "tid":7, "ts":1718090301786147, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6976. ,{ "pid":12345, "tid":7, "ts":1718090301786281, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Cryptography.cpp" }}
  6977. ,{ "pid":12345, "tid":7, "ts":1718090301786279, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Cryptography.cpp" }}
  6978. ,{ "pid":12345, "tid":7, "ts":1718090301786424, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/ConditionVariableImpl.cpp" }}
  6979. ,{ "pid":12345, "tid":7, "ts":1718090301786422, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/ConditionVariableImpl.cpp" }}
  6980. ,{ "pid":12345, "tid":7, "ts":1718090301786492, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6981. ,{ "pid":12345, "tid":7, "ts":1718090301786634, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/OSX/Image.cpp" }}
  6982. ,{ "pid":12345, "tid":7, "ts":1718090301786633, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/OSX/Image.cpp" }}
  6983. ,{ "pid":12345, "tid":7, "ts":1718090301786691, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6984. ,{ "pid":12345, "tid":7, "ts":1718090301786767, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/MemoryMappedFile.h" }}
  6985. ,{ "pid":12345, "tid":7, "ts":1718090301786766, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/MemoryMappedFile.h" }}
  6986. ,{ "pid":12345, "tid":7, "ts":1718090301786848, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6987. ,{ "pid":12345, "tid":7, "ts":1718090301786922, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/LibraryLoader.h" }}
  6988. ,{ "pid":12345, "tid":7, "ts":1718090301786921, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/LibraryLoader.h" }}
  6989. ,{ "pid":12345, "tid":7, "ts":1718090301786988, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6990. ,{ "pid":12345, "tid":7, "ts":1718090301787068, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Handle.h" }}
  6991. ,{ "pid":12345, "tid":7, "ts":1718090301787067, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Handle.h" }}
  6992. ,{ "pid":12345, "tid":7, "ts":1718090301787179, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/SystemCertificates.cpp" }}
  6993. ,{ "pid":12345, "tid":7, "ts":1718090301787177, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/SystemCertificates.cpp" }}
  6994. ,{ "pid":12345, "tid":7, "ts":1718090301787254, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6995. ,{ "pid":12345, "tid":7, "ts":1718090301787337, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/MemoryMappedFile.cpp" }}
  6996. ,{ "pid":12345, "tid":7, "ts":1718090301787335, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/MemoryMappedFile.cpp" }}
  6997. ,{ "pid":12345, "tid":7, "ts":1718090301787411, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6998. ,{ "pid":12345, "tid":7, "ts":1718090301787480, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/Environment.cpp" }}
  6999. ,{ "pid":12345, "tid":7, "ts":1718090301787478, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/Environment.cpp" }}
  7000. ,{ "pid":12345, "tid":7, "ts":1718090301787539, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7001. ,{ "pid":12345, "tid":7, "ts":1718090301787632, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/FileSystemWatcher.h" }}
  7002. ,{ "pid":12345, "tid":7, "ts":1718090301787630, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/FileSystemWatcher.h" }}
  7003. ,{ "pid":12345, "tid":7, "ts":1718090301787749, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7004. ,{ "pid":12345, "tid":7, "ts":1718090301787842, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Error.h" }}
  7005. ,{ "pid":12345, "tid":7, "ts":1718090301787840, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Error.h" }}
  7006. ,{ "pid":12345, "tid":7, "ts":1718090301787894, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7007. ,{ "pid":12345, "tid":7, "ts":1718090301787989, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Directory.h" }}
  7008. ,{ "pid":12345, "tid":7, "ts":1718090301787987, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Directory.h" }}
  7009. ,{ "pid":12345, "tid":7, "ts":1718090301788060, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7010. ,{ "pid":12345, "tid":7, "ts":1718090301788132, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/CpuInfo.h" }}
  7011. ,{ "pid":12345, "tid":7, "ts":1718090301788131, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/CpuInfo.h" }}
  7012. ,{ "pid":12345, "tid":7, "ts":1718090301788197, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7013. ,{ "pid":12345, "tid":7, "ts":1718090301788316, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_unused.cpp" }}
  7014. ,{ "pid":12345, "tid":7, "ts":1718090301788315, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_unused.cpp" }}
  7015. ,{ "pid":12345, "tid":7, "ts":1718090301788390, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7016. ,{ "pid":12345, "tid":7, "ts":1718090301788482, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_platform.h" }}
  7017. ,{ "pid":12345, "tid":7, "ts":1718090301788480, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_platform.h" }}
  7018. ,{ "pid":12345, "tid":7, "ts":1718090301788550, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7019. ,{ "pid":12345, "tid":7, "ts":1718090301788616, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/port.h" }}
  7020. ,{ "pid":12345, "tid":7, "ts":1718090301788615, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/port.h" }}
  7021. ,{ "pid":12345, "tid":7, "ts":1718090301788698, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7022. ,{ "pid":12345, "tid":7, "ts":1718090301788770, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/static_dict_lut.h" }}
  7023. ,{ "pid":12345, "tid":7, "ts":1718090301788769, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/static_dict_lut.h" }}
  7024. ,{ "pid":12345, "tid":7, "ts":1718090301788840, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7025. ,{ "pid":12345, "tid":7, "ts":1718090301788909, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/params.h" }}
  7026. ,{ "pid":12345, "tid":7, "ts":1718090301788908, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/params.h" }}
  7027. ,{ "pid":12345, "tid":7, "ts":1718090301789002, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7028. ,{ "pid":12345, "tid":7, "ts":1718090301789079, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/literal_cost.h" }}
  7029. ,{ "pid":12345, "tid":7, "ts":1718090301789078, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/literal_cost.h" }}
  7030. ,{ "pid":12345, "tid":7, "ts":1718090301789177, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7031. ,{ "pid":12345, "tid":7, "ts":1718090301789258, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_rolling_inc.h" }}
  7032. ,{ "pid":12345, "tid":7, "ts":1718090301789256, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_rolling_inc.h" }}
  7033. ,{ "pid":12345, "tid":7, "ts":1718090301789334, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7034. ,{ "pid":12345, "tid":7, "ts":1718090301789420, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash.h" }}
  7035. ,{ "pid":12345, "tid":7, "ts":1718090301789419, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash.h" }}
  7036. ,{ "pid":12345, "tid":7, "ts":1718090301789497, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7037. ,{ "pid":12345, "tid":7, "ts":1718090301789583, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/entropy_encode.c" }}
  7038. ,{ "pid":12345, "tid":7, "ts":1718090301789582, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/entropy_encode.c" }}
  7039. ,{ "pid":12345, "tid":7, "ts":1718090301789660, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7040. ,{ "pid":12345, "tid":7, "ts":1718090301789753, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment_two_pass.h" }}
  7041. ,{ "pid":12345, "tid":7, "ts":1718090301789751, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment_two_pass.h" }}
  7042. ,{ "pid":12345, "tid":7, "ts":1718090301789822, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7043. ,{ "pid":12345, "tid":7, "ts":1718090301789888, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/cluster.h" }}
  7044. ,{ "pid":12345, "tid":7, "ts":1718090301789887, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/cluster.h" }}
  7045. ,{ "pid":12345, "tid":7, "ts":1718090301789951, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7046. ,{ "pid":12345, "tid":7, "ts":1718090301790067, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7047. ,{ "pid":12345, "tid":7, "ts":1718090301790233, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references.c" }}
  7048. ,{ "pid":12345, "tid":7, "ts":1718090301790231, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references.c" }}
  7049. ,{ "pid":12345, "tid":7, "ts":1718090301790311, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7050. ,{ "pid":12345, "tid":7, "ts":1718090301790380, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/decode.c" }}
  7051. ,{ "pid":12345, "tid":7, "ts":1718090301790379, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/decode.c" }}
  7052. ,{ "pid":12345, "tid":7, "ts":1718090301790442, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7053. ,{ "pid":12345, "tid":7, "ts":1718090301790498, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/platform.h" }}
  7054. ,{ "pid":12345, "tid":7, "ts":1718090301790497, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/platform.h" }}
  7055. ,{ "pid":12345, "tid":7, "ts":1718090301790583, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7056. ,{ "pid":12345, "tid":7, "ts":1718090301790644, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/constants.h" }}
  7057. ,{ "pid":12345, "tid":7, "ts":1718090301790642, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/constants.h" }}
  7058. ,{ "pid":12345, "tid":7, "ts":1718090301790710, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7059. ,{ "pid":12345, "tid":7, "ts":1718090301790774, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Thread-c-api.h" }}
  7060. ,{ "pid":12345, "tid":7, "ts":1718090301790773, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Thread-c-api.h" }}
  7061. ,{ "pid":12345, "tid":7, "ts":1718090301790895, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Locale.cpp" }}
  7062. ,{ "pid":12345, "tid":7, "ts":1718090301790894, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Locale.cpp" }}
  7063. ,{ "pid":12345, "tid":7, "ts":1718090301791003, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Error.cpp" }}
  7064. ,{ "pid":12345, "tid":7, "ts":1718090301791001, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Error.cpp" }}
  7065. ,{ "pid":12345, "tid":7, "ts":1718090301791115, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7066. ,{ "pid":12345, "tid":7, "ts":1718090301791202, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/CultureInfo.cpp" }}
  7067. ,{ "pid":12345, "tid":7, "ts":1718090301791201, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/CultureInfo.cpp" }}
  7068. ,{ "pid":12345, "tid":7, "ts":1718090301791271, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7069. ,{ "pid":12345, "tid":7, "ts":1718090301791359, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7070. ,{ "pid":12345, "tid":7, "ts":1718090301791471, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Android/Initialize.cpp" }}
  7071. ,{ "pid":12345, "tid":7, "ts":1718090301791470, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Android/Initialize.cpp" }}
  7072. ,{ "pid":12345, "tid":7, "ts":1718090301791592, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/ThreadPoolMacros.h" }}
  7073. ,{ "pid":12345, "tid":7, "ts":1718090301791591, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/ThreadPoolMacros.h" }}
  7074. ,{ "pid":12345, "tid":7, "ts":1718090301791668, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7075. ,{ "pid":12345, "tid":7, "ts":1718090301791731, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/MonoPosixHelper.h" }}
  7076. ,{ "pid":12345, "tid":7, "ts":1718090301791729, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/MonoPosixHelper.h" }}
  7077. ,{ "pid":12345, "tid":7, "ts":1718090301791795, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7078. ,{ "pid":12345, "tid":7, "ts":1718090301791862, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppTypeCompare.cpp" }}
  7079. ,{ "pid":12345, "tid":7, "ts":1718090301791861, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppTypeCompare.cpp" }}
  7080. ,{ "pid":12345, "tid":7, "ts":1718090301791924, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7081. ,{ "pid":12345, "tid":7, "ts":1718090301792001, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericMethodCompare.cpp" }}
  7082. ,{ "pid":12345, "tid":7, "ts":1718090301792000, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericMethodCompare.cpp" }}
  7083. ,{ "pid":12345, "tid":7, "ts":1718090301792054, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7084. ,{ "pid":12345, "tid":7, "ts":1718090301792132, "dur":126, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericContextHash.cpp" }}
  7085. ,{ "pid":12345, "tid":7, "ts":1718090301792131, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericContextHash.cpp" }}
  7086. ,{ "pid":12345, "tid":7, "ts":1718090301792259, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7087. ,{ "pid":12345, "tid":7, "ts":1718090301792356, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericClassCompare.cpp" }}
  7088. ,{ "pid":12345, "tid":7, "ts":1718090301792354, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericClassCompare.cpp" }}
  7089. ,{ "pid":12345, "tid":7, "ts":1718090301792422, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7090. ,{ "pid":12345, "tid":7, "ts":1718090301792501, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/GenericMetadata.cpp" }}
  7091. ,{ "pid":12345, "tid":7, "ts":1718090301792499, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericMetadata.cpp" }}
  7092. ,{ "pid":12345, "tid":7, "ts":1718090301792591, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7093. ,{ "pid":12345, "tid":7, "ts":1718090301792703, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/CustomAttributeCreator.cpp" }}
  7094. ,{ "pid":12345, "tid":7, "ts":1718090301792702, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/CustomAttributeCreator.cpp" }}
  7095. ,{ "pid":12345, "tid":7, "ts":1718090301792786, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7096. ,{ "pid":12345, "tid":7, "ts":1718090301792860, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-tabledefs.h" }}
  7097. ,{ "pid":12345, "tid":7, "ts":1718090301792859, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-tabledefs.h" }}
  7098. ,{ "pid":12345, "tid":7, "ts":1718090301792992, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-runtime-stats.cpp" }}
  7099. ,{ "pid":12345, "tid":7, "ts":1718090301792991, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-runtime-stats.cpp" }}
  7100. ,{ "pid":12345, "tid":7, "ts":1718090301793089, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7101. ,{ "pid":12345, "tid":7, "ts":1718090301793163, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-mono-api.cpp" }}
  7102. ,{ "pid":12345, "tid":7, "ts":1718090301793161, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-mono-api.cpp" }}
  7103. ,{ "pid":12345, "tid":7, "ts":1718090301793218, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7104. ,{ "pid":12345, "tid":7, "ts":1718090301793288, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-blob.h" }}
  7105. ,{ "pid":12345, "tid":7, "ts":1718090301793287, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-blob.h" }}
  7106. ,{ "pid":12345, "tid":7, "ts":1718090301793347, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7107. ,{ "pid":12345, "tid":7, "ts":1718090301793458, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-api-functions.h" }}
  7108. ,{ "pid":12345, "tid":7, "ts":1718090301793457, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-api-functions.h" }}
  7109. ,{ "pid":12345, "tid":7, "ts":1718090301793533, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7110. ,{ "pid":12345, "tid":7, "ts":1718090301793599, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.Sockets/SocketException.cpp" }}
  7111. ,{ "pid":12345, "tid":7, "ts":1718090301793597, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.Sockets/SocketException.cpp" }}
  7112. ,{ "pid":12345, "tid":7, "ts":1718090301793692, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7113. ,{ "pid":12345, "tid":7, "ts":1718090301793831, "dur":162, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7114. ,{ "pid":12345, "tid":7, "ts":1718090301793998, "dur":134, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/DefaultTraceListener.cpp" }}
  7115. ,{ "pid":12345, "tid":7, "ts":1718090301793997, "dur":136, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/DefaultTraceListener.cpp" }}
  7116. ,{ "pid":12345, "tid":7, "ts":1718090301794133, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7117. ,{ "pid":12345, "tid":7, "ts":1718090301794199, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/ValueType.h" }}
  7118. ,{ "pid":12345, "tid":7, "ts":1718090301794197, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/ValueType.h" }}
  7119. ,{ "pid":12345, "tid":7, "ts":1718090301794268, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7120. ,{ "pid":12345, "tid":7, "ts":1718090301794381, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/String.cpp" }}
  7121. ,{ "pid":12345, "tid":7, "ts":1718090301794380, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/String.cpp" }}
  7122. ,{ "pid":12345, "tid":7, "ts":1718090301794450, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7123. ,{ "pid":12345, "tid":7, "ts":1718090301794536, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeFieldHandle.h" }}
  7124. ,{ "pid":12345, "tid":7, "ts":1718090301794535, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeFieldHandle.h" }}
  7125. ,{ "pid":12345, "tid":7, "ts":1718090301794628, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7126. ,{ "pid":12345, "tid":7, "ts":1718090301794762, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/MonoCustomAttrs.h" }}
  7127. ,{ "pid":12345, "tid":7, "ts":1718090301794762, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/MonoCustomAttrs.h" }}
  7128. ,{ "pid":12345, "tid":7, "ts":1718090301794837, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7129. ,{ "pid":12345, "tid":7, "ts":1718090301794919, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Environment.cpp" }}
  7130. ,{ "pid":12345, "tid":7, "ts":1718090301794918, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Environment.cpp" }}
  7131. ,{ "pid":12345, "tid":7, "ts":1718090301794992, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7132. ,{ "pid":12345, "tid":7, "ts":1718090301795071, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/DateTime.cpp" }}
  7133. ,{ "pid":12345, "tid":7, "ts":1718090301795070, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/DateTime.cpp" }}
  7134. ,{ "pid":12345, "tid":7, "ts":1718090301795165, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7135. ,{ "pid":12345, "tid":7, "ts":1718090301795246, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/CLRConfig.cpp" }}
  7136. ,{ "pid":12345, "tid":7, "ts":1718090301795245, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/CLRConfig.cpp" }}
  7137. ,{ "pid":12345, "tid":7, "ts":1718090301795314, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7138. ,{ "pid":12345, "tid":7, "ts":1718090301795382, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/AppDomain.h" }}
  7139. ,{ "pid":12345, "tid":7, "ts":1718090301795382, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/AppDomain.h" }}
  7140. ,{ "pid":12345, "tid":7, "ts":1718090301795465, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7141. ,{ "pid":12345, "tid":7, "ts":1718090301795539, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/OSSpecificSynchronizationContext.h" }}
  7142. ,{ "pid":12345, "tid":7, "ts":1718090301795537, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/OSSpecificSynchronizationContext.h" }}
  7143. ,{ "pid":12345, "tid":7, "ts":1718090301795596, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7144. ,{ "pid":12345, "tid":7, "ts":1718090301795662, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Monitor.cpp" }}
  7145. ,{ "pid":12345, "tid":7, "ts":1718090301795661, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Monitor.cpp" }}
  7146. ,{ "pid":12345, "tid":7, "ts":1718090301795747, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7147. ,{ "pid":12345, "tid":7, "ts":1718090301795832, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsPrincipal.h" }}
  7148. ,{ "pid":12345, "tid":7, "ts":1718090301795817, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsPrincipal.h" }}
  7149. ,{ "pid":12345, "tid":7, "ts":1718090301795907, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7150. ,{ "pid":12345, "tid":7, "ts":1718090301795966, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Policy/Evidence.cpp" }}
  7151. ,{ "pid":12345, "tid":7, "ts":1718090301795965, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Policy/Evidence.cpp" }}
  7152. ,{ "pid":12345, "tid":7, "ts":1718090301796032, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7153. ,{ "pid":12345, "tid":7, "ts":1718090301796110, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting/RemotingServices.h" }}
  7154. ,{ "pid":12345, "tid":7, "ts":1718090301796108, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting/RemotingServices.h" }}
  7155. ,{ "pid":12345, "tid":7, "ts":1718090301796224, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7156. ,{ "pid":12345, "tid":7, "ts":1718090301796308, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/AsyncResult.cpp" }}
  7157. ,{ "pid":12345, "tid":7, "ts":1718090301796306, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/AsyncResult.cpp" }}
  7158. ,{ "pid":12345, "tid":7, "ts":1718090301796387, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7159. ,{ "pid":12345, "tid":7, "ts":1718090301796472, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/Marshal.h" }}
  7160. ,{ "pid":12345, "tid":7, "ts":1718090301796471, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/Marshal.h" }}
  7161. ,{ "pid":12345, "tid":7, "ts":1718090301796562, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7162. ,{ "pid":12345, "tid":7, "ts":1718090301796638, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimePropertyInfo.cpp" }}
  7163. ,{ "pid":12345, "tid":7, "ts":1718090301796636, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimePropertyInfo.cpp" }}
  7164. ,{ "pid":12345, "tid":7, "ts":1718090301796725, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7165. ,{ "pid":12345, "tid":7, "ts":1718090301796820, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeFieldInfo.h" }}
  7166. ,{ "pid":12345, "tid":7, "ts":1718090301796817, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeFieldInfo.h" }}
  7167. ,{ "pid":12345, "tid":7, "ts":1718090301796913, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7168. ,{ "pid":12345, "tid":7, "ts":1718090301796997, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeAssembly.cpp" }}
  7169. ,{ "pid":12345, "tid":7, "ts":1718090301796995, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeAssembly.cpp" }}
  7170. ,{ "pid":12345, "tid":7, "ts":1718090301797078, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7171. ,{ "pid":12345, "tid":7, "ts":1718090301797170, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/MethodBase.h" }}
  7172. ,{ "pid":12345, "tid":7, "ts":1718090301797169, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/MethodBase.h" }}
  7173. ,{ "pid":12345, "tid":7, "ts":1718090301797248, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7174. ,{ "pid":12345, "tid":7, "ts":1718090301797331, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/CustomAttributeData.cpp" }}
  7175. ,{ "pid":12345, "tid":7, "ts":1718090301797329, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/CustomAttributeData.cpp" }}
  7176. ,{ "pid":12345, "tid":7, "ts":1718090301797396, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7177. ,{ "pid":12345, "tid":7, "ts":1718090301797467, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/MonoIO.h" }}
  7178. ,{ "pid":12345, "tid":7, "ts":1718090301797465, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/MonoIO.h" }}
  7179. ,{ "pid":12345, "tid":7, "ts":1718090301797533, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7180. ,{ "pid":12345, "tid":7, "ts":1718090301797619, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/RegionInfo.cpp" }}
  7181. ,{ "pid":12345, "tid":7, "ts":1718090301797617, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/RegionInfo.cpp" }}
  7182. ,{ "pid":12345, "tid":7, "ts":1718090301797674, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7183. ,{ "pid":12345, "tid":7, "ts":1718090301797769, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CultureData.h" }}
  7184. ,{ "pid":12345, "tid":7, "ts":1718090301797768, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CultureData.h" }}
  7185. ,{ "pid":12345, "tid":7, "ts":1718090301797833, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7186. ,{ "pid":12345, "tid":7, "ts":1718090301797929, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Diagnostics/StackTrace.h" }}
  7187. ,{ "pid":12345, "tid":7, "ts":1718090301797928, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Diagnostics/StackTrace.h" }}
  7188. ,{ "pid":12345, "tid":7, "ts":1718090301797995, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7189. ,{ "pid":12345, "tid":7, "ts":1718090301798071, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/SafeStringMarshal.cpp" }}
  7190. ,{ "pid":12345, "tid":7, "ts":1718090301798070, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/SafeStringMarshal.cpp" }}
  7191. ,{ "pid":12345, "tid":7, "ts":1718090301798230, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/Runtime.h" }}
  7192. ,{ "pid":12345, "tid":7, "ts":1718090301798228, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/Runtime.h" }}
  7193. ,{ "pid":12345, "tid":7, "ts":1718090301798299, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7194. ,{ "pid":12345, "tid":7, "ts":1718090301798423, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7195. ,{ "pid":12345, "tid":7, "ts":1718090301798503, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/NullGC.cpp" }}
  7196. ,{ "pid":12345, "tid":7, "ts":1718090301798502, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/NullGC.cpp" }}
  7197. ,{ "pid":12345, "tid":7, "ts":1718090301798577, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7198. ,{ "pid":12345, "tid":7, "ts":1718090301798650, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/AppendOnlyGCHashMap.h" }}
  7199. ,{ "pid":12345, "tid":7, "ts":1718090301798649, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/AppendOnlyGCHashMap.h" }}
  7200. ,{ "pid":12345, "tid":7, "ts":1718090301798736, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7201. ,{ "pid":12345, "tid":7, "ts":1718090301798877, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-metadata.h" }}
  7202. ,{ "pid":12345, "tid":7, "ts":1718090301798876, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-metadata.h" }}
  7203. ,{ "pid":12345, "tid":7, "ts":1718090301798957, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7204. ,{ "pid":12345, "tid":7, "ts":1718090301799027, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/zutil.h" }}
  7205. ,{ "pid":12345, "tid":7, "ts":1718090301799026, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/zutil.h" }}
  7206. ,{ "pid":12345, "tid":7, "ts":1718090301799096, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7207. ,{ "pid":12345, "tid":7, "ts":1718090301799175, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/README" }}
  7208. ,{ "pid":12345, "tid":7, "ts":1718090301799242, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7209. ,{ "pid":12345, "tid":7, "ts":1718090301799302, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/inffast.c" }}
  7210. ,{ "pid":12345, "tid":7, "ts":1718090301799302, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inffast.c" }}
  7211. ,{ "pid":12345, "tid":7, "ts":1718090301799373, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7212. ,{ "pid":12345, "tid":7, "ts":1718090301799475, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/deflate.c" }}
  7213. ,{ "pid":12345, "tid":7, "ts":1718090301799474, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/deflate.c" }}
  7214. ,{ "pid":12345, "tid":7, "ts":1718090301799600, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7215. ,{ "pid":12345, "tid":7, "ts":1718090301799688, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xxHash/README.md" }}
  7216. ,{ "pid":12345, "tid":7, "ts":1718090301799759, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7217. ,{ "pid":12345, "tid":7, "ts":1718090301799836, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/support/libm/math_private.h" }}
  7218. ,{ "pid":12345, "tid":7, "ts":1718090301799834, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/support/libm/math_private.h" }}
  7219. ,{ "pid":12345, "tid":7, "ts":1718090301799925, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7220. ,{ "pid":12345, "tid":7, "ts":1718090301800013, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/unlocked.h" }}
  7221. ,{ "pid":12345, "tid":7, "ts":1718090301800012, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/unlocked.h" }}
  7222. ,{ "pid":12345, "tid":7, "ts":1718090301800127, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7223. ,{ "pid":12345, "tid":7, "ts":1718090301800206, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/parse.c" }}
  7224. ,{ "pid":12345, "tid":7, "ts":1718090301800205, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/parse.c" }}
  7225. ,{ "pid":12345, "tid":7, "ts":1718090301800282, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7226. ,{ "pid":12345, "tid":7, "ts":1718090301800344, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/networking-windows.c" }}
  7227. ,{ "pid":12345, "tid":7, "ts":1718090301800343, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/networking-windows.c" }}
  7228. ,{ "pid":12345, "tid":7, "ts":1718090301800421, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7229. ,{ "pid":12345, "tid":7, "ts":1718090301800585, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7230. ,{ "pid":12345, "tid":7, "ts":1718090301800688, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads.c" }}
  7231. ,{ "pid":12345, "tid":7, "ts":1718090301800687, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads.c" }}
  7232. ,{ "pid":12345, "tid":7, "ts":1718090301800784, "dur":692, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7233. ,{ "pid":12345, "tid":7, "ts":1718090301801481, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-mach-helper.c" }}
  7234. ,{ "pid":12345, "tid":7, "ts":1718090301801480, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-mach-helper.c" }}
  7235. ,{ "pid":12345, "tid":7, "ts":1718090301801568, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7236. ,{ "pid":12345, "tid":7, "ts":1718090301801649, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-stdlib.h" }}
  7237. ,{ "pid":12345, "tid":7, "ts":1718090301801648, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-stdlib.h" }}
  7238. ,{ "pid":12345, "tid":7, "ts":1718090301801720, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7239. ,{ "pid":12345, "tid":7, "ts":1718090301801822, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-rand.h" }}
  7240. ,{ "pid":12345, "tid":7, "ts":1718090301801820, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-rand.h" }}
  7241. ,{ "pid":12345, "tid":7, "ts":1718090301801900, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7242. ,{ "pid":12345, "tid":7, "ts":1718090301802001, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-proclib-windows.c" }}
  7243. ,{ "pid":12345, "tid":7, "ts":1718090301802000, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-proclib-windows.c" }}
  7244. ,{ "pid":12345, "tid":7, "ts":1718090301802076, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7245. ,{ "pid":12345, "tid":7, "ts":1718090301802164, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-os-wait-win32-uwp.c" }}
  7246. ,{ "pid":12345, "tid":7, "ts":1718090301802162, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-os-wait-win32-uwp.c" }}
  7247. ,{ "pid":12345, "tid":7, "ts":1718090301802239, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7248. ,{ "pid":12345, "tid":7, "ts":1718090301802325, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-networkinterfaces.c" }}
  7249. ,{ "pid":12345, "tid":7, "ts":1718090301802324, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-networkinterfaces.c" }}
  7250. ,{ "pid":12345, "tid":7, "ts":1718090301802415, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7251. ,{ "pid":12345, "tid":7, "ts":1718090301802508, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-membar.h" }}
  7252. ,{ "pid":12345, "tid":7, "ts":1718090301802506, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-membar.h" }}
  7253. ,{ "pid":12345, "tid":7, "ts":1718090301802576, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7254. ,{ "pid":12345, "tid":7, "ts":1718090301802668, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-log-windows.c" }}
  7255. ,{ "pid":12345, "tid":7, "ts":1718090301802667, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-log-windows.c" }}
  7256. ,{ "pid":12345, "tid":7, "ts":1718090301802737, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7257. ,{ "pid":12345, "tid":7, "ts":1718090301802806, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-linked-list-set.h" }}
  7258. ,{ "pid":12345, "tid":7, "ts":1718090301802805, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-linked-list-set.h" }}
  7259. ,{ "pid":12345, "tid":7, "ts":1718090301802872, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7260. ,{ "pid":12345, "tid":7, "ts":1718090301802934, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-hwcap.h" }}
  7261. ,{ "pid":12345, "tid":7, "ts":1718090301802933, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-hwcap.h" }}
  7262. ,{ "pid":12345, "tid":7, "ts":1718090301802994, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7263. ,{ "pid":12345, "tid":7, "ts":1718090301803057, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-forward.h" }}
  7264. ,{ "pid":12345, "tid":7, "ts":1718090301803056, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-forward.h" }}
  7265. ,{ "pid":12345, "tid":7, "ts":1718090301803108, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7266. ,{ "pid":12345, "tid":7, "ts":1718090301803164, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-embed.h" }}
  7267. ,{ "pid":12345, "tid":7, "ts":1718090301803163, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-embed.h" }}
  7268. ,{ "pid":12345, "tid":7, "ts":1718090301803227, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7269. ,{ "pid":12345, "tid":7, "ts":1718090301803296, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl-posix.c" }}
  7270. ,{ "pid":12345, "tid":7, "ts":1718090301803295, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl-posix.c" }}
  7271. ,{ "pid":12345, "tid":7, "ts":1718090301803355, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7272. ,{ "pid":12345, "tid":7, "ts":1718090301803424, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-coop-mutex.h" }}
  7273. ,{ "pid":12345, "tid":7, "ts":1718090301803423, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-coop-mutex.h" }}
  7274. ,{ "pid":12345, "tid":7, "ts":1718090301803491, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7275. ,{ "pid":12345, "tid":7, "ts":1718090301803582, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-codeman.h" }}
  7276. ,{ "pid":12345, "tid":7, "ts":1718090301803581, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-codeman.h" }}
  7277. ,{ "pid":12345, "tid":7, "ts":1718090301803659, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7278. ,{ "pid":12345, "tid":7, "ts":1718090301803715, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mach-support-x86.c" }}
  7279. ,{ "pid":12345, "tid":7, "ts":1718090301803714, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mach-support-x86.c" }}
  7280. ,{ "pid":12345, "tid":7, "ts":1718090301803769, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7281. ,{ "pid":12345, "tid":7, "ts":1718090301803828, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/lock-free-alloc.h" }}
  7282. ,{ "pid":12345, "tid":7, "ts":1718090301803827, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/lock-free-alloc.h" }}
  7283. ,{ "pid":12345, "tid":7, "ts":1718090301803939, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/gc_wrapper.h" }}
  7284. ,{ "pid":12345, "tid":7, "ts":1718090301803938, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/gc_wrapper.h" }}
  7285. ,{ "pid":12345, "tid":7, "ts":1718090301804012, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7286. ,{ "pid":12345, "tid":7, "ts":1718090301804073, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/checked-build.h" }}
  7287. ,{ "pid":12345, "tid":7, "ts":1718090301804072, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/checked-build.h" }}
  7288. ,{ "pid":12345, "tid":7, "ts":1718090301804131, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7289. ,{ "pid":12345, "tid":7, "ts":1718090301804191, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-thread-pool.h" }}
  7290. ,{ "pid":12345, "tid":7, "ts":1718090301804190, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-thread-pool.h" }}
  7291. ,{ "pid":12345, "tid":7, "ts":1718090301804248, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7292. ,{ "pid":12345, "tid":7, "ts":1718090301804326, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-qsort.c" }}
  7293. ,{ "pid":12345, "tid":7, "ts":1718090301804325, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-qsort.c" }}
  7294. ,{ "pid":12345, "tid":7, "ts":1718090301804409, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7295. ,{ "pid":12345, "tid":7, "ts":1718090301804497, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-pinning.c" }}
  7296. ,{ "pid":12345, "tid":7, "ts":1718090301804496, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-pinning.c" }}
  7297. ,{ "pid":12345, "tid":7, "ts":1718090301804560, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7298. ,{ "pid":12345, "tid":7, "ts":1718090301804631, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-marksweep.c" }}
  7299. ,{ "pid":12345, "tid":7, "ts":1718090301804630, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-marksweep.c" }}
  7300. ,{ "pid":12345, "tid":7, "ts":1718090301804708, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7301. ,{ "pid":12345, "tid":7, "ts":1718090301804790, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-hash-table.h" }}
  7302. ,{ "pid":12345, "tid":7, "ts":1718090301804789, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-hash-table.h" }}
  7303. ,{ "pid":12345, "tid":7, "ts":1718090301804873, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7304. ,{ "pid":12345, "tid":7, "ts":1718090301804947, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-fin-weak-hash.c" }}
  7305. ,{ "pid":12345, "tid":7, "ts":1718090301804945, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-fin-weak-hash.c" }}
  7306. ,{ "pid":12345, "tid":7, "ts":1718090301805009, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7307. ,{ "pid":12345, "tid":7, "ts":1718090301805072, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-cardtable.h" }}
  7308. ,{ "pid":12345, "tid":7, "ts":1718090301805071, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-cardtable.h" }}
  7309. ,{ "pid":12345, "tid":7, "ts":1718090301805131, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7310. ,{ "pid":12345, "tid":7, "ts":1718090301805192, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/mini-arm64.h" }}
  7311. ,{ "pid":12345, "tid":7, "ts":1718090301805191, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/mini-arm64.h" }}
  7312. ,{ "pid":12345, "tid":7, "ts":1718090301805247, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7313. ,{ "pid":12345, "tid":7, "ts":1718090301805308, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/debugger-agent.c" }}
  7314. ,{ "pid":12345, "tid":7, "ts":1718090301805307, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/debugger-agent.c" }}
  7315. ,{ "pid":12345, "tid":7, "ts":1718090301805368, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7316. ,{ "pid":12345, "tid":7, "ts":1718090301805433, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32semaphore.h" }}
  7317. ,{ "pid":12345, "tid":7, "ts":1718090301805432, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32semaphore.h" }}
  7318. ,{ "pid":12345, "tid":7, "ts":1718090301805495, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7319. ,{ "pid":12345, "tid":7, "ts":1718090301805580, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-unix.c" }}
  7320. ,{ "pid":12345, "tid":7, "ts":1718090301805578, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-unix.c" }}
  7321. ,{ "pid":12345, "tid":7, "ts":1718090301805655, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7322. ,{ "pid":12345, "tid":7, "ts":1718090301805724, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32mutex-unix.c" }}
  7323. ,{ "pid":12345, "tid":7, "ts":1718090301805722, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32mutex-unix.c" }}
  7324. ,{ "pid":12345, "tid":7, "ts":1718090301805804, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7325. ,{ "pid":12345, "tid":7, "ts":1718090301805895, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file-win32.c" }}
  7326. ,{ "pid":12345, "tid":7, "ts":1718090301805893, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file-win32.c" }}
  7327. ,{ "pid":12345, "tid":7, "ts":1718090301805994, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7328. ,{ "pid":12345, "tid":7, "ts":1718090301806074, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32event-win32.c" }}
  7329. ,{ "pid":12345, "tid":7, "ts":1718090301806073, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32event-win32.c" }}
  7330. ,{ "pid":12345, "tid":7, "ts":1718090301806154, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7331. ,{ "pid":12345, "tid":7, "ts":1718090301806263, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/unity-utils.h" }}
  7332. ,{ "pid":12345, "tid":7, "ts":1718090301806262, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/unity-utils.h" }}
  7333. ,{ "pid":12345, "tid":7, "ts":1718090301806337, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7334. ,{ "pid":12345, "tid":7, "ts":1718090301806431, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threads-types.h" }}
  7335. ,{ "pid":12345, "tid":7, "ts":1718090301806430, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threads-types.h" }}
  7336. ,{ "pid":12345, "tid":7, "ts":1718090301806503, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7337. ,{ "pid":12345, "tid":7, "ts":1718090301806595, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/tabledefs.h" }}
  7338. ,{ "pid":12345, "tid":7, "ts":1718090301806593, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/tabledefs.h" }}
  7339. ,{ "pid":12345, "tid":7, "ts":1718090301806673, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7340. ,{ "pid":12345, "tid":7, "ts":1718090301806758, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sre-internals.h" }}
  7341. ,{ "pid":12345, "tid":7, "ts":1718090301806756, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sre-internals.h" }}
  7342. ,{ "pid":12345, "tid":7, "ts":1718090301806834, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7343. ,{ "pid":12345, "tid":7, "ts":1718090301806911, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-new-bridge.c" }}
  7344. ,{ "pid":12345, "tid":7, "ts":1718090301806909, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-new-bridge.c" }}
  7345. ,{ "pid":12345, "tid":7, "ts":1718090301806988, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7346. ,{ "pid":12345, "tid":7, "ts":1718090301807087, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/seq-points-data.h" }}
  7347. ,{ "pid":12345, "tid":7, "ts":1718090301807086, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/seq-points-data.h" }}
  7348. ,{ "pid":12345, "tid":7, "ts":1718090301807171, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7349. ,{ "pid":12345, "tid":7, "ts":1718090301807255, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/runtime.h" }}
  7350. ,{ "pid":12345, "tid":7, "ts":1718090301807253, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/runtime.h" }}
  7351. ,{ "pid":12345, "tid":7, "ts":1718090301807349, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7352. ,{ "pid":12345, "tid":7, "ts":1718090301807436, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/reflection-internals.h" }}
  7353. ,{ "pid":12345, "tid":7, "ts":1718090301807434, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/reflection-internals.h" }}
  7354. ,{ "pid":12345, "tid":7, "ts":1718090301807518, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7355. ,{ "pid":12345, "tid":7, "ts":1718090301807610, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/profiler.c" }}
  7356. ,{ "pid":12345, "tid":7, "ts":1718090301807609, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/profiler.c" }}
  7357. ,{ "pid":12345, "tid":7, "ts":1718090301807699, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7358. ,{ "pid":12345, "tid":7, "ts":1718090301807797, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/opcodes.h" }}
  7359. ,{ "pid":12345, "tid":7, "ts":1718090301807795, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/opcodes.h" }}
  7360. ,{ "pid":12345, "tid":7, "ts":1718090301807877, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7361. ,{ "pid":12345, "tid":7, "ts":1718090301807959, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/number-ms.h" }}
  7362. ,{ "pid":12345, "tid":7, "ts":1718090301807958, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/number-ms.h" }}
  7363. ,{ "pid":12345, "tid":7, "ts":1718090301808042, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7364. ,{ "pid":12345, "tid":7, "ts":1718090301808150, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-security-windows.c" }}
  7365. ,{ "pid":12345, "tid":7, "ts":1718090301808147, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-security-windows.c" }}
  7366. ,{ "pid":12345, "tid":7, "ts":1718090301808232, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7367. ,{ "pid":12345, "tid":7, "ts":1718090301808332, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-perfcounters-def.h" }}
  7368. ,{ "pid":12345, "tid":7, "ts":1718090301808330, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-perfcounters-def.h" }}
  7369. ,{ "pid":12345, "tid":7, "ts":1718090301808429, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7370. ,{ "pid":12345, "tid":7, "ts":1718090301808521, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-debug.h" }}
  7371. ,{ "pid":12345, "tid":7, "ts":1718090301808520, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-debug.h" }}
  7372. ,{ "pid":12345, "tid":7, "ts":1718090301808578, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7373. ,{ "pid":12345, "tid":7, "ts":1718090301808666, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-conc-hash.c" }}
  7374. ,{ "pid":12345, "tid":7, "ts":1718090301808665, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-conc-hash.c" }}
  7375. ,{ "pid":12345, "tid":7, "ts":1718090301808737, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7376. ,{ "pid":12345, "tid":7, "ts":1718090301808841, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/metadata.h" }}
  7377. ,{ "pid":12345, "tid":7, "ts":1718090301808840, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/metadata.h" }}
  7378. ,{ "pid":12345, "tid":7, "ts":1718090301808929, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7379. ,{ "pid":12345, "tid":7, "ts":1718090301809046, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mempool-internals.h" }}
  7380. ,{ "pid":12345, "tid":7, "ts":1718090301809044, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mempool-internals.h" }}
  7381. ,{ "pid":12345, "tid":7, "ts":1718090301809138, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7382. ,{ "pid":12345, "tid":7, "ts":1718090301809255, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/lock-tracer.c" }}
  7383. ,{ "pid":12345, "tid":7, "ts":1718090301809253, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/lock-tracer.c" }}
  7384. ,{ "pid":12345, "tid":7, "ts":1718090301809355, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7385. ,{ "pid":12345, "tid":7, "ts":1718090301809436, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/jit-info.c" }}
  7386. ,{ "pid":12345, "tid":7, "ts":1718090301809434, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/jit-info.c" }}
  7387. ,{ "pid":12345, "tid":7, "ts":1718090301809537, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7388. ,{ "pid":12345, "tid":7, "ts":1718090301809642, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/icall-windows.c" }}
  7389. ,{ "pid":12345, "tid":7, "ts":1718090301809640, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/icall-windows.c" }}
  7390. ,{ "pid":12345, "tid":7, "ts":1718090301809745, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7391. ,{ "pid":12345, "tid":7, "ts":1718090301809847, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/gc.c" }}
  7392. ,{ "pid":12345, "tid":7, "ts":1718090301809845, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/gc.c" }}
  7393. ,{ "pid":12345, "tid":7, "ts":1718090301809929, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7394. ,{ "pid":12345, "tid":7, "ts":1718090301810031, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/file-mmap-posix.c" }}
  7395. ,{ "pid":12345, "tid":7, "ts":1718090301810029, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/file-mmap-posix.c" }}
  7396. ,{ "pid":12345, "tid":7, "ts":1718090301810122, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7397. ,{ "pid":12345, "tid":7, "ts":1718090301810211, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/environment.c" }}
  7398. ,{ "pid":12345, "tid":7, "ts":1718090301810210, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/environment.c" }}
  7399. ,{ "pid":12345, "tid":7, "ts":1718090301810300, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7400. ,{ "pid":12345, "tid":7, "ts":1718090301810392, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/domain-internals.h" }}
  7401. ,{ "pid":12345, "tid":7, "ts":1718090301810391, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/domain-internals.h" }}
  7402. ,{ "pid":12345, "tid":7, "ts":1718090301810462, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7403. ,{ "pid":12345, "tid":7, "ts":1718090301810563, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/debug-helpers.h" }}
  7404. ,{ "pid":12345, "tid":7, "ts":1718090301810561, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/debug-helpers.h" }}
  7405. ,{ "pid":12345, "tid":7, "ts":1718090301810628, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7406. ,{ "pid":12345, "tid":7, "ts":1718090301810717, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/coree.h" }}
  7407. ,{ "pid":12345, "tid":7, "ts":1718090301810716, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/coree.h" }}
  7408. ,{ "pid":12345, "tid":7, "ts":1718090301810787, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7409. ,{ "pid":12345, "tid":7, "ts":1718090301810873, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/cominterop.c" }}
  7410. ,{ "pid":12345, "tid":7, "ts":1718090301810872, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/cominterop.c" }}
  7411. ,{ "pid":12345, "tid":7, "ts":1718090301810942, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7412. ,{ "pid":12345, "tid":7, "ts":1718090301811027, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/class-getters.h" }}
  7413. ,{ "pid":12345, "tid":7, "ts":1718090301811026, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class-getters.h" }}
  7414. ,{ "pid":12345, "tid":7, "ts":1718090301811101, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7415. ,{ "pid":12345, "tid":7, "ts":1718090301811189, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/attach.h" }}
  7416. ,{ "pid":12345, "tid":7, "ts":1718090301811187, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/attach.h" }}
  7417. ,{ "pid":12345, "tid":7, "ts":1718090301811273, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7418. ,{ "pid":12345, "tid":7, "ts":1718090301811361, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/appdomain-icalls.h" }}
  7419. ,{ "pid":12345, "tid":7, "ts":1718090301811359, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/appdomain-icalls.h" }}
  7420. ,{ "pid":12345, "tid":7, "ts":1718090301811459, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7421. ,{ "pid":12345, "tid":7, "ts":1718090301811576, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gunicode-win32-uwp.c" }}
  7422. ,{ "pid":12345, "tid":7, "ts":1718090301811574, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gunicode-win32-uwp.c" }}
  7423. ,{ "pid":12345, "tid":7, "ts":1718090301811647, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7424. ,{ "pid":12345, "tid":7, "ts":1718090301811722, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gqsort.c" }}
  7425. ,{ "pid":12345, "tid":7, "ts":1718090301811720, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gqsort.c" }}
  7426. ,{ "pid":12345, "tid":7, "ts":1718090301811798, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7427. ,{ "pid":12345, "tid":7, "ts":1718090301811876, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gmem.c" }}
  7428. ,{ "pid":12345, "tid":7, "ts":1718090301811875, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gmem.c" }}
  7429. ,{ "pid":12345, "tid":7, "ts":1718090301811948, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7430. ,{ "pid":12345, "tid":7, "ts":1718090301812027, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gfile-unity.c" }}
  7431. ,{ "pid":12345, "tid":7, "ts":1718090301812025, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gfile-unity.c" }}
  7432. ,{ "pid":12345, "tid":7, "ts":1718090301812100, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7433. ,{ "pid":12345, "tid":7, "ts":1718090301812203, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/cil/tables.def" }}
  7434. ,{ "pid":12345, "tid":7, "ts":1718090301812291, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7435. ,{ "pid":12345, "tid":7, "ts":1718090301812373, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/arch/arm/arm-codegen.h" }}
  7436. ,{ "pid":12345, "tid":7, "ts":1718090301812371, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/arch/arm/arm-codegen.h" }}
  7437. ,{ "pid":12345, "tid":7, "ts":1718090301812447, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7438. ,{ "pid":12345, "tid":7, "ts":1718090301812531, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/internal/sparsehashtable.h" }}
  7439. ,{ "pid":12345, "tid":7, "ts":1718090301812529, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/internal/sparsehashtable.h" }}
  7440. ,{ "pid":12345, "tid":7, "ts":1718090301812588, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7441. ,{ "pid":12345, "tid":7, "ts":1718090301812692, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/windows-untested/stdafx.c" }}
  7442. ,{ "pid":12345, "tid":7, "ts":1718090301812690, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/windows-untested/stdafx.c" }}
  7443. ,{ "pid":12345, "tid":7, "ts":1718090301812756, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7444. ,{ "pid":12345, "tid":7, "ts":1718090301812842, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tools/if_mach.c" }}
  7445. ,{ "pid":12345, "tid":7, "ts":1718090301812840, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tools/if_mach.c" }}
  7446. ,{ "pid":12345, "tid":7, "ts":1718090301812913, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7447. ,{ "pid":12345, "tid":7, "ts":1718090301812994, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/subthread_create.c" }}
  7448. ,{ "pid":12345, "tid":7, "ts":1718090301812993, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/subthread_create.c" }}
  7449. ,{ "pid":12345, "tid":7, "ts":1718090301813082, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7450. ,{ "pid":12345, "tid":7, "ts":1718090301813184, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/initsecondarythread.c" }}
  7451. ,{ "pid":12345, "tid":7, "ts":1718090301813182, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/initsecondarythread.c" }}
  7452. ,{ "pid":12345, "tid":7, "ts":1718090301813273, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7453. ,{ "pid":12345, "tid":7, "ts":1718090301813354, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/ptr_chck.c" }}
  7454. ,{ "pid":12345, "tid":7, "ts":1718090301813353, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/ptr_chck.c" }}
  7455. ,{ "pid":12345, "tid":7, "ts":1718090301813456, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7456. ,{ "pid":12345, "tid":7, "ts":1718090301813553, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/misc.c" }}
  7457. ,{ "pid":12345, "tid":7, "ts":1718090301813551, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/misc.c" }}
  7458. ,{ "pid":12345, "tid":7, "ts":1718090301813616, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7459. ,{ "pid":12345, "tid":7, "ts":1718090301813697, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/test_and_set_t_is_ao_t.h" }}
  7460. ,{ "pid":12345, "tid":7, "ts":1718090301813695, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/test_and_set_t_is_ao_t.h" }}
  7461. ,{ "pid":12345, "tid":7, "ts":1718090301813775, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7462. ,{ "pid":12345, "tid":7, "ts":1718090301813854, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/msftc/x86_64.h" }}
  7463. ,{ "pid":12345, "tid":7, "ts":1718090301813853, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/msftc/x86_64.h" }}
  7464. ,{ "pid":12345, "tid":7, "ts":1718090301813927, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7465. ,{ "pid":12345, "tid":7, "ts":1718090301814008, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/ordered_stores_only.h" }}
  7466. ,{ "pid":12345, "tid":7, "ts":1718090301814005, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/ordered_stores_only.h" }}
  7467. ,{ "pid":12345, "tid":7, "ts":1718090301814093, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7468. ,{ "pid":12345, "tid":7, "ts":1718090301814193, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/char_atomic_load.h" }}
  7469. ,{ "pid":12345, "tid":7, "ts":1718090301814190, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/char_atomic_load.h" }}
  7470. ,{ "pid":12345, "tid":7, "ts":1718090301814276, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7471. ,{ "pid":12345, "tid":7, "ts":1718090301814346, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/hpc/ia64.h" }}
  7472. ,{ "pid":12345, "tid":7, "ts":1718090301814344, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/hpc/ia64.h" }}
  7473. ,{ "pid":12345, "tid":7, "ts":1718090301814412, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7474. ,{ "pid":12345, "tid":7, "ts":1718090301814502, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/powerpc.h" }}
  7475. ,{ "pid":12345, "tid":7, "ts":1718090301814500, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/powerpc.h" }}
  7476. ,{ "pid":12345, "tid":7, "ts":1718090301814582, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7477. ,{ "pid":12345, "tid":7, "ts":1718090301814674, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/generic-small.h" }}
  7478. ,{ "pid":12345, "tid":7, "ts":1718090301814672, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/generic-small.h" }}
  7479. ,{ "pid":12345, "tid":7, "ts":1718090301814758, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7480. ,{ "pid":12345, "tid":7, "ts":1718090301814844, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/emul_cas.h" }}
  7481. ,{ "pid":12345, "tid":7, "ts":1718090301814842, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/emul_cas.h" }}
  7482. ,{ "pid":12345, "tid":7, "ts":1718090301814938, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7483. ,{ "pid":12345, "tid":7, "ts":1718090301815033, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/generalize.h" }}
  7484. ,{ "pid":12345, "tid":7, "ts":1718090301815031, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/generalize.h" }}
  7485. ,{ "pid":12345, "tid":7, "ts":1718090301815124, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7486. ,{ "pid":12345, "tid":7, "ts":1718090301815218, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/doc/README.txt" }}
  7487. ,{ "pid":12345, "tid":7, "ts":1718090301815216, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/doc/README.txt" }}
  7488. ,{ "pid":12345, "tid":7, "ts":1718090301815282, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7489. ,{ "pid":12345, "tid":7, "ts":1718090301815378, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/pthread_stop_world.h" }}
  7490. ,{ "pid":12345, "tid":7, "ts":1718090301815377, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/pthread_stop_world.h" }}
  7491. ,{ "pid":12345, "tid":7, "ts":1718090301815463, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7492. ,{ "pid":12345, "tid":7, "ts":1718090301815551, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/gcconfig.h" }}
  7493. ,{ "pid":12345, "tid":7, "ts":1718090301815550, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/gcconfig.h" }}
  7494. ,{ "pid":12345, "tid":7, "ts":1718090301815625, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7495. ,{ "pid":12345, "tid":7, "ts":1718090301815775, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/GoogleMobileAds.iOS.dll" }}
  7496. ,{ "pid":12345, "tid":7, "ts":1718090301815773, "dur":211, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/GoogleMobileAds.iOS-FeaturesChecked.txt" }}
  7497. ,{ "pid":12345, "tid":7, "ts":1718090301816048, "dur":240, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.UnityAnalyticsModule-FeaturesChecked.txt" }}
  7498. ,{ "pid":12345, "tid":7, "ts":1718090301816332, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.AudioModule.dll" }}
  7499. ,{ "pid":12345, "tid":7, "ts":1718090301816331, "dur":410, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.AudioModule-FeaturesChecked.txt" }}
  7500. ,{ "pid":12345, "tid":7, "ts":1718090301816796, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.Purchasing.AppleMacosStub.dll" }}
  7501. ,{ "pid":12345, "tid":7, "ts":1718090301816795, "dur":295, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.AppleMacosStub-FeaturesChecked.txt" }}
  7502. ,{ "pid":12345, "tid":7, "ts":1718090301817131, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/System.dll" }}
  7503. ,{ "pid":12345, "tid":7, "ts":1718090301817130, "dur":210, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System-FeaturesChecked.txt" }}
  7504. ,{ "pid":12345, "tid":7, "ts":1718090301817340, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7505. ,{ "pid":12345, "tid":7, "ts":1718090301817419, "dur":227, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.SharedInternalsModule-FeaturesChecked.txt" }}
  7506. ,{ "pid":12345, "tid":7, "ts":1718090301817685, "dur":306, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Firebase.Platform-FeaturesChecked.txt" }}
  7507. ,{ "pid":12345, "tid":7, "ts":1718090301818047, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Services.Core.Environments.Internal.dll" }}
  7508. ,{ "pid":12345, "tid":7, "ts":1718090301818045, "dur":270, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Environments.Internal-FeaturesChecked.txt" }}
  7509. ,{ "pid":12345, "tid":7, "ts":1718090301818358, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.InputLegacyModule.dll" }}
  7510. ,{ "pid":12345, "tid":7, "ts":1718090301818357, "dur":292, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.InputLegacyModule-FeaturesChecked.txt" }}
  7511. ,{ "pid":12345, "tid":7, "ts":1718090301818695, "dur":231, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Firebase.App-FeaturesChecked.txt" }}
  7512. ,{ "pid":12345, "tid":7, "ts":1718090301818964, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.UI.dll" }}
  7513. ,{ "pid":12345, "tid":7, "ts":1718090301818962, "dur":350, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.UI-FeaturesChecked.txt" }}
  7514. ,{ "pid":12345, "tid":7, "ts":1718090301819313, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7515. ,{ "pid":12345, "tid":7, "ts":1718090301819535, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/PlayerBuildProgramLibrary.Data.pdb" }}
  7516. ,{ "pid":12345, "tid":7, "ts":1718090301819381, "dur":535, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Runtime.Serialization-FeaturesChecked.txt" }}
  7517. ,{ "pid":12345, "tid":7, "ts":1718090301820576, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.Purchasing.AppleCore.dll" }}
  7518. ,{ "pid":12345, "tid":7, "ts":1718090301820816, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.Purchasing.WinRTStub.dll" }}
  7519. ,{ "pid":12345, "tid":7, "ts":1718090301819953, "dur":1432, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"GenerateNativePluginsForAssemblies Library/Bee/artifacts/iOS/AsyncPluginsFromLinker" }}
  7520. ,{ "pid":12345, "tid":7, "ts":1718090301821385, "dur":241, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7521. ,{ "pid":12345, "tid":7, "ts":1718090301821794, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/lib_burst_generated.a" }}
  7522. ,{ "pid":12345, "tid":7, "ts":1718090301821864, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7523. ,{ "pid":12345, "tid":7, "ts":1718090301821954, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/cord/tests/de_cmds.h" }}
  7524. ,{ "pid":12345, "tid":7, "ts":1718090301821953, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/cord/tests/de_cmds.h" }}
  7525. ,{ "pid":12345, "tid":7, "ts":1718090301822039, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7526. ,{ "pid":12345, "tid":7, "ts":1718090301822124, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/blacklst.c" }}
  7527. ,{ "pid":12345, "tid":7, "ts":1718090301822123, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/blacklst.c" }}
  7528. ,{ "pid":12345, "tid":7, "ts":1718090301822211, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7529. ,{ "pid":12345, "tid":7, "ts":1718090301822341, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/WindowsGames/Include/C/Baselib_ErrorState.inl.h" }}
  7530. ,{ "pid":12345, "tid":7, "ts":1718090301822338, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/WindowsGames/Include/C/Baselib_ErrorState.inl.h" }}
  7531. ,{ "pid":12345, "tid":7, "ts":1718090301822439, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7532. ,{ "pid":12345, "tid":7, "ts":1718090301822507, "dur":167, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Windows/Include/C/Baselib_DynamicLibrary.inl.h" }}
  7533. ,{ "pid":12345, "tid":7, "ts":1718090301822506, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Windows/Include/C/Baselib_DynamicLibrary.inl.h" }}
  7534. ,{ "pid":12345, "tid":7, "ts":1718090301822676, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7535. ,{ "pid":12345, "tid":7, "ts":1718090301822809, "dur":201, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/WebGL/Include/BaselibPlatformSpecificEnvironment.h" }}
  7536. ,{ "pid":12345, "tid":7, "ts":1718090301822808, "dur":203, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/WebGL/Include/BaselibPlatformSpecificEnvironment.h" }}
  7537. ,{ "pid":12345, "tid":7, "ts":1718090301823011, "dur":229, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7538. ,{ "pid":12345, "tid":7, "ts":1718090301823245, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/UniversalWindows/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  7539. ,{ "pid":12345, "tid":7, "ts":1718090301823244, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/UniversalWindows/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  7540. ,{ "pid":12345, "tid":7, "ts":1718090301823348, "dur":220, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7541. ,{ "pid":12345, "tid":7, "ts":1718090301823599, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Tvos/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  7542. ,{ "pid":12345, "tid":7, "ts":1718090301823597, "dur":126, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Tvos/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  7543. ,{ "pid":12345, "tid":7, "ts":1718090301823724, "dur":177, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7544. ,{ "pid":12345, "tid":7, "ts":1718090301823934, "dur":171, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/OSX/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  7545. ,{ "pid":12345, "tid":7, "ts":1718090301823932, "dur":173, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/OSX/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  7546. ,{ "pid":12345, "tid":7, "ts":1718090301824106, "dur":147, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7547. ,{ "pid":12345, "tid":7, "ts":1718090301824271, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Linux/Include/C/Baselib_ErrorState.inl.h" }}
  7548. ,{ "pid":12345, "tid":7, "ts":1718090301824269, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Linux/Include/C/Baselib_ErrorState.inl.h" }}
  7549. ,{ "pid":12345, "tid":7, "ts":1718090301824409, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7550. ,{ "pid":12345, "tid":7, "ts":1718090301824489, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/IOS/Include/C/Baselib_DynamicLibrary.inl.h" }}
  7551. ,{ "pid":12345, "tid":7, "ts":1718090301824487, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/IOS/Include/C/Baselib_DynamicLibrary.inl.h" }}
  7552. ,{ "pid":12345, "tid":7, "ts":1718090301824565, "dur":176, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7553. ,{ "pid":12345, "tid":7, "ts":1718090301824748, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Android/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  7554. ,{ "pid":12345, "tid":7, "ts":1718090301824746, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Android/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  7555. ,{ "pid":12345, "tid":7, "ts":1718090301824839, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7556. ,{ "pid":12345, "tid":7, "ts":1718090301824956, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/PostExternalInclude.h" }}
  7557. ,{ "pid":12345, "tid":7, "ts":1718090301824955, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/PostExternalInclude.h" }}
  7558. ,{ "pid":12345, "tid":7, "ts":1718090301825054, "dur":179, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7559. ,{ "pid":12345, "tid":7, "ts":1718090301825241, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/PlatformDetection.h" }}
  7560. ,{ "pid":12345, "tid":7, "ts":1718090301825239, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/PlatformDetection.h" }}
  7561. ,{ "pid":12345, "tid":7, "ts":1718090301825335, "dur":225, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7562. ,{ "pid":12345, "tid":7, "ts":1718090301825567, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/Assert.h" }}
  7563. ,{ "pid":12345, "tid":7, "ts":1718090301825565, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/Assert.h" }}
  7564. ,{ "pid":12345, "tid":7, "ts":1718090301825693, "dur":141, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7565. ,{ "pid":12345, "tid":7, "ts":1718090301825840, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/External/utfcpp/source/utf8.h" }}
  7566. ,{ "pid":12345, "tid":7, "ts":1718090301825838, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/External/utfcpp/source/utf8.h" }}
  7567. ,{ "pid":12345, "tid":7, "ts":1718090301825900, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7568. ,{ "pid":12345, "tid":7, "ts":1718090301826012, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Thread.h" }}
  7569. ,{ "pid":12345, "tid":7, "ts":1718090301826011, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Thread.h" }}
  7570. ,{ "pid":12345, "tid":7, "ts":1718090301826103, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7571. ,{ "pid":12345, "tid":7, "ts":1718090301826214, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/mpsc_node_queue.h" }}
  7572. ,{ "pid":12345, "tid":7, "ts":1718090301826213, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/mpsc_node_queue.h" }}
  7573. ,{ "pid":12345, "tid":7, "ts":1718090301826288, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7574. ,{ "pid":12345, "tid":7, "ts":1718090301826373, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Lock.h" }}
  7575. ,{ "pid":12345, "tid":7, "ts":1718090301826372, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Lock.h" }}
  7576. ,{ "pid":12345, "tid":7, "ts":1718090301826446, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7577. ,{ "pid":12345, "tid":7, "ts":1718090301826621, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/ConditionVariable_FutexBased.inl.h" }}
  7578. ,{ "pid":12345, "tid":7, "ts":1718090301826602, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/ConditionVariable_FutexBased.inl.h" }}
  7579. ,{ "pid":12345, "tid":7, "ts":1718090301826709, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7580. ,{ "pid":12345, "tid":7, "ts":1718090301826840, "dur":54, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/ConditionVariable_FutexBased.inl.h" }}
  7581. ,{ "pid":12345, "tid":7, "ts":1718090301826898, "dur":126, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/HighCapacitySemaphore.h" }}
  7582. ,{ "pid":12345, "tid":7, "ts":1718090301826896, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/HighCapacitySemaphore.h" }}
  7583. ,{ "pid":12345, "tid":7, "ts":1718090301827025, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7584. ,{ "pid":12345, "tid":7, "ts":1718090301827101, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/CappedSemaphore.h" }}
  7585. ,{ "pid":12345, "tid":7, "ts":1718090301827100, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/CappedSemaphore.h" }}
  7586. ,{ "pid":12345, "tid":7, "ts":1718090301827219, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7587. ,{ "pid":12345, "tid":7, "ts":1718090301827330, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_MsvcIntrinsics.h" }}
  7588. ,{ "pid":12345, "tid":7, "ts":1718090301827329, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_MsvcIntrinsics.h" }}
  7589. ,{ "pid":12345, "tid":7, "ts":1718090301827410, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7590. ,{ "pid":12345, "tid":7, "ts":1718090301827529, "dur":136, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_Semaphore_FutexBased.inl.h" }}
  7591. ,{ "pid":12345, "tid":7, "ts":1718090301827527, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_Semaphore_FutexBased.inl.h" }}
  7592. ,{ "pid":12345, "tid":7, "ts":1718090301827666, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7593. ,{ "pid":12345, "tid":7, "ts":1718090301827744, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_EventSemaphore_FutexBased.inl.h" }}
  7594. ,{ "pid":12345, "tid":7, "ts":1718090301827743, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_EventSemaphore_FutexBased.inl.h" }}
  7595. ,{ "pid":12345, "tid":7, "ts":1718090301827806, "dur":147, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7596. ,{ "pid":12345, "tid":7, "ts":1718090301827966, "dur":139, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Thread.h" }}
  7597. ,{ "pid":12345, "tid":7, "ts":1718090301827964, "dur":142, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Thread.h" }}
  7598. ,{ "pid":12345, "tid":7, "ts":1718090301828149, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_ReentrantLock.h" }}
  7599. ,{ "pid":12345, "tid":7, "ts":1718090301828148, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_ReentrantLock.h" }}
  7600. ,{ "pid":12345, "tid":7, "ts":1718090301828268, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7601. ,{ "pid":12345, "tid":7, "ts":1718090301828372, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_EventSemaphore.h" }}
  7602. ,{ "pid":12345, "tid":7, "ts":1718090301828371, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_EventSemaphore.h" }}
  7603. ,{ "pid":12345, "tid":7, "ts":1718090301828428, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7604. ,{ "pid":12345, "tid":7, "ts":1718090301828498, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_CappedSemaphore.h" }}
  7605. ,{ "pid":12345, "tid":7, "ts":1718090301828497, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_CappedSemaphore.h" }}
  7606. ,{ "pid":12345, "tid":7, "ts":1718090301828585, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7607. ,{ "pid":12345, "tid":7, "ts":1718090301828669, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/UnityLinker.runtimeconfig.json" }}
  7608. ,{ "pid":12345, "tid":7, "ts":1718090301828668, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/UnityLinker.runtimeconfig.json" }}
  7609. ,{ "pid":12345, "tid":7, "ts":1718090301828744, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7610. ,{ "pid":12345, "tid":7, "ts":1718090301828836, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.TinyProfiler.dll" }}
  7611. ,{ "pid":12345, "tid":7, "ts":1718090301828835, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.TinyProfiler.dll" }}
  7612. ,{ "pid":12345, "tid":7, "ts":1718090301828899, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7613. ,{ "pid":12345, "tid":7, "ts":1718090301828975, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Linker.Api.Output.dll" }}
  7614. ,{ "pid":12345, "tid":7, "ts":1718090301828974, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Linker.Api.Output.dll" }}
  7615. ,{ "pid":12345, "tid":7, "ts":1718090301829038, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7616. ,{ "pid":12345, "tid":7, "ts":1718090301829122, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.CompilerServices.pdb" }}
  7617. ,{ "pid":12345, "tid":7, "ts":1718090301829121, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.CompilerServices.pdb" }}
  7618. ,{ "pid":12345, "tid":7, "ts":1718090301829201, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7619. ,{ "pid":12345, "tid":7, "ts":1718090301829288, "dur":126, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.dll" }}
  7620. ,{ "pid":12345, "tid":7, "ts":1718090301829286, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.dll" }}
  7621. ,{ "pid":12345, "tid":7, "ts":1718090301829459, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.WebGL.pdb" }}
  7622. ,{ "pid":12345, "tid":7, "ts":1718090301829458, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.WebGL.pdb" }}
  7623. ,{ "pid":12345, "tid":7, "ts":1718090301829531, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7624. ,{ "pid":12345, "tid":7, "ts":1718090301829616, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.pdb" }}
  7625. ,{ "pid":12345, "tid":7, "ts":1718090301829613, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.pdb" }}
  7626. ,{ "pid":12345, "tid":7, "ts":1718090301829668, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7627. ,{ "pid":12345, "tid":7, "ts":1718090301829750, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.EmbeddedLinux.pdb" }}
  7628. ,{ "pid":12345, "tid":7, "ts":1718090301829748, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.EmbeddedLinux.pdb" }}
  7629. ,{ "pid":12345, "tid":7, "ts":1718090301829817, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7630. ,{ "pid":12345, "tid":7, "ts":1718090301829905, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Api.Output.xml" }}
  7631. ,{ "pid":12345, "tid":7, "ts":1718090301829904, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Api.Output.xml" }}
  7632. ,{ "pid":12345, "tid":7, "ts":1718090301829968, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7633. ,{ "pid":12345, "tid":7, "ts":1718090301830040, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Cecil.Awesome.dll" }}
  7634. ,{ "pid":12345, "tid":7, "ts":1718090301830039, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Cecil.Awesome.dll" }}
  7635. ,{ "pid":12345, "tid":7, "ts":1718090301830137, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7636. ,{ "pid":12345, "tid":7, "ts":1718090301830271, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Xml.XDocument.dll" }}
  7637. ,{ "pid":12345, "tid":7, "ts":1718090301830252, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Xml.XDocument.dll" }}
  7638. ,{ "pid":12345, "tid":7, "ts":1718090301830356, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7639. ,{ "pid":12345, "tid":7, "ts":1718090301830497, "dur":140, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Web.dll" }}
  7640. ,{ "pid":12345, "tid":7, "ts":1718090301830481, "dur":156, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Web.dll" }}
  7641. ,{ "pid":12345, "tid":7, "ts":1718090301830638, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7642. ,{ "pid":12345, "tid":7, "ts":1718090301830719, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Threading.Tasks.Parallel.dll" }}
  7643. ,{ "pid":12345, "tid":7, "ts":1718090301830718, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Threading.Tasks.Parallel.dll" }}
  7644. ,{ "pid":12345, "tid":7, "ts":1718090301830802, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7645. ,{ "pid":12345, "tid":7, "ts":1718090301830898, "dur":141, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Text.RegularExpressions.dll" }}
  7646. ,{ "pid":12345, "tid":7, "ts":1718090301830897, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Text.RegularExpressions.dll" }}
  7647. ,{ "pid":12345, "tid":7, "ts":1718090301831040, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7648. ,{ "pid":12345, "tid":7, "ts":1718090301831124, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.ServiceProcess.dll" }}
  7649. ,{ "pid":12345, "tid":7, "ts":1718090301831123, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ServiceProcess.dll" }}
  7650. ,{ "pid":12345, "tid":7, "ts":1718090301831203, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7651. ,{ "pid":12345, "tid":7, "ts":1718090301831300, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.Cryptography.Encoding.dll" }}
  7652. ,{ "pid":12345, "tid":7, "ts":1718090301831298, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.Cryptography.Encoding.dll" }}
  7653. ,{ "pid":12345, "tid":7, "ts":1718090301831386, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7654. ,{ "pid":12345, "tid":7, "ts":1718090301831458, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.Serialization.Primitives.dll" }}
  7655. ,{ "pid":12345, "tid":7, "ts":1718090301831457, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Serialization.Primitives.dll" }}
  7656. ,{ "pid":12345, "tid":7, "ts":1718090301831526, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7657. ,{ "pid":12345, "tid":7, "ts":1718090301831617, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.InteropServices.RuntimeInformation.dll" }}
  7658. ,{ "pid":12345, "tid":7, "ts":1718090301831615, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.InteropServices.RuntimeInformation.dll" }}
  7659. ,{ "pid":12345, "tid":7, "ts":1718090301831686, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7660. ,{ "pid":12345, "tid":7, "ts":1718090301831785, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Resources.Writer.dll" }}
  7661. ,{ "pid":12345, "tid":7, "ts":1718090301831783, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Resources.Writer.dll" }}
  7662. ,{ "pid":12345, "tid":7, "ts":1718090301831881, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7663. ,{ "pid":12345, "tid":7, "ts":1718090301831981, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Reflection.Emit.Lightweight.dll" }}
  7664. ,{ "pid":12345, "tid":7, "ts":1718090301831980, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Reflection.Emit.Lightweight.dll" }}
  7665. ,{ "pid":12345, "tid":7, "ts":1718090301832066, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7666. ,{ "pid":12345, "tid":7, "ts":1718090301832145, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Private.Uri.dll" }}
  7667. ,{ "pid":12345, "tid":7, "ts":1718090301832144, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Private.Uri.dll" }}
  7668. ,{ "pid":12345, "tid":7, "ts":1718090301832223, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7669. ,{ "pid":12345, "tid":7, "ts":1718090301832303, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.WebSockets.Client.dll" }}
  7670. ,{ "pid":12345, "tid":7, "ts":1718090301832302, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.WebSockets.Client.dll" }}
  7671. ,{ "pid":12345, "tid":7, "ts":1718090301832379, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7672. ,{ "pid":12345, "tid":7, "ts":1718090301832470, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.Requests.dll" }}
  7673. ,{ "pid":12345, "tid":7, "ts":1718090301832468, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Requests.dll" }}
  7674. ,{ "pid":12345, "tid":7, "ts":1718090301832571, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7675. ,{ "pid":12345, "tid":7, "ts":1718090301832644, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.HttpListener.dll" }}
  7676. ,{ "pid":12345, "tid":7, "ts":1718090301832642, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.HttpListener.dll" }}
  7677. ,{ "pid":12345, "tid":7, "ts":1718090301832736, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7678. ,{ "pid":12345, "tid":7, "ts":1718090301832821, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Linq.Expressions.dll" }}
  7679. ,{ "pid":12345, "tid":7, "ts":1718090301832820, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Linq.Expressions.dll" }}
  7680. ,{ "pid":12345, "tid":7, "ts":1718090301832902, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7681. ,{ "pid":12345, "tid":7, "ts":1718090301832996, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.FileSystem.Watcher.dll" }}
  7682. ,{ "pid":12345, "tid":7, "ts":1718090301832985, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.FileSystem.Watcher.dll" }}
  7683. ,{ "pid":12345, "tid":7, "ts":1718090301833099, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7684. ,{ "pid":12345, "tid":7, "ts":1718090301833226, "dur":127, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.Compression.FileSystem.dll" }}
  7685. ,{ "pid":12345, "tid":7, "ts":1718090301833224, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.Compression.FileSystem.dll" }}
  7686. ,{ "pid":12345, "tid":7, "ts":1718090301833354, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7687. ,{ "pid":12345, "tid":7, "ts":1718090301833465, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Dynamic.Runtime.dll" }}
  7688. ,{ "pid":12345, "tid":7, "ts":1718090301833462, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Dynamic.Runtime.dll" }}
  7689. ,{ "pid":12345, "tid":7, "ts":1718090301833540, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7690. ,{ "pid":12345, "tid":7, "ts":1718090301833607, "dur":129, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Diagnostics.StackTrace.dll" }}
  7691. ,{ "pid":12345, "tid":7, "ts":1718090301833606, "dur":131, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Diagnostics.StackTrace.dll" }}
  7692. ,{ "pid":12345, "tid":7, "ts":1718090301833737, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7693. ,{ "pid":12345, "tid":7, "ts":1718090301833821, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Data.dll" }}
  7694. ,{ "pid":12345, "tid":7, "ts":1718090301833819, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Data.dll" }}
  7695. ,{ "pid":12345, "tid":7, "ts":1718090301833926, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7696. ,{ "pid":12345, "tid":7, "ts":1718090301834058, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.ComponentModel.Primitives.dll" }}
  7697. ,{ "pid":12345, "tid":7, "ts":1718090301834056, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ComponentModel.Primitives.dll" }}
  7698. ,{ "pid":12345, "tid":7, "ts":1718090301834135, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7699. ,{ "pid":12345, "tid":7, "ts":1718090301834249, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Collections.Concurrent.dll" }}
  7700. ,{ "pid":12345, "tid":7, "ts":1718090301834247, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Collections.Concurrent.dll" }}
  7701. ,{ "pid":12345, "tid":7, "ts":1718090301834324, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7702. ,{ "pid":12345, "tid":7, "ts":1718090301834422, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/netstandard.dll" }}
  7703. ,{ "pid":12345, "tid":7, "ts":1718090301834421, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/netstandard.dll" }}
  7704. ,{ "pid":12345, "tid":7, "ts":1718090301834512, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7705. ,{ "pid":12345, "tid":7, "ts":1718090301834606, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Mono.Cecil.Pdb.dll" }}
  7706. ,{ "pid":12345, "tid":7, "ts":1718090301834604, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Mono.Cecil.Pdb.dll" }}
  7707. ,{ "pid":12345, "tid":7, "ts":1718090301834739, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7708. ,{ "pid":12345, "tid":7, "ts":1718090301834841, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Microsoft.VisualBasic.dll" }}
  7709. ,{ "pid":12345, "tid":7, "ts":1718090301834840, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Microsoft.VisualBasic.dll" }}
  7710. ,{ "pid":12345, "tid":7, "ts":1718090301834900, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7711. ,{ "pid":12345, "tid":7, "ts":1718090301834972, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libSystem.Net.Security.Native.dylib" }}
  7712. ,{ "pid":12345, "tid":7, "ts":1718090301835053, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7713. ,{ "pid":12345, "tid":7, "ts":1718090301835143, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libhostfxr.dylib" }}
  7714. ,{ "pid":12345, "tid":7, "ts":1718090301835245, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7715. ,{ "pid":12345, "tid":7, "ts":1718090301835339, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/il2cpp.dll.config" }}
  7716. ,{ "pid":12345, "tid":7, "ts":1718090301835337, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/il2cpp.dll.config" }}
  7717. ,{ "pid":12345, "tid":7, "ts":1718090301835467, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7718. ,{ "pid":12345, "tid":7, "ts":1718090301835621, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.VisualStudioSolution.dll" }}
  7719. ,{ "pid":12345, "tid":7, "ts":1718090301835619, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.VisualStudioSolution.dll" }}
  7720. ,{ "pid":12345, "tid":7, "ts":1718090301835703, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7721. ,{ "pid":12345, "tid":7, "ts":1718090301835807, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.Xcode.dll" }}
  7722. ,{ "pid":12345, "tid":7, "ts":1718090301835806, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Xcode.dll" }}
  7723. ,{ "pid":12345, "tid":7, "ts":1718090301835895, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7724. ,{ "pid":12345, "tid":7, "ts":1718090301835984, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.UWP.pdb" }}
  7725. ,{ "pid":12345, "tid":7, "ts":1718090301835983, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.UWP.pdb" }}
  7726. ,{ "pid":12345, "tid":7, "ts":1718090301836074, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7727. ,{ "pid":12345, "tid":7, "ts":1718090301836164, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.LLVM.dll" }}
  7728. ,{ "pid":12345, "tid":7, "ts":1718090301836162, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.LLVM.dll" }}
  7729. ,{ "pid":12345, "tid":7, "ts":1718090301836243, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7730. ,{ "pid":12345, "tid":7, "ts":1718090301836316, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.Emscripten.pdb" }}
  7731. ,{ "pid":12345, "tid":7, "ts":1718090301836314, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Emscripten.pdb" }}
  7732. ,{ "pid":12345, "tid":7, "ts":1718090301836411, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7733. ,{ "pid":12345, "tid":7, "ts":1718090301836509, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.TinyProfiler2.dll" }}
  7734. ,{ "pid":12345, "tid":7, "ts":1718090301836508, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.TinyProfiler2.dll" }}
  7735. ,{ "pid":12345, "tid":7, "ts":1718090301836616, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7736. ,{ "pid":12345, "tid":7, "ts":1718090301836693, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.DotNet.dll" }}
  7737. ,{ "pid":12345, "tid":7, "ts":1718090301836692, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.DotNet.dll" }}
  7738. ,{ "pid":12345, "tid":7, "ts":1718090301836805, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7739. ,{ "pid":12345, "tid":7, "ts":1718090301836921, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Analytics.runtimeconfig.json" }}
  7740. ,{ "pid":12345, "tid":7, "ts":1718090301836919, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Analytics.runtimeconfig.json" }}
  7741. ,{ "pid":12345, "tid":7, "ts":1718090301836995, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7742. ,{ "pid":12345, "tid":7, "ts":1718090301837088, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Analytics" }}
  7743. ,{ "pid":12345, "tid":7, "ts":1718090301837224, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/UnityLinker" }}
  7744. ,{ "pid":12345, "tid":7, "ts":1718090301837296, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7745. ,{ "pid":12345, "tid":7, "ts":1718090301837380, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Linker.Api.Output.pdb" }}
  7746. ,{ "pid":12345, "tid":7, "ts":1718090301837378, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Linker.Api.Output.pdb" }}
  7747. ,{ "pid":12345, "tid":7, "ts":1718090301837462, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7748. ,{ "pid":12345, "tid":7, "ts":1718090301837530, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.pdb" }}
  7749. ,{ "pid":12345, "tid":7, "ts":1718090301837529, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.pdb" }}
  7750. ,{ "pid":12345, "tid":7, "ts":1718090301837613, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7751. ,{ "pid":12345, "tid":7, "ts":1718090301837736, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Building.pdb" }}
  7752. ,{ "pid":12345, "tid":7, "ts":1718090301837727, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Building.pdb" }}
  7753. ,{ "pid":12345, "tid":7, "ts":1718090301837824, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7754. ,{ "pid":12345, "tid":7, "ts":1718090301837970, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.WebGL.dll" }}
  7755. ,{ "pid":12345, "tid":7, "ts":1718090301837968, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.WebGL.dll" }}
  7756. ,{ "pid":12345, "tid":7, "ts":1718090301838053, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7757. ,{ "pid":12345, "tid":7, "ts":1718090301838129, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.MacOSX.dll" }}
  7758. ,{ "pid":12345, "tid":7, "ts":1718090301838127, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.MacOSX.dll" }}
  7759. ,{ "pid":12345, "tid":7, "ts":1718090301838195, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7760. ,{ "pid":12345, "tid":7, "ts":1718090301838282, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.EmbeddedLinux.dll" }}
  7761. ,{ "pid":12345, "tid":7, "ts":1718090301838280, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.EmbeddedLinux.dll" }}
  7762. ,{ "pid":12345, "tid":7, "ts":1718090301838346, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7763. ,{ "pid":12345, "tid":7, "ts":1718090301838446, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Api.Output.pdb" }}
  7764. ,{ "pid":12345, "tid":7, "ts":1718090301838444, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Api.Output.pdb" }}
  7765. ,{ "pid":12345, "tid":7, "ts":1718090301838544, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7766. ,{ "pid":12345, "tid":7, "ts":1718090301838642, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Api.Attributes.pdb" }}
  7767. ,{ "pid":12345, "tid":7, "ts":1718090301838640, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Api.Attributes.pdb" }}
  7768. ,{ "pid":12345, "tid":7, "ts":1718090301838714, "dur":161, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7769. ,{ "pid":12345, "tid":7, "ts":1718090301838880, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Xml.Serialization.dll" }}
  7770. ,{ "pid":12345, "tid":7, "ts":1718090301838879, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Xml.Serialization.dll" }}
  7771. ,{ "pid":12345, "tid":7, "ts":1718090301839014, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7772. ,{ "pid":12345, "tid":7, "ts":1718090301839117, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.ValueTuple.dll" }}
  7773. ,{ "pid":12345, "tid":7, "ts":1718090301839116, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.ValueTuple.dll" }}
  7774. ,{ "pid":12345, "tid":7, "ts":1718090301839180, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7775. ,{ "pid":12345, "tid":7, "ts":1718090301839303, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Threading.Tasks.Extensions.dll" }}
  7776. ,{ "pid":12345, "tid":7, "ts":1718090301839302, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Threading.Tasks.Extensions.dll" }}
  7777. ,{ "pid":12345, "tid":7, "ts":1718090301839362, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7778. ,{ "pid":12345, "tid":7, "ts":1718090301839467, "dur":140, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Text.Json.dll" }}
  7779. ,{ "pid":12345, "tid":7, "ts":1718090301839447, "dur":161, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Text.Json.dll" }}
  7780. ,{ "pid":12345, "tid":7, "ts":1718090301839609, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7781. ,{ "pid":12345, "tid":7, "ts":1718090301839701, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.SecureString.dll" }}
  7782. ,{ "pid":12345, "tid":7, "ts":1718090301839699, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.SecureString.dll" }}
  7783. ,{ "pid":12345, "tid":7, "ts":1718090301839777, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7784. ,{ "pid":12345, "tid":7, "ts":1718090301839861, "dur":162, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.Cryptography.Encoding.dll" }}
  7785. ,{ "pid":12345, "tid":7, "ts":1718090301839860, "dur":163, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.Cryptography.Encoding.dll" }}
  7786. ,{ "pid":12345, "tid":7, "ts":1718090301840023, "dur":162, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7787. ,{ "pid":12345, "tid":7, "ts":1718090301840190, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.Serialization.Primitives.dll" }}
  7788. ,{ "pid":12345, "tid":7, "ts":1718090301840189, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.Serialization.Primitives.dll" }}
  7789. ,{ "pid":12345, "tid":7, "ts":1718090301840287, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7790. ,{ "pid":12345, "tid":7, "ts":1718090301840369, "dur":127, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.InteropServices.RuntimeInformation.dll" }}
  7791. ,{ "pid":12345, "tid":7, "ts":1718090301840368, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.InteropServices.RuntimeInformation.dll" }}
  7792. ,{ "pid":12345, "tid":7, "ts":1718090301840497, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7793. ,{ "pid":12345, "tid":7, "ts":1718090301840607, "dur":148, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Resources.Writer.dll" }}
  7794. ,{ "pid":12345, "tid":7, "ts":1718090301840605, "dur":153, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Resources.Writer.dll" }}
  7795. ,{ "pid":12345, "tid":7, "ts":1718090301840759, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7796. ,{ "pid":12345, "tid":7, "ts":1718090301840840, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Reflection.Emit.Lightweight.dll" }}
  7797. ,{ "pid":12345, "tid":7, "ts":1718090301840838, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Reflection.Emit.Lightweight.dll" }}
  7798. ,{ "pid":12345, "tid":7, "ts":1718090301840967, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Private.Xml.Linq.dll" }}
  7799. ,{ "pid":12345, "tid":7, "ts":1718090301840966, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Private.Xml.Linq.dll" }}
  7800. ,{ "pid":12345, "tid":7, "ts":1718090301841069, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7801. ,{ "pid":12345, "tid":7, "ts":1718090301841197, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Numerics.dll" }}
  7802. ,{ "pid":12345, "tid":7, "ts":1718090301841195, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Numerics.dll" }}
  7803. ,{ "pid":12345, "tid":7, "ts":1718090301841284, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7804. ,{ "pid":12345, "tid":7, "ts":1718090301841366, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.Security.dll" }}
  7805. ,{ "pid":12345, "tid":7, "ts":1718090301841365, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.Security.dll" }}
  7806. ,{ "pid":12345, "tid":7, "ts":1718090301841434, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7807. ,{ "pid":12345, "tid":7, "ts":1718090301841541, "dur":137, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.NameResolution.dll" }}
  7808. ,{ "pid":12345, "tid":7, "ts":1718090301841540, "dur":139, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.NameResolution.dll" }}
  7809. ,{ "pid":12345, "tid":7, "ts":1718090301841680, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7810. ,{ "pid":12345, "tid":7, "ts":1718090301841757, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Linq.Queryable.dll" }}
  7811. ,{ "pid":12345, "tid":7, "ts":1718090301841757, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Linq.Queryable.dll" }}
  7812. ,{ "pid":12345, "tid":7, "ts":1718090301841834, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7813. ,{ "pid":12345, "tid":7, "ts":1718090301841934, "dur":136, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.MemoryMappedFiles.dll" }}
  7814. ,{ "pid":12345, "tid":7, "ts":1718090301841932, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.MemoryMappedFiles.dll" }}
  7815. ,{ "pid":12345, "tid":7, "ts":1718090301842071, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7816. ,{ "pid":12345, "tid":7, "ts":1718090301842209, "dur":150, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.dll" }}
  7817. ,{ "pid":12345, "tid":7, "ts":1718090301842208, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.dll" }}
  7818. ,{ "pid":12345, "tid":7, "ts":1718090301842366, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7819. ,{ "pid":12345, "tid":7, "ts":1718090301842450, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Globalization.Calendars.dll" }}
  7820. ,{ "pid":12345, "tid":7, "ts":1718090301842449, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Globalization.Calendars.dll" }}
  7821. ,{ "pid":12345, "tid":7, "ts":1718090301842553, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7822. ,{ "pid":12345, "tid":7, "ts":1718090301842632, "dur":134, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Diagnostics.TraceSource.dll" }}
  7823. ,{ "pid":12345, "tid":7, "ts":1718090301842632, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.TraceSource.dll" }}
  7824. ,{ "pid":12345, "tid":7, "ts":1718090301842767, "dur":164, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7825. ,{ "pid":12345, "tid":7, "ts":1718090301842937, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Diagnostics.Debug.dll" }}
  7826. ,{ "pid":12345, "tid":7, "ts":1718090301842936, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.Debug.dll" }}
  7827. ,{ "pid":12345, "tid":7, "ts":1718090301843055, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7828. ,{ "pid":12345, "tid":7, "ts":1718090301843188, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Console.dll" }}
  7829. ,{ "pid":12345, "tid":7, "ts":1718090301843186, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Console.dll" }}
  7830. ,{ "pid":12345, "tid":7, "ts":1718090301843265, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7831. ,{ "pid":12345, "tid":7, "ts":1718090301843395, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Collections.Specialized.dll" }}
  7832. ,{ "pid":12345, "tid":7, "ts":1718090301843393, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Collections.Specialized.dll" }}
  7833. ,{ "pid":12345, "tid":7, "ts":1718090301843493, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7834. ,{ "pid":12345, "tid":7, "ts":1718090301843578, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/SharpYaml.dll" }}
  7835. ,{ "pid":12345, "tid":7, "ts":1718090301843577, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/SharpYaml.dll" }}
  7836. ,{ "pid":12345, "tid":7, "ts":1718090301843651, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7837. ,{ "pid":12345, "tid":7, "ts":1718090301843732, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/monolinker.pdb" }}
  7838. ,{ "pid":12345, "tid":7, "ts":1718090301843731, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/monolinker.pdb" }}
  7839. ,{ "pid":12345, "tid":7, "ts":1718090301843824, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7840. ,{ "pid":12345, "tid":7, "ts":1718090301843904, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Mono.Cecil.Mdb.pdb" }}
  7841. ,{ "pid":12345, "tid":7, "ts":1718090301843903, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Mono.Cecil.Mdb.pdb" }}
  7842. ,{ "pid":12345, "tid":7, "ts":1718090301843976, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7843. ,{ "pid":12345, "tid":7, "ts":1718090301844063, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Microsoft.Bcl.HashCode.dll" }}
  7844. ,{ "pid":12345, "tid":7, "ts":1718090301844062, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Microsoft.Bcl.HashCode.dll" }}
  7845. ,{ "pid":12345, "tid":7, "ts":1718090301844147, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7846. ,{ "pid":12345, "tid":7, "ts":1718090301844225, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libmscordaccore.dylib" }}
  7847. ,{ "pid":12345, "tid":7, "ts":1718090301844297, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7848. ,{ "pid":12345, "tid":7, "ts":1718090301844367, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libclrjit.dylib" }}
  7849. ,{ "pid":12345, "tid":7, "ts":1718090301844438, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7850. ,{ "pid":12345, "tid":7, "ts":1718090301844518, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/il2cpp" }}
  7851. ,{ "pid":12345, "tid":7, "ts":1718090301844578, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7852. ,{ "pid":12345, "tid":7, "ts":1718090301844649, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.TundraBackend.dll" }}
  7853. ,{ "pid":12345, "tid":7, "ts":1718090301844648, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.TundraBackend.dll" }}
  7854. ,{ "pid":12345, "tid":7, "ts":1718090301844734, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7855. ,{ "pid":12345, "tid":7, "ts":1718090301844891, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.VisualStudio.pdb" }}
  7856. ,{ "pid":12345, "tid":7, "ts":1718090301844890, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.VisualStudio.pdb" }}
  7857. ,{ "pid":12345, "tid":7, "ts":1718090301844955, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7858. ,{ "pid":12345, "tid":7, "ts":1718090301845025, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.TvOS.dll" }}
  7859. ,{ "pid":12345, "tid":7, "ts":1718090301845019, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.TvOS.dll" }}
  7860. ,{ "pid":12345, "tid":7, "ts":1718090301845085, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7861. ,{ "pid":12345, "tid":7, "ts":1718090301845163, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.IOS.pdb" }}
  7862. ,{ "pid":12345, "tid":7, "ts":1718090301845162, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.IOS.pdb" }}
  7863. ,{ "pid":12345, "tid":7, "ts":1718090301845238, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7864. ,{ "pid":12345, "tid":7, "ts":1718090301845321, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.EmbeddedLinux.dll" }}
  7865. ,{ "pid":12345, "tid":7, "ts":1718090301845320, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.EmbeddedLinux.dll" }}
  7866. ,{ "pid":12345, "tid":7, "ts":1718090301845394, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7867. ,{ "pid":12345, "tid":7, "ts":1718090301845478, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.NativeProgramSupport.pdb" }}
  7868. ,{ "pid":12345, "tid":7, "ts":1718090301845476, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.NativeProgramSupport.pdb" }}
  7869. ,{ "pid":12345, "tid":7, "ts":1718090301845558, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7870. ,{ "pid":12345, "tid":7, "ts":1718090301845638, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.BeeDriver.xml" }}
  7871. ,{ "pid":12345, "tid":7, "ts":1718090301845636, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.BeeDriver.xml" }}
  7872. ,{ "pid":12345, "tid":7, "ts":1718090301845761, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7873. ,{ "pid":12345, "tid":7, "ts":1718090301845839, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Analytics.deps.json" }}
  7874. ,{ "pid":12345, "tid":7, "ts":1718090301845837, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Analytics.deps.json" }}
  7875. ,{ "pid":12345, "tid":7, "ts":1718090301845924, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7876. ,{ "pid":12345, "tid":7, "ts":1718090301846006, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/VmThreadUtils.h" }}
  7877. ,{ "pid":12345, "tid":7, "ts":1718090301846005, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/VmThreadUtils.h" }}
  7878. ,{ "pid":12345, "tid":7, "ts":1718090301846079, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7879. ,{ "pid":12345, "tid":7, "ts":1718090301846169, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone Tests/Unity_iPhone_Tests.m" }}
  7880. ,{ "pid":12345, "tid":7, "ts":1718090301846293, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7881. ,{ "pid":12345, "tid":7, "ts":1718090301846381, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Vector3.h" }}
  7882. ,{ "pid":12345, "tid":7, "ts":1718090301846380, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Vector3.h" }}
  7883. ,{ "pid":12345, "tid":7, "ts":1718090301846492, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7884. ,{ "pid":12345, "tid":7, "ts":1718090301846596, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/VideoPlayer.mm" }}
  7885. ,{ "pid":12345, "tid":7, "ts":1718090301846758, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/UnityReplayKit.h" }}
  7886. ,{ "pid":12345, "tid":7, "ts":1718090301846757, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/UnityReplayKit.h" }}
  7887. ,{ "pid":12345, "tid":7, "ts":1718090301846837, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7888. ,{ "pid":12345, "tid":7, "ts":1718090301846938, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/ObjCRuntime.h" }}
  7889. ,{ "pid":12345, "tid":7, "ts":1718090301846936, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/ObjCRuntime.h" }}
  7890. ,{ "pid":12345, "tid":7, "ts":1718090301847002, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7891. ,{ "pid":12345, "tid":7, "ts":1718090301847067, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/InternalProfiler.cpp" }}
  7892. ,{ "pid":12345, "tid":7, "ts":1718090301847066, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/InternalProfiler.cpp" }}
  7893. ,{ "pid":12345, "tid":7, "ts":1718090301847141, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7894. ,{ "pid":12345, "tid":7, "ts":1718090301847216, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/CVTextureCache.h" }}
  7895. ,{ "pid":12345, "tid":7, "ts":1718090301847215, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/CVTextureCache.h" }}
  7896. ,{ "pid":12345, "tid":7, "ts":1718090301847295, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7897. ,{ "pid":12345, "tid":7, "ts":1718090301847367, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UndefinePlatforms.h" }}
  7898. ,{ "pid":12345, "tid":7, "ts":1718090301847366, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UndefinePlatforms.h" }}
  7899. ,{ "pid":12345, "tid":7, "ts":1718090301847501, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7900. ,{ "pid":12345, "tid":7, "ts":1718090301847575, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/UnityViewControllerBase+iOS.h" }}
  7901. ,{ "pid":12345, "tid":7, "ts":1718090301847574, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityViewControllerBase+iOS.h" }}
  7902. ,{ "pid":12345, "tid":7, "ts":1718090301847640, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7903. ,{ "pid":12345, "tid":7, "ts":1718090301847771, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/UnityView+iOS.h" }}
  7904. ,{ "pid":12345, "tid":7, "ts":1718090301847770, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityView+iOS.h" }}
  7905. ,{ "pid":12345, "tid":7, "ts":1718090301847832, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7906. ,{ "pid":12345, "tid":7, "ts":1718090301847928, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/OrientationSupport.h" }}
  7907. ,{ "pid":12345, "tid":7, "ts":1718090301847927, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/OrientationSupport.h" }}
  7908. ,{ "pid":12345, "tid":7, "ts":1718090301847990, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7909. ,{ "pid":12345, "tid":7, "ts":1718090301848121, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/PluginBase/RenderPluginDelegate.mm" }}
  7910. ,{ "pid":12345, "tid":7, "ts":1718090301848200, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7911. ,{ "pid":12345, "tid":7, "ts":1718090301848279, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/main.mm" }}
  7912. ,{ "pid":12345, "tid":7, "ts":1718090301848351, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7913. ,{ "pid":12345, "tid":7, "ts":1718090301848426, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Array.cpp" }}
  7914. ,{ "pid":12345, "tid":7, "ts":1718090301848426, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Array.cpp" }}
  7915. ,{ "pid":12345, "tid":7, "ts":1718090301848499, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7916. ,{ "pid":12345, "tid":7, "ts":1718090301848581, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/CCW.cpp" }}
  7917. ,{ "pid":12345, "tid":7, "ts":1718090301848580, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/CCW.cpp" }}
  7918. ,{ "pid":12345, "tid":7, "ts":1718090301848659, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7919. ,{ "pid":12345, "tid":7, "ts":1718090301848737, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ClassInlines.h" }}
  7920. ,{ "pid":12345, "tid":7, "ts":1718090301848736, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ClassInlines.h" }}
  7921. ,{ "pid":12345, "tid":7, "ts":1718090301848808, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7922. ,{ "pid":12345, "tid":7, "ts":1718090301848918, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ComObjectBase.cpp" }}
  7923. ,{ "pid":12345, "tid":7, "ts":1718090301848916, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ComObjectBase.cpp" }}
  7924. ,{ "pid":12345, "tid":7, "ts":1718090301849000, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7925. ,{ "pid":12345, "tid":7, "ts":1718090301849105, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Event.h" }}
  7926. ,{ "pid":12345, "tid":7, "ts":1718090301849097, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Event.h" }}
  7927. ,{ "pid":12345, "tid":7, "ts":1718090301849183, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7928. ,{ "pid":12345, "tid":7, "ts":1718090301849264, "dur":126, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/GenericContainer.cpp" }}
  7929. ,{ "pid":12345, "tid":7, "ts":1718090301849263, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/GenericContainer.cpp" }}
  7930. ,{ "pid":12345, "tid":7, "ts":1718090301849391, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7931. ,{ "pid":12345, "tid":7, "ts":1718090301849498, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Image.cpp" }}
  7932. ,{ "pid":12345, "tid":7, "ts":1718090301849497, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Image.cpp" }}
  7933. ,{ "pid":12345, "tid":7, "ts":1718090301849579, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7934. ,{ "pid":12345, "tid":7, "ts":1718090301849665, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/MarshalAlloc.cpp" }}
  7935. ,{ "pid":12345, "tid":7, "ts":1718090301849663, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/MarshalAlloc.cpp" }}
  7936. ,{ "pid":12345, "tid":7, "ts":1718090301849788, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7937. ,{ "pid":12345, "tid":7, "ts":1718090301849846, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/MetadataCache.cpp" }}
  7938. ,{ "pid":12345, "tid":7, "ts":1718090301849845, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/MetadataCache.cpp" }}
  7939. ,{ "pid":12345, "tid":7, "ts":1718090301849908, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7940. ,{ "pid":12345, "tid":7, "ts":1718090301849987, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Method.h" }}
  7941. ,{ "pid":12345, "tid":7, "ts":1718090301849986, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Method.h" }}
  7942. ,{ "pid":12345, "tid":7, "ts":1718090301850063, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7943. ,{ "pid":12345, "tid":7, "ts":1718090301850163, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Object.h" }}
  7944. ,{ "pid":12345, "tid":7, "ts":1718090301850160, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Object.h" }}
  7945. ,{ "pid":12345, "tid":7, "ts":1718090301850224, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7946. ,{ "pid":12345, "tid":7, "ts":1718090301850309, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Profiler.cpp" }}
  7947. ,{ "pid":12345, "tid":7, "ts":1718090301850307, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Profiler.cpp" }}
  7948. ,{ "pid":12345, "tid":7, "ts":1718090301850377, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7949. ,{ "pid":12345, "tid":7, "ts":1718090301850481, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.purchasing@4.11.0/Plugins/UnityPurchasing/iOS/UnityEarlyTransactionObserver.h" }}
  7950. ,{ "pid":12345, "tid":7, "ts":1718090301850479, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.purchasing/Plugins/UnityPurchasing/iOS/UnityEarlyTransactionObserver.h" }}
  7951. ,{ "pid":12345, "tid":7, "ts":1718090301850554, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7952. ,{ "pid":12345, "tid":7, "ts":1718090301850637, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/RCW.h" }}
  7953. ,{ "pid":12345, "tid":7, "ts":1718090301850636, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/RCW.h" }}
  7954. ,{ "pid":12345, "tid":7, "ts":1718090301850738, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7955. ,{ "pid":12345, "tid":7, "ts":1718090301850804, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/String.h" }}
  7956. ,{ "pid":12345, "tid":7, "ts":1718090301850803, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/String.h" }}
  7957. ,{ "pid":12345, "tid":7, "ts":1718090301850870, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7958. ,{ "pid":12345, "tid":7, "ts":1718090301850954, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/VisualizerHelpers.cpp" }}
  7959. ,{ "pid":12345, "tid":7, "ts":1718090301850953, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/VisualizerHelpers.cpp" }}
  7960. ,{ "pid":12345, "tid":7, "ts":1718090301851005, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7961. ,{ "pid":12345, "tid":7, "ts":1718090301851080, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libmono/config/config.h" }}
  7962. ,{ "pid":12345, "tid":7, "ts":1718090301851173, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libmono/config/il2cpp-config-mono-ios.h" }}
  7963. ,{ "pid":12345, "tid":7, "ts":1718090301851172, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libmono/config/il2cpp-config-mono-ios.h" }}
  7964. ,{ "pid":12345, "tid":7, "ts":1718090301851253, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7965. ,{ "pid":12345, "tid":7, "ts":1718090301851356, "dur":168, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7966. ,{ "pid":12345, "tid":7, "ts":1718090301851536, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/LaunchScreen-iPhone.storyboard" }}
  7967. ,{ "pid":12345, "tid":7, "ts":1718090301851616, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7968. ,{ "pid":12345, "tid":7, "ts":1718090301851692, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-Settings-29.png" }}
  7969. ,{ "pid":12345, "tid":7, "ts":1718090301851757, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7970. ,{ "pid":12345, "tid":7, "ts":1718090301851845, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-Settings-29.png" }}
  7971. ,{ "pid":12345, "tid":7, "ts":1718090301851919, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7972. ,{ "pid":12345, "tid":7, "ts":1718090301852006, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-Notification-40.png" }}
  7973. ,{ "pid":12345, "tid":7, "ts":1718090301852094, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7974. ,{ "pid":12345, "tid":7, "ts":1718090301852160, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.purchasing/Plugins/UnityPurchasing/iOS/UnityEarlyTransactionObserver.mm" }}
  7975. ,{ "pid":12345, "tid":7, "ts":1718090301852229, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7976. ,{ "pid":12345, "tid":7, "ts":1718090301852330, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.purchasing@4.11.0/Plugins/UnityPurchasing/iOS/UnityPurchasing.h" }}
  7977. ,{ "pid":12345, "tid":7, "ts":1718090301852329, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.purchasing/Plugins/UnityPurchasing/iOS/UnityPurchasing.h" }}
  7978. ,{ "pid":12345, "tid":7, "ts":1718090301852419, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7979. ,{ "pid":12345, "tid":7, "ts":1718090301852547, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7980. ,{ "pid":12345, "tid":7, "ts":1718090301852597, "dur":51, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/AppleAuth/Native/iOS/AppleAuthSerializer.h" }}
  7981. ,{ "pid":12345, "tid":7, "ts":1718090301852764, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7982. ,{ "pid":12345, "tid":7, "ts":1718090301852939, "dur":14667, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  7983. ,{ "pid":12345, "tid":7, "ts":1718090301867631, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7984. ,{ "pid":12345, "tid":7, "ts":1718090301867725, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GoogleMobileAds.Common.cpp" }}
  7985. ,{ "pid":12345, "tid":7, "ts":1718090301867724, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GoogleMobileAds.Common.cpp" }}
  7986. ,{ "pid":12345, "tid":7, "ts":1718090301867824, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7987. ,{ "pid":12345, "tid":7, "ts":1718090301867926, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Mono.Security_CodeGen.c" }}
  7988. ,{ "pid":12345, "tid":7, "ts":1718090301867925, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Mono.Security_CodeGen.c" }}
  7989. ,{ "pid":12345, "tid":7, "ts":1718090301868016, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7990. ,{ "pid":12345, "tid":7, "ts":1718090301868120, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__20.cpp" }}
  7991. ,{ "pid":12345, "tid":7, "ts":1718090301868118, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__20.cpp" }}
  7992. ,{ "pid":12345, "tid":7, "ts":1718090301868238, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7993. ,{ "pid":12345, "tid":7, "ts":1718090301868342, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Assembly-CSharp_CodeGen.c" }}
  7994. ,{ "pid":12345, "tid":7, "ts":1718090301868341, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Assembly-CSharp_CodeGen.c" }}
  7995. ,{ "pid":12345, "tid":7, "ts":1718090301868424, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7996. ,{ "pid":12345, "tid":7, "ts":1718090301868510, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__54.cpp" }}
  7997. ,{ "pid":12345, "tid":7, "ts":1718090301868509, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__54.cpp" }}
  7998. ,{ "pid":12345, "tid":7, "ts":1718090301868593, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7999. ,{ "pid":12345, "tid":7, "ts":1718090301868682, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Newtonsoft.Json__2.cpp" }}
  8000. ,{ "pid":12345, "tid":7, "ts":1718090301868681, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Newtonsoft.Json__2.cpp" }}
  8001. ,{ "pid":12345, "tid":7, "ts":1718090301868768, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8002. ,{ "pid":12345, "tid":7, "ts":1718090301868857, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__6.cpp" }}
  8003. ,{ "pid":12345, "tid":7, "ts":1718090301868855, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__6.cpp" }}
  8004. ,{ "pid":12345, "tid":7, "ts":1718090301868933, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8005. ,{ "pid":12345, "tid":7, "ts":1718090301869013, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.JSONSerializeModule.cpp" }}
  8006. ,{ "pid":12345, "tid":7, "ts":1718090301869011, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.JSONSerializeModule.cpp" }}
  8007. ,{ "pid":12345, "tid":7, "ts":1718090301869091, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8008. ,{ "pid":12345, "tid":7, "ts":1718090301869166, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__12.cpp" }}
  8009. ,{ "pid":12345, "tid":7, "ts":1718090301869165, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__12.cpp" }}
  8010. ,{ "pid":12345, "tid":7, "ts":1718090301869237, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8011. ,{ "pid":12345, "tid":7, "ts":1718090301869327, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__65.cpp" }}
  8012. ,{ "pid":12345, "tid":7, "ts":1718090301869326, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__65.cpp" }}
  8013. ,{ "pid":12345, "tid":7, "ts":1718090301869407, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8014. ,{ "pid":12345, "tid":7, "ts":1718090301869508, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UI.cpp" }}
  8015. ,{ "pid":12345, "tid":7, "ts":1718090301869507, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UI.cpp" }}
  8016. ,{ "pid":12345, "tid":7, "ts":1718090301869602, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8017. ,{ "pid":12345, "tid":7, "ts":1718090301869691, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.cpp" }}
  8018. ,{ "pid":12345, "tid":7, "ts":1718090301869689, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.cpp" }}
  8019. ,{ "pid":12345, "tid":7, "ts":1718090301869767, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8020. ,{ "pid":12345, "tid":7, "ts":1718090301869864, "dur":143, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.CoreModule__1.cpp" }}
  8021. ,{ "pid":12345, "tid":7, "ts":1718090301869863, "dur":145, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.CoreModule__1.cpp" }}
  8022. ,{ "pid":12345, "tid":7, "ts":1718090301870009, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8023. ,{ "pid":12345, "tid":7, "ts":1718090301870098, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__37.cpp" }}
  8024. ,{ "pid":12345, "tid":7, "ts":1718090301870097, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__37.cpp" }}
  8025. ,{ "pid":12345, "tid":7, "ts":1718090301870199, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8026. ,{ "pid":12345, "tid":7, "ts":1718090301870312, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__14.cpp" }}
  8027. ,{ "pid":12345, "tid":7, "ts":1718090301870310, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__14.cpp" }}
  8028. ,{ "pid":12345, "tid":7, "ts":1718090301870397, "dur":132, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8029. ,{ "pid":12345, "tid":7, "ts":1718090301870535, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__45.cpp" }}
  8030. ,{ "pid":12345, "tid":7, "ts":1718090301870533, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__45.cpp" }}
  8031. ,{ "pid":12345, "tid":7, "ts":1718090301870620, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8032. ,{ "pid":12345, "tid":7, "ts":1718090301870716, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.PhysicsModule.cpp" }}
  8033. ,{ "pid":12345, "tid":7, "ts":1718090301870715, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.PhysicsModule.cpp" }}
  8034. ,{ "pid":12345, "tid":7, "ts":1718090301870819, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8035. ,{ "pid":12345, "tid":7, "ts":1718090301870914, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UnityWebRequestModule_CodeGen.c" }}
  8036. ,{ "pid":12345, "tid":7, "ts":1718090301870912, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UnityWebRequestModule_CodeGen.c" }}
  8037. ,{ "pid":12345, "tid":7, "ts":1718090301870990, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8038. ,{ "pid":12345, "tid":7, "ts":1718090301871069, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppGenericInstDefinitions.c" }}
  8039. ,{ "pid":12345, "tid":7, "ts":1718090301871068, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppGenericInstDefinitions.c" }}
  8040. ,{ "pid":12345, "tid":7, "ts":1718090301871147, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8041. ,{ "pid":12345, "tid":7, "ts":1718090301871247, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__16.cpp" }}
  8042. ,{ "pid":12345, "tid":7, "ts":1718090301871245, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__16.cpp" }}
  8043. ,{ "pid":12345, "tid":7, "ts":1718090301871317, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8044. ,{ "pid":12345, "tid":7, "ts":1718090301871405, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Numerics_CodeGen.c" }}
  8045. ,{ "pid":12345, "tid":7, "ts":1718090301871403, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Numerics_CodeGen.c" }}
  8046. ,{ "pid":12345, "tid":7, "ts":1718090301871493, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8047. ,{ "pid":12345, "tid":7, "ts":1718090301871599, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.TextCoreTextEngineModule.cpp" }}
  8048. ,{ "pid":12345, "tid":7, "ts":1718090301871597, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.TextCoreTextEngineModule.cpp" }}
  8049. ,{ "pid":12345, "tid":7, "ts":1718090301871680, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8050. ,{ "pid":12345, "tid":7, "ts":1718090301871779, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Purchasing.Stores_CodeGen.c" }}
  8051. ,{ "pid":12345, "tid":7, "ts":1718090301871777, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Purchasing.Stores_CodeGen.c" }}
  8052. ,{ "pid":12345, "tid":7, "ts":1718090301871859, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8053. ,{ "pid":12345, "tid":7, "ts":1718090301871957, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Purchasing.WinRTStub_CodeGen.c" }}
  8054. ,{ "pid":12345, "tid":7, "ts":1718090301871956, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Purchasing.WinRTStub_CodeGen.c" }}
  8055. ,{ "pid":12345, "tid":7, "ts":1718090301872041, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8056. ,{ "pid":12345, "tid":7, "ts":1718090301872140, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Purchasing.WinRTStub.cpp" }}
  8057. ,{ "pid":12345, "tid":7, "ts":1718090301872138, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Purchasing.WinRTStub.cpp" }}
  8058. ,{ "pid":12345, "tid":7, "ts":1718090301872224, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8059. ,{ "pid":12345, "tid":7, "ts":1718090301872340, "dur":202, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__18.cpp" }}
  8060. ,{ "pid":12345, "tid":7, "ts":1718090301872339, "dur":204, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__18.cpp" }}
  8061. ,{ "pid":12345, "tid":7, "ts":1718090301872544, "dur":259, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8062. ,{ "pid":12345, "tid":7, "ts":1718090301872811, "dur":425, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__5.cpp" }}
  8063. ,{ "pid":12345, "tid":7, "ts":1718090301872810, "dur":427, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__5.cpp" }}
  8064. ,{ "pid":12345, "tid":7, "ts":1718090301873238, "dur":151, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8065. ,{ "pid":12345, "tid":7, "ts":1718090301873410, "dur":178, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule__5.cpp" }}
  8066. ,{ "pid":12345, "tid":7, "ts":1718090301873409, "dur":180, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__5.cpp" }}
  8067. ,{ "pid":12345, "tid":7, "ts":1718090301873589, "dur":198, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8068. ,{ "pid":12345, "tid":7, "ts":1718090301873810, "dur":129, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule__14.cpp" }}
  8069. ,{ "pid":12345, "tid":7, "ts":1718090301873807, "dur":133, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__14.cpp" }}
  8070. ,{ "pid":12345, "tid":7, "ts":1718090301873945, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8071. ,{ "pid":12345, "tid":7, "ts":1718090301874074, "dur":156, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppCCalculateFieldValues1.cpp" }}
  8072. ,{ "pid":12345, "tid":7, "ts":1718090301874073, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppCCalculateFieldValues1.cpp" }}
  8073. ,{ "pid":12345, "tid":7, "ts":1718090301874232, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8074. ,{ "pid":12345, "tid":7, "ts":1718090301874311, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppCCalculateTypeValues.cpp" }}
  8075. ,{ "pid":12345, "tid":7, "ts":1718090301874310, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppCCalculateTypeValues.cpp" }}
  8076. ,{ "pid":12345, "tid":7, "ts":1718090301874431, "dur":205, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8077. ,{ "pid":12345, "tid":7, "ts":1718090301874645, "dur":181, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data.cpp" }}
  8078. ,{ "pid":12345, "tid":7, "ts":1718090301874644, "dur":183, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data.cpp" }}
  8079. ,{ "pid":12345, "tid":7, "ts":1718090301874827, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8080. ,{ "pid":12345, "tid":7, "ts":1718090301874942, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.2D.Animation.Runtime_CodeGen.c" }}
  8081. ,{ "pid":12345, "tid":7, "ts":1718090301874941, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.2D.Animation.Runtime_CodeGen.c" }}
  8082. ,{ "pid":12345, "tid":7, "ts":1718090301875047, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8083. ,{ "pid":12345, "tid":7, "ts":1718090301875131, "dur":141, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__16.cpp" }}
  8084. ,{ "pid":12345, "tid":7, "ts":1718090301875130, "dur":142, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__16.cpp" }}
  8085. ,{ "pid":12345, "tid":7, "ts":1718090301875273, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8086. ,{ "pid":12345, "tid":7, "ts":1718090301875406, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Firebase.Auth_CodeGen.c" }}
  8087. ,{ "pid":12345, "tid":7, "ts":1718090301875404, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Firebase.Auth_CodeGen.c" }}
  8088. ,{ "pid":12345, "tid":7, "ts":1718090301875514, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8089. ,{ "pid":12345, "tid":7, "ts":1718090301875594, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__11.cpp" }}
  8090. ,{ "pid":12345, "tid":7, "ts":1718090301875593, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__11.cpp" }}
  8091. ,{ "pid":12345, "tid":7, "ts":1718090301875677, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8092. ,{ "pid":12345, "tid":7, "ts":1718090301875781, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Configuration.cpp" }}
  8093. ,{ "pid":12345, "tid":7, "ts":1718090301875780, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Configuration.cpp" }}
  8094. ,{ "pid":12345, "tid":7, "ts":1718090301875872, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8095. ,{ "pid":12345, "tid":7, "ts":1718090301875961, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__32.cpp" }}
  8096. ,{ "pid":12345, "tid":7, "ts":1718090301875959, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__32.cpp" }}
  8097. ,{ "pid":12345, "tid":7, "ts":1718090301876033, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8098. ,{ "pid":12345, "tid":7, "ts":1718090301876129, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Scheduler_CodeGen.c" }}
  8099. ,{ "pid":12345, "tid":7, "ts":1718090301876127, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Scheduler_CodeGen.c" }}
  8100. ,{ "pid":12345, "tid":7, "ts":1718090301876209, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8101. ,{ "pid":12345, "tid":7, "ts":1718090301876323, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Internal.cpp" }}
  8102. ,{ "pid":12345, "tid":7, "ts":1718090301876321, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Internal.cpp" }}
  8103. ,{ "pid":12345, "tid":7, "ts":1718090301876406, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8104. ,{ "pid":12345, "tid":7, "ts":1718090301876490, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Numerics.cpp" }}
  8105. ,{ "pid":12345, "tid":7, "ts":1718090301876488, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Numerics.cpp" }}
  8106. ,{ "pid":12345, "tid":7, "ts":1718090301876562, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8107. ,{ "pid":12345, "tid":7, "ts":1718090301876638, "dur":156, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.TextMeshPro__3.cpp" }}
  8108. ,{ "pid":12345, "tid":7, "ts":1718090301876637, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.TextMeshPro__3.cpp" }}
  8109. ,{ "pid":12345, "tid":7, "ts":1718090301876794, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8110. ,{ "pid":12345, "tid":7, "ts":1718090301876900, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.GameCenterModule_CodeGen.c" }}
  8111. ,{ "pid":12345, "tid":7, "ts":1718090301876899, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.GameCenterModule_CodeGen.c" }}
  8112. ,{ "pid":12345, "tid":7, "ts":1718090301877018, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8113. ,{ "pid":12345, "tid":7, "ts":1718090301877178, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__9.cpp" }}
  8114. ,{ "pid":12345, "tid":7, "ts":1718090301877177, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__9.cpp" }}
  8115. ,{ "pid":12345, "tid":7, "ts":1718090301877267, "dur":144, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8116. ,{ "pid":12345, "tid":7, "ts":1718090301877436, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.IMGUIModule.cpp" }}
  8117. ,{ "pid":12345, "tid":7, "ts":1718090301877435, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.IMGUIModule.cpp" }}
  8118. ,{ "pid":12345, "tid":7, "ts":1718090301877519, "dur":165, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8119. ,{ "pid":12345, "tid":7, "ts":1718090301877689, "dur":230, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/Managed/Resources/System.Drawing.dll-resources.dat" }}
  8120. ,{ "pid":12345, "tid":7, "ts":1718090301877919, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8121. ,{ "pid":12345, "tid":7, "ts":1718090301878046, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__14.cpp" }}
  8122. ,{ "pid":12345, "tid":7, "ts":1718090301878045, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__14.cpp" }}
  8123. ,{ "pid":12345, "tid":7, "ts":1718090301878159, "dur":172, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8124. ,{ "pid":12345, "tid":7, "ts":1718090301878352, "dur":153, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  8125. ,{ "pid":12345, "tid":8, "ts":1718090301624843, "dur":116293, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  8126. ,{ "pid":12345, "tid":8, "ts":1718090301741138, "dur":1016, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  8127. ,{ "pid":12345, "tid":8, "ts":1718090301742154, "dur":1002, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  8128. ,{ "pid":12345, "tid":8, "ts":1718090301743156, "dur":926, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  8129. ,{ "pid":12345, "tid":8, "ts":1718090301744082, "dur":945, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  8130. ,{ "pid":12345, "tid":8, "ts":1718090301745028, "dur":1164, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  8131. ,{ "pid":12345, "tid":8, "ts":1718090301746192, "dur":30009, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  8132. ,{ "pid":12345, "tid":8, "ts":1718090301776219, "dur":62, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/GoogleMobileAds.Common-FeaturesChecked.txt_yh7e.info" }}
  8133. ,{ "pid":12345, "tid":8, "ts":1718090301776335, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8134. ,{ "pid":12345, "tid":8, "ts":1718090301776416, "dur":152, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.SpriteShapeModule-FeaturesChecked.txt_t9x7.info" }}
  8135. ,{ "pid":12345, "tid":8, "ts":1718090301776659, "dur":59, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/Unity.TextMeshPro-FeaturesChecked.txt_u7lt.info" }}
  8136. ,{ "pid":12345, "tid":8, "ts":1718090301776753, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8137. ,{ "pid":12345, "tid":8, "ts":1718090301776859, "dur":181, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8138. ,{ "pid":12345, "tid":8, "ts":1718090301777053, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8139. ,{ "pid":12345, "tid":8, "ts":1718090301777154, "dur":135, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8140. ,{ "pid":12345, "tid":8, "ts":1718090301777294, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8141. ,{ "pid":12345, "tid":8, "ts":1718090301777437, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/MuteSwitchDetection.aiff" }}
  8142. ,{ "pid":12345, "tid":8, "ts":1718090301777504, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8143. ,{ "pid":12345, "tid":8, "ts":1718090301777629, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/armv7-apple-ios.swiftinterface" }}
  8144. ,{ "pid":12345, "tid":8, "ts":1718090301777703, "dur":167, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8145. ,{ "pid":12345, "tid":8, "ts":1718090301777875, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios.swiftmodule" }}
  8146. ,{ "pid":12345, "tid":8, "ts":1718090301778013, "dur":182, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8147. ,{ "pid":12345, "tid":8, "ts":1718090301778202, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/module.modulemap" }}
  8148. ,{ "pid":12345, "tid":8, "ts":1718090301778299, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8149. ,{ "pid":12345, "tid":8, "ts":1718090301778365, "dur":209, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSBannerError.h" }}
  8150. ,{ "pid":12345, "tid":8, "ts":1718090301778360, "dur":215, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSBannerError.h" }}
  8151. ,{ "pid":12345, "tid":8, "ts":1718090301778576, "dur":207, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8152. ,{ "pid":12345, "tid":8, "ts":1718090301778804, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityMonetizationPlacementContentState.h" }}
  8153. ,{ "pid":12345, "tid":8, "ts":1718090301778803, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityMonetizationPlacementContentState.h" }}
  8154. ,{ "pid":12345, "tid":8, "ts":1718090301778905, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8155. ,{ "pid":12345, "tid":8, "ts":1718090301779042, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsShowDelegate.h" }}
  8156. ,{ "pid":12345, "tid":8, "ts":1718090301779040, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsShowDelegate.h" }}
  8157. ,{ "pid":12345, "tid":8, "ts":1718090301779129, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8158. ,{ "pid":12345, "tid":8, "ts":1718090301779288, "dur":138, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsFinishState.h" }}
  8159. ,{ "pid":12345, "tid":8, "ts":1718090301779287, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsFinishState.h" }}
  8160. ,{ "pid":12345, "tid":8, "ts":1718090301779428, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8161. ,{ "pid":12345, "tid":8, "ts":1718090301779500, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAds.h" }}
  8162. ,{ "pid":12345, "tid":8, "ts":1718090301779499, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAds.h" }}
  8163. ,{ "pid":12345, "tid":8, "ts":1718090301779662, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONPromoAdPlacementContent.h" }}
  8164. ,{ "pid":12345, "tid":8, "ts":1718090301779659, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONPromoAdPlacementContent.h" }}
  8165. ,{ "pid":12345, "tid":8, "ts":1718090301779754, "dur":163, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8166. ,{ "pid":12345, "tid":8, "ts":1718090301779924, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSMetaData.h" }}
  8167. ,{ "pid":12345, "tid":8, "ts":1718090301779923, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSMetaData.h" }}
  8168. ,{ "pid":12345, "tid":8, "ts":1718090301779994, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8169. ,{ "pid":12345, "tid":8, "ts":1718090301780142, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PlayerDataCache/iOS2/Data/boot.config" }}
  8170. ,{ "pid":12345, "tid":8, "ts":1718090301781385, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.AndroidJNIModule.dll" }}
  8171. ,{ "pid":12345, "tid":8, "ts":1718090301781526, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.AssetBundleModule.dll" }}
  8172. ,{ "pid":12345, "tid":8, "ts":1718090301781655, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.ClothModule.dll" }}
  8173. ,{ "pid":12345, "tid":8, "ts":1718090301781737, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.ContentLoadModule.dll" }}
  8174. ,{ "pid":12345, "tid":8, "ts":1718090301781821, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.CoreModule.dll" }}
  8175. ,{ "pid":12345, "tid":8, "ts":1718090301781917, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.DirectorModule.dll" }}
  8176. ,{ "pid":12345, "tid":8, "ts":1718090301781977, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.GIModule.dll" }}
  8177. ,{ "pid":12345, "tid":8, "ts":1718090301782044, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.GameCenterModule.dll" }}
  8178. ,{ "pid":12345, "tid":8, "ts":1718090301782363, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.ParticleSystemModule.dll" }}
  8179. ,{ "pid":12345, "tid":8, "ts":1718090301782418, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.PerformanceReportingModule.dll" }}
  8180. ,{ "pid":12345, "tid":8, "ts":1718090301782693, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.SpriteMaskModule.dll" }}
  8181. ,{ "pid":12345, "tid":8, "ts":1718090301782831, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.SubstanceModule.dll" }}
  8182. ,{ "pid":12345, "tid":8, "ts":1718090301783140, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.TilemapModule.dll" }}
  8183. ,{ "pid":12345, "tid":8, "ts":1718090301783208, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.UIElementsModule.dll" }}
  8184. ,{ "pid":12345, "tid":8, "ts":1718090301783303, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.UIModule.dll" }}
  8185. ,{ "pid":12345, "tid":8, "ts":1718090301783733, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.VideoModule.dll" }}
  8186. ,{ "pid":12345, "tid":8, "ts":1718090301783903, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.dll" }}
  8187. ,{ "pid":12345, "tid":8, "ts":1718090301784001, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.AppleMacosStub.dll" }}
  8188. ,{ "pid":12345, "tid":8, "ts":1718090301784239, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.SecurityCore.dll" }}
  8189. ,{ "pid":12345, "tid":8, "ts":1718090301784577, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.WinRTCore.dll" }}
  8190. ,{ "pid":12345, "tid":8, "ts":1718090301784700, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Advertisements.dll" }}
  8191. ,{ "pid":12345, "tid":8, "ts":1718090301786004, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Collections.dll" }}
  8192. ,{ "pid":12345, "tid":8, "ts":1718090301786318, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Diagnostics.StackTrace.dll" }}
  8193. ,{ "pid":12345, "tid":8, "ts":1718090301786500, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Diagnostics.TraceSource.dll" }}
  8194. ,{ "pid":12345, "tid":8, "ts":1718090301786592, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Diagnostics.Tracing.dll" }}
  8195. ,{ "pid":12345, "tid":8, "ts":1718090301786780, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.IO.Compression.ZipFile.dll" }}
  8196. ,{ "pid":12345, "tid":8, "ts":1718090301787670, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.ObjectModel.dll" }}
  8197. ,{ "pid":12345, "tid":8, "ts":1718090301787932, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Resources.Reader.dll" }}
  8198. ,{ "pid":12345, "tid":8, "ts":1718090301788210, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Runtime.InteropServices.dll" }}
  8199. ,{ "pid":12345, "tid":8, "ts":1718090301788939, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.Hashing.dll" }}
  8200. ,{ "pid":12345, "tid":8, "ts":1718090301789102, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.ProtectedData.dll" }}
  8201. ,{ "pid":12345, "tid":8, "ts":1718090301789548, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.ServiceProcess.ServiceController.dll" }}
  8202. ,{ "pid":12345, "tid":8, "ts":1718090301791009, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Net.Http.WebRequest.dll" }}
  8203. ,{ "pid":12345, "tid":8, "ts":1718090301791061, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Net.Http.dll" }}
  8204. ,{ "pid":12345, "tid":8, "ts":1718090301791366, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Security.dll" }}
  8205. ,{ "pid":12345, "tid":8, "ts":1718090301792176, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.Stevedore.Program.exe" }}
  8206. ,{ "pid":12345, "tid":8, "ts":1718090301792273, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.TinyProfiler2.dll" }}
  8207. ,{ "pid":12345, "tid":8, "ts":1718090301792526, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.TundraBackend.dll" }}
  8208. ,{ "pid":12345, "tid":8, "ts":1718090301792637, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/BeeBuildProgramCommon.Data.dll" }}
  8209. ,{ "pid":12345, "tid":8, "ts":1718090301792939, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/PlayerBuildProgramLibrary.pdb" }}
  8210. ,{ "pid":12345, "tid":8, "ts":1718090301793352, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Unity.Options.dll" }}
  8211. ,{ "pid":12345, "tid":8, "ts":1718090301780095, "dur":13308, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"AddBootConfigGUID Library/Bee/artifacts/iOS/boot.config" }}
  8212. ,{ "pid":12345, "tid":8, "ts":1718090301793403, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8213. ,{ "pid":12345, "tid":8, "ts":1718090301793550, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8214. ,{ "pid":12345, "tid":8, "ts":1718090301793663, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8215. ,{ "pid":12345, "tid":8, "ts":1718090301793775, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.IO/FileSystemWatcher.h" }}
  8216. ,{ "pid":12345, "tid":8, "ts":1718090301793764, "dur":131, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.IO/FileSystemWatcher.h" }}
  8217. ,{ "pid":12345, "tid":8, "ts":1718090301793896, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8218. ,{ "pid":12345, "tid":8, "ts":1718090301793995, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/DefaultTraceListener.h" }}
  8219. ,{ "pid":12345, "tid":8, "ts":1718090301793993, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/DefaultTraceListener.h" }}
  8220. ,{ "pid":12345, "tid":8, "ts":1718090301794093, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8221. ,{ "pid":12345, "tid":8, "ts":1718090301794173, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System.Core/System.IO.MemoryMappedFiles/MemoryMapImpl.h" }}
  8222. ,{ "pid":12345, "tid":8, "ts":1718090301794172, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System.Core/System.IO.MemoryMappedFiles/MemoryMapImpl.h" }}
  8223. ,{ "pid":12345, "tid":8, "ts":1718090301794240, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8224. ,{ "pid":12345, "tid":8, "ts":1718090301794355, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Type.cpp" }}
  8225. ,{ "pid":12345, "tid":8, "ts":1718090301794354, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Type.cpp" }}
  8226. ,{ "pid":12345, "tid":8, "ts":1718090301794416, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8227. ,{ "pid":12345, "tid":8, "ts":1718090301794493, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeMethodHandle.h" }}
  8228. ,{ "pid":12345, "tid":8, "ts":1718090301794492, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeMethodHandle.h" }}
  8229. ,{ "pid":12345, "tid":8, "ts":1718090301794571, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8230. ,{ "pid":12345, "tid":8, "ts":1718090301794703, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/NumberFormatter.cpp" }}
  8231. ,{ "pid":12345, "tid":8, "ts":1718090301794701, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/NumberFormatter.cpp" }}
  8232. ,{ "pid":12345, "tid":8, "ts":1718090301794823, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8233. ,{ "pid":12345, "tid":8, "ts":1718090301794889, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Exception.cpp" }}
  8234. ,{ "pid":12345, "tid":8, "ts":1718090301794888, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Exception.cpp" }}
  8235. ,{ "pid":12345, "tid":8, "ts":1718090301794979, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8236. ,{ "pid":12345, "tid":8, "ts":1718090301795076, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/CurrentSystemTimeZone.h" }}
  8237. ,{ "pid":12345, "tid":8, "ts":1718090301795075, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/CurrentSystemTimeZone.h" }}
  8238. ,{ "pid":12345, "tid":8, "ts":1718090301795177, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8239. ,{ "pid":12345, "tid":8, "ts":1718090301795266, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Buffer.cpp" }}
  8240. ,{ "pid":12345, "tid":8, "ts":1718090301795264, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Buffer.cpp" }}
  8241. ,{ "pid":12345, "tid":8, "ts":1718090301795329, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8242. ,{ "pid":12345, "tid":8, "ts":1718090301795407, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/WaitHandle.h" }}
  8243. ,{ "pid":12345, "tid":8, "ts":1718090301795405, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/WaitHandle.h" }}
  8244. ,{ "pid":12345, "tid":8, "ts":1718090301795486, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8245. ,{ "pid":12345, "tid":8, "ts":1718090301795553, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/OSSpecificSynchronizationContext.cpp" }}
  8246. ,{ "pid":12345, "tid":8, "ts":1718090301795551, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/OSSpecificSynchronizationContext.cpp" }}
  8247. ,{ "pid":12345, "tid":8, "ts":1718090301795605, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8248. ,{ "pid":12345, "tid":8, "ts":1718090301795672, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/InternalThread.h" }}
  8249. ,{ "pid":12345, "tid":8, "ts":1718090301795671, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/InternalThread.h" }}
  8250. ,{ "pid":12345, "tid":8, "ts":1718090301795759, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8251. ,{ "pid":12345, "tid":8, "ts":1718090301795850, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsPrincipal.cpp" }}
  8252. ,{ "pid":12345, "tid":8, "ts":1718090301795848, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsPrincipal.cpp" }}
  8253. ,{ "pid":12345, "tid":8, "ts":1718090301795916, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8254. ,{ "pid":12345, "tid":8, "ts":1718090301795980, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Cryptography/RNGCryptoServiceProvider.h" }}
  8255. ,{ "pid":12345, "tid":8, "ts":1718090301795978, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Cryptography/RNGCryptoServiceProvider.h" }}
  8256. ,{ "pid":12345, "tid":8, "ts":1718090301796049, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8257. ,{ "pid":12345, "tid":8, "ts":1718090301796162, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting/RemotingServices.cpp" }}
  8258. ,{ "pid":12345, "tid":8, "ts":1718090301796161, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting/RemotingServices.cpp" }}
  8259. ,{ "pid":12345, "tid":8, "ts":1718090301796259, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8260. ,{ "pid":12345, "tid":8, "ts":1718090301796321, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Contexts/Context.h" }}
  8261. ,{ "pid":12345, "tid":8, "ts":1718090301796319, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Contexts/Context.h" }}
  8262. ,{ "pid":12345, "tid":8, "ts":1718090301796402, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8263. ,{ "pid":12345, "tid":8, "ts":1718090301796487, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/Marshal.cpp" }}
  8264. ,{ "pid":12345, "tid":8, "ts":1718090301796485, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/Marshal.cpp" }}
  8265. ,{ "pid":12345, "tid":8, "ts":1718090301796579, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8266. ,{ "pid":12345, "tid":8, "ts":1718090301796669, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeParameterInfo.h" }}
  8267. ,{ "pid":12345, "tid":8, "ts":1718090301796668, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeParameterInfo.h" }}
  8268. ,{ "pid":12345, "tid":8, "ts":1718090301796747, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8269. ,{ "pid":12345, "tid":8, "ts":1718090301796833, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeFieldInfo.cpp" }}
  8270. ,{ "pid":12345, "tid":8, "ts":1718090301796824, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeFieldInfo.cpp" }}
  8271. ,{ "pid":12345, "tid":8, "ts":1718090301796933, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8272. ,{ "pid":12345, "tid":8, "ts":1718090301797012, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/ParameterInfo.cpp" }}
  8273. ,{ "pid":12345, "tid":8, "ts":1718090301797011, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/ParameterInfo.cpp" }}
  8274. ,{ "pid":12345, "tid":8, "ts":1718090301797092, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8275. ,{ "pid":12345, "tid":8, "ts":1718090301797182, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/MethodBase.cpp" }}
  8276. ,{ "pid":12345, "tid":8, "ts":1718090301797180, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/MethodBase.cpp" }}
  8277. ,{ "pid":12345, "tid":8, "ts":1718090301797261, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8278. ,{ "pid":12345, "tid":8, "ts":1718090301797344, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/AssemblyName.h" }}
  8279. ,{ "pid":12345, "tid":8, "ts":1718090301797343, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/AssemblyName.h" }}
  8280. ,{ "pid":12345, "tid":8, "ts":1718090301797412, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8281. ,{ "pid":12345, "tid":8, "ts":1718090301797495, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/MonoIO.cpp" }}
  8282. ,{ "pid":12345, "tid":8, "ts":1718090301797495, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/MonoIO.cpp" }}
  8283. ,{ "pid":12345, "tid":8, "ts":1718090301797563, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8284. ,{ "pid":12345, "tid":8, "ts":1718090301797625, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/Generated/CultureInfoTablesNet_4_0.h" }}
  8285. ,{ "pid":12345, "tid":8, "ts":1718090301797624, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/Generated/CultureInfoTablesNet_4_0.h" }}
  8286. ,{ "pid":12345, "tid":8, "ts":1718090301797787, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CultureData.cpp" }}
  8287. ,{ "pid":12345, "tid":8, "ts":1718090301797786, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CultureData.cpp" }}
  8288. ,{ "pid":12345, "tid":8, "ts":1718090301797882, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8289. ,{ "pid":12345, "tid":8, "ts":1718090301797956, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Diagnostics/StackTrace.cpp" }}
  8290. ,{ "pid":12345, "tid":8, "ts":1718090301797955, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Diagnostics/StackTrace.cpp" }}
  8291. ,{ "pid":12345, "tid":8, "ts":1718090301798010, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8292. ,{ "pid":12345, "tid":8, "ts":1718090301798083, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/RuntimeMarshal.h" }}
  8293. ,{ "pid":12345, "tid":8, "ts":1718090301798082, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/RuntimeMarshal.h" }}
  8294. ,{ "pid":12345, "tid":8, "ts":1718090301798195, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/RuntimeClassHandle.cpp" }}
  8295. ,{ "pid":12345, "tid":8, "ts":1718090301798194, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/RuntimeClassHandle.cpp" }}
  8296. ,{ "pid":12345, "tid":8, "ts":1718090301798328, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8297. ,{ "pid":12345, "tid":8, "ts":1718090301798428, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8298. ,{ "pid":12345, "tid":8, "ts":1718090301798490, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/WriteBarrier.cpp" }}
  8299. ,{ "pid":12345, "tid":8, "ts":1718090301798489, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/WriteBarrier.cpp" }}
  8300. ,{ "pid":12345, "tid":8, "ts":1718090301798561, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8301. ,{ "pid":12345, "tid":8, "ts":1718090301798635, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/BoehmGC.cpp" }}
  8302. ,{ "pid":12345, "tid":8, "ts":1718090301798634, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/BoehmGC.cpp" }}
  8303. ,{ "pid":12345, "tid":8, "ts":1718090301798715, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8304. ,{ "pid":12345, "tid":8, "ts":1718090301798815, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-tiny.cpp" }}
  8305. ,{ "pid":12345, "tid":8, "ts":1718090301798813, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-tiny.cpp" }}
  8306. ,{ "pid":12345, "tid":8, "ts":1718090301798913, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8307. ,{ "pid":12345, "tid":8, "ts":1718090301798977, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/char-conversions.cpp" }}
  8308. ,{ "pid":12345, "tid":8, "ts":1718090301798976, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/char-conversions.cpp" }}
  8309. ,{ "pid":12345, "tid":8, "ts":1718090301799055, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8310. ,{ "pid":12345, "tid":8, "ts":1718090301799118, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/trees.c" }}
  8311. ,{ "pid":12345, "tid":8, "ts":1718090301799117, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/trees.c" }}
  8312. ,{ "pid":12345, "tid":8, "ts":1718090301799189, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8313. ,{ "pid":12345, "tid":8, "ts":1718090301799262, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/inffast.h" }}
  8314. ,{ "pid":12345, "tid":8, "ts":1718090301799261, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inffast.h" }}
  8315. ,{ "pid":12345, "tid":8, "ts":1718090301799325, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8316. ,{ "pid":12345, "tid":8, "ts":1718090301799413, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/gzclose.c" }}
  8317. ,{ "pid":12345, "tid":8, "ts":1718090301799412, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/gzclose.c" }}
  8318. ,{ "pid":12345, "tid":8, "ts":1718090301799486, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8319. ,{ "pid":12345, "tid":8, "ts":1718090301799596, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/xxHash/xxhash.c" }}
  8320. ,{ "pid":12345, "tid":8, "ts":1718090301799582, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xxHash/xxhash.c" }}
  8321. ,{ "pid":12345, "tid":8, "ts":1718090301799676, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8322. ,{ "pid":12345, "tid":8, "ts":1718090301799765, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/xamarin-android/monodroid.h" }}
  8323. ,{ "pid":12345, "tid":8, "ts":1718090301799763, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xamarin-android/monodroid.h" }}
  8324. ,{ "pid":12345, "tid":8, "ts":1718090301799845, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8325. ,{ "pid":12345, "tid":8, "ts":1718090301799945, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/w32api.h" }}
  8326. ,{ "pid":12345, "tid":8, "ts":1718090301799944, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/w32api.h" }}
  8327. ,{ "pid":12345, "tid":8, "ts":1718090301800013, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8328. ,{ "pid":12345, "tid":8, "ts":1718090301800093, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/strenc-internals.h" }}
  8329. ,{ "pid":12345, "tid":8, "ts":1718090301800092, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/strenc-internals.h" }}
  8330. ,{ "pid":12345, "tid":8, "ts":1718090301800214, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8331. ,{ "pid":12345, "tid":8, "ts":1718090301800269, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/os-event-unix.c" }}
  8332. ,{ "pid":12345, "tid":8, "ts":1718090301800268, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/os-event-unix.c" }}
  8333. ,{ "pid":12345, "tid":8, "ts":1718090301800333, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8334. ,{ "pid":12345, "tid":8, "ts":1718090301800425, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/networking-missing.c" }}
  8335. ,{ "pid":12345, "tid":8, "ts":1718090301800424, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/networking-missing.c" }}
  8336. ,{ "pid":12345, "tid":8, "ts":1718090301800525, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8337. ,{ "pid":12345, "tid":8, "ts":1718090301800606, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-tls.h" }}
  8338. ,{ "pid":12345, "tid":8, "ts":1718090301800604, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-tls.h" }}
  8339. ,{ "pid":12345, "tid":8, "ts":1718090301800687, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8340. ,{ "pid":12345, "tid":8, "ts":1718090301800827, "dur":689, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-posix.c" }}
  8341. ,{ "pid":12345, "tid":8, "ts":1718090301800825, "dur":692, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-posix.c" }}
  8342. ,{ "pid":12345, "tid":8, "ts":1718090301801517, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8343. ,{ "pid":12345, "tid":8, "ts":1718090301801615, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-api.h" }}
  8344. ,{ "pid":12345, "tid":8, "ts":1718090301801613, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-api.h" }}
  8345. ,{ "pid":12345, "tid":8, "ts":1718090301801693, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8346. ,{ "pid":12345, "tid":8, "ts":1718090301801772, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-sigcontext.h" }}
  8347. ,{ "pid":12345, "tid":8, "ts":1718090301801770, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-sigcontext.h" }}
  8348. ,{ "pid":12345, "tid":8, "ts":1718090301801852, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8349. ,{ "pid":12345, "tid":8, "ts":1718090301801960, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-proclib.h" }}
  8350. ,{ "pid":12345, "tid":8, "ts":1718090301801959, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-proclib.h" }}
  8351. ,{ "pid":12345, "tid":8, "ts":1718090301802045, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8352. ,{ "pid":12345, "tid":8, "ts":1718090301802116, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-os-wait.h" }}
  8353. ,{ "pid":12345, "tid":8, "ts":1718090301802115, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-os-wait.h" }}
  8354. ,{ "pid":12345, "tid":8, "ts":1718090301802208, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8355. ,{ "pid":12345, "tid":8, "ts":1718090301802292, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-once.h" }}
  8356. ,{ "pid":12345, "tid":8, "ts":1718090301802291, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-once.h" }}
  8357. ,{ "pid":12345, "tid":8, "ts":1718090301802390, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8358. ,{ "pid":12345, "tid":8, "ts":1718090301802472, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-memory-model.h" }}
  8359. ,{ "pid":12345, "tid":8, "ts":1718090301802470, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-memory-model.h" }}
  8360. ,{ "pid":12345, "tid":8, "ts":1718090301802538, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8361. ,{ "pid":12345, "tid":8, "ts":1718090301802622, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-logger.c" }}
  8362. ,{ "pid":12345, "tid":8, "ts":1718090301802621, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-logger.c" }}
  8363. ,{ "pid":12345, "tid":8, "ts":1718090301802707, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8364. ,{ "pid":12345, "tid":8, "ts":1718090301802791, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-log-android.c" }}
  8365. ,{ "pid":12345, "tid":8, "ts":1718090301802783, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-log-android.c" }}
  8366. ,{ "pid":12345, "tid":8, "ts":1718090301802859, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8367. ,{ "pid":12345, "tid":8, "ts":1718090301802915, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-internal-hash.c" }}
  8368. ,{ "pid":12345, "tid":8, "ts":1718090301802915, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-internal-hash.c" }}
  8369. ,{ "pid":12345, "tid":8, "ts":1718090301802980, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8370. ,{ "pid":12345, "tid":8, "ts":1718090301803041, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-hwcap-arm.c" }}
  8371. ,{ "pid":12345, "tid":8, "ts":1718090301803092, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8372. ,{ "pid":12345, "tid":8, "ts":1718090301803149, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-errno.h" }}
  8373. ,{ "pid":12345, "tid":8, "ts":1718090301803148, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-errno.h" }}
  8374. ,{ "pid":12345, "tid":8, "ts":1718090301803214, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8375. ,{ "pid":12345, "tid":8, "ts":1718090301803282, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl-unity.c" }}
  8376. ,{ "pid":12345, "tid":8, "ts":1718090301803280, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl-unity.c" }}
  8377. ,{ "pid":12345, "tid":8, "ts":1718090301803392, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-coop-semaphore.h" }}
  8378. ,{ "pid":12345, "tid":8, "ts":1718090301803391, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-coop-semaphore.h" }}
  8379. ,{ "pid":12345, "tid":8, "ts":1718090301803451, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8380. ,{ "pid":12345, "tid":8, "ts":1718090301803573, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8381. ,{ "pid":12345, "tid":8, "ts":1718090301803655, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mach-support.c" }}
  8382. ,{ "pid":12345, "tid":8, "ts":1718090301803654, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mach-support.c" }}
  8383. ,{ "pid":12345, "tid":8, "ts":1718090301803720, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8384. ,{ "pid":12345, "tid":8, "ts":1718090301803780, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/lock-free-array-queue.c" }}
  8385. ,{ "pid":12345, "tid":8, "ts":1718090301803779, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/lock-free-array-queue.c" }}
  8386. ,{ "pid":12345, "tid":8, "ts":1718090301803833, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8387. ,{ "pid":12345, "tid":8, "ts":1718090301803887, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/hazard-pointer.c" }}
  8388. ,{ "pid":12345, "tid":8, "ts":1718090301803886, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/hazard-pointer.c" }}
  8389. ,{ "pid":12345, "tid":8, "ts":1718090301803940, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8390. ,{ "pid":12345, "tid":8, "ts":1718090301804012, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/dlmalloc.h" }}
  8391. ,{ "pid":12345, "tid":8, "ts":1718090301804011, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/dlmalloc.h" }}
  8392. ,{ "pid":12345, "tid":8, "ts":1718090301804081, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8393. ,{ "pid":12345, "tid":8, "ts":1718090301804141, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-workers.h" }}
  8394. ,{ "pid":12345, "tid":8, "ts":1718090301804140, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-workers.h" }}
  8395. ,{ "pid":12345, "tid":8, "ts":1718090301804196, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8396. ,{ "pid":12345, "tid":8, "ts":1718090301804260, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-scan-object.h" }}
  8397. ,{ "pid":12345, "tid":8, "ts":1718090301804259, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-scan-object.h" }}
  8398. ,{ "pid":12345, "tid":8, "ts":1718090301804328, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8399. ,{ "pid":12345, "tid":8, "ts":1718090301804417, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-pointer-queue.c" }}
  8400. ,{ "pid":12345, "tid":8, "ts":1718090301804416, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-pointer-queue.c" }}
  8401. ,{ "pid":12345, "tid":8, "ts":1718090301804494, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8402. ,{ "pid":12345, "tid":8, "ts":1718090301804564, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-memory-governor.h" }}
  8403. ,{ "pid":12345, "tid":8, "ts":1718090301804563, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-memory-governor.h" }}
  8404. ,{ "pid":12345, "tid":8, "ts":1718090301804641, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8405. ,{ "pid":12345, "tid":8, "ts":1718090301804725, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-layout-stats.c" }}
  8406. ,{ "pid":12345, "tid":8, "ts":1718090301804724, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-layout-stats.c" }}
  8407. ,{ "pid":12345, "tid":8, "ts":1718090301804800, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8408. ,{ "pid":12345, "tid":8, "ts":1718090301804885, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-gc.h" }}
  8409. ,{ "pid":12345, "tid":8, "ts":1718090301804884, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-gc.h" }}
  8410. ,{ "pid":12345, "tid":8, "ts":1718090301804955, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8411. ,{ "pid":12345, "tid":8, "ts":1718090301805019, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-conf.h" }}
  8412. ,{ "pid":12345, "tid":8, "ts":1718090301805018, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-conf.h" }}
  8413. ,{ "pid":12345, "tid":8, "ts":1718090301805076, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8414. ,{ "pid":12345, "tid":8, "ts":1718090301805141, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-alloc.c" }}
  8415. ,{ "pid":12345, "tid":8, "ts":1718090301805140, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-alloc.c" }}
  8416. ,{ "pid":12345, "tid":8, "ts":1718090301805197, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8417. ,{ "pid":12345, "tid":8, "ts":1718090301805257, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/debugger-engine.c" }}
  8418. ,{ "pid":12345, "tid":8, "ts":1718090301805256, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/debugger-engine.c" }}
  8419. ,{ "pid":12345, "tid":8, "ts":1718090301805312, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8420. ,{ "pid":12345, "tid":8, "ts":1718090301805382, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32socket-unix.c" }}
  8421. ,{ "pid":12345, "tid":8, "ts":1718090301805381, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32socket-unix.c" }}
  8422. ,{ "pid":12345, "tid":8, "ts":1718090301805439, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8423. ,{ "pid":12345, "tid":8, "ts":1718090301805523, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-win32.c" }}
  8424. ,{ "pid":12345, "tid":8, "ts":1718090301805521, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-win32.c" }}
  8425. ,{ "pid":12345, "tid":8, "ts":1718090301805595, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8426. ,{ "pid":12345, "tid":8, "ts":1718090301805679, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32mutex.h" }}
  8427. ,{ "pid":12345, "tid":8, "ts":1718090301805678, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32mutex.h" }}
  8428. ,{ "pid":12345, "tid":8, "ts":1718090301805753, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8429. ,{ "pid":12345, "tid":8, "ts":1718090301805844, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file.h" }}
  8430. ,{ "pid":12345, "tid":8, "ts":1718090301805843, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file.h" }}
  8431. ,{ "pid":12345, "tid":8, "ts":1718090301805945, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8432. ,{ "pid":12345, "tid":8, "ts":1718090301806019, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file-internals.h" }}
  8433. ,{ "pid":12345, "tid":8, "ts":1718090301806017, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file-internals.h" }}
  8434. ,{ "pid":12345, "tid":8, "ts":1718090301806112, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8435. ,{ "pid":12345, "tid":8, "ts":1718090301806199, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/verify.h" }}
  8436. ,{ "pid":12345, "tid":8, "ts":1718090301806187, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/verify.h" }}
  8437. ,{ "pid":12345, "tid":8, "ts":1718090301806299, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8438. ,{ "pid":12345, "tid":8, "ts":1718090301806373, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/tokentype.h" }}
  8439. ,{ "pid":12345, "tid":8, "ts":1718090301806371, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/tokentype.h" }}
  8440. ,{ "pid":12345, "tid":8, "ts":1718090301806449, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8441. ,{ "pid":12345, "tid":8, "ts":1718090301806535, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threadpool-worker-default.c" }}
  8442. ,{ "pid":12345, "tid":8, "ts":1718090301806533, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threadpool-worker-default.c" }}
  8443. ,{ "pid":12345, "tid":8, "ts":1718090301806615, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8444. ,{ "pid":12345, "tid":8, "ts":1718090301806695, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/string-icalls.c" }}
  8445. ,{ "pid":12345, "tid":8, "ts":1718090301806693, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/string-icalls.c" }}
  8446. ,{ "pid":12345, "tid":8, "ts":1718090301806777, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8447. ,{ "pid":12345, "tid":8, "ts":1718090301806864, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-tarjan-bridge.c" }}
  8448. ,{ "pid":12345, "tid":8, "ts":1718090301806862, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-tarjan-bridge.c" }}
  8449. ,{ "pid":12345, "tid":8, "ts":1718090301806940, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8450. ,{ "pid":12345, "tid":8, "ts":1718090301807032, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-client-mono.h" }}
  8451. ,{ "pid":12345, "tid":8, "ts":1718090301807030, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-client-mono.h" }}
  8452. ,{ "pid":12345, "tid":8, "ts":1718090301807113, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8453. ,{ "pid":12345, "tid":8, "ts":1718090301807205, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/security-manager.h" }}
  8454. ,{ "pid":12345, "tid":8, "ts":1718090301807204, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/security-manager.h" }}
  8455. ,{ "pid":12345, "tid":8, "ts":1718090301807291, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8456. ,{ "pid":12345, "tid":8, "ts":1718090301807383, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/remoting.h" }}
  8457. ,{ "pid":12345, "tid":8, "ts":1718090301807381, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/remoting.h" }}
  8458. ,{ "pid":12345, "tid":8, "ts":1718090301807465, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8459. ,{ "pid":12345, "tid":8, "ts":1718090301807549, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/rand.c" }}
  8460. ,{ "pid":12345, "tid":8, "ts":1718090301807548, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/rand.c" }}
  8461. ,{ "pid":12345, "tid":8, "ts":1718090301807626, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8462. ,{ "pid":12345, "tid":8, "ts":1718090301807717, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/profiler-events.h" }}
  8463. ,{ "pid":12345, "tid":8, "ts":1718090301807715, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/profiler-events.h" }}
  8464. ,{ "pid":12345, "tid":8, "ts":1718090301807809, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8465. ,{ "pid":12345, "tid":8, "ts":1718090301807897, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/object.c" }}
  8466. ,{ "pid":12345, "tid":8, "ts":1718090301807895, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/object.c" }}
  8467. ,{ "pid":12345, "tid":8, "ts":1718090301807972, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8468. ,{ "pid":12345, "tid":8, "ts":1718090301808063, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/null-gc.c" }}
  8469. ,{ "pid":12345, "tid":8, "ts":1718090301808062, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/null-gc.c" }}
  8470. ,{ "pid":12345, "tid":8, "ts":1718090301808149, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8471. ,{ "pid":12345, "tid":8, "ts":1718090301808229, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-route.c" }}
  8472. ,{ "pid":12345, "tid":8, "ts":1718090301808227, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-route.c" }}
  8473. ,{ "pid":12345, "tid":8, "ts":1718090301808312, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8474. ,{ "pid":12345, "tid":8, "ts":1718090301808393, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-hash.h" }}
  8475. ,{ "pid":12345, "tid":8, "ts":1718090301808391, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-hash.h" }}
  8476. ,{ "pid":12345, "tid":8, "ts":1718090301808474, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8477. ,{ "pid":12345, "tid":8, "ts":1718090301808558, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-debug.c" }}
  8478. ,{ "pid":12345, "tid":8, "ts":1718090301808556, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-debug.c" }}
  8479. ,{ "pid":12345, "tid":8, "ts":1718090301808631, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8480. ,{ "pid":12345, "tid":8, "ts":1718090301808715, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-basic-block.h" }}
  8481. ,{ "pid":12345, "tid":8, "ts":1718090301808713, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-basic-block.h" }}
  8482. ,{ "pid":12345, "tid":8, "ts":1718090301808786, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8483. ,{ "pid":12345, "tid":8, "ts":1718090301808882, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/metadata.c" }}
  8484. ,{ "pid":12345, "tid":8, "ts":1718090301808880, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/metadata.c" }}
  8485. ,{ "pid":12345, "tid":8, "ts":1718090301808984, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8486. ,{ "pid":12345, "tid":8, "ts":1718090301809086, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/marshal.h" }}
  8487. ,{ "pid":12345, "tid":8, "ts":1718090301809084, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/marshal.h" }}
  8488. ,{ "pid":12345, "tid":8, "ts":1718090301809186, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8489. ,{ "pid":12345, "tid":8, "ts":1718090301809300, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/locales.h" }}
  8490. ,{ "pid":12345, "tid":8, "ts":1718090301809299, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/locales.h" }}
  8491. ,{ "pid":12345, "tid":8, "ts":1718090301809402, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8492. ,{ "pid":12345, "tid":8, "ts":1718090301809505, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/image.h" }}
  8493. ,{ "pid":12345, "tid":8, "ts":1718090301809503, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/image.h" }}
  8494. ,{ "pid":12345, "tid":8, "ts":1718090301809599, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8495. ,{ "pid":12345, "tid":8, "ts":1718090301809708, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/icall-internals.h" }}
  8496. ,{ "pid":12345, "tid":8, "ts":1718090301809706, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/icall-internals.h" }}
  8497. ,{ "pid":12345, "tid":8, "ts":1718090301809801, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8498. ,{ "pid":12345, "tid":8, "ts":1718090301809896, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/gc-internals.h" }}
  8499. ,{ "pid":12345, "tid":8, "ts":1718090301809894, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/gc-internals.h" }}
  8500. ,{ "pid":12345, "tid":8, "ts":1718090301809996, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8501. ,{ "pid":12345, "tid":8, "ts":1718090301810094, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/fdhandle.c" }}
  8502. ,{ "pid":12345, "tid":8, "ts":1718090301810093, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/fdhandle.c" }}
  8503. ,{ "pid":12345, "tid":8, "ts":1718090301810184, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8504. ,{ "pid":12345, "tid":8, "ts":1718090301810276, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/dynamic-stream-internals.h" }}
  8505. ,{ "pid":12345, "tid":8, "ts":1718090301810274, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/dynamic-stream-internals.h" }}
  8506. ,{ "pid":12345, "tid":8, "ts":1718090301810357, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8507. ,{ "pid":12345, "tid":8, "ts":1718090301810449, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/debug-mono-symfile.h" }}
  8508. ,{ "pid":12345, "tid":8, "ts":1718090301810448, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/debug-mono-symfile.h" }}
  8509. ,{ "pid":12345, "tid":8, "ts":1718090301810526, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8510. ,{ "pid":12345, "tid":8, "ts":1718090301810615, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/custom-attrs.c" }}
  8511. ,{ "pid":12345, "tid":8, "ts":1718090301810613, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/custom-attrs.c" }}
  8512. ,{ "pid":12345, "tid":8, "ts":1718090301810703, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8513. ,{ "pid":12345, "tid":8, "ts":1718090301810786, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/console-win32.c" }}
  8514. ,{ "pid":12345, "tid":8, "ts":1718090301810784, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/console-win32.c" }}
  8515. ,{ "pid":12345, "tid":8, "ts":1718090301810860, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8516. ,{ "pid":12345, "tid":8, "ts":1718090301810941, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/class.c" }}
  8517. ,{ "pid":12345, "tid":8, "ts":1718090301810939, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class.c" }}
  8518. ,{ "pid":12345, "tid":8, "ts":1718090301811014, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8519. ,{ "pid":12345, "tid":8, "ts":1718090301811118, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/callspec.h" }}
  8520. ,{ "pid":12345, "tid":8, "ts":1718090301811116, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/callspec.h" }}
  8521. ,{ "pid":12345, "tid":8, "ts":1718090301811196, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8522. ,{ "pid":12345, "tid":8, "ts":1718090301811283, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/assembly.c" }}
  8523. ,{ "pid":12345, "tid":8, "ts":1718090301811282, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/assembly.c" }}
  8524. ,{ "pid":12345, "tid":8, "ts":1718090301811369, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8525. ,{ "pid":12345, "tid":8, "ts":1718090301811490, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/sort.frag.h" }}
  8526. ,{ "pid":12345, "tid":8, "ts":1718090301811489, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/sort.frag.h" }}
  8527. ,{ "pid":12345, "tid":8, "ts":1718090301811583, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8528. ,{ "pid":12345, "tid":8, "ts":1718090301811660, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gspawn.c" }}
  8529. ,{ "pid":12345, "tid":8, "ts":1718090301811659, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gspawn.c" }}
  8530. ,{ "pid":12345, "tid":8, "ts":1718090301811734, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8531. ,{ "pid":12345, "tid":8, "ts":1718090301811815, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gpath.c" }}
  8532. ,{ "pid":12345, "tid":8, "ts":1718090301811813, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gpath.c" }}
  8533. ,{ "pid":12345, "tid":8, "ts":1718090301811885, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8534. ,{ "pid":12345, "tid":8, "ts":1718090301811963, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/glib.h" }}
  8535. ,{ "pid":12345, "tid":8, "ts":1718090301811961, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/glib.h" }}
  8536. ,{ "pid":12345, "tid":8, "ts":1718090301812055, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8537. ,{ "pid":12345, "tid":8, "ts":1718090301812136, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gbytearray.c" }}
  8538. ,{ "pid":12345, "tid":8, "ts":1718090301812134, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gbytearray.c" }}
  8539. ,{ "pid":12345, "tid":8, "ts":1718090301812228, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8540. ,{ "pid":12345, "tid":8, "ts":1718090301812313, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/arch/arm/arm_vfpmacros.h" }}
  8541. ,{ "pid":12345, "tid":8, "ts":1718090301812312, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/arch/arm/arm_vfpmacros.h" }}
  8542. ,{ "pid":12345, "tid":8, "ts":1718090301812381, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8543. ,{ "pid":12345, "tid":8, "ts":1718090301812464, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/sparse_hash_set.h" }}
  8544. ,{ "pid":12345, "tid":8, "ts":1718090301812463, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/sparse_hash_set.h" }}
  8545. ,{ "pid":12345, "tid":8, "ts":1718090301812530, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8546. ,{ "pid":12345, "tid":8, "ts":1718090301812611, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/internal/densehashtable.h" }}
  8547. ,{ "pid":12345, "tid":8, "ts":1718090301812609, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/internal/densehashtable.h" }}
  8548. ,{ "pid":12345, "tid":8, "ts":1718090301812679, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8549. ,{ "pid":12345, "tid":8, "ts":1718090301812754, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/typd_mlc.c" }}
  8550. ,{ "pid":12345, "tid":8, "ts":1718090301812753, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/typd_mlc.c" }}
  8551. ,{ "pid":12345, "tid":8, "ts":1718090301812829, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8552. ,{ "pid":12345, "tid":8, "ts":1718090301812909, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/thread_local_alloc.c" }}
  8553. ,{ "pid":12345, "tid":8, "ts":1718090301812907, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/thread_local_alloc.c" }}
  8554. ,{ "pid":12345, "tid":8, "ts":1718090301812986, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8555. ,{ "pid":12345, "tid":8, "ts":1718090301813074, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/staticrootstest.c" }}
  8556. ,{ "pid":12345, "tid":8, "ts":1718090301813072, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/staticrootstest.c" }}
  8557. ,{ "pid":12345, "tid":8, "ts":1718090301813150, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8558. ,{ "pid":12345, "tid":8, "ts":1718090301813224, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/huge_test.c" }}
  8559. ,{ "pid":12345, "tid":8, "ts":1718090301813222, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/huge_test.c" }}
  8560. ,{ "pid":12345, "tid":8, "ts":1718090301813295, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8561. ,{ "pid":12345, "tid":8, "ts":1718090301813398, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/pthread_support.c" }}
  8562. ,{ "pid":12345, "tid":8, "ts":1718090301813396, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/pthread_support.c" }}
  8563. ,{ "pid":12345, "tid":8, "ts":1718090301813494, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8564. ,{ "pid":12345, "tid":8, "ts":1718090301813575, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/mark_rts.c" }}
  8565. ,{ "pid":12345, "tid":8, "ts":1718090301813574, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/mark_rts.c" }}
  8566. ,{ "pid":12345, "tid":8, "ts":1718090301813646, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8567. ,{ "pid":12345, "tid":8, "ts":1718090301813716, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/sunc/x86.h" }}
  8568. ,{ "pid":12345, "tid":8, "ts":1718090301813715, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/sunc/x86.h" }}
  8569. ,{ "pid":12345, "tid":8, "ts":1718090301813801, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8570. ,{ "pid":12345, "tid":8, "ts":1718090301813893, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/msftc/x86.h" }}
  8571. ,{ "pid":12345, "tid":8, "ts":1718090301813891, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/msftc/x86.h" }}
  8572. ,{ "pid":12345, "tid":8, "ts":1718090301813961, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8573. ,{ "pid":12345, "tid":8, "ts":1718090301814039, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/ordered_loads_only.h" }}
  8574. ,{ "pid":12345, "tid":8, "ts":1718090301814037, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/ordered_loads_only.h" }}
  8575. ,{ "pid":12345, "tid":8, "ts":1718090301814136, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8576. ,{ "pid":12345, "tid":8, "ts":1718090301814228, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/char_acquire_release_volatile.h" }}
  8577. ,{ "pid":12345, "tid":8, "ts":1718090301814226, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/char_acquire_release_volatile.h" }}
  8578. ,{ "pid":12345, "tid":8, "ts":1718090301814302, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8579. ,{ "pid":12345, "tid":8, "ts":1718090301814372, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/hpc/hppa.h" }}
  8580. ,{ "pid":12345, "tid":8, "ts":1718090301814371, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/hpc/hppa.h" }}
  8581. ,{ "pid":12345, "tid":8, "ts":1718090301814442, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8582. ,{ "pid":12345, "tid":8, "ts":1718090301814514, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/mips.h" }}
  8583. ,{ "pid":12345, "tid":8, "ts":1718090301814512, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/mips.h" }}
  8584. ,{ "pid":12345, "tid":8, "ts":1718090301814596, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8585. ,{ "pid":12345, "tid":8, "ts":1718090301814702, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/generic-arithm.h" }}
  8586. ,{ "pid":12345, "tid":8, "ts":1718090301814700, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/generic-arithm.h" }}
  8587. ,{ "pid":12345, "tid":8, "ts":1718090301814797, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8588. ,{ "pid":12345, "tid":8, "ts":1718090301814876, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/armcc/arm_v6.h" }}
  8589. ,{ "pid":12345, "tid":8, "ts":1718090301814874, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/armcc/arm_v6.h" }}
  8590. ,{ "pid":12345, "tid":8, "ts":1718090301814968, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8591. ,{ "pid":12345, "tid":8, "ts":1718090301815054, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/generalize-small.h" }}
  8592. ,{ "pid":12345, "tid":8, "ts":1718090301815052, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/generalize-small.h" }}
  8593. ,{ "pid":12345, "tid":8, "ts":1718090301815150, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8594. ,{ "pid":12345, "tid":8, "ts":1718090301815242, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/doc/LICENSING.txt" }}
  8595. ,{ "pid":12345, "tid":8, "ts":1718090301815241, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/doc/LICENSING.txt" }}
  8596. ,{ "pid":12345, "tid":8, "ts":1718090301815315, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8597. ,{ "pid":12345, "tid":8, "ts":1718090301815412, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/msvc_dbg.h" }}
  8598. ,{ "pid":12345, "tid":8, "ts":1718090301815410, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/msvc_dbg.h" }}
  8599. ,{ "pid":12345, "tid":8, "ts":1718090301815492, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8600. ,{ "pid":12345, "tid":8, "ts":1718090301815596, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/darwin_stop_world.h" }}
  8601. ,{ "pid":12345, "tid":8, "ts":1718090301815595, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/darwin_stop_world.h" }}
  8602. ,{ "pid":12345, "tid":8, "ts":1718090301815671, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8603. ,{ "pid":12345, "tid":8, "ts":1718090301815782, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.TextCoreFontEngineModule.dll" }}
  8604. ,{ "pid":12345, "tid":8, "ts":1718090301815780, "dur":204, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.TextCoreFontEngineModule-FeaturesChecked.txt" }}
  8605. ,{ "pid":12345, "tid":8, "ts":1718090301816012, "dur":329, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.TilemapModule-FeaturesChecked.txt" }}
  8606. ,{ "pid":12345, "tid":8, "ts":1718090301816341, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8607. ,{ "pid":12345, "tid":8, "ts":1718090301816411, "dur":275, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/GoogleMobileAds.Ump.iOS-FeaturesChecked.txt" }}
  8608. ,{ "pid":12345, "tid":8, "ts":1718090301816748, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/System.Configuration.dll" }}
  8609. ,{ "pid":12345, "tid":8, "ts":1718090301816747, "dur":299, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Configuration-FeaturesChecked.txt" }}
  8610. ,{ "pid":12345, "tid":8, "ts":1718090301817095, "dur":366, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Xml.Linq-FeaturesChecked.txt" }}
  8611. ,{ "pid":12345, "tid":8, "ts":1718090301817504, "dur":365, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Configuration-FeaturesChecked.txt" }}
  8612. ,{ "pid":12345, "tid":8, "ts":1718090301817915, "dur":308, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.AnimationModule-FeaturesChecked.txt" }}
  8613. ,{ "pid":12345, "tid":8, "ts":1718090301818259, "dur":281, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.SecurityCore-FeaturesChecked.txt" }}
  8614. ,{ "pid":12345, "tid":8, "ts":1718090301818602, "dur":325, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.SpriteShapeModule-FeaturesChecked.txt" }}
  8615. ,{ "pid":12345, "tid":8, "ts":1718090301818979, "dur":309, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.GridModule-FeaturesChecked.txt" }}
  8616. ,{ "pid":12345, "tid":8, "ts":1718090301819348, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.AndroidJNIModule.dll" }}
  8617. ,{ "pid":12345, "tid":8, "ts":1718090301819346, "dur":442, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.AndroidJNIModule-FeaturesChecked.txt" }}
  8618. ,{ "pid":12345, "tid":8, "ts":1718090301819788, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8619. ,{ "pid":12345, "tid":8, "ts":1718090301819869, "dur":428, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Purchasing.Common-FeaturesChecked.txt" }}
  8620. ,{ "pid":12345, "tid":8, "ts":1718090301820298, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8621. ,{ "pid":12345, "tid":8, "ts":1718090301820368, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/leak_detector.h" }}
  8622. ,{ "pid":12345, "tid":8, "ts":1718090301820366, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/leak_detector.h" }}
  8623. ,{ "pid":12345, "tid":8, "ts":1718090301820488, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_vector.h" }}
  8624. ,{ "pid":12345, "tid":8, "ts":1718090301820486, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_vector.h" }}
  8625. ,{ "pid":12345, "tid":8, "ts":1718090301820597, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_pthread_redirects.h" }}
  8626. ,{ "pid":12345, "tid":8, "ts":1718090301820595, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_pthread_redirects.h" }}
  8627. ,{ "pid":12345, "tid":8, "ts":1718090301820691, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8628. ,{ "pid":12345, "tid":8, "ts":1718090301820784, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_gcj.h" }}
  8629. ,{ "pid":12345, "tid":8, "ts":1718090301820782, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_gcj.h" }}
  8630. ,{ "pid":12345, "tid":8, "ts":1718090301820868, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8631. ,{ "pid":12345, "tid":8, "ts":1718090301820939, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_alloc_ptrs.h" }}
  8632. ,{ "pid":12345, "tid":8, "ts":1718090301820937, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_alloc_ptrs.h" }}
  8633. ,{ "pid":12345, "tid":8, "ts":1718090301821021, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8634. ,{ "pid":12345, "tid":8, "ts":1718090301821097, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/extra/gc.h" }}
  8635. ,{ "pid":12345, "tid":8, "ts":1718090301821095, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/extra/gc.h" }}
  8636. ,{ "pid":12345, "tid":8, "ts":1718090301821178, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8637. ,{ "pid":12345, "tid":8, "ts":1718090301821272, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/headers.c" }}
  8638. ,{ "pid":12345, "tid":8, "ts":1718090301821270, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/headers.c" }}
  8639. ,{ "pid":12345, "tid":8, "ts":1718090301821350, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8640. ,{ "pid":12345, "tid":8, "ts":1718090301821438, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/extra/real_malloc.c" }}
  8641. ,{ "pid":12345, "tid":8, "ts":1718090301821436, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/extra/real_malloc.c" }}
  8642. ,{ "pid":12345, "tid":8, "ts":1718090301821522, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8643. ,{ "pid":12345, "tid":8, "ts":1718090301821621, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/extra/MacOS.c" }}
  8644. ,{ "pid":12345, "tid":8, "ts":1718090301821619, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/extra/MacOS.c" }}
  8645. ,{ "pid":12345, "tid":8, "ts":1718090301821691, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8646. ,{ "pid":12345, "tid":8, "ts":1718090301821771, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/dyn_load.c" }}
  8647. ,{ "pid":12345, "tid":8, "ts":1718090301821769, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/dyn_load.c" }}
  8648. ,{ "pid":12345, "tid":8, "ts":1718090301821827, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8649. ,{ "pid":12345, "tid":8, "ts":1718090301821916, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/cord/tests/de_win.c" }}
  8650. ,{ "pid":12345, "tid":8, "ts":1718090301821915, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/cord/tests/de_win.c" }}
  8651. ,{ "pid":12345, "tid":8, "ts":1718090301822009, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8652. ,{ "pid":12345, "tid":8, "ts":1718090301822095, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/cord/cordbscs.c" }}
  8653. ,{ "pid":12345, "tid":8, "ts":1718090301822094, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/cord/cordbscs.c" }}
  8654. ,{ "pid":12345, "tid":8, "ts":1718090301822190, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8655. ,{ "pid":12345, "tid":8, "ts":1718090301822298, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/WindowsGames/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  8656. ,{ "pid":12345, "tid":8, "ts":1718090301822296, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/WindowsGames/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  8657. ,{ "pid":12345, "tid":8, "ts":1718090301822374, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8658. ,{ "pid":12345, "tid":8, "ts":1718090301822494, "dur":139, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Windows/Include/C/Baselib_FileIO.inl.h" }}
  8659. ,{ "pid":12345, "tid":8, "ts":1718090301822493, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Windows/Include/C/Baselib_FileIO.inl.h" }}
  8660. ,{ "pid":12345, "tid":8, "ts":1718090301822652, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8661. ,{ "pid":12345, "tid":8, "ts":1718090301822759, "dur":199, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/WebGL/Include/C/Baselib_ErrorState.inl.h" }}
  8662. ,{ "pid":12345, "tid":8, "ts":1718090301822757, "dur":202, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/WebGL/Include/C/Baselib_ErrorState.inl.h" }}
  8663. ,{ "pid":12345, "tid":8, "ts":1718090301822959, "dur":221, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8664. ,{ "pid":12345, "tid":8, "ts":1718090301823209, "dur":126, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/VisionOS/Include/C/Baselib_DynamicLibrary.inl.h" }}
  8665. ,{ "pid":12345, "tid":8, "ts":1718090301823207, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/VisionOS/Include/C/Baselib_DynamicLibrary.inl.h" }}
  8666. ,{ "pid":12345, "tid":8, "ts":1718090301823336, "dur":220, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8667. ,{ "pid":12345, "tid":8, "ts":1718090301823564, "dur":151, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/UniversalWindows/Include/BaselibPlatformSpecificEnvironment.h" }}
  8668. ,{ "pid":12345, "tid":8, "ts":1718090301823563, "dur":165, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/UniversalWindows/Include/BaselibPlatformSpecificEnvironment.h" }}
  8669. ,{ "pid":12345, "tid":8, "ts":1718090301823729, "dur":231, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8670. ,{ "pid":12345, "tid":8, "ts":1718090301823964, "dur":141, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/OSX/Include/C/Baselib_FileIO.inl.h" }}
  8671. ,{ "pid":12345, "tid":8, "ts":1718090301823962, "dur":145, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/OSX/Include/C/Baselib_FileIO.inl.h" }}
  8672. ,{ "pid":12345, "tid":8, "ts":1718090301824107, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8673. ,{ "pid":12345, "tid":8, "ts":1718090301824238, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Linux/Include/C/Baselib_FileIO.inl.h" }}
  8674. ,{ "pid":12345, "tid":8, "ts":1718090301824236, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Linux/Include/C/Baselib_FileIO.inl.h" }}
  8675. ,{ "pid":12345, "tid":8, "ts":1718090301824301, "dur":164, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8676. ,{ "pid":12345, "tid":8, "ts":1718090301824472, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/IOS/Include/C/Baselib_ErrorState.inl.h" }}
  8677. ,{ "pid":12345, "tid":8, "ts":1718090301824471, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/IOS/Include/C/Baselib_ErrorState.inl.h" }}
  8678. ,{ "pid":12345, "tid":8, "ts":1718090301824531, "dur":163, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8679. ,{ "pid":12345, "tid":8, "ts":1718090301824722, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/EmbeddedLinux/Include/C/Baselib_DynamicLibrary.inl.h" }}
  8680. ,{ "pid":12345, "tid":8, "ts":1718090301824721, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/EmbeddedLinux/Include/C/Baselib_DynamicLibrary.inl.h" }}
  8681. ,{ "pid":12345, "tid":8, "ts":1718090301824820, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8682. ,{ "pid":12345, "tid":8, "ts":1718090301824947, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/PreExternalInclude.h" }}
  8683. ,{ "pid":12345, "tid":8, "ts":1718090301824998, "dur":187, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8684. ,{ "pid":12345, "tid":8, "ts":1718090301825211, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/RedefineCompilerMacros.h" }}
  8685. ,{ "pid":12345, "tid":8, "ts":1718090301825192, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/RedefineCompilerMacros.h" }}
  8686. ,{ "pid":12345, "tid":8, "ts":1718090301825288, "dur":211, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8687. ,{ "pid":12345, "tid":8, "ts":1718090301825552, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/Compiler/CompilerEnvironmentClang.h" }}
  8688. ,{ "pid":12345, "tid":8, "ts":1718090301825549, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/Compiler/CompilerEnvironmentClang.h" }}
  8689. ,{ "pid":12345, "tid":8, "ts":1718090301825624, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8690. ,{ "pid":12345, "tid":8, "ts":1718090301825738, "dur":144, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/External/utfcpp/source/utf8/cpp11.h" }}
  8691. ,{ "pid":12345, "tid":8, "ts":1718090301825737, "dur":146, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/External/utfcpp/source/utf8/cpp11.h" }}
  8692. ,{ "pid":12345, "tid":8, "ts":1718090301825884, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8693. ,{ "pid":12345, "tid":8, "ts":1718090301825986, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/ThreadLocalStorage.h" }}
  8694. ,{ "pid":12345, "tid":8, "ts":1718090301825985, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/ThreadLocalStorage.h" }}
  8695. ,{ "pid":12345, "tid":8, "ts":1718090301826082, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8696. ,{ "pid":12345, "tid":8, "ts":1718090301826204, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/mpsc_node_stack.h" }}
  8697. ,{ "pid":12345, "tid":8, "ts":1718090301826202, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/mpsc_node_stack.h" }}
  8698. ,{ "pid":12345, "tid":8, "ts":1718090301826276, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8699. ,{ "pid":12345, "tid":8, "ts":1718090301826356, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/mpmc_fixed_queue.h" }}
  8700. ,{ "pid":12345, "tid":8, "ts":1718090301826355, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/mpmc_fixed_queue.h" }}
  8701. ,{ "pid":12345, "tid":8, "ts":1718090301826421, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8702. ,{ "pid":12345, "tid":8, "ts":1718090301826564, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/ConditionVariable_SemaphoreBased.inl.h" }}
  8703. ,{ "pid":12345, "tid":8, "ts":1718090301826542, "dur":148, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/ConditionVariable_SemaphoreBased.inl.h" }}
  8704. ,{ "pid":12345, "tid":8, "ts":1718090301826694, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8705. ,{ "pid":12345, "tid":8, "ts":1718090301826779, "dur":158, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/Algorithm.inl.h" }}
  8706. ,{ "pid":12345, "tid":8, "ts":1718090301826778, "dur":159, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/Algorithm.inl.h" }}
  8707. ,{ "pid":12345, "tid":8, "ts":1718090301826937, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8708. ,{ "pid":12345, "tid":8, "ts":1718090301827057, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/chunked_allocator.h" }}
  8709. ,{ "pid":12345, "tid":8, "ts":1718090301827056, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/chunked_allocator.h" }}
  8710. ,{ "pid":12345, "tid":8, "ts":1718090301827147, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8711. ,{ "pid":12345, "tid":8, "ts":1718090301827231, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Algorithm.h" }}
  8712. ,{ "pid":12345, "tid":8, "ts":1718090301827230, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Algorithm.h" }}
  8713. ,{ "pid":12345, "tid":8, "ts":1718090301827365, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8714. ,{ "pid":12345, "tid":8, "ts":1718090301827432, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_Gcc.h" }}
  8715. ,{ "pid":12345, "tid":8, "ts":1718090301827431, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_Gcc.h" }}
  8716. ,{ "pid":12345, "tid":8, "ts":1718090301827555, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8717. ,{ "pid":12345, "tid":8, "ts":1718090301827691, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_HighCapacitySemaphore_FutexBased.inl.h" }}
  8718. ,{ "pid":12345, "tid":8, "ts":1718090301827690, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_HighCapacitySemaphore_FutexBased.inl.h" }}
  8719. ,{ "pid":12345, "tid":8, "ts":1718090301827774, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8720. ,{ "pid":12345, "tid":8, "ts":1718090301827841, "dur":147, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Timer.h" }}
  8721. ,{ "pid":12345, "tid":8, "ts":1718090301827840, "dur":149, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Timer.h" }}
  8722. ,{ "pid":12345, "tid":8, "ts":1718090301827989, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8723. ,{ "pid":12345, "tid":8, "ts":1718090301828086, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Semaphore.h" }}
  8724. ,{ "pid":12345, "tid":8, "ts":1718090301828085, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Semaphore.h" }}
  8725. ,{ "pid":12345, "tid":8, "ts":1718090301828174, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8726. ,{ "pid":12345, "tid":8, "ts":1718090301828258, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_HighCapacitySemaphore.h" }}
  8727. ,{ "pid":12345, "tid":8, "ts":1718090301828257, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_HighCapacitySemaphore.h" }}
  8728. ,{ "pid":12345, "tid":8, "ts":1718090301828349, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8729. ,{ "pid":12345, "tid":8, "ts":1718090301828422, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Debug.h" }}
  8730. ,{ "pid":12345, "tid":8, "ts":1718090301828422, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Debug.h" }}
  8731. ,{ "pid":12345, "tid":8, "ts":1718090301828498, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8732. ,{ "pid":12345, "tid":8, "ts":1718090301828589, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Baselib.h" }}
  8733. ,{ "pid":12345, "tid":8, "ts":1718090301828587, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Baselib.h" }}
  8734. ,{ "pid":12345, "tid":8, "ts":1718090301828662, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8735. ,{ "pid":12345, "tid":8, "ts":1718090301828737, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/UnityLinker" }}
  8736. ,{ "pid":12345, "tid":8, "ts":1718090301828815, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8737. ,{ "pid":12345, "tid":8, "ts":1718090301828906, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Linker.Api.Output.pdb" }}
  8738. ,{ "pid":12345, "tid":8, "ts":1718090301828905, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Linker.Api.Output.pdb" }}
  8739. ,{ "pid":12345, "tid":8, "ts":1718090301828966, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8740. ,{ "pid":12345, "tid":8, "ts":1718090301829042, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.DataModel.pdb" }}
  8741. ,{ "pid":12345, "tid":8, "ts":1718090301829041, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.DataModel.pdb" }}
  8742. ,{ "pid":12345, "tid":8, "ts":1718090301829100, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8743. ,{ "pid":12345, "tid":8, "ts":1718090301829189, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Common.dll" }}
  8744. ,{ "pid":12345, "tid":8, "ts":1718090301829187, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Common.dll" }}
  8745. ,{ "pid":12345, "tid":8, "ts":1718090301829299, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8746. ,{ "pid":12345, "tid":8, "ts":1718090301829407, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop.pdb" }}
  8747. ,{ "pid":12345, "tid":8, "ts":1718090301829406, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop.pdb" }}
  8748. ,{ "pid":12345, "tid":8, "ts":1718090301829474, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8749. ,{ "pid":12345, "tid":8, "ts":1718090301829545, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.UniversalWindows.dll" }}
  8750. ,{ "pid":12345, "tid":8, "ts":1718090301829543, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.UniversalWindows.dll" }}
  8751. ,{ "pid":12345, "tid":8, "ts":1718090301829608, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8752. ,{ "pid":12345, "tid":8, "ts":1718090301829681, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.iOS.dll" }}
  8753. ,{ "pid":12345, "tid":8, "ts":1718090301829680, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.iOS.dll" }}
  8754. ,{ "pid":12345, "tid":8, "ts":1718090301829742, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8755. ,{ "pid":12345, "tid":8, "ts":1718090301829814, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.Android.dll" }}
  8756. ,{ "pid":12345, "tid":8, "ts":1718090301829813, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.Android.dll" }}
  8757. ,{ "pid":12345, "tid":8, "ts":1718090301829881, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8758. ,{ "pid":12345, "tid":8, "ts":1718090301829957, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Cecil.Visitor.pdb" }}
  8759. ,{ "pid":12345, "tid":8, "ts":1718090301829956, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Cecil.Visitor.pdb" }}
  8760. ,{ "pid":12345, "tid":8, "ts":1718090301830027, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8761. ,{ "pid":12345, "tid":8, "ts":1718090301830130, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Xml.XPath.dll" }}
  8762. ,{ "pid":12345, "tid":8, "ts":1718090301830129, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Xml.XPath.dll" }}
  8763. ,{ "pid":12345, "tid":8, "ts":1718090301830218, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8764. ,{ "pid":12345, "tid":8, "ts":1718090301830333, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Xml.dll" }}
  8765. ,{ "pid":12345, "tid":8, "ts":1718090301830331, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Xml.dll" }}
  8766. ,{ "pid":12345, "tid":8, "ts":1718090301830422, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8767. ,{ "pid":12345, "tid":8, "ts":1718090301830578, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Threading.Timer.dll" }}
  8768. ,{ "pid":12345, "tid":8, "ts":1718090301830576, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Threading.Timer.dll" }}
  8769. ,{ "pid":12345, "tid":8, "ts":1718090301830686, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8770. ,{ "pid":12345, "tid":8, "ts":1718090301830784, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Threading.Overlapped.dll" }}
  8771. ,{ "pid":12345, "tid":8, "ts":1718090301830776, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Threading.Overlapped.dll" }}
  8772. ,{ "pid":12345, "tid":8, "ts":1718090301830879, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8773. ,{ "pid":12345, "tid":8, "ts":1718090301831046, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Text.Encoding.dll" }}
  8774. ,{ "pid":12345, "tid":8, "ts":1718090301831044, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Text.Encoding.dll" }}
  8775. ,{ "pid":12345, "tid":8, "ts":1718090301831119, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8776. ,{ "pid":12345, "tid":8, "ts":1718090301831202, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.dll" }}
  8777. ,{ "pid":12345, "tid":8, "ts":1718090301831201, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.dll" }}
  8778. ,{ "pid":12345, "tid":8, "ts":1718090301831300, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8779. ,{ "pid":12345, "tid":8, "ts":1718090301831381, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.Cryptography.Algorithms.dll" }}
  8780. ,{ "pid":12345, "tid":8, "ts":1718090301831380, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.Cryptography.Algorithms.dll" }}
  8781. ,{ "pid":12345, "tid":8, "ts":1718090301831463, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8782. ,{ "pid":12345, "tid":8, "ts":1718090301831539, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.Numerics.dll" }}
  8783. ,{ "pid":12345, "tid":8, "ts":1718090301831538, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Numerics.dll" }}
  8784. ,{ "pid":12345, "tid":8, "ts":1718090301831628, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8785. ,{ "pid":12345, "tid":8, "ts":1718090301831708, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.dll" }}
  8786. ,{ "pid":12345, "tid":8, "ts":1718090301831707, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.dll" }}
  8787. ,{ "pid":12345, "tid":8, "ts":1718090301831795, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8788. ,{ "pid":12345, "tid":8, "ts":1718090301831885, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Reflection.Primitives.dll" }}
  8789. ,{ "pid":12345, "tid":8, "ts":1718090301831884, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Reflection.Primitives.dll" }}
  8790. ,{ "pid":12345, "tid":8, "ts":1718090301831958, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8791. ,{ "pid":12345, "tid":8, "ts":1718090301832061, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Reflection.DispatchProxy.dll" }}
  8792. ,{ "pid":12345, "tid":8, "ts":1718090301832059, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Reflection.DispatchProxy.dll" }}
  8793. ,{ "pid":12345, "tid":8, "ts":1718090301832121, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8794. ,{ "pid":12345, "tid":8, "ts":1718090301832196, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.ObjectModel.dll" }}
  8795. ,{ "pid":12345, "tid":8, "ts":1718090301832195, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ObjectModel.dll" }}
  8796. ,{ "pid":12345, "tid":8, "ts":1718090301832273, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8797. ,{ "pid":12345, "tid":8, "ts":1718090301832357, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.WebClient.dll" }}
  8798. ,{ "pid":12345, "tid":8, "ts":1718090301832356, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.WebClient.dll" }}
  8799. ,{ "pid":12345, "tid":8, "ts":1718090301832438, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8800. ,{ "pid":12345, "tid":8, "ts":1718090301832533, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.Primitives.dll" }}
  8801. ,{ "pid":12345, "tid":8, "ts":1718090301832531, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Primitives.dll" }}
  8802. ,{ "pid":12345, "tid":8, "ts":1718090301832626, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8803. ,{ "pid":12345, "tid":8, "ts":1718090301832720, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Memory.dll" }}
  8804. ,{ "pid":12345, "tid":8, "ts":1718090301832719, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Memory.dll" }}
  8805. ,{ "pid":12345, "tid":8, "ts":1718090301832804, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8806. ,{ "pid":12345, "tid":8, "ts":1718090301832885, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.Pipes.dll" }}
  8807. ,{ "pid":12345, "tid":8, "ts":1718090301832884, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.Pipes.dll" }}
  8808. ,{ "pid":12345, "tid":8, "ts":1718090301832958, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8809. ,{ "pid":12345, "tid":8, "ts":1718090301833053, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.FileSystem.dll" }}
  8810. ,{ "pid":12345, "tid":8, "ts":1718090301833052, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.FileSystem.dll" }}
  8811. ,{ "pid":12345, "tid":8, "ts":1718090301833177, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8812. ,{ "pid":12345, "tid":8, "ts":1718090301833304, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Globalization.Extensions.dll" }}
  8813. ,{ "pid":12345, "tid":8, "ts":1718090301833302, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Globalization.Extensions.dll" }}
  8814. ,{ "pid":12345, "tid":8, "ts":1718090301833410, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8815. ,{ "pid":12345, "tid":8, "ts":1718090301833494, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.dll" }}
  8816. ,{ "pid":12345, "tid":8, "ts":1718090301833492, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.dll" }}
  8817. ,{ "pid":12345, "tid":8, "ts":1718090301833563, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8818. ,{ "pid":12345, "tid":8, "ts":1718090301833637, "dur":130, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Diagnostics.FileVersionInfo.dll" }}
  8819. ,{ "pid":12345, "tid":8, "ts":1718090301833636, "dur":131, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Diagnostics.FileVersionInfo.dll" }}
  8820. ,{ "pid":12345, "tid":8, "ts":1718090301833771, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8821. ,{ "pid":12345, "tid":8, "ts":1718090301833849, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Core.dll" }}
  8822. ,{ "pid":12345, "tid":8, "ts":1718090301833848, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Core.dll" }}
  8823. ,{ "pid":12345, "tid":8, "ts":1718090301833955, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8824. ,{ "pid":12345, "tid":8, "ts":1718090301834080, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.ComponentModel.dll" }}
  8825. ,{ "pid":12345, "tid":8, "ts":1718090301834078, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ComponentModel.dll" }}
  8826. ,{ "pid":12345, "tid":8, "ts":1718090301834158, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8827. ,{ "pid":12345, "tid":8, "ts":1718090301834233, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Collections.dll" }}
  8828. ,{ "pid":12345, "tid":8, "ts":1718090301834231, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Collections.dll" }}
  8829. ,{ "pid":12345, "tid":8, "ts":1718090301834316, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8830. ,{ "pid":12345, "tid":8, "ts":1718090301834414, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Newtonsoft.Json.dll" }}
  8831. ,{ "pid":12345, "tid":8, "ts":1718090301834412, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Newtonsoft.Json.dll" }}
  8832. ,{ "pid":12345, "tid":8, "ts":1718090301834498, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8833. ,{ "pid":12345, "tid":8, "ts":1718090301834593, "dur":128, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Mono.Cecil.Pdb.pdb" }}
  8834. ,{ "pid":12345, "tid":8, "ts":1718090301834591, "dur":130, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Mono.Cecil.Pdb.pdb" }}
  8835. ,{ "pid":12345, "tid":8, "ts":1718090301834722, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8836. ,{ "pid":12345, "tid":8, "ts":1718090301834825, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Microsoft.Win32.Primitives.dll" }}
  8837. ,{ "pid":12345, "tid":8, "ts":1718090301834823, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Microsoft.Win32.Primitives.dll" }}
  8838. ,{ "pid":12345, "tid":8, "ts":1718090301834890, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8839. ,{ "pid":12345, "tid":8, "ts":1718090301834990, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libSystem.Native.dylib" }}
  8840. ,{ "pid":12345, "tid":8, "ts":1718090301835079, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8841. ,{ "pid":12345, "tid":8, "ts":1718090301835183, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libdbgshim.dylib" }}
  8842. ,{ "pid":12345, "tid":8, "ts":1718090301835286, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8843. ,{ "pid":12345, "tid":8, "ts":1718090301835400, "dur":137, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/il2cpp.dll" }}
  8844. ,{ "pid":12345, "tid":8, "ts":1718090301835398, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/il2cpp.dll" }}
  8845. ,{ "pid":12345, "tid":8, "ts":1718090301835538, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8846. ,{ "pid":12345, "tid":8, "ts":1718090301835638, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.TundraBackend.pdb" }}
  8847. ,{ "pid":12345, "tid":8, "ts":1718090301835637, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.TundraBackend.pdb" }}
  8848. ,{ "pid":12345, "tid":8, "ts":1718090301835742, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8849. ,{ "pid":12345, "tid":8, "ts":1718090301835851, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.Windows.dll" }}
  8850. ,{ "pid":12345, "tid":8, "ts":1718090301835850, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Windows.dll" }}
  8851. ,{ "pid":12345, "tid":8, "ts":1718090301835931, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8852. ,{ "pid":12345, "tid":8, "ts":1718090301836026, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.TvOS.pdb" }}
  8853. ,{ "pid":12345, "tid":8, "ts":1718090301836024, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.TvOS.pdb" }}
  8854. ,{ "pid":12345, "tid":8, "ts":1718090301836115, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8855. ,{ "pid":12345, "tid":8, "ts":1718090301836195, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.Linux.dll" }}
  8856. ,{ "pid":12345, "tid":8, "ts":1718090301836194, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Linux.dll" }}
  8857. ,{ "pid":12345, "tid":8, "ts":1718090301836264, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8858. ,{ "pid":12345, "tid":8, "ts":1718090301836363, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.EmbeddedLinux.dll" }}
  8859. ,{ "pid":12345, "tid":8, "ts":1718090301836361, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.EmbeddedLinux.dll" }}
  8860. ,{ "pid":12345, "tid":8, "ts":1718090301836462, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8861. ,{ "pid":12345, "tid":8, "ts":1718090301836571, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.NativeProgramSupport.pdb" }}
  8862. ,{ "pid":12345, "tid":8, "ts":1718090301836569, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.NativeProgramSupport.pdb" }}
  8863. ,{ "pid":12345, "tid":8, "ts":1718090301836674, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8864. ,{ "pid":12345, "tid":8, "ts":1718090301836802, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Core.dll" }}
  8865. ,{ "pid":12345, "tid":8, "ts":1718090301836799, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Core.dll" }}
  8866. ,{ "pid":12345, "tid":8, "ts":1718090301836901, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8867. ,{ "pid":12345, "tid":8, "ts":1718090301837011, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Analytics.Api.Output.xml" }}
  8868. ,{ "pid":12345, "tid":8, "ts":1718090301837009, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Analytics.Api.Output.xml" }}
  8869. ,{ "pid":12345, "tid":8, "ts":1718090301837067, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8870. ,{ "pid":12345, "tid":8, "ts":1718090301837137, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/UnityLinker.runtimeconfig.json" }}
  8871. ,{ "pid":12345, "tid":8, "ts":1718090301837135, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/UnityLinker.runtimeconfig.json" }}
  8872. ,{ "pid":12345, "tid":8, "ts":1718090301837252, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8873. ,{ "pid":12345, "tid":8, "ts":1718090301837350, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8874. ,{ "pid":12345, "tid":8, "ts":1718090301837428, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Linker.Api.dll" }}
  8875. ,{ "pid":12345, "tid":8, "ts":1718090301837427, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Linker.Api.dll" }}
  8876. ,{ "pid":12345, "tid":8, "ts":1718090301837503, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8877. ,{ "pid":12345, "tid":8, "ts":1718090301837589, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.CompilerServices.pdb" }}
  8878. ,{ "pid":12345, "tid":8, "ts":1718090301837587, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.CompilerServices.pdb" }}
  8879. ,{ "pid":12345, "tid":8, "ts":1718090301837666, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8880. ,{ "pid":12345, "tid":8, "ts":1718090301837743, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Building.dll" }}
  8881. ,{ "pid":12345, "tid":8, "ts":1718090301837742, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Building.dll" }}
  8882. ,{ "pid":12345, "tid":8, "ts":1718090301837811, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8883. ,{ "pid":12345, "tid":8, "ts":1718090301837913, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop.dll" }}
  8884. ,{ "pid":12345, "tid":8, "ts":1718090301837912, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop.dll" }}
  8885. ,{ "pid":12345, "tid":8, "ts":1718090301837987, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8886. ,{ "pid":12345, "tid":8, "ts":1718090301838070, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.pdb" }}
  8887. ,{ "pid":12345, "tid":8, "ts":1718090301838069, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.pdb" }}
  8888. ,{ "pid":12345, "tid":8, "ts":1718090301838185, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.iOS.pdb" }}
  8889. ,{ "pid":12345, "tid":8, "ts":1718090301838184, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.iOS.pdb" }}
  8890. ,{ "pid":12345, "tid":8, "ts":1718090301838263, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8891. ,{ "pid":12345, "tid":8, "ts":1718090301838385, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.Android.dll" }}
  8892. ,{ "pid":12345, "tid":8, "ts":1718090301838373, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.Android.dll" }}
  8893. ,{ "pid":12345, "tid":8, "ts":1718090301838482, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8894. ,{ "pid":12345, "tid":8, "ts":1718090301838563, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Cecil.Visitor.dll" }}
  8895. ,{ "pid":12345, "tid":8, "ts":1718090301838562, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Cecil.Visitor.dll" }}
  8896. ,{ "pid":12345, "tid":8, "ts":1718090301838650, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8897. ,{ "pid":12345, "tid":8, "ts":1718090301838735, "dur":164, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Xml.XmlSerializer.dll" }}
  8898. ,{ "pid":12345, "tid":8, "ts":1718090301838733, "dur":168, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Xml.XmlSerializer.dll" }}
  8899. ,{ "pid":12345, "tid":8, "ts":1718090301838906, "dur":127, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8900. ,{ "pid":12345, "tid":8, "ts":1718090301839041, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Windows.dll" }}
  8901. ,{ "pid":12345, "tid":8, "ts":1718090301839039, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Windows.dll" }}
  8902. ,{ "pid":12345, "tid":8, "ts":1718090301839125, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8903. ,{ "pid":12345, "tid":8, "ts":1718090301839197, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Threading.ThreadPool.dll" }}
  8904. ,{ "pid":12345, "tid":8, "ts":1718090301839196, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Threading.ThreadPool.dll" }}
  8905. ,{ "pid":12345, "tid":8, "ts":1718090301839309, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8906. ,{ "pid":12345, "tid":8, "ts":1718090301839370, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Threading.Overlapped.dll" }}
  8907. ,{ "pid":12345, "tid":8, "ts":1718090301839369, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Threading.Overlapped.dll" }}
  8908. ,{ "pid":12345, "tid":8, "ts":1718090301839469, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8909. ,{ "pid":12345, "tid":8, "ts":1718090301839604, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Text.Encoding.dll" }}
  8910. ,{ "pid":12345, "tid":8, "ts":1718090301839603, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Text.Encoding.dll" }}
  8911. ,{ "pid":12345, "tid":8, "ts":1718090301839686, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8912. ,{ "pid":12345, "tid":8, "ts":1718090301839780, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.dll" }}
  8913. ,{ "pid":12345, "tid":8, "ts":1718090301839778, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.dll" }}
  8914. ,{ "pid":12345, "tid":8, "ts":1718090301839862, "dur":165, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8915. ,{ "pid":12345, "tid":8, "ts":1718090301840046, "dur":162, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.Cryptography.Algorithms.dll" }}
  8916. ,{ "pid":12345, "tid":8, "ts":1718090301840045, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.Cryptography.Algorithms.dll" }}
  8917. ,{ "pid":12345, "tid":8, "ts":1718090301840209, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8918. ,{ "pid":12345, "tid":8, "ts":1718090301840310, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.Numerics.dll" }}
  8919. ,{ "pid":12345, "tid":8, "ts":1718090301840309, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.Numerics.dll" }}
  8920. ,{ "pid":12345, "tid":8, "ts":1718090301840385, "dur":157, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8921. ,{ "pid":12345, "tid":8, "ts":1718090301840552, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.dll" }}
  8922. ,{ "pid":12345, "tid":8, "ts":1718090301840551, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.dll" }}
  8923. ,{ "pid":12345, "tid":8, "ts":1718090301840667, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8924. ,{ "pid":12345, "tid":8, "ts":1718090301840811, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Reflection.Primitives.dll" }}
  8925. ,{ "pid":12345, "tid":8, "ts":1718090301840810, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Reflection.Primitives.dll" }}
  8926. ,{ "pid":12345, "tid":8, "ts":1718090301840875, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8927. ,{ "pid":12345, "tid":8, "ts":1718090301840937, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Reflection.DispatchProxy.dll" }}
  8928. ,{ "pid":12345, "tid":8, "ts":1718090301840935, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Reflection.DispatchProxy.dll" }}
  8929. ,{ "pid":12345, "tid":8, "ts":1718090301841049, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8930. ,{ "pid":12345, "tid":8, "ts":1718090301841162, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Numerics.Vectors.dll" }}
  8931. ,{ "pid":12345, "tid":8, "ts":1718090301841160, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Numerics.Vectors.dll" }}
  8932. ,{ "pid":12345, "tid":8, "ts":1718090301841231, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8933. ,{ "pid":12345, "tid":8, "ts":1718090301841327, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.Sockets.dll" }}
  8934. ,{ "pid":12345, "tid":8, "ts":1718090301841326, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.Sockets.dll" }}
  8935. ,{ "pid":12345, "tid":8, "ts":1718090301841419, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8936. ,{ "pid":12345, "tid":8, "ts":1718090301841536, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.NetworkInformation.dll" }}
  8937. ,{ "pid":12345, "tid":8, "ts":1718090301841534, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.NetworkInformation.dll" }}
  8938. ,{ "pid":12345, "tid":8, "ts":1718090301841673, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8939. ,{ "pid":12345, "tid":8, "ts":1718090301841753, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Memory.dll" }}
  8940. ,{ "pid":12345, "tid":8, "ts":1718090301841751, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Memory.dll" }}
  8941. ,{ "pid":12345, "tid":8, "ts":1718090301841830, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8942. ,{ "pid":12345, "tid":8, "ts":1718090301841910, "dur":148, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.Pipes.AccessControl.dll" }}
  8943. ,{ "pid":12345, "tid":8, "ts":1718090301841909, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.Pipes.AccessControl.dll" }}
  8944. ,{ "pid":12345, "tid":8, "ts":1718090301842059, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8945. ,{ "pid":12345, "tid":8, "ts":1718090301842194, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.FileSystem.AccessControl.dll" }}
  8946. ,{ "pid":12345, "tid":8, "ts":1718090301842194, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.FileSystem.AccessControl.dll" }}
  8947. ,{ "pid":12345, "tid":8, "ts":1718090301842328, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8948. ,{ "pid":12345, "tid":8, "ts":1718090301842433, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Globalization.Extensions.dll" }}
  8949. ,{ "pid":12345, "tid":8, "ts":1718090301842423, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Globalization.Extensions.dll" }}
  8950. ,{ "pid":12345, "tid":8, "ts":1718090301842544, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8951. ,{ "pid":12345, "tid":8, "ts":1718090301842623, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Diagnostics.Tracing.dll" }}
  8952. ,{ "pid":12345, "tid":8, "ts":1718090301842621, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.Tracing.dll" }}
  8953. ,{ "pid":12345, "tid":8, "ts":1718090301842756, "dur":166, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8954. ,{ "pid":12345, "tid":8, "ts":1718090301842928, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Diagnostics.DiagnosticSource.dll" }}
  8955. ,{ "pid":12345, "tid":8, "ts":1718090301842927, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.DiagnosticSource.dll" }}
  8956. ,{ "pid":12345, "tid":8, "ts":1718090301843051, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8957. ,{ "pid":12345, "tid":8, "ts":1718090301843193, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Configuration.dll" }}
  8958. ,{ "pid":12345, "tid":8, "ts":1718090301843191, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Configuration.dll" }}
  8959. ,{ "pid":12345, "tid":8, "ts":1718090301843253, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8960. ,{ "pid":12345, "tid":8, "ts":1718090301843388, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.ComponentModel.Annotations.dll" }}
  8961. ,{ "pid":12345, "tid":8, "ts":1718090301843386, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.ComponentModel.Annotations.dll" }}
  8962. ,{ "pid":12345, "tid":8, "ts":1718090301843477, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8963. ,{ "pid":12345, "tid":8, "ts":1718090301843568, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.AppContext.dll" }}
  8964. ,{ "pid":12345, "tid":8, "ts":1718090301843566, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.AppContext.dll" }}
  8965. ,{ "pid":12345, "tid":8, "ts":1718090301843641, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8966. ,{ "pid":12345, "tid":8, "ts":1718090301843750, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/monolinker.dll" }}
  8967. ,{ "pid":12345, "tid":8, "ts":1718090301843749, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/monolinker.dll" }}
  8968. ,{ "pid":12345, "tid":8, "ts":1718090301843827, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8969. ,{ "pid":12345, "tid":8, "ts":1718090301843922, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Mono.Cecil.dll" }}
  8970. ,{ "pid":12345, "tid":8, "ts":1718090301843920, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Mono.Cecil.dll" }}
  8971. ,{ "pid":12345, "tid":8, "ts":1718090301843985, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8972. ,{ "pid":12345, "tid":8, "ts":1718090301844067, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libSystem.Security.Cryptography.Native.OpenSsl.dylib" }}
  8973. ,{ "pid":12345, "tid":8, "ts":1718090301844142, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8974. ,{ "pid":12345, "tid":8, "ts":1718090301844222, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libmscordbi.dylib" }}
  8975. ,{ "pid":12345, "tid":8, "ts":1718090301844314, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8976. ,{ "pid":12345, "tid":8, "ts":1718090301844383, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/JetBrains.Profiler.Api.dll" }}
  8977. ,{ "pid":12345, "tid":8, "ts":1718090301844381, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/JetBrains.Profiler.Api.dll" }}
  8978. ,{ "pid":12345, "tid":8, "ts":1718090301844468, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8979. ,{ "pid":12345, "tid":8, "ts":1718090301844546, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/bee_backend/mac-arm64/bee_backend" }}
  8980. ,{ "pid":12345, "tid":8, "ts":1718090301844616, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8981. ,{ "pid":12345, "tid":8, "ts":1718090301844688, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.Xcode.pdb" }}
  8982. ,{ "pid":12345, "tid":8, "ts":1718090301844687, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.Xcode.pdb" }}
  8983. ,{ "pid":12345, "tid":8, "ts":1718090301844799, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8984. ,{ "pid":12345, "tid":8, "ts":1718090301844911, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.VisionOS.pdb" }}
  8985. ,{ "pid":12345, "tid":8, "ts":1718090301844909, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.VisionOS.pdb" }}
  8986. ,{ "pid":12345, "tid":8, "ts":1718090301844991, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8987. ,{ "pid":12345, "tid":8, "ts":1718090301845064, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.MacOS.dll" }}
  8988. ,{ "pid":12345, "tid":8, "ts":1718090301845063, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.MacOS.dll" }}
  8989. ,{ "pid":12345, "tid":8, "ts":1718090301845143, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8990. ,{ "pid":12345, "tid":8, "ts":1718090301845218, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.GNU.pdb" }}
  8991. ,{ "pid":12345, "tid":8, "ts":1718090301845216, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.GNU.pdb" }}
  8992. ,{ "pid":12345, "tid":8, "ts":1718090301845290, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8993. ,{ "pid":12345, "tid":8, "ts":1718090301845360, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.Android.dll" }}
  8994. ,{ "pid":12345, "tid":8, "ts":1718090301845359, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.Android.dll" }}
  8995. ,{ "pid":12345, "tid":8, "ts":1718090301845446, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8996. ,{ "pid":12345, "tid":8, "ts":1718090301845532, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.DotNet.pdb" }}
  8997. ,{ "pid":12345, "tid":8, "ts":1718090301845530, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.DotNet.pdb" }}
  8998. ,{ "pid":12345, "tid":8, "ts":1718090301845606, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8999. ,{ "pid":12345, "tid":8, "ts":1718090301845736, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.BeeDriver.pdb" }}
  9000. ,{ "pid":12345, "tid":8, "ts":1718090301845735, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.BeeDriver.pdb" }}
  9001. ,{ "pid":12345, "tid":8, "ts":1718090301845817, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9002. ,{ "pid":12345, "tid":8, "ts":1718090301845909, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Analytics.Api.Output.pdb" }}
  9003. ,{ "pid":12345, "tid":8, "ts":1718090301845908, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Analytics.Api.Output.pdb" }}
  9004. ,{ "pid":12345, "tid":8, "ts":1718090301845977, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9005. ,{ "pid":12345, "tid":8, "ts":1718090301846061, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/baselib.a" }}
  9006. ,{ "pid":12345, "tid":8, "ts":1718090301846147, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9007. ,{ "pid":12345, "tid":8, "ts":1718090301846282, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone Tests/en.lproj/InfoPlist.strings" }}
  9008. ,{ "pid":12345, "tid":8, "ts":1718090301846367, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9009. ,{ "pid":12345, "tid":8, "ts":1718090301846482, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UnityAppController.h" }}
  9010. ,{ "pid":12345, "tid":8, "ts":1718090301846463, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UnityAppController.h" }}
  9011. ,{ "pid":12345, "tid":8, "ts":1718090301846565, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9012. ,{ "pid":12345, "tid":8, "ts":1718090301846697, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/UnityWebRequest.mm" }}
  9013. ,{ "pid":12345, "tid":8, "ts":1718090301846767, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9014. ,{ "pid":12345, "tid":8, "ts":1718090301846869, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/UnityInterface.h" }}
  9015. ,{ "pid":12345, "tid":8, "ts":1718090301846921, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9016. ,{ "pid":12345, "tid":8, "ts":1718090301847001, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/IUnityGraphicsMetal.h" }}
  9017. ,{ "pid":12345, "tid":8, "ts":1718090301847000, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/IUnityGraphicsMetal.h" }}
  9018. ,{ "pid":12345, "tid":8, "ts":1718090301847080, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9019. ,{ "pid":12345, "tid":8, "ts":1718090301847168, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/DeviceSettings.mm" }}
  9020. ,{ "pid":12345, "tid":8, "ts":1718090301847244, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9021. ,{ "pid":12345, "tid":8, "ts":1718090301847323, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/AVCapture.mm" }}
  9022. ,{ "pid":12345, "tid":8, "ts":1718090301847440, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9023. ,{ "pid":12345, "tid":8, "ts":1718090301847530, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityViewControllerBase+tvOS.mm" }}
  9024. ,{ "pid":12345, "tid":8, "ts":1718090301847595, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9025. ,{ "pid":12345, "tid":8, "ts":1718090301847683, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/UnityView+tvOS.h" }}
  9026. ,{ "pid":12345, "tid":8, "ts":1718090301847682, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityView+tvOS.h" }}
  9027. ,{ "pid":12345, "tid":8, "ts":1718090301847795, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9028. ,{ "pid":12345, "tid":8, "ts":1718090301847872, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/OrientationSupport.mm" }}
  9029. ,{ "pid":12345, "tid":8, "ts":1718090301847947, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9030. ,{ "pid":12345, "tid":8, "ts":1718090301848055, "dur":132, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9031. ,{ "pid":12345, "tid":8, "ts":1718090301848226, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9032. ,{ "pid":12345, "tid":8, "ts":1718090301848301, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/iPhone_Sensors.mm" }}
  9033. ,{ "pid":12345, "tid":8, "ts":1718090301848363, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9034. ,{ "pid":12345, "tid":8, "ts":1718090301848445, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Array.h" }}
  9035. ,{ "pid":12345, "tid":8, "ts":1718090301848444, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Array.h" }}
  9036. ,{ "pid":12345, "tid":8, "ts":1718090301848512, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9037. ,{ "pid":12345, "tid":8, "ts":1718090301848589, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/CCW.h" }}
  9038. ,{ "pid":12345, "tid":8, "ts":1718090301848588, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/CCW.h" }}
  9039. ,{ "pid":12345, "tid":8, "ts":1718090301848663, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9040. ,{ "pid":12345, "tid":8, "ts":1718090301848754, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ClassLibraryPAL.cpp" }}
  9041. ,{ "pid":12345, "tid":8, "ts":1718090301848752, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ClassLibraryPAL.cpp" }}
  9042. ,{ "pid":12345, "tid":8, "ts":1718090301848831, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9043. ,{ "pid":12345, "tid":8, "ts":1718090301848928, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ComObjectBase.h" }}
  9044. ,{ "pid":12345, "tid":8, "ts":1718090301848927, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ComObjectBase.h" }}
  9045. ,{ "pid":12345, "tid":8, "ts":1718090301849023, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9046. ,{ "pid":12345, "tid":8, "ts":1718090301849112, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Exception.cpp" }}
  9047. ,{ "pid":12345, "tid":8, "ts":1718090301849111, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Exception.cpp" }}
  9048. ,{ "pid":12345, "tid":8, "ts":1718090301849208, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9049. ,{ "pid":12345, "tid":8, "ts":1718090301849277, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/GenericContainer.h" }}
  9050. ,{ "pid":12345, "tid":8, "ts":1718090301849277, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/GenericContainer.h" }}
  9051. ,{ "pid":12345, "tid":8, "ts":1718090301849403, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9052. ,{ "pid":12345, "tid":8, "ts":1718090301849512, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Image.h" }}
  9053. ,{ "pid":12345, "tid":8, "ts":1718090301849510, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Image.h" }}
  9054. ,{ "pid":12345, "tid":8, "ts":1718090301849590, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9055. ,{ "pid":12345, "tid":8, "ts":1718090301849661, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Liveness.h" }}
  9056. ,{ "pid":12345, "tid":8, "ts":1718090301849660, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Liveness.h" }}
  9057. ,{ "pid":12345, "tid":8, "ts":1718090301849782, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9058. ,{ "pid":12345, "tid":8, "ts":1718090301849858, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/MetadataCache.h" }}
  9059. ,{ "pid":12345, "tid":8, "ts":1718090301849851, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/MetadataCache.h" }}
  9060. ,{ "pid":12345, "tid":8, "ts":1718090301849925, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9061. ,{ "pid":12345, "tid":8, "ts":1718090301850000, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Module.cpp" }}
  9062. ,{ "pid":12345, "tid":8, "ts":1718090301849999, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Module.cpp" }}
  9063. ,{ "pid":12345, "tid":8, "ts":1718090301850069, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9064. ,{ "pid":12345, "tid":8, "ts":1718090301850179, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Parameter.cpp" }}
  9065. ,{ "pid":12345, "tid":8, "ts":1718090301850172, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Parameter.cpp" }}
  9066. ,{ "pid":12345, "tid":8, "ts":1718090301850258, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9067. ,{ "pid":12345, "tid":8, "ts":1718090301850331, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAdsLoadListener.h" }}
  9068. ,{ "pid":12345, "tid":8, "ts":1718090301850331, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAdsLoadListener.h" }}
  9069. ,{ "pid":12345, "tid":8, "ts":1718090301850407, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9070. ,{ "pid":12345, "tid":8, "ts":1718090301850500, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Profiler.h" }}
  9071. ,{ "pid":12345, "tid":8, "ts":1718090301850499, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Profiler.h" }}
  9072. ,{ "pid":12345, "tid":8, "ts":1718090301850577, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9073. ,{ "pid":12345, "tid":8, "ts":1718090301850651, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Reflection.h" }}
  9074. ,{ "pid":12345, "tid":8, "ts":1718090301850650, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Reflection.h" }}
  9075. ,{ "pid":12345, "tid":8, "ts":1718090301850724, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9076. ,{ "pid":12345, "tid":8, "ts":1718090301850780, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/String.cpp" }}
  9077. ,{ "pid":12345, "tid":8, "ts":1718090301850780, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/String.cpp" }}
  9078. ,{ "pid":12345, "tid":8, "ts":1718090301850834, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9079. ,{ "pid":12345, "tid":8, "ts":1718090301850926, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Type.cpp" }}
  9080. ,{ "pid":12345, "tid":8, "ts":1718090301850926, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Type.cpp" }}
  9081. ,{ "pid":12345, "tid":8, "ts":1718090301851014, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9082. ,{ "pid":12345, "tid":8, "ts":1718090301851073, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/WindowsRuntime.h" }}
  9083. ,{ "pid":12345, "tid":8, "ts":1718090301851071, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/WindowsRuntime.h" }}
  9084. ,{ "pid":12345, "tid":8, "ts":1718090301851144, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9085. ,{ "pid":12345, "tid":8, "ts":1718090301851211, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libmono/config/il2cpp-config-mono-qnx.h" }}
  9086. ,{ "pid":12345, "tid":8, "ts":1718090301851210, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libmono/config/il2cpp-config-mono-qnx.h" }}
  9087. ,{ "pid":12345, "tid":8, "ts":1718090301851262, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9088. ,{ "pid":12345, "tid":8, "ts":1718090301851389, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Libraries/RegisterFeatures.h" }}
  9089. ,{ "pid":12345, "tid":8, "ts":1718090301851389, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/RegisterFeatures.h" }}
  9090. ,{ "pid":12345, "tid":8, "ts":1718090301851457, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9091. ,{ "pid":12345, "tid":8, "ts":1718090301851598, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-120.png" }}
  9092. ,{ "pid":12345, "tid":8, "ts":1718090301851656, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9093. ,{ "pid":12345, "tid":8, "ts":1718090301851723, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-Spotlight-80.png" }}
  9094. ,{ "pid":12345, "tid":8, "ts":1718090301851803, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9095. ,{ "pid":12345, "tid":8, "ts":1718090301851880, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-Spotlight-80.png" }}
  9096. ,{ "pid":12345, "tid":8, "ts":1718090301851935, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9097. ,{ "pid":12345, "tid":8, "ts":1718090301852038, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-Store-1024.png" }}
  9098. ,{ "pid":12345, "tid":8, "ts":1718090301852098, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9099. ,{ "pid":12345, "tid":8, "ts":1718090301852165, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAdsInitializationListener.h" }}
  9100. ,{ "pid":12345, "tid":8, "ts":1718090301852164, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAdsInitializationListener.h" }}
  9101. ,{ "pid":12345, "tid":8, "ts":1718090301852235, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9102. ,{ "pid":12345, "tid":8, "ts":1718090301852301, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAdsUtilities.h" }}
  9103. ,{ "pid":12345, "tid":8, "ts":1718090301852300, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAdsUtilities.h" }}
  9104. ,{ "pid":12345, "tid":8, "ts":1718090301852361, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9105. ,{ "pid":12345, "tid":8, "ts":1718090301852483, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAdsLoadListener.mm" }}
  9106. ,{ "pid":12345, "tid":8, "ts":1718090301852541, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9107. ,{ "pid":12345, "tid":8, "ts":1718090301852651, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/sharedassets1.resource" }}
  9108. ,{ "pid":12345, "tid":8, "ts":1718090301852701, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9109. ,{ "pid":12345, "tid":8, "ts":1718090301852812, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9110. ,{ "pid":12345, "tid":8, "ts":1718090301852962, "dur":14619, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  9111. ,{ "pid":12345, "tid":8, "ts":1718090301867621, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GoogleMobileAds.Ump_CodeGen.c" }}
  9112. ,{ "pid":12345, "tid":8, "ts":1718090301867620, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GoogleMobileAds.Ump_CodeGen.c" }}
  9113. ,{ "pid":12345, "tid":8, "ts":1718090301867698, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9114. ,{ "pid":12345, "tid":8, "ts":1718090301867816, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/__Generated_CodeGen.c" }}
  9115. ,{ "pid":12345, "tid":8, "ts":1718090301867814, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/__Generated_CodeGen.c" }}
  9116. ,{ "pid":12345, "tid":8, "ts":1718090301867908, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9117. ,{ "pid":12345, "tid":8, "ts":1718090301868004, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__3.cpp" }}
  9118. ,{ "pid":12345, "tid":8, "ts":1718090301868003, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__3.cpp" }}
  9119. ,{ "pid":12345, "tid":8, "ts":1718090301868091, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9120. ,{ "pid":12345, "tid":8, "ts":1718090301868220, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__24.cpp" }}
  9121. ,{ "pid":12345, "tid":8, "ts":1718090301868219, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__24.cpp" }}
  9122. ,{ "pid":12345, "tid":8, "ts":1718090301868313, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9123. ,{ "pid":12345, "tid":8, "ts":1718090301868408, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics.cpp" }}
  9124. ,{ "pid":12345, "tid":8, "ts":1718090301868407, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics.cpp" }}
  9125. ,{ "pid":12345, "tid":8, "ts":1718090301868484, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9126. ,{ "pid":12345, "tid":8, "ts":1718090301868575, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppRgctxTable.c" }}
  9127. ,{ "pid":12345, "tid":8, "ts":1718090301868574, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppRgctxTable.c" }}
  9128. ,{ "pid":12345, "tid":8, "ts":1718090301868652, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9129. ,{ "pid":12345, "tid":8, "ts":1718090301868749, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__4.cpp" }}
  9130. ,{ "pid":12345, "tid":8, "ts":1718090301868747, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__4.cpp" }}
  9131. ,{ "pid":12345, "tid":8, "ts":1718090301868829, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9132. ,{ "pid":12345, "tid":8, "ts":1718090301868915, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib.cpp" }}
  9133. ,{ "pid":12345, "tid":8, "ts":1718090301868913, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib.cpp" }}
  9134. ,{ "pid":12345, "tid":8, "ts":1718090301868991, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9135. ,{ "pid":12345, "tid":8, "ts":1718090301869071, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Environments.Internal_CodeGen.c" }}
  9136. ,{ "pid":12345, "tid":8, "ts":1718090301869069, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Environments.Internal_CodeGen.c" }}
  9137. ,{ "pid":12345, "tid":8, "ts":1718090301869137, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9138. ,{ "pid":12345, "tid":8, "ts":1718090301869225, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppTypeDefinitions.c" }}
  9139. ,{ "pid":12345, "tid":8, "ts":1718090301869223, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppTypeDefinitions.c" }}
  9140. ,{ "pid":12345, "tid":8, "ts":1718090301869308, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9141. ,{ "pid":12345, "tid":8, "ts":1718090301869396, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__38.cpp" }}
  9142. ,{ "pid":12345, "tid":8, "ts":1718090301869394, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__38.cpp" }}
  9143. ,{ "pid":12345, "tid":8, "ts":1718090301869489, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9144. ,{ "pid":12345, "tid":8, "ts":1718090301869584, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Mathematics.cpp" }}
  9145. ,{ "pid":12345, "tid":8, "ts":1718090301869583, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Mathematics.cpp" }}
  9146. ,{ "pid":12345, "tid":8, "ts":1718090301869673, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9147. ,{ "pid":12345, "tid":8, "ts":1718090301869755, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.InternalAPIEngineBridge.001_CodeGen.c" }}
  9148. ,{ "pid":12345, "tid":8, "ts":1718090301869753, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.InternalAPIEngineBridge.001_CodeGen.c" }}
  9149. ,{ "pid":12345, "tid":8, "ts":1718090301869850, "dur":141, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9150. ,{ "pid":12345, "tid":8, "ts":1718090301869999, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__16.cpp" }}
  9151. ,{ "pid":12345, "tid":8, "ts":1718090301869997, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__16.cpp" }}
  9152. ,{ "pid":12345, "tid":8, "ts":1718090301870079, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9153. ,{ "pid":12345, "tid":8, "ts":1718090301870175, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIModule_CodeGen.c" }}
  9154. ,{ "pid":12345, "tid":8, "ts":1718090301870173, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIModule_CodeGen.c" }}
  9155. ,{ "pid":12345, "tid":8, "ts":1718090301870286, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9156. ,{ "pid":12345, "tid":8, "ts":1718090301870370, "dur":130, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Firebase.Platform_CodeGen.c" }}
  9157. ,{ "pid":12345, "tid":8, "ts":1718090301870368, "dur":133, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Firebase.Platform_CodeGen.c" }}
  9158. ,{ "pid":12345, "tid":8, "ts":1718090301870501, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9159. ,{ "pid":12345, "tid":8, "ts":1718090301870598, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__21.cpp" }}
  9160. ,{ "pid":12345, "tid":8, "ts":1718090301870597, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__21.cpp" }}
  9161. ,{ "pid":12345, "tid":8, "ts":1718090301870688, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9162. ,{ "pid":12345, "tid":8, "ts":1718090301870792, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__44.cpp" }}
  9163. ,{ "pid":12345, "tid":8, "ts":1718090301870791, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__44.cpp" }}
  9164. ,{ "pid":12345, "tid":8, "ts":1718090301870881, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9165. ,{ "pid":12345, "tid":8, "ts":1718090301870967, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__4.cpp" }}
  9166. ,{ "pid":12345, "tid":8, "ts":1718090301870966, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__4.cpp" }}
  9167. ,{ "pid":12345, "tid":8, "ts":1718090301871047, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9168. ,{ "pid":12345, "tid":8, "ts":1718090301871127, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__23.cpp" }}
  9169. ,{ "pid":12345, "tid":8, "ts":1718090301871126, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__23.cpp" }}
  9170. ,{ "pid":12345, "tid":8, "ts":1718090301871210, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9171. ,{ "pid":12345, "tid":8, "ts":1718090301871295, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__1.cpp" }}
  9172. ,{ "pid":12345, "tid":8, "ts":1718090301871294, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__1.cpp" }}
  9173. ,{ "pid":12345, "tid":8, "ts":1718090301871368, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9174. ,{ "pid":12345, "tid":8, "ts":1718090301871468, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppUnresolvedIndirectCallStubs.cpp" }}
  9175. ,{ "pid":12345, "tid":8, "ts":1718090301871467, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppUnresolvedIndirectCallStubs.cpp" }}
  9176. ,{ "pid":12345, "tid":8, "ts":1718090301871563, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9177. ,{ "pid":12345, "tid":8, "ts":1718090301871663, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.TextCoreTextEngineModule__1.cpp" }}
  9178. ,{ "pid":12345, "tid":8, "ts":1718090301871662, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.TextCoreTextEngineModule__1.cpp" }}
  9179. ,{ "pid":12345, "tid":8, "ts":1718090301871747, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9180. ,{ "pid":12345, "tid":8, "ts":1718090301871841, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Purchasing.Stores.cpp" }}
  9181. ,{ "pid":12345, "tid":8, "ts":1718090301871839, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Purchasing.Stores.cpp" }}
  9182. ,{ "pid":12345, "tid":8, "ts":1718090301871927, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9183. ,{ "pid":12345, "tid":8, "ts":1718090301872019, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Purchasing.Apple.cpp" }}
  9184. ,{ "pid":12345, "tid":8, "ts":1718090301872018, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Purchasing.Apple.cpp" }}
  9185. ,{ "pid":12345, "tid":8, "ts":1718090301872102, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9186. ,{ "pid":12345, "tid":8, "ts":1718090301872217, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__2.cpp" }}
  9187. ,{ "pid":12345, "tid":8, "ts":1718090301872215, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__2.cpp" }}
  9188. ,{ "pid":12345, "tid":8, "ts":1718090301872329, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9189. ,{ "pid":12345, "tid":8, "ts":1718090301872409, "dur":284, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.AnimationModule_CodeGen.c" }}
  9190. ,{ "pid":12345, "tid":8, "ts":1718090301872408, "dur":285, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.AnimationModule_CodeGen.c" }}
  9191. ,{ "pid":12345, "tid":8, "ts":1718090301872694, "dur":302, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9192. ,{ "pid":12345, "tid":8, "ts":1718090301873033, "dur":316, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule_CodeGen.c" }}
  9193. ,{ "pid":12345, "tid":8, "ts":1718090301873032, "dur":318, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule_CodeGen.c" }}
  9194. ,{ "pid":12345, "tid":8, "ts":1718090301873350, "dur":184, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9195. ,{ "pid":12345, "tid":8, "ts":1718090301873572, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule__7.cpp" }}
  9196. ,{ "pid":12345, "tid":8, "ts":1718090301873570, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__7.cpp" }}
  9197. ,{ "pid":12345, "tid":8, "ts":1718090301873691, "dur":222, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9198. ,{ "pid":12345, "tid":8, "ts":1718090301873921, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.TilemapModule_CodeGen.c" }}
  9199. ,{ "pid":12345, "tid":8, "ts":1718090301873920, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.TilemapModule_CodeGen.c" }}
  9200. ,{ "pid":12345, "tid":8, "ts":1718090301874043, "dur":156, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9201. ,{ "pid":12345, "tid":8, "ts":1718090301874206, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__22.cpp" }}
  9202. ,{ "pid":12345, "tid":8, "ts":1718090301874205, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__22.cpp" }}
  9203. ,{ "pid":12345, "tid":8, "ts":1718090301874283, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9204. ,{ "pid":12345, "tid":8, "ts":1718090301874416, "dur":154, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppMetadataUsage.c" }}
  9205. ,{ "pid":12345, "tid":8, "ts":1718090301874414, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppMetadataUsage.c" }}
  9206. ,{ "pid":12345, "tid":8, "ts":1718090301874572, "dur":193, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9207. ,{ "pid":12345, "tid":8, "ts":1718090301874796, "dur":129, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__13.cpp" }}
  9208. ,{ "pid":12345, "tid":8, "ts":1718090301874794, "dur":132, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__13.cpp" }}
  9209. ,{ "pid":12345, "tid":8, "ts":1718090301874930, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9210. ,{ "pid":12345, "tid":8, "ts":1718090301875042, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__8.cpp" }}
  9211. ,{ "pid":12345, "tid":8, "ts":1718090301875041, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__8.cpp" }}
  9212. ,{ "pid":12345, "tid":8, "ts":1718090301875115, "dur":135, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9213. ,{ "pid":12345, "tid":8, "ts":1718090301875266, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/Managed/Resources/mscorlib.dll-resources.dat" }}
  9214. ,{ "pid":12345, "tid":8, "ts":1718090301875353, "dur":143, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9215. ,{ "pid":12345, "tid":8, "ts":1718090301875503, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System__6.cpp" }}
  9216. ,{ "pid":12345, "tid":8, "ts":1718090301875502, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System__6.cpp" }}
  9217. ,{ "pid":12345, "tid":8, "ts":1718090301875582, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9218. ,{ "pid":12345, "tid":8, "ts":1718090301875697, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GoogleMobileAds.iOS.cpp" }}
  9219. ,{ "pid":12345, "tid":8, "ts":1718090301875696, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GoogleMobileAds.iOS.cpp" }}
  9220. ,{ "pid":12345, "tid":8, "ts":1718090301875782, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9221. ,{ "pid":12345, "tid":8, "ts":1718090301875887, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__6.cpp" }}
  9222. ,{ "pid":12345, "tid":8, "ts":1718090301875885, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__6.cpp" }}
  9223. ,{ "pid":12345, "tid":8, "ts":1718090301875970, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9224. ,{ "pid":12345, "tid":8, "ts":1718090301876064, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Environments.Internal.cpp" }}
  9225. ,{ "pid":12345, "tid":8, "ts":1718090301876062, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Environments.Internal.cpp" }}
  9226. ,{ "pid":12345, "tid":8, "ts":1718090301876155, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9227. ,{ "pid":12345, "tid":8, "ts":1718090301876269, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Scheduler.cpp" }}
  9228. ,{ "pid":12345, "tid":8, "ts":1718090301876268, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Scheduler.cpp" }}
  9229. ,{ "pid":12345, "tid":8, "ts":1718090301876363, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9230. ,{ "pid":12345, "tid":8, "ts":1718090301876435, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Device_CodeGen.c" }}
  9231. ,{ "pid":12345, "tid":8, "ts":1718090301876433, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Device_CodeGen.c" }}
  9232. ,{ "pid":12345, "tid":8, "ts":1718090301876505, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9233. ,{ "pid":12345, "tid":8, "ts":1718090301876596, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.TextMeshPro__2.cpp" }}
  9234. ,{ "pid":12345, "tid":8, "ts":1718090301876594, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.TextMeshPro__2.cpp" }}
  9235. ,{ "pid":12345, "tid":8, "ts":1718090301876702, "dur":142, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9236. ,{ "pid":12345, "tid":8, "ts":1718090301876885, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__36.cpp" }}
  9237. ,{ "pid":12345, "tid":8, "ts":1718090301876883, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__36.cpp" }}
  9238. ,{ "pid":12345, "tid":8, "ts":1718090301876974, "dur":144, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9239. ,{ "pid":12345, "tid":8, "ts":1718090301877137, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__9.cpp" }}
  9240. ,{ "pid":12345, "tid":8, "ts":1718090301877135, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__9.cpp" }}
  9241. ,{ "pid":12345, "tid":8, "ts":1718090301877241, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9242. ,{ "pid":12345, "tid":8, "ts":1718090301877378, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.IMGUIModule__1.cpp" }}
  9243. ,{ "pid":12345, "tid":8, "ts":1718090301877376, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.IMGUIModule__1.cpp" }}
  9244. ,{ "pid":12345, "tid":8, "ts":1718090301877498, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9245. ,{ "pid":12345, "tid":8, "ts":1718090301877642, "dur":189, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.InputLegacyModule.cpp" }}
  9246. ,{ "pid":12345, "tid":8, "ts":1718090301877641, "dur":190, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.InputLegacyModule.cpp" }}
  9247. ,{ "pid":12345, "tid":8, "ts":1718090301877832, "dur":184, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9248. ,{ "pid":12345, "tid":8, "ts":1718090301878024, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Transactions.cpp" }}
  9249. ,{ "pid":12345, "tid":8, "ts":1718090301878023, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Transactions.cpp" }}
  9250. ,{ "pid":12345, "tid":8, "ts":1718090301878150, "dur":167, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  9251. ,{ "pid":12345, "tid":8, "ts":1718090301878322, "dur":193, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  9252. ,{ "pid":12345, "tid":0, "ts":1718090301885386, "dur":16848, "ph":"X", "name": "ProfilerWriteOutput" }
  9253. ,