main-record.json 276 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475
  1. {
  2. "modules": {
  3. "cce:/internal/x/cc": {
  4. "mTimestamp": 150474.9797999859,
  5. "chunkId": "93ba276ea7b26ffcdc433fab14afc1ed6f05647b",
  6. "imports": [
  7. {
  8. "value": "cce:/internal/x/cc-fu/2d",
  9. "resolved": "__unresolved_0",
  10. "loc": {
  11. "start": {
  12. "line": 1,
  13. "column": 14
  14. },
  15. "end": {
  16. "line": 1,
  17. "column": 40
  18. }
  19. }
  20. },
  21. {
  22. "value": "cce:/internal/x/cc-fu/sorting",
  23. "resolved": "__unresolved_1",
  24. "loc": {
  25. "start": {
  26. "line": 2,
  27. "column": 14
  28. },
  29. "end": {
  30. "line": 2,
  31. "column": 45
  32. }
  33. }
  34. },
  35. {
  36. "value": "cce:/internal/x/cc-fu/3d",
  37. "resolved": "__unresolved_2",
  38. "loc": {
  39. "start": {
  40. "line": 3,
  41. "column": 14
  42. },
  43. "end": {
  44. "line": 3,
  45. "column": 40
  46. }
  47. }
  48. },
  49. {
  50. "value": "cce:/internal/x/cc-fu/animation",
  51. "resolved": "__unresolved_3",
  52. "loc": {
  53. "start": {
  54. "line": 4,
  55. "column": 14
  56. },
  57. "end": {
  58. "line": 4,
  59. "column": 47
  60. }
  61. }
  62. },
  63. {
  64. "value": "cce:/internal/x/cc-fu/audio",
  65. "resolved": "__unresolved_4",
  66. "loc": {
  67. "start": {
  68. "line": 5,
  69. "column": 14
  70. },
  71. "end": {
  72. "line": 5,
  73. "column": 43
  74. }
  75. }
  76. },
  77. {
  78. "value": "cce:/internal/x/cc-fu/base",
  79. "resolved": "__unresolved_5",
  80. "loc": {
  81. "start": {
  82. "line": 6,
  83. "column": 14
  84. },
  85. "end": {
  86. "line": 6,
  87. "column": 42
  88. }
  89. }
  90. },
  91. {
  92. "value": "cce:/internal/x/cc-fu/custom-pipeline",
  93. "resolved": "__unresolved_6",
  94. "loc": {
  95. "start": {
  96. "line": 7,
  97. "column": 14
  98. },
  99. "end": {
  100. "line": 7,
  101. "column": 53
  102. }
  103. }
  104. },
  105. {
  106. "value": "cce:/internal/x/cc-fu/dragon-bones",
  107. "resolved": "__unresolved_7",
  108. "loc": {
  109. "start": {
  110. "line": 8,
  111. "column": 14
  112. },
  113. "end": {
  114. "line": 8,
  115. "column": 50
  116. }
  117. }
  118. },
  119. {
  120. "value": "cce:/internal/x/cc-fu/geometry-renderer",
  121. "resolved": "__unresolved_8",
  122. "loc": {
  123. "start": {
  124. "line": 9,
  125. "column": 14
  126. },
  127. "end": {
  128. "line": 9,
  129. "column": 55
  130. }
  131. }
  132. },
  133. {
  134. "value": "cce:/internal/x/cc-fu/gfx-webgl",
  135. "resolved": "__unresolved_9",
  136. "loc": {
  137. "start": {
  138. "line": 10,
  139. "column": 14
  140. },
  141. "end": {
  142. "line": 10,
  143. "column": 47
  144. }
  145. }
  146. },
  147. {
  148. "value": "cce:/internal/x/cc-fu/intersection-2d",
  149. "resolved": "__unresolved_10",
  150. "loc": {
  151. "start": {
  152. "line": 11,
  153. "column": 14
  154. },
  155. "end": {
  156. "line": 11,
  157. "column": 53
  158. }
  159. }
  160. },
  161. {
  162. "value": "cce:/internal/x/cc-fu/light-probe",
  163. "resolved": "__unresolved_11",
  164. "loc": {
  165. "start": {
  166. "line": 12,
  167. "column": 14
  168. },
  169. "end": {
  170. "line": 12,
  171. "column": 49
  172. }
  173. }
  174. },
  175. {
  176. "value": "cce:/internal/x/cc-fu/particle",
  177. "resolved": "__unresolved_12",
  178. "loc": {
  179. "start": {
  180. "line": 13,
  181. "column": 14
  182. },
  183. "end": {
  184. "line": 13,
  185. "column": 46
  186. }
  187. }
  188. },
  189. {
  190. "value": "cce:/internal/x/cc-fu/particle-2d",
  191. "resolved": "__unresolved_13",
  192. "loc": {
  193. "start": {
  194. "line": 14,
  195. "column": 14
  196. },
  197. "end": {
  198. "line": 14,
  199. "column": 49
  200. }
  201. }
  202. },
  203. {
  204. "value": "cce:/internal/x/cc-fu/physics-2d-box2d",
  205. "resolved": "__unresolved_14",
  206. "loc": {
  207. "start": {
  208. "line": 15,
  209. "column": 14
  210. },
  211. "end": {
  212. "line": 15,
  213. "column": 54
  214. }
  215. }
  216. },
  217. {
  218. "value": "cce:/internal/x/cc-fu/physics-2d-framework",
  219. "resolved": "__unresolved_15",
  220. "loc": {
  221. "start": {
  222. "line": 16,
  223. "column": 14
  224. },
  225. "end": {
  226. "line": 16,
  227. "column": 58
  228. }
  229. }
  230. },
  231. {
  232. "value": "cce:/internal/x/cc-fu/physics-ammo",
  233. "resolved": "__unresolved_16",
  234. "loc": {
  235. "start": {
  236. "line": 17,
  237. "column": 14
  238. },
  239. "end": {
  240. "line": 17,
  241. "column": 50
  242. }
  243. }
  244. },
  245. {
  246. "value": "cce:/internal/x/cc-fu/physics-framework",
  247. "resolved": "__unresolved_17",
  248. "loc": {
  249. "start": {
  250. "line": 18,
  251. "column": 14
  252. },
  253. "end": {
  254. "line": 18,
  255. "column": 55
  256. }
  257. }
  258. },
  259. {
  260. "value": "cce:/internal/x/cc-fu/wait-for-ammo-instantiation",
  261. "resolved": "__unresolved_18",
  262. "loc": {
  263. "start": {
  264. "line": 19,
  265. "column": 14
  266. },
  267. "end": {
  268. "line": 19,
  269. "column": 65
  270. }
  271. }
  272. },
  273. {
  274. "value": "cce:/internal/x/cc-fu/primitive",
  275. "resolved": "__unresolved_19",
  276. "loc": {
  277. "start": {
  278. "line": 20,
  279. "column": 14
  280. },
  281. "end": {
  282. "line": 20,
  283. "column": 47
  284. }
  285. }
  286. },
  287. {
  288. "value": "cce:/internal/x/cc-fu/profiler",
  289. "resolved": "__unresolved_20",
  290. "loc": {
  291. "start": {
  292. "line": 21,
  293. "column": 14
  294. },
  295. "end": {
  296. "line": 21,
  297. "column": 46
  298. }
  299. }
  300. },
  301. {
  302. "value": "cce:/internal/x/cc-fu/skeletal-animation",
  303. "resolved": "__unresolved_21",
  304. "loc": {
  305. "start": {
  306. "line": 22,
  307. "column": 14
  308. },
  309. "end": {
  310. "line": 22,
  311. "column": 56
  312. }
  313. }
  314. },
  315. {
  316. "value": "cce:/internal/x/cc-fu/spine",
  317. "resolved": "__unresolved_22",
  318. "loc": {
  319. "start": {
  320. "line": 23,
  321. "column": 14
  322. },
  323. "end": {
  324. "line": 23,
  325. "column": 43
  326. }
  327. }
  328. },
  329. {
  330. "value": "cce:/internal/x/cc-fu/terrain",
  331. "resolved": "__unresolved_23",
  332. "loc": {
  333. "start": {
  334. "line": 24,
  335. "column": 14
  336. },
  337. "end": {
  338. "line": 24,
  339. "column": 45
  340. }
  341. }
  342. },
  343. {
  344. "value": "cce:/internal/x/cc-fu/tiled-map",
  345. "resolved": "__unresolved_24",
  346. "loc": {
  347. "start": {
  348. "line": 25,
  349. "column": 14
  350. },
  351. "end": {
  352. "line": 25,
  353. "column": 47
  354. }
  355. }
  356. },
  357. {
  358. "value": "cce:/internal/x/cc-fu/tween",
  359. "resolved": "__unresolved_25",
  360. "loc": {
  361. "start": {
  362. "line": 26,
  363. "column": 14
  364. },
  365. "end": {
  366. "line": 26,
  367. "column": 43
  368. }
  369. }
  370. },
  371. {
  372. "value": "cce:/internal/x/cc-fu/ui",
  373. "resolved": "__unresolved_26",
  374. "loc": {
  375. "start": {
  376. "line": 27,
  377. "column": 14
  378. },
  379. "end": {
  380. "line": 27,
  381. "column": 40
  382. }
  383. }
  384. },
  385. {
  386. "value": "cce:/internal/x/cc-fu/video",
  387. "resolved": "__unresolved_27",
  388. "loc": {
  389. "start": {
  390. "line": 28,
  391. "column": 14
  392. },
  393. "end": {
  394. "line": 28,
  395. "column": 43
  396. }
  397. }
  398. },
  399. {
  400. "value": "cce:/internal/x/cc-fu/webview",
  401. "resolved": "__unresolved_28",
  402. "loc": {
  403. "start": {
  404. "line": 29,
  405. "column": 14
  406. },
  407. "end": {
  408. "line": 29,
  409. "column": 45
  410. }
  411. }
  412. }
  413. ],
  414. "type": "esm",
  415. "resolutions": [
  416. {
  417. "resolved": {
  418. "type": "external",
  419. "specifierOrURL": "cce:/internal/x/cc-fu/2d"
  420. },
  421. "messages": []
  422. },
  423. {
  424. "resolved": {
  425. "type": "external",
  426. "specifierOrURL": "cce:/internal/x/cc-fu/sorting"
  427. },
  428. "messages": []
  429. },
  430. {
  431. "resolved": {
  432. "type": "external",
  433. "specifierOrURL": "cce:/internal/x/cc-fu/3d"
  434. },
  435. "messages": []
  436. },
  437. {
  438. "resolved": {
  439. "type": "external",
  440. "specifierOrURL": "cce:/internal/x/cc-fu/animation"
  441. },
  442. "messages": []
  443. },
  444. {
  445. "resolved": {
  446. "type": "external",
  447. "specifierOrURL": "cce:/internal/x/cc-fu/audio"
  448. },
  449. "messages": []
  450. },
  451. {
  452. "resolved": {
  453. "type": "external",
  454. "specifierOrURL": "cce:/internal/x/cc-fu/base"
  455. },
  456. "messages": []
  457. },
  458. {
  459. "resolved": {
  460. "type": "external",
  461. "specifierOrURL": "cce:/internal/x/cc-fu/custom-pipeline"
  462. },
  463. "messages": []
  464. },
  465. {
  466. "resolved": {
  467. "type": "external",
  468. "specifierOrURL": "cce:/internal/x/cc-fu/dragon-bones"
  469. },
  470. "messages": []
  471. },
  472. {
  473. "resolved": {
  474. "type": "external",
  475. "specifierOrURL": "cce:/internal/x/cc-fu/geometry-renderer"
  476. },
  477. "messages": []
  478. },
  479. {
  480. "resolved": {
  481. "type": "external",
  482. "specifierOrURL": "cce:/internal/x/cc-fu/gfx-webgl"
  483. },
  484. "messages": []
  485. },
  486. {
  487. "resolved": {
  488. "type": "external",
  489. "specifierOrURL": "cce:/internal/x/cc-fu/intersection-2d"
  490. },
  491. "messages": []
  492. },
  493. {
  494. "resolved": {
  495. "type": "external",
  496. "specifierOrURL": "cce:/internal/x/cc-fu/light-probe"
  497. },
  498. "messages": []
  499. },
  500. {
  501. "resolved": {
  502. "type": "external",
  503. "specifierOrURL": "cce:/internal/x/cc-fu/particle"
  504. },
  505. "messages": []
  506. },
  507. {
  508. "resolved": {
  509. "type": "external",
  510. "specifierOrURL": "cce:/internal/x/cc-fu/particle-2d"
  511. },
  512. "messages": []
  513. },
  514. {
  515. "resolved": {
  516. "type": "external",
  517. "specifierOrURL": "cce:/internal/x/cc-fu/physics-2d-box2d"
  518. },
  519. "messages": []
  520. },
  521. {
  522. "resolved": {
  523. "type": "external",
  524. "specifierOrURL": "cce:/internal/x/cc-fu/physics-2d-framework"
  525. },
  526. "messages": []
  527. },
  528. {
  529. "resolved": {
  530. "type": "external",
  531. "specifierOrURL": "cce:/internal/x/cc-fu/physics-ammo"
  532. },
  533. "messages": []
  534. },
  535. {
  536. "resolved": {
  537. "type": "external",
  538. "specifierOrURL": "cce:/internal/x/cc-fu/physics-framework"
  539. },
  540. "messages": []
  541. },
  542. {
  543. "resolved": {
  544. "type": "external",
  545. "specifierOrURL": "cce:/internal/x/cc-fu/wait-for-ammo-instantiation"
  546. },
  547. "messages": []
  548. },
  549. {
  550. "resolved": {
  551. "type": "external",
  552. "specifierOrURL": "cce:/internal/x/cc-fu/primitive"
  553. },
  554. "messages": []
  555. },
  556. {
  557. "resolved": {
  558. "type": "external",
  559. "specifierOrURL": "cce:/internal/x/cc-fu/profiler"
  560. },
  561. "messages": []
  562. },
  563. {
  564. "resolved": {
  565. "type": "external",
  566. "specifierOrURL": "cce:/internal/x/cc-fu/skeletal-animation"
  567. },
  568. "messages": []
  569. },
  570. {
  571. "resolved": {
  572. "type": "external",
  573. "specifierOrURL": "cce:/internal/x/cc-fu/spine"
  574. },
  575. "messages": []
  576. },
  577. {
  578. "resolved": {
  579. "type": "external",
  580. "specifierOrURL": "cce:/internal/x/cc-fu/terrain"
  581. },
  582. "messages": []
  583. },
  584. {
  585. "resolved": {
  586. "type": "external",
  587. "specifierOrURL": "cce:/internal/x/cc-fu/tiled-map"
  588. },
  589. "messages": []
  590. },
  591. {
  592. "resolved": {
  593. "type": "external",
  594. "specifierOrURL": "cce:/internal/x/cc-fu/tween"
  595. },
  596. "messages": []
  597. },
  598. {
  599. "resolved": {
  600. "type": "external",
  601. "specifierOrURL": "cce:/internal/x/cc-fu/ui"
  602. },
  603. "messages": []
  604. },
  605. {
  606. "resolved": {
  607. "type": "external",
  608. "specifierOrURL": "cce:/internal/x/cc-fu/video"
  609. },
  610. "messages": []
  611. },
  612. {
  613. "resolved": {
  614. "type": "external",
  615. "specifierOrURL": "cce:/internal/x/cc-fu/webview"
  616. },
  617. "messages": []
  618. }
  619. ]
  620. },
  621. "cce:/internal/x/prerequisite-imports": {
  622. "mTimestamp": 1148506.8066999912,
  623. "chunkId": "6d8fd2b0177941b032ddc0733af48a561fb60657",
  624. "imports": [
  625. {
  626. "value": "file:///C:/ProgramData/cocos/editors/Creator/3.8.4/resources/resources/3d/engine/editor/assets/default_renderpipeline/builtin-pipeline-settings.ts",
  627. "resolved": "__unresolved_0",
  628. "loc": {
  629. "start": {
  630. "line": 4,
  631. "column": 7
  632. },
  633. "end": {
  634. "line": 4,
  635. "column": 155
  636. }
  637. }
  638. },
  639. {
  640. "value": "file:///C:/ProgramData/cocos/editors/Creator/3.8.4/resources/resources/3d/engine/editor/assets/default_renderpipeline/builtin-pipeline-types.ts",
  641. "resolved": "__unresolved_1",
  642. "loc": {
  643. "start": {
  644. "line": 5,
  645. "column": 7
  646. },
  647. "end": {
  648. "line": 5,
  649. "column": 152
  650. }
  651. }
  652. },
  653. {
  654. "value": "file:///C:/ProgramData/cocos/editors/Creator/3.8.4/resources/resources/3d/engine/editor/assets/default_renderpipeline/builtin-pipeline.ts",
  655. "resolved": "__unresolved_2",
  656. "loc": {
  657. "start": {
  658. "line": 6,
  659. "column": 7
  660. },
  661. "end": {
  662. "line": 6,
  663. "column": 146
  664. }
  665. }
  666. },
  667. {
  668. "value": "file:///C:/ProgramData/cocos/editors/Creator/3.8.4/resources/resources/3d/engine/editor/assets/tools/debug-view-runtime-control.ts",
  669. "resolved": "__unresolved_3",
  670. "loc": {
  671. "start": {
  672. "line": 7,
  673. "column": 7
  674. },
  675. "end": {
  676. "line": 7,
  677. "column": 139
  678. }
  679. }
  680. },
  681. {
  682. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Container_Manager.ts",
  683. "resolved": "__unresolved_4",
  684. "loc": {
  685. "start": {
  686. "line": 8,
  687. "column": 7
  688. },
  689. "end": {
  690. "line": 8,
  691. "column": 88
  692. }
  693. }
  694. },
  695. {
  696. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/CreateIdiom.ts",
  697. "resolved": "__unresolved_5",
  698. "loc": {
  699. "start": {
  700. "line": 9,
  701. "column": 7
  702. },
  703. "end": {
  704. "line": 9,
  705. "column": 82
  706. }
  707. }
  708. },
  709. {
  710. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Cube_Infor.ts",
  711. "resolved": "__unresolved_6",
  712. "loc": {
  713. "start": {
  714. "line": 10,
  715. "column": 7
  716. },
  717. "end": {
  718. "line": 10,
  719. "column": 81
  720. }
  721. }
  722. },
  723. {
  724. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/GameCtl.ts",
  725. "resolved": "__unresolved_7",
  726. "loc": {
  727. "start": {
  728. "line": 11,
  729. "column": 7
  730. },
  731. "end": {
  732. "line": 11,
  733. "column": 78
  734. }
  735. }
  736. },
  737. {
  738. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Hall.ts",
  739. "resolved": "__unresolved_8",
  740. "loc": {
  741. "start": {
  742. "line": 12,
  743. "column": 7
  744. },
  745. "end": {
  746. "line": 12,
  747. "column": 75
  748. }
  749. }
  750. },
  751. {
  752. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/ModuleDef.ts",
  753. "resolved": "__unresolved_9",
  754. "loc": {
  755. "start": {
  756. "line": 13,
  757. "column": 7
  758. },
  759. "end": {
  760. "line": 13,
  761. "column": 80
  762. }
  763. }
  764. },
  765. {
  766. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/SceneDef.ts",
  767. "resolved": "__unresolved_10",
  768. "loc": {
  769. "start": {
  770. "line": 14,
  771. "column": 7
  772. },
  773. "end": {
  774. "line": 14,
  775. "column": 79
  776. }
  777. }
  778. },
  779. {
  780. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/audio/audio.ts",
  781. "resolved": "__unresolved_11",
  782. "loc": {
  783. "start": {
  784. "line": 15,
  785. "column": 7
  786. },
  787. "end": {
  788. "line": 15,
  789. "column": 77
  790. }
  791. }
  792. },
  793. {
  794. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/ch.ts",
  795. "resolved": "__unresolved_12",
  796. "loc": {
  797. "start": {
  798. "line": 16,
  799. "column": 7
  800. },
  801. "end": {
  802. "line": 16,
  803. "column": 68
  804. }
  805. }
  806. },
  807. {
  808. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/ch_util.ts",
  809. "resolved": "__unresolved_13",
  810. "loc": {
  811. "start": {
  812. "line": 17,
  813. "column": 7
  814. },
  815. "end": {
  816. "line": 17,
  817. "column": 73
  818. }
  819. }
  820. },
  821. {
  822. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/NetBase.ts",
  823. "resolved": "__unresolved_14",
  824. "loc": {
  825. "start": {
  826. "line": 18,
  827. "column": 7
  828. },
  829. "end": {
  830. "line": 18,
  831. "column": 77
  832. }
  833. }
  834. },
  835. {
  836. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/NetPlayer.ts",
  837. "resolved": "__unresolved_15",
  838. "loc": {
  839. "start": {
  840. "line": 19,
  841. "column": 7
  842. },
  843. "end": {
  844. "line": 19,
  845. "column": 79
  846. }
  847. }
  848. },
  849. {
  850. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/NetRoom.ts",
  851. "resolved": "__unresolved_16",
  852. "loc": {
  853. "start": {
  854. "line": 20,
  855. "column": 7
  856. },
  857. "end": {
  858. "line": 20,
  859. "column": 77
  860. }
  861. }
  862. },
  863. {
  864. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/NetTeam.ts",
  865. "resolved": "__unresolved_17",
  866. "loc": {
  867. "start": {
  868. "line": 21,
  869. "column": 7
  870. },
  871. "end": {
  872. "line": 21,
  873. "column": 77
  874. }
  875. }
  876. },
  877. {
  878. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/WsClient.ts",
  879. "resolved": "__unresolved_18",
  880. "loc": {
  881. "start": {
  882. "line": 22,
  883. "column": 7
  884. },
  885. "end": {
  886. "line": 22,
  887. "column": 78
  888. }
  889. }
  890. },
  891. {
  892. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/net.ts",
  893. "resolved": "__unresolved_19",
  894. "loc": {
  895. "start": {
  896. "line": 23,
  897. "column": 7
  898. },
  899. "end": {
  900. "line": 23,
  901. "column": 73
  902. }
  903. }
  904. },
  905. {
  906. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/pvp/ch_pvp.ts",
  907. "resolved": "__unresolved_20",
  908. "loc": {
  909. "start": {
  910. "line": 24,
  911. "column": 7
  912. },
  913. "end": {
  914. "line": 24,
  915. "column": 76
  916. }
  917. }
  918. },
  919. {
  920. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/sign/sign.ts",
  921. "resolved": "__unresolved_21",
  922. "loc": {
  923. "start": {
  924. "line": 25,
  925. "column": 7
  926. },
  927. "end": {
  928. "line": 25,
  929. "column": 75
  930. }
  931. }
  932. },
  933. {
  934. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/start/ch_sdk_comp.ts",
  935. "resolved": "__unresolved_22",
  936. "loc": {
  937. "start": {
  938. "line": 26,
  939. "column": 7
  940. },
  941. "end": {
  942. "line": 26,
  943. "column": 83
  944. }
  945. }
  946. },
  947. {
  948. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/start/ch_start_pack.ts",
  949. "resolved": "__unresolved_23",
  950. "loc": {
  951. "start": {
  952. "line": 27,
  953. "column": 7
  954. },
  955. "end": {
  956. "line": 27,
  957. "column": 85
  958. }
  959. }
  960. },
  961. {
  962. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts",
  963. "resolved": "__unresolved_24",
  964. "loc": {
  965. "start": {
  966. "line": 28,
  967. "column": 7
  968. },
  969. "end": {
  970. "line": 28,
  971. "column": 73
  972. }
  973. }
  974. },
  975. {
  976. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui_ResolutionAutoFit.ts",
  977. "resolved": "__unresolved_25",
  978. "loc": {
  979. "start": {
  980. "line": 29,
  981. "column": 7
  982. },
  983. "end": {
  984. "line": 29,
  985. "column": 91
  986. }
  987. }
  988. },
  989. {
  990. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui_base.ts",
  991. "resolved": "__unresolved_26",
  992. "loc": {
  993. "start": {
  994. "line": 30,
  995. "column": 7
  996. },
  997. "end": {
  998. "line": 30,
  999. "column": 78
  1000. }
  1001. }
  1002. },
  1003. {
  1004. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/ArrayUtil.ts",
  1005. "resolved": "__unresolved_27",
  1006. "loc": {
  1007. "start": {
  1008. "line": 31,
  1009. "column": 7
  1010. },
  1011. "end": {
  1012. "line": 31,
  1013. "column": 82
  1014. }
  1015. }
  1016. },
  1017. {
  1018. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/DataTimeUtil.ts",
  1019. "resolved": "__unresolved_28",
  1020. "loc": {
  1021. "start": {
  1022. "line": 32,
  1023. "column": 7
  1024. },
  1025. "end": {
  1026. "line": 32,
  1027. "column": 85
  1028. }
  1029. }
  1030. },
  1031. {
  1032. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/DirectorUtil.ts",
  1033. "resolved": "__unresolved_29",
  1034. "loc": {
  1035. "start": {
  1036. "line": 33,
  1037. "column": 7
  1038. },
  1039. "end": {
  1040. "line": 33,
  1041. "column": 85
  1042. }
  1043. }
  1044. },
  1045. {
  1046. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/Instance.ts",
  1047. "resolved": "__unresolved_30",
  1048. "loc": {
  1049. "start": {
  1050. "line": 34,
  1051. "column": 7
  1052. },
  1053. "end": {
  1054. "line": 34,
  1055. "column": 81
  1056. }
  1057. }
  1058. },
  1059. {
  1060. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/LocalStorageUtil.ts",
  1061. "resolved": "__unresolved_31",
  1062. "loc": {
  1063. "start": {
  1064. "line": 35,
  1065. "column": 7
  1066. },
  1067. "end": {
  1068. "line": 35,
  1069. "column": 89
  1070. }
  1071. }
  1072. },
  1073. {
  1074. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/MathUtil.ts",
  1075. "resolved": "__unresolved_32",
  1076. "loc": {
  1077. "start": {
  1078. "line": 36,
  1079. "column": 7
  1080. },
  1081. "end": {
  1082. "line": 36,
  1083. "column": 81
  1084. }
  1085. }
  1086. },
  1087. {
  1088. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/PathUtil.ts",
  1089. "resolved": "__unresolved_33",
  1090. "loc": {
  1091. "start": {
  1092. "line": 37,
  1093. "column": 7
  1094. },
  1095. "end": {
  1096. "line": 37,
  1097. "column": 81
  1098. }
  1099. }
  1100. },
  1101. {
  1102. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/ProjectileMathUtil.ts",
  1103. "resolved": "__unresolved_34",
  1104. "loc": {
  1105. "start": {
  1106. "line": 38,
  1107. "column": 7
  1108. },
  1109. "end": {
  1110. "line": 38,
  1111. "column": 91
  1112. }
  1113. }
  1114. },
  1115. {
  1116. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/ResUtil.ts",
  1117. "resolved": "__unresolved_35",
  1118. "loc": {
  1119. "start": {
  1120. "line": 39,
  1121. "column": 7
  1122. },
  1123. "end": {
  1124. "line": 39,
  1125. "column": 80
  1126. }
  1127. }
  1128. },
  1129. {
  1130. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/StringUtil.ts",
  1131. "resolved": "__unresolved_36",
  1132. "loc": {
  1133. "start": {
  1134. "line": 40,
  1135. "column": 7
  1136. },
  1137. "end": {
  1138. "line": 40,
  1139. "column": 83
  1140. }
  1141. }
  1142. },
  1143. {
  1144. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/TableLoadUtil.ts",
  1145. "resolved": "__unresolved_37",
  1146. "loc": {
  1147. "start": {
  1148. "line": 41,
  1149. "column": 7
  1150. },
  1151. "end": {
  1152. "line": 41,
  1153. "column": 86
  1154. }
  1155. }
  1156. },
  1157. {
  1158. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/UrlUtil.ts",
  1159. "resolved": "__unresolved_38",
  1160. "loc": {
  1161. "start": {
  1162. "line": 42,
  1163. "column": 7
  1164. },
  1165. "end": {
  1166. "line": 42,
  1167. "column": 80
  1168. }
  1169. }
  1170. },
  1171. {
  1172. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/Utils.ts",
  1173. "resolved": "__unresolved_39",
  1174. "loc": {
  1175. "start": {
  1176. "line": 43,
  1177. "column": 7
  1178. },
  1179. "end": {
  1180. "line": 43,
  1181. "column": 78
  1182. }
  1183. }
  1184. },
  1185. {
  1186. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Action.ts",
  1187. "resolved": "__unresolved_40",
  1188. "loc": {
  1189. "start": {
  1190. "line": 44,
  1191. "column": 7
  1192. },
  1193. "end": {
  1194. "line": 44,
  1195. "column": 85
  1196. }
  1197. }
  1198. },
  1199. {
  1200. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Container.ts",
  1201. "resolved": "__unresolved_41",
  1202. "loc": {
  1203. "start": {
  1204. "line": 45,
  1205. "column": 7
  1206. },
  1207. "end": {
  1208. "line": 45,
  1209. "column": 88
  1210. }
  1211. }
  1212. },
  1213. {
  1214. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Delay.ts",
  1215. "resolved": "__unresolved_42",
  1216. "loc": {
  1217. "start": {
  1218. "line": 46,
  1219. "column": 7
  1220. },
  1221. "end": {
  1222. "line": 46,
  1223. "column": 84
  1224. }
  1225. }
  1226. },
  1227. {
  1228. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/FMS.ts",
  1229. "resolved": "__unresolved_43",
  1230. "loc": {
  1231. "start": {
  1232. "line": 47,
  1233. "column": 7
  1234. },
  1235. "end": {
  1236. "line": 47,
  1237. "column": 82
  1238. }
  1239. }
  1240. },
  1241. {
  1242. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/GameData.ts",
  1243. "resolved": "__unresolved_44",
  1244. "loc": {
  1245. "start": {
  1246. "line": 48,
  1247. "column": 7
  1248. },
  1249. "end": {
  1250. "line": 48,
  1251. "column": 87
  1252. }
  1253. }
  1254. },
  1255. {
  1256. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/HeadIcon.ts",
  1257. "resolved": "__unresolved_45",
  1258. "loc": {
  1259. "start": {
  1260. "line": 49,
  1261. "column": 7
  1262. },
  1263. "end": {
  1264. "line": 49,
  1265. "column": 87
  1266. }
  1267. }
  1268. },
  1269. {
  1270. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Line2DMove.ts",
  1271. "resolved": "__unresolved_46",
  1272. "loc": {
  1273. "start": {
  1274. "line": 50,
  1275. "column": 7
  1276. },
  1277. "end": {
  1278. "line": 50,
  1279. "column": 89
  1280. }
  1281. }
  1282. },
  1283. {
  1284. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/PeriodData.ts",
  1285. "resolved": "__unresolved_47",
  1286. "loc": {
  1287. "start": {
  1288. "line": 51,
  1289. "column": 7
  1290. },
  1291. "end": {
  1292. "line": 51,
  1293. "column": 89
  1294. }
  1295. }
  1296. },
  1297. {
  1298. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/PrefabPool.ts",
  1299. "resolved": "__unresolved_48",
  1300. "loc": {
  1301. "start": {
  1302. "line": 52,
  1303. "column": 7
  1304. },
  1305. "end": {
  1306. "line": 52,
  1307. "column": 89
  1308. }
  1309. }
  1310. },
  1311. {
  1312. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Queue.ts",
  1313. "resolved": "__unresolved_49",
  1314. "loc": {
  1315. "start": {
  1316. "line": 53,
  1317. "column": 7
  1318. },
  1319. "end": {
  1320. "line": 53,
  1321. "column": 84
  1322. }
  1323. }
  1324. },
  1325. {
  1326. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Random.ts",
  1327. "resolved": "__unresolved_50",
  1328. "loc": {
  1329. "start": {
  1330. "line": 54,
  1331. "column": 7
  1332. },
  1333. "end": {
  1334. "line": 54,
  1335. "column": 85
  1336. }
  1337. }
  1338. },
  1339. {
  1340. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/SafeNumber.ts",
  1341. "resolved": "__unresolved_51",
  1342. "loc": {
  1343. "start": {
  1344. "line": 55,
  1345. "column": 7
  1346. },
  1347. "end": {
  1348. "line": 55,
  1349. "column": 89
  1350. }
  1351. }
  1352. },
  1353. {
  1354. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Shake.ts",
  1355. "resolved": "__unresolved_52",
  1356. "loc": {
  1357. "start": {
  1358. "line": 56,
  1359. "column": 7
  1360. },
  1361. "end": {
  1362. "line": 56,
  1363. "column": 84
  1364. }
  1365. }
  1366. },
  1367. {
  1368. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/State.ts",
  1369. "resolved": "__unresolved_53",
  1370. "loc": {
  1371. "start": {
  1372. "line": 57,
  1373. "column": 7
  1374. },
  1375. "end": {
  1376. "line": 57,
  1377. "column": 84
  1378. }
  1379. }
  1380. },
  1381. {
  1382. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/TimeJobCenter.ts",
  1383. "resolved": "__unresolved_54",
  1384. "loc": {
  1385. "start": {
  1386. "line": 58,
  1387. "column": 7
  1388. },
  1389. "end": {
  1390. "line": 58,
  1391. "column": 92
  1392. }
  1393. }
  1394. },
  1395. {
  1396. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Timer.ts",
  1397. "resolved": "__unresolved_55",
  1398. "loc": {
  1399. "start": {
  1400. "line": 59,
  1401. "column": 7
  1402. },
  1403. "end": {
  1404. "line": 59,
  1405. "column": 84
  1406. }
  1407. }
  1408. },
  1409. {
  1410. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Toast.ts",
  1411. "resolved": "__unresolved_56",
  1412. "loc": {
  1413. "start": {
  1414. "line": 60,
  1415. "column": 7
  1416. },
  1417. "end": {
  1418. "line": 60,
  1419. "column": 84
  1420. }
  1421. }
  1422. },
  1423. {
  1424. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Wait.ts",
  1425. "resolved": "__unresolved_57",
  1426. "loc": {
  1427. "start": {
  1428. "line": 61,
  1429. "column": 7
  1430. },
  1431. "end": {
  1432. "line": 61,
  1433. "column": 83
  1434. }
  1435. }
  1436. },
  1437. {
  1438. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/ClickPenetrate.ts",
  1439. "resolved": "__unresolved_58",
  1440. "loc": {
  1441. "start": {
  1442. "line": 62,
  1443. "column": 7
  1444. },
  1445. "end": {
  1446. "line": 62,
  1447. "column": 92
  1448. }
  1449. }
  1450. },
  1451. {
  1452. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/Game.ts",
  1453. "resolved": "__unresolved_59",
  1454. "loc": {
  1455. "start": {
  1456. "line": 63,
  1457. "column": 7
  1458. },
  1459. "end": {
  1460. "line": 63,
  1461. "column": 82
  1462. }
  1463. }
  1464. },
  1465. {
  1466. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/List.ts",
  1467. "resolved": "__unresolved_60",
  1468. "loc": {
  1469. "start": {
  1470. "line": 64,
  1471. "column": 7
  1472. },
  1473. "end": {
  1474. "line": 64,
  1475. "column": 82
  1476. }
  1477. }
  1478. },
  1479. {
  1480. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/ListItem.ts",
  1481. "resolved": "__unresolved_61",
  1482. "loc": {
  1483. "start": {
  1484. "line": 65,
  1485. "column": 7
  1486. },
  1487. "end": {
  1488. "line": 65,
  1489. "column": 86
  1490. }
  1491. }
  1492. },
  1493. {
  1494. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/MotionTrail.ts",
  1495. "resolved": "__unresolved_62",
  1496. "loc": {
  1497. "start": {
  1498. "line": 66,
  1499. "column": 7
  1500. },
  1501. "end": {
  1502. "line": 66,
  1503. "column": 89
  1504. }
  1505. }
  1506. },
  1507. {
  1508. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/MovieClip.ts",
  1509. "resolved": "__unresolved_63",
  1510. "loc": {
  1511. "start": {
  1512. "line": 67,
  1513. "column": 7
  1514. },
  1515. "end": {
  1516. "line": 67,
  1517. "column": 87
  1518. }
  1519. }
  1520. },
  1521. {
  1522. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/RewardFly.ts",
  1523. "resolved": "__unresolved_64",
  1524. "loc": {
  1525. "start": {
  1526. "line": 68,
  1527. "column": 7
  1528. },
  1529. "end": {
  1530. "line": 68,
  1531. "column": 87
  1532. }
  1533. }
  1534. },
  1535. {
  1536. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/SpineView.ts",
  1537. "resolved": "__unresolved_65",
  1538. "loc": {
  1539. "start": {
  1540. "line": 69,
  1541. "column": 7
  1542. },
  1543. "end": {
  1544. "line": 69,
  1545. "column": 87
  1546. }
  1547. }
  1548. },
  1549. {
  1550. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/UISpineMovie.ts",
  1551. "resolved": "__unresolved_66",
  1552. "loc": {
  1553. "start": {
  1554. "line": 70,
  1555. "column": 7
  1556. },
  1557. "end": {
  1558. "line": 70,
  1559. "column": 90
  1560. }
  1561. }
  1562. },
  1563. {
  1564. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_alert/Layout_UIAlert.ts",
  1565. "resolved": "__unresolved_67",
  1566. "loc": {
  1567. "start": {
  1568. "line": 71,
  1569. "column": 7
  1570. },
  1571. "end": {
  1572. "line": 71,
  1573. "column": 99
  1574. }
  1575. }
  1576. },
  1577. {
  1578. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_alert/UIAlert.ts",
  1579. "resolved": "__unresolved_68",
  1580. "loc": {
  1581. "start": {
  1582. "line": 72,
  1583. "column": 7
  1584. },
  1585. "end": {
  1586. "line": 72,
  1587. "column": 92
  1588. }
  1589. }
  1590. },
  1591. {
  1592. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_notify/Layout_UI_Notify.ts",
  1593. "resolved": "__unresolved_69",
  1594. "loc": {
  1595. "start": {
  1596. "line": 73,
  1597. "column": 7
  1598. },
  1599. "end": {
  1600. "line": 73,
  1601. "column": 102
  1602. }
  1603. }
  1604. },
  1605. {
  1606. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_notify/UINotify.ts",
  1607. "resolved": "__unresolved_70",
  1608. "loc": {
  1609. "start": {
  1610. "line": 74,
  1611. "column": 7
  1612. },
  1613. "end": {
  1614. "line": 74,
  1615. "column": 94
  1616. }
  1617. }
  1618. },
  1619. {
  1620. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_waiting/Layout_UIWaiting.ts",
  1621. "resolved": "__unresolved_71",
  1622. "loc": {
  1623. "start": {
  1624. "line": 75,
  1625. "column": 7
  1626. },
  1627. "end": {
  1628. "line": 75,
  1629. "column": 103
  1630. }
  1631. }
  1632. },
  1633. {
  1634. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_waiting/UIWaiting.ts",
  1635. "resolved": "__unresolved_72",
  1636. "loc": {
  1637. "start": {
  1638. "line": 76,
  1639. "column": 7
  1640. },
  1641. "end": {
  1642. "line": 76,
  1643. "column": 96
  1644. }
  1645. }
  1646. },
  1647. {
  1648. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_extra/table_ts/TableUtil.ts",
  1649. "resolved": "__unresolved_73",
  1650. "loc": {
  1651. "start": {
  1652. "line": 77,
  1653. "column": 7
  1654. },
  1655. "end": {
  1656. "line": 77,
  1657. "column": 94
  1658. }
  1659. }
  1660. },
  1661. {
  1662. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_extra/table_ts/table_idiom.ts",
  1663. "resolved": "__unresolved_74",
  1664. "loc": {
  1665. "start": {
  1666. "line": 78,
  1667. "column": 7
  1668. },
  1669. "end": {
  1670. "line": 78,
  1671. "column": 96
  1672. }
  1673. }
  1674. },
  1675. {
  1676. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_extra/table_ts/table_level.ts",
  1677. "resolved": "__unresolved_75",
  1678. "loc": {
  1679. "start": {
  1680. "line": 79,
  1681. "column": 7
  1682. },
  1683. "end": {
  1684. "line": 79,
  1685. "column": 96
  1686. }
  1687. }
  1688. },
  1689. {
  1690. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts",
  1691. "resolved": "__unresolved_76",
  1692. "loc": {
  1693. "start": {
  1694. "line": 80,
  1695. "column": 7
  1696. },
  1697. "end": {
  1698. "line": 80,
  1699. "column": 90
  1700. }
  1701. }
  1702. },
  1703. {
  1704. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts",
  1705. "resolved": "__unresolved_77",
  1706. "loc": {
  1707. "start": {
  1708. "line": 81,
  1709. "column": 7
  1710. },
  1711. "end": {
  1712. "line": 81,
  1713. "column": 93
  1714. }
  1715. }
  1716. },
  1717. {
  1718. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI/UI_Item.ts",
  1719. "resolved": "__unresolved_78",
  1720. "loc": {
  1721. "start": {
  1722. "line": 82,
  1723. "column": 7
  1724. },
  1725. "end": {
  1726. "line": 82,
  1727. "column": 88
  1728. }
  1729. }
  1730. },
  1731. {
  1732. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/Layout_Fail.ts",
  1733. "resolved": "__unresolved_79",
  1734. "loc": {
  1735. "start": {
  1736. "line": 83,
  1737. "column": 7
  1738. },
  1739. "end": {
  1740. "line": 83,
  1741. "column": 97
  1742. }
  1743. }
  1744. },
  1745. {
  1746. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts",
  1747. "resolved": "__unresolved_80",
  1748. "loc": {
  1749. "start": {
  1750. "line": 84,
  1751. "column": 7
  1752. },
  1753. "end": {
  1754. "line": 84,
  1755. "column": 93
  1756. }
  1757. }
  1758. },
  1759. {
  1760. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_GameRules/Layout_GameRules.ts",
  1761. "resolved": "__unresolved_81",
  1762. "loc": {
  1763. "start": {
  1764. "line": 85,
  1765. "column": 7
  1766. },
  1767. "end": {
  1768. "line": 85,
  1769. "column": 107
  1770. }
  1771. }
  1772. },
  1773. {
  1774. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_GameRules/UI_GameRules.ts",
  1775. "resolved": "__unresolved_82",
  1776. "loc": {
  1777. "start": {
  1778. "line": 86,
  1779. "column": 7
  1780. },
  1781. "end": {
  1782. "line": 86,
  1783. "column": 103
  1784. }
  1785. }
  1786. },
  1787. {
  1788. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/Layout_Hall.ts",
  1789. "resolved": "__unresolved_83",
  1790. "loc": {
  1791. "start": {
  1792. "line": 87,
  1793. "column": 7
  1794. },
  1795. "end": {
  1796. "line": 87,
  1797. "column": 97
  1798. }
  1799. }
  1800. },
  1801. {
  1802. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts",
  1803. "resolved": "__unresolved_84",
  1804. "loc": {
  1805. "start": {
  1806. "line": 88,
  1807. "column": 7
  1808. },
  1809. "end": {
  1810. "line": 88,
  1811. "column": 93
  1812. }
  1813. }
  1814. },
  1815. {
  1816. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/Layout_Idioms.ts",
  1817. "resolved": "__unresolved_85",
  1818. "loc": {
  1819. "start": {
  1820. "line": 89,
  1821. "column": 7
  1822. },
  1823. "end": {
  1824. "line": 89,
  1825. "column": 101
  1826. }
  1827. }
  1828. },
  1829. {
  1830. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idiom.ts",
  1831. "resolved": "__unresolved_86",
  1832. "loc": {
  1833. "start": {
  1834. "line": 90,
  1835. "column": 7
  1836. },
  1837. "end": {
  1838. "line": 90,
  1839. "column": 96
  1840. }
  1841. }
  1842. },
  1843. {
  1844. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts",
  1845. "resolved": "__unresolved_87",
  1846. "loc": {
  1847. "start": {
  1848. "line": 91,
  1849. "column": 7
  1850. },
  1851. "end": {
  1852. "line": 91,
  1853. "column": 97
  1854. }
  1855. }
  1856. },
  1857. {
  1858. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Invite/Layout_Invite.ts",
  1859. "resolved": "__unresolved_88",
  1860. "loc": {
  1861. "start": {
  1862. "line": 92,
  1863. "column": 7
  1864. },
  1865. "end": {
  1866. "line": 92,
  1867. "column": 101
  1868. }
  1869. }
  1870. },
  1871. {
  1872. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Invite/UI_Invite.ts",
  1873. "resolved": "__unresolved_89",
  1874. "loc": {
  1875. "start": {
  1876. "line": 93,
  1877. "column": 7
  1878. },
  1879. "end": {
  1880. "line": 93,
  1881. "column": 97
  1882. }
  1883. }
  1884. },
  1885. {
  1886. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/Layout_Main.ts",
  1887. "resolved": "__unresolved_90",
  1888. "loc": {
  1889. "start": {
  1890. "line": 94,
  1891. "column": 7
  1892. },
  1893. "end": {
  1894. "line": 94,
  1895. "column": 97
  1896. }
  1897. }
  1898. },
  1899. {
  1900. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts",
  1901. "resolved": "__unresolved_91",
  1902. "loc": {
  1903. "start": {
  1904. "line": 95,
  1905. "column": 7
  1906. },
  1907. "end": {
  1908. "line": 95,
  1909. "column": 93
  1910. }
  1911. }
  1912. },
  1913. {
  1914. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts",
  1915. "resolved": "__unresolved_92",
  1916. "loc": {
  1917. "start": {
  1918. "line": 96,
  1919. "column": 7
  1920. },
  1921. "end": {
  1922. "line": 96,
  1923. "column": 97
  1924. }
  1925. }
  1926. },
  1927. {
  1928. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts",
  1929. "resolved": "__unresolved_93",
  1930. "loc": {
  1931. "start": {
  1932. "line": 97,
  1933. "column": 7
  1934. },
  1935. "end": {
  1936. "line": 97,
  1937. "column": 93
  1938. }
  1939. }
  1940. },
  1941. {
  1942. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts",
  1943. "resolved": "__unresolved_94",
  1944. "loc": {
  1945. "start": {
  1946. "line": 98,
  1947. "column": 7
  1948. },
  1949. "end": {
  1950. "line": 98,
  1951. "column": 98
  1952. }
  1953. }
  1954. },
  1955. {
  1956. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/Layout_Settings.ts",
  1957. "resolved": "__unresolved_95",
  1958. "loc": {
  1959. "start": {
  1960. "line": 99,
  1961. "column": 7
  1962. },
  1963. "end": {
  1964. "line": 99,
  1965. "column": 105
  1966. }
  1967. }
  1968. },
  1969. {
  1970. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts",
  1971. "resolved": "__unresolved_96",
  1972. "loc": {
  1973. "start": {
  1974. "line": 100,
  1975. "column": 7
  1976. },
  1977. "end": {
  1978. "line": 100,
  1979. "column": 101
  1980. }
  1981. }
  1982. },
  1983. {
  1984. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Layout_Sign.ts",
  1985. "resolved": "__unresolved_97",
  1986. "loc": {
  1987. "start": {
  1988. "line": 101,
  1989. "column": 7
  1990. },
  1991. "end": {
  1992. "line": 101,
  1993. "column": 97
  1994. }
  1995. }
  1996. },
  1997. {
  1998. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Sign_Reward.ts",
  1999. "resolved": "__unresolved_98",
  2000. "loc": {
  2001. "start": {
  2002. "line": 102,
  2003. "column": 7
  2004. },
  2005. "end": {
  2006. "line": 102,
  2007. "column": 97
  2008. }
  2009. }
  2010. },
  2011. {
  2012. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts",
  2013. "resolved": "__unresolved_99",
  2014. "loc": {
  2015. "start": {
  2016. "line": 103,
  2017. "column": 7
  2018. },
  2019. "end": {
  2020. "line": 103,
  2021. "column": 93
  2022. }
  2023. }
  2024. },
  2025. {
  2026. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/Layout_Win.ts",
  2027. "resolved": "__unresolved_100",
  2028. "loc": {
  2029. "start": {
  2030. "line": 104,
  2031. "column": 7
  2032. },
  2033. "end": {
  2034. "line": 104,
  2035. "column": 95
  2036. }
  2037. }
  2038. },
  2039. {
  2040. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts",
  2041. "resolved": "__unresolved_101",
  2042. "loc": {
  2043. "start": {
  2044. "line": 105,
  2045. "column": 7
  2046. },
  2047. "end": {
  2048. "line": 105,
  2049. "column": 91
  2050. }
  2051. }
  2052. },
  2053. {
  2054. "value": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/start/Start.ts",
  2055. "resolved": "__unresolved_102",
  2056. "loc": {
  2057. "start": {
  2058. "line": 106,
  2059. "column": 7
  2060. },
  2061. "end": {
  2062. "line": 106,
  2063. "column": 74
  2064. }
  2065. }
  2066. }
  2067. ],
  2068. "type": "esm",
  2069. "resolutions": [
  2070. {
  2071. "resolved": {
  2072. "type": "module",
  2073. "url": "file:///C:/ProgramData/cocos/editors/Creator/3.8.4/resources/resources/3d/engine/editor/assets/default_renderpipeline/builtin-pipeline-settings.ts"
  2074. },
  2075. "messages": []
  2076. },
  2077. {
  2078. "resolved": {
  2079. "type": "module",
  2080. "url": "file:///C:/ProgramData/cocos/editors/Creator/3.8.4/resources/resources/3d/engine/editor/assets/default_renderpipeline/builtin-pipeline-types.ts"
  2081. },
  2082. "messages": []
  2083. },
  2084. {
  2085. "resolved": {
  2086. "type": "module",
  2087. "url": "file:///C:/ProgramData/cocos/editors/Creator/3.8.4/resources/resources/3d/engine/editor/assets/default_renderpipeline/builtin-pipeline.ts"
  2088. },
  2089. "messages": []
  2090. },
  2091. {
  2092. "resolved": {
  2093. "type": "module",
  2094. "url": "file:///C:/ProgramData/cocos/editors/Creator/3.8.4/resources/resources/3d/engine/editor/assets/tools/debug-view-runtime-control.ts"
  2095. },
  2096. "messages": []
  2097. },
  2098. {
  2099. "resolved": {
  2100. "type": "module",
  2101. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Container_Manager.ts"
  2102. },
  2103. "messages": []
  2104. },
  2105. {
  2106. "resolved": {
  2107. "type": "module",
  2108. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/CreateIdiom.ts"
  2109. },
  2110. "messages": []
  2111. },
  2112. {
  2113. "resolved": {
  2114. "type": "module",
  2115. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Cube_Infor.ts"
  2116. },
  2117. "messages": []
  2118. },
  2119. {
  2120. "resolved": {
  2121. "type": "module",
  2122. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/GameCtl.ts"
  2123. },
  2124. "messages": []
  2125. },
  2126. {
  2127. "resolved": {
  2128. "type": "module",
  2129. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Hall.ts"
  2130. },
  2131. "messages": []
  2132. },
  2133. {
  2134. "resolved": {
  2135. "type": "module",
  2136. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/ModuleDef.ts"
  2137. },
  2138. "messages": []
  2139. },
  2140. {
  2141. "resolved": {
  2142. "type": "module",
  2143. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/SceneDef.ts"
  2144. },
  2145. "messages": []
  2146. },
  2147. {
  2148. "resolved": {
  2149. "type": "module",
  2150. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/audio/audio.ts"
  2151. },
  2152. "messages": []
  2153. },
  2154. {
  2155. "resolved": {
  2156. "type": "module",
  2157. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/ch.ts"
  2158. },
  2159. "messages": []
  2160. },
  2161. {
  2162. "resolved": {
  2163. "type": "module",
  2164. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/ch_util.ts"
  2165. },
  2166. "messages": []
  2167. },
  2168. {
  2169. "resolved": {
  2170. "type": "module",
  2171. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/NetBase.ts"
  2172. },
  2173. "messages": []
  2174. },
  2175. {
  2176. "resolved": {
  2177. "type": "module",
  2178. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/NetPlayer.ts"
  2179. },
  2180. "messages": []
  2181. },
  2182. {
  2183. "resolved": {
  2184. "type": "module",
  2185. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/NetRoom.ts"
  2186. },
  2187. "messages": []
  2188. },
  2189. {
  2190. "resolved": {
  2191. "type": "module",
  2192. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/NetTeam.ts"
  2193. },
  2194. "messages": []
  2195. },
  2196. {
  2197. "resolved": {
  2198. "type": "module",
  2199. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/WsClient.ts"
  2200. },
  2201. "messages": []
  2202. },
  2203. {
  2204. "resolved": {
  2205. "type": "module",
  2206. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/net.ts"
  2207. },
  2208. "messages": []
  2209. },
  2210. {
  2211. "resolved": {
  2212. "type": "module",
  2213. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/pvp/ch_pvp.ts"
  2214. },
  2215. "messages": []
  2216. },
  2217. {
  2218. "resolved": {
  2219. "type": "module",
  2220. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/sign/sign.ts"
  2221. },
  2222. "messages": []
  2223. },
  2224. {
  2225. "resolved": {
  2226. "type": "module",
  2227. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/start/ch_sdk_comp.ts"
  2228. },
  2229. "messages": []
  2230. },
  2231. {
  2232. "resolved": {
  2233. "type": "module",
  2234. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/start/ch_start_pack.ts"
  2235. },
  2236. "messages": []
  2237. },
  2238. {
  2239. "resolved": {
  2240. "type": "module",
  2241. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts"
  2242. },
  2243. "messages": []
  2244. },
  2245. {
  2246. "resolved": {
  2247. "type": "module",
  2248. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui_ResolutionAutoFit.ts"
  2249. },
  2250. "messages": []
  2251. },
  2252. {
  2253. "resolved": {
  2254. "type": "module",
  2255. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui_base.ts"
  2256. },
  2257. "messages": []
  2258. },
  2259. {
  2260. "resolved": {
  2261. "type": "module",
  2262. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/ArrayUtil.ts"
  2263. },
  2264. "messages": []
  2265. },
  2266. {
  2267. "resolved": {
  2268. "type": "module",
  2269. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/DataTimeUtil.ts"
  2270. },
  2271. "messages": []
  2272. },
  2273. {
  2274. "resolved": {
  2275. "type": "module",
  2276. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/DirectorUtil.ts"
  2277. },
  2278. "messages": []
  2279. },
  2280. {
  2281. "resolved": {
  2282. "type": "module",
  2283. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/Instance.ts"
  2284. },
  2285. "messages": []
  2286. },
  2287. {
  2288. "resolved": {
  2289. "type": "module",
  2290. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/LocalStorageUtil.ts"
  2291. },
  2292. "messages": []
  2293. },
  2294. {
  2295. "resolved": {
  2296. "type": "module",
  2297. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/MathUtil.ts"
  2298. },
  2299. "messages": []
  2300. },
  2301. {
  2302. "resolved": {
  2303. "type": "module",
  2304. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/PathUtil.ts"
  2305. },
  2306. "messages": []
  2307. },
  2308. {
  2309. "resolved": {
  2310. "type": "module",
  2311. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/ProjectileMathUtil.ts"
  2312. },
  2313. "messages": []
  2314. },
  2315. {
  2316. "resolved": {
  2317. "type": "module",
  2318. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/ResUtil.ts"
  2319. },
  2320. "messages": []
  2321. },
  2322. {
  2323. "resolved": {
  2324. "type": "module",
  2325. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/StringUtil.ts"
  2326. },
  2327. "messages": []
  2328. },
  2329. {
  2330. "resolved": {
  2331. "type": "module",
  2332. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/TableLoadUtil.ts"
  2333. },
  2334. "messages": []
  2335. },
  2336. {
  2337. "resolved": {
  2338. "type": "module",
  2339. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/UrlUtil.ts"
  2340. },
  2341. "messages": []
  2342. },
  2343. {
  2344. "resolved": {
  2345. "type": "module",
  2346. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/Utils.ts"
  2347. },
  2348. "messages": []
  2349. },
  2350. {
  2351. "resolved": {
  2352. "type": "module",
  2353. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Action.ts"
  2354. },
  2355. "messages": []
  2356. },
  2357. {
  2358. "resolved": {
  2359. "type": "module",
  2360. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Container.ts"
  2361. },
  2362. "messages": []
  2363. },
  2364. {
  2365. "resolved": {
  2366. "type": "module",
  2367. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Delay.ts"
  2368. },
  2369. "messages": []
  2370. },
  2371. {
  2372. "resolved": {
  2373. "type": "module",
  2374. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/FMS.ts"
  2375. },
  2376. "messages": []
  2377. },
  2378. {
  2379. "resolved": {
  2380. "type": "module",
  2381. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/GameData.ts"
  2382. },
  2383. "messages": []
  2384. },
  2385. {
  2386. "resolved": {
  2387. "type": "module",
  2388. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/HeadIcon.ts"
  2389. },
  2390. "messages": []
  2391. },
  2392. {
  2393. "resolved": {
  2394. "type": "module",
  2395. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Line2DMove.ts"
  2396. },
  2397. "messages": []
  2398. },
  2399. {
  2400. "resolved": {
  2401. "type": "module",
  2402. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/PeriodData.ts"
  2403. },
  2404. "messages": []
  2405. },
  2406. {
  2407. "resolved": {
  2408. "type": "module",
  2409. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/PrefabPool.ts"
  2410. },
  2411. "messages": []
  2412. },
  2413. {
  2414. "resolved": {
  2415. "type": "module",
  2416. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Queue.ts"
  2417. },
  2418. "messages": []
  2419. },
  2420. {
  2421. "resolved": {
  2422. "type": "module",
  2423. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Random.ts"
  2424. },
  2425. "messages": []
  2426. },
  2427. {
  2428. "resolved": {
  2429. "type": "module",
  2430. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/SafeNumber.ts"
  2431. },
  2432. "messages": []
  2433. },
  2434. {
  2435. "resolved": {
  2436. "type": "module",
  2437. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Shake.ts"
  2438. },
  2439. "messages": []
  2440. },
  2441. {
  2442. "resolved": {
  2443. "type": "module",
  2444. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/State.ts"
  2445. },
  2446. "messages": []
  2447. },
  2448. {
  2449. "resolved": {
  2450. "type": "module",
  2451. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/TimeJobCenter.ts"
  2452. },
  2453. "messages": []
  2454. },
  2455. {
  2456. "resolved": {
  2457. "type": "module",
  2458. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Timer.ts"
  2459. },
  2460. "messages": []
  2461. },
  2462. {
  2463. "resolved": {
  2464. "type": "module",
  2465. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Toast.ts"
  2466. },
  2467. "messages": []
  2468. },
  2469. {
  2470. "resolved": {
  2471. "type": "module",
  2472. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Wait.ts"
  2473. },
  2474. "messages": []
  2475. },
  2476. {
  2477. "resolved": {
  2478. "type": "module",
  2479. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/ClickPenetrate.ts"
  2480. },
  2481. "messages": []
  2482. },
  2483. {
  2484. "resolved": {
  2485. "type": "module",
  2486. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/Game.ts"
  2487. },
  2488. "messages": []
  2489. },
  2490. {
  2491. "resolved": {
  2492. "type": "module",
  2493. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/List.ts"
  2494. },
  2495. "messages": []
  2496. },
  2497. {
  2498. "resolved": {
  2499. "type": "module",
  2500. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/ListItem.ts"
  2501. },
  2502. "messages": []
  2503. },
  2504. {
  2505. "resolved": {
  2506. "type": "module",
  2507. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/MotionTrail.ts"
  2508. },
  2509. "messages": []
  2510. },
  2511. {
  2512. "resolved": {
  2513. "type": "module",
  2514. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/MovieClip.ts"
  2515. },
  2516. "messages": []
  2517. },
  2518. {
  2519. "resolved": {
  2520. "type": "module",
  2521. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/RewardFly.ts"
  2522. },
  2523. "messages": []
  2524. },
  2525. {
  2526. "resolved": {
  2527. "type": "module",
  2528. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/SpineView.ts"
  2529. },
  2530. "messages": []
  2531. },
  2532. {
  2533. "resolved": {
  2534. "type": "module",
  2535. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/UISpineMovie.ts"
  2536. },
  2537. "messages": []
  2538. },
  2539. {
  2540. "resolved": {
  2541. "type": "module",
  2542. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_alert/Layout_UIAlert.ts"
  2543. },
  2544. "messages": []
  2545. },
  2546. {
  2547. "resolved": {
  2548. "type": "module",
  2549. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_alert/UIAlert.ts"
  2550. },
  2551. "messages": []
  2552. },
  2553. {
  2554. "resolved": {
  2555. "type": "module",
  2556. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_notify/Layout_UI_Notify.ts"
  2557. },
  2558. "messages": []
  2559. },
  2560. {
  2561. "resolved": {
  2562. "type": "module",
  2563. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_notify/UINotify.ts"
  2564. },
  2565. "messages": []
  2566. },
  2567. {
  2568. "resolved": {
  2569. "type": "module",
  2570. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_waiting/Layout_UIWaiting.ts"
  2571. },
  2572. "messages": []
  2573. },
  2574. {
  2575. "resolved": {
  2576. "type": "module",
  2577. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_waiting/UIWaiting.ts"
  2578. },
  2579. "messages": []
  2580. },
  2581. {
  2582. "resolved": {
  2583. "type": "module",
  2584. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_extra/table_ts/TableUtil.ts"
  2585. },
  2586. "messages": []
  2587. },
  2588. {
  2589. "resolved": {
  2590. "type": "module",
  2591. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_extra/table_ts/table_idiom.ts"
  2592. },
  2593. "messages": []
  2594. },
  2595. {
  2596. "resolved": {
  2597. "type": "module",
  2598. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_extra/table_ts/table_level.ts"
  2599. },
  2600. "messages": []
  2601. },
  2602. {
  2603. "resolved": {
  2604. "type": "module",
  2605. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts"
  2606. },
  2607. "messages": []
  2608. },
  2609. {
  2610. "resolved": {
  2611. "type": "module",
  2612. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts"
  2613. },
  2614. "messages": []
  2615. },
  2616. {
  2617. "resolved": {
  2618. "type": "module",
  2619. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI/UI_Item.ts"
  2620. },
  2621. "messages": []
  2622. },
  2623. {
  2624. "resolved": {
  2625. "type": "module",
  2626. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/Layout_Fail.ts"
  2627. },
  2628. "messages": []
  2629. },
  2630. {
  2631. "resolved": {
  2632. "type": "module",
  2633. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts"
  2634. },
  2635. "messages": []
  2636. },
  2637. {
  2638. "resolved": {
  2639. "type": "module",
  2640. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_GameRules/Layout_GameRules.ts"
  2641. },
  2642. "messages": []
  2643. },
  2644. {
  2645. "resolved": {
  2646. "type": "module",
  2647. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_GameRules/UI_GameRules.ts"
  2648. },
  2649. "messages": []
  2650. },
  2651. {
  2652. "resolved": {
  2653. "type": "module",
  2654. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/Layout_Hall.ts"
  2655. },
  2656. "messages": []
  2657. },
  2658. {
  2659. "resolved": {
  2660. "type": "module",
  2661. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts"
  2662. },
  2663. "messages": []
  2664. },
  2665. {
  2666. "resolved": {
  2667. "type": "module",
  2668. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/Layout_Idioms.ts"
  2669. },
  2670. "messages": []
  2671. },
  2672. {
  2673. "resolved": {
  2674. "type": "module",
  2675. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idiom.ts"
  2676. },
  2677. "messages": []
  2678. },
  2679. {
  2680. "resolved": {
  2681. "type": "module",
  2682. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts"
  2683. },
  2684. "messages": []
  2685. },
  2686. {
  2687. "resolved": {
  2688. "type": "module",
  2689. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Invite/Layout_Invite.ts"
  2690. },
  2691. "messages": []
  2692. },
  2693. {
  2694. "resolved": {
  2695. "type": "module",
  2696. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Invite/UI_Invite.ts"
  2697. },
  2698. "messages": []
  2699. },
  2700. {
  2701. "resolved": {
  2702. "type": "module",
  2703. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/Layout_Main.ts"
  2704. },
  2705. "messages": []
  2706. },
  2707. {
  2708. "resolved": {
  2709. "type": "module",
  2710. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts"
  2711. },
  2712. "messages": []
  2713. },
  2714. {
  2715. "resolved": {
  2716. "type": "module",
  2717. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts"
  2718. },
  2719. "messages": []
  2720. },
  2721. {
  2722. "resolved": {
  2723. "type": "module",
  2724. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts"
  2725. },
  2726. "messages": []
  2727. },
  2728. {
  2729. "resolved": {
  2730. "type": "module",
  2731. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts"
  2732. },
  2733. "messages": []
  2734. },
  2735. {
  2736. "resolved": {
  2737. "type": "module",
  2738. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/Layout_Settings.ts"
  2739. },
  2740. "messages": []
  2741. },
  2742. {
  2743. "resolved": {
  2744. "type": "module",
  2745. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts"
  2746. },
  2747. "messages": []
  2748. },
  2749. {
  2750. "resolved": {
  2751. "type": "module",
  2752. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Layout_Sign.ts"
  2753. },
  2754. "messages": []
  2755. },
  2756. {
  2757. "resolved": {
  2758. "type": "module",
  2759. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Sign_Reward.ts"
  2760. },
  2761. "messages": []
  2762. },
  2763. {
  2764. "resolved": {
  2765. "type": "module",
  2766. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts"
  2767. },
  2768. "messages": []
  2769. },
  2770. {
  2771. "resolved": {
  2772. "type": "module",
  2773. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/Layout_Win.ts"
  2774. },
  2775. "messages": []
  2776. },
  2777. {
  2778. "resolved": {
  2779. "type": "module",
  2780. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts"
  2781. },
  2782. "messages": []
  2783. },
  2784. {
  2785. "resolved": {
  2786. "type": "module",
  2787. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/start/Start.ts"
  2788. },
  2789. "messages": []
  2790. }
  2791. ]
  2792. },
  2793. "file:///C:/ProgramData/cocos/editors/Creator/3.8.4/resources/resources/3d/engine/editor/assets/default_renderpipeline/builtin-pipeline-settings.ts": {
  2794. "mTimestamp": {
  2795. "mtime": 1728965324177.7515,
  2796. "uuid": "de1c2107-70c8-4021-8459-6399f24d01c6"
  2797. },
  2798. "chunkId": "d6137fe08bf966a053351bb405928e5a6390befd",
  2799. "imports": [
  2800. {
  2801. "value": "cce:/internal/code-quality/cr.mjs",
  2802. "resolved": "__unresolved_0"
  2803. },
  2804. {
  2805. "value": "cc"
  2806. },
  2807. {
  2808. "value": "cc"
  2809. },
  2810. {
  2811. "value": "cc",
  2812. "loc": {
  2813. "start": {
  2814. "line": 35,
  2815. "column": 7
  2816. },
  2817. "end": {
  2818. "line": 35,
  2819. "column": 11
  2820. }
  2821. }
  2822. },
  2823. {
  2824. "value": "cc/env",
  2825. "loc": {
  2826. "start": {
  2827. "line": 37,
  2828. "column": 23
  2829. },
  2830. "end": {
  2831. "line": 37,
  2832. "column": 31
  2833. }
  2834. }
  2835. },
  2836. {
  2837. "value": "./builtin-pipeline-types",
  2838. "resolved": "__unresolved_1",
  2839. "loc": {
  2840. "start": {
  2841. "line": 43,
  2842. "column": 7
  2843. },
  2844. "end": {
  2845. "line": 43,
  2846. "column": 33
  2847. }
  2848. }
  2849. }
  2850. ],
  2851. "type": "esm",
  2852. "resolutions": [
  2853. {
  2854. "resolved": {
  2855. "type": "module",
  2856. "url": "cce:/internal/code-quality/cr.mjs"
  2857. },
  2858. "messages": []
  2859. },
  2860. {
  2861. "resolved": {
  2862. "type": "module",
  2863. "url": "cce:/internal/x/cc"
  2864. },
  2865. "messages": []
  2866. },
  2867. {
  2868. "resolved": {
  2869. "type": "module",
  2870. "url": "cce:/internal/x/cc"
  2871. },
  2872. "messages": []
  2873. },
  2874. {
  2875. "resolved": {
  2876. "type": "module",
  2877. "url": "cce:/internal/x/cc"
  2878. },
  2879. "messages": []
  2880. },
  2881. {
  2882. "resolved": {
  2883. "type": "external",
  2884. "specifierOrURL": "cc/env"
  2885. },
  2886. "messages": []
  2887. },
  2888. {
  2889. "resolved": {
  2890. "type": "module",
  2891. "url": "file:///C:/ProgramData/cocos/editors/Creator/3.8.4/resources/resources/3d/engine/editor/assets/default_renderpipeline/builtin-pipeline-types.ts"
  2892. },
  2893. "messages": []
  2894. }
  2895. ]
  2896. },
  2897. "cce:/internal/code-quality/cr.mjs": {
  2898. "mTimestamp": 1736763453749,
  2899. "chunkId": "6a5019a719a9014c047e67aa1cf34453ab8392ce",
  2900. "imports": [],
  2901. "type": "esm",
  2902. "resolutions": []
  2903. },
  2904. "file:///C:/ProgramData/cocos/editors/Creator/3.8.4/resources/resources/3d/engine/editor/assets/default_renderpipeline/builtin-pipeline-types.ts": {
  2905. "mTimestamp": {
  2906. "mtime": 1728965324180.2134,
  2907. "uuid": "cbf30902-517f-40dc-af90-a550bac27cf1"
  2908. },
  2909. "chunkId": "b349769b96cc4c1dff92d5d6f941366e27a02c6b",
  2910. "imports": [
  2911. {
  2912. "value": "cc"
  2913. },
  2914. {
  2915. "value": "cc"
  2916. },
  2917. {
  2918. "value": "cc",
  2919. "loc": {
  2920. "start": {
  2921. "line": 31,
  2922. "column": 41
  2923. },
  2924. "end": {
  2925. "line": 31,
  2926. "column": 45
  2927. }
  2928. }
  2929. }
  2930. ],
  2931. "type": "esm",
  2932. "resolutions": [
  2933. {
  2934. "resolved": {
  2935. "type": "module",
  2936. "url": "cce:/internal/x/cc"
  2937. },
  2938. "messages": []
  2939. },
  2940. {
  2941. "resolved": {
  2942. "type": "module",
  2943. "url": "cce:/internal/x/cc"
  2944. },
  2945. "messages": []
  2946. },
  2947. {
  2948. "resolved": {
  2949. "type": "module",
  2950. "url": "cce:/internal/x/cc"
  2951. },
  2952. "messages": []
  2953. }
  2954. ]
  2955. },
  2956. "file:///C:/ProgramData/cocos/editors/Creator/3.8.4/resources/resources/3d/engine/editor/assets/default_renderpipeline/builtin-pipeline.ts": {
  2957. "mTimestamp": {
  2958. "mtime": 1728965324184.5144,
  2959. "uuid": "ff9b0199-ce04-4cfe-86cc-6c719f08d6e4"
  2960. },
  2961. "chunkId": "59b7958b47eec6168615a6469581f8f48e26cb00",
  2962. "imports": [
  2963. {
  2964. "value": "cce:/internal/code-quality/cr.mjs",
  2965. "resolved": "__unresolved_0"
  2966. },
  2967. {
  2968. "value": "cc"
  2969. },
  2970. {
  2971. "value": "cc"
  2972. },
  2973. {
  2974. "value": "cc/env",
  2975. "loc": {
  2976. "start": {
  2977. "line": 25,
  2978. "column": 30
  2979. },
  2980. "end": {
  2981. "line": 25,
  2982. "column": 38
  2983. }
  2984. }
  2985. },
  2986. {
  2987. "value": "cc",
  2988. "loc": {
  2989. "start": {
  2990. "line": 45,
  2991. "column": 7
  2992. },
  2993. "end": {
  2994. "line": 45,
  2995. "column": 11
  2996. }
  2997. }
  2998. },
  2999. {
  3000. "value": "./builtin-pipeline-types",
  3001. "resolved": "__unresolved_1",
  3002. "loc": {
  3003. "start": {
  3004. "line": 50,
  3005. "column": 7
  3006. },
  3007. "end": {
  3008. "line": 50,
  3009. "column": 33
  3010. }
  3011. }
  3012. }
  3013. ],
  3014. "type": "esm",
  3015. "resolutions": [
  3016. {
  3017. "resolved": {
  3018. "type": "module",
  3019. "url": "cce:/internal/code-quality/cr.mjs"
  3020. },
  3021. "messages": []
  3022. },
  3023. {
  3024. "resolved": {
  3025. "type": "module",
  3026. "url": "cce:/internal/x/cc"
  3027. },
  3028. "messages": []
  3029. },
  3030. {
  3031. "resolved": {
  3032. "type": "module",
  3033. "url": "cce:/internal/x/cc"
  3034. },
  3035. "messages": []
  3036. },
  3037. {
  3038. "resolved": {
  3039. "type": "external",
  3040. "specifierOrURL": "cc/env"
  3041. },
  3042. "messages": []
  3043. },
  3044. {
  3045. "resolved": {
  3046. "type": "module",
  3047. "url": "cce:/internal/x/cc"
  3048. },
  3049. "messages": []
  3050. },
  3051. {
  3052. "resolved": {
  3053. "type": "module",
  3054. "url": "file:///C:/ProgramData/cocos/editors/Creator/3.8.4/resources/resources/3d/engine/editor/assets/default_renderpipeline/builtin-pipeline-types.ts"
  3055. },
  3056. "messages": []
  3057. }
  3058. ]
  3059. },
  3060. "file:///C:/ProgramData/cocos/editors/Creator/3.8.4/resources/resources/3d/engine/editor/assets/tools/debug-view-runtime-control.ts": {
  3061. "mTimestamp": {
  3062. "mtime": 1728965324536.3298,
  3063. "uuid": "b2bd1fa7-8d7c-49c5-a158-df29a6d3a594"
  3064. },
  3065. "chunkId": "9758c8bdbb4fd247ebce274d105abb8265561b82",
  3066. "imports": [
  3067. {
  3068. "value": "cc"
  3069. },
  3070. {
  3071. "value": "cc"
  3072. },
  3073. {
  3074. "value": "cc",
  3075. "loc": {
  3076. "start": {
  3077. "line": 1,
  3078. "column": 220
  3079. },
  3080. "end": {
  3081. "line": 1,
  3082. "column": 224
  3083. }
  3084. }
  3085. }
  3086. ],
  3087. "type": "esm",
  3088. "resolutions": [
  3089. {
  3090. "resolved": {
  3091. "type": "module",
  3092. "url": "cce:/internal/x/cc"
  3093. },
  3094. "messages": []
  3095. },
  3096. {
  3097. "resolved": {
  3098. "type": "module",
  3099. "url": "cce:/internal/x/cc"
  3100. },
  3101. "messages": []
  3102. },
  3103. {
  3104. "resolved": {
  3105. "type": "module",
  3106. "url": "cce:/internal/x/cc"
  3107. },
  3108. "messages": []
  3109. }
  3110. ]
  3111. },
  3112. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Container_Manager.ts": {
  3113. "mTimestamp": {
  3114. "mtime": 1736761008992.2053,
  3115. "uuid": "e84def08-5db6-438d-96d8-95b4297afb88"
  3116. },
  3117. "chunkId": "7f6a12ecc1a0c40226d8c35daa4b84136b1bf590",
  3118. "imports": [
  3119. {
  3120. "value": "cce:/internal/code-quality/cr.mjs",
  3121. "resolved": "__unresolved_0"
  3122. },
  3123. {
  3124. "value": "cc"
  3125. },
  3126. {
  3127. "value": "cc"
  3128. },
  3129. {
  3130. "value": "cc",
  3131. "loc": {
  3132. "start": {
  3133. "line": 1,
  3134. "column": 119
  3135. },
  3136. "end": {
  3137. "line": 1,
  3138. "column": 123
  3139. }
  3140. }
  3141. },
  3142. {
  3143. "value": "../ch/ch_util",
  3144. "resolved": "__unresolved_1",
  3145. "loc": {
  3146. "start": {
  3147. "line": 2,
  3148. "column": 20
  3149. },
  3150. "end": {
  3151. "line": 2,
  3152. "column": 35
  3153. }
  3154. }
  3155. },
  3156. {
  3157. "value": "./CreateIdiom",
  3158. "resolved": "__unresolved_2",
  3159. "loc": {
  3160. "start": {
  3161. "line": 4,
  3162. "column": 28
  3163. },
  3164. "end": {
  3165. "line": 4,
  3166. "column": 43
  3167. }
  3168. }
  3169. },
  3170. {
  3171. "value": "./Cube_Infor",
  3172. "resolved": "__unresolved_3",
  3173. "loc": {
  3174. "start": {
  3175. "line": 5,
  3176. "column": 39
  3177. },
  3178. "end": {
  3179. "line": 5,
  3180. "column": 53
  3181. }
  3182. }
  3183. },
  3184. {
  3185. "value": "../module_game/ui/UI_Idioms/UI_Idioms",
  3186. "resolved": "__unresolved_4",
  3187. "loc": {
  3188. "start": {
  3189. "line": 6,
  3190. "column": 26
  3191. },
  3192. "end": {
  3193. "line": 6,
  3194. "column": 65
  3195. }
  3196. }
  3197. },
  3198. {
  3199. "value": "../core/ui/ui",
  3200. "resolved": "__unresolved_5",
  3201. "loc": {
  3202. "start": {
  3203. "line": 7,
  3204. "column": 20
  3205. },
  3206. "end": {
  3207. "line": 7,
  3208. "column": 35
  3209. }
  3210. }
  3211. },
  3212. {
  3213. "value": "./GameCtl",
  3214. "resolved": "__unresolved_6",
  3215. "loc": {
  3216. "start": {
  3217. "line": 8,
  3218. "column": 24
  3219. },
  3220. "end": {
  3221. "line": 8,
  3222. "column": 35
  3223. }
  3224. }
  3225. },
  3226. {
  3227. "value": "../module_game/ui/UI_Main/UI_Main",
  3228. "resolved": "__unresolved_7",
  3229. "loc": {
  3230. "start": {
  3231. "line": 9,
  3232. "column": 24
  3233. },
  3234. "end": {
  3235. "line": 9,
  3236. "column": 59
  3237. }
  3238. }
  3239. },
  3240. {
  3241. "value": "../module_extra/table_ts/table_level",
  3242. "resolved": "__unresolved_8",
  3243. "loc": {
  3244. "start": {
  3245. "line": 10,
  3246. "column": 28
  3247. },
  3248. "end": {
  3249. "line": 10,
  3250. "column": 66
  3251. }
  3252. }
  3253. },
  3254. {
  3255. "value": "./Hall",
  3256. "resolved": "__unresolved_9",
  3257. "loc": {
  3258. "start": {
  3259. "line": 11,
  3260. "column": 21
  3261. },
  3262. "end": {
  3263. "line": 11,
  3264. "column": 29
  3265. }
  3266. }
  3267. },
  3268. {
  3269. "value": "../module_extra/table_ts/table_idiom",
  3270. "resolved": "__unresolved_10",
  3271. "loc": {
  3272. "start": {
  3273. "line": 12,
  3274. "column": 28
  3275. },
  3276. "end": {
  3277. "line": 12,
  3278. "column": 66
  3279. }
  3280. }
  3281. }
  3282. ],
  3283. "type": "esm",
  3284. "resolutions": [
  3285. {
  3286. "resolved": {
  3287. "type": "module",
  3288. "url": "cce:/internal/code-quality/cr.mjs"
  3289. },
  3290. "messages": []
  3291. },
  3292. {
  3293. "resolved": {
  3294. "type": "module",
  3295. "url": "cce:/internal/x/cc"
  3296. },
  3297. "messages": []
  3298. },
  3299. {
  3300. "resolved": {
  3301. "type": "module",
  3302. "url": "cce:/internal/x/cc"
  3303. },
  3304. "messages": []
  3305. },
  3306. {
  3307. "resolved": {
  3308. "type": "module",
  3309. "url": "cce:/internal/x/cc"
  3310. },
  3311. "messages": []
  3312. },
  3313. {
  3314. "resolved": {
  3315. "type": "module",
  3316. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/ch_util.ts"
  3317. },
  3318. "messages": []
  3319. },
  3320. {
  3321. "resolved": {
  3322. "type": "module",
  3323. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/CreateIdiom.ts"
  3324. },
  3325. "messages": []
  3326. },
  3327. {
  3328. "resolved": {
  3329. "type": "module",
  3330. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Cube_Infor.ts"
  3331. },
  3332. "messages": []
  3333. },
  3334. {
  3335. "resolved": {
  3336. "type": "module",
  3337. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts"
  3338. },
  3339. "messages": []
  3340. },
  3341. {
  3342. "resolved": {
  3343. "type": "module",
  3344. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts"
  3345. },
  3346. "messages": []
  3347. },
  3348. {
  3349. "resolved": {
  3350. "type": "module",
  3351. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/GameCtl.ts"
  3352. },
  3353. "messages": []
  3354. },
  3355. {
  3356. "resolved": {
  3357. "type": "module",
  3358. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts"
  3359. },
  3360. "messages": []
  3361. },
  3362. {
  3363. "resolved": {
  3364. "type": "module",
  3365. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_extra/table_ts/table_level.ts"
  3366. },
  3367. "messages": []
  3368. },
  3369. {
  3370. "resolved": {
  3371. "type": "module",
  3372. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Hall.ts"
  3373. },
  3374. "messages": []
  3375. },
  3376. {
  3377. "resolved": {
  3378. "type": "module",
  3379. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_extra/table_ts/table_idiom.ts"
  3380. },
  3381. "messages": []
  3382. }
  3383. ]
  3384. },
  3385. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/ch_util.ts": {
  3386. "mTimestamp": {
  3387. "mtime": 1731659178000,
  3388. "uuid": "1badfb4c-c407-40ee-9e7f-6f1aef485f28"
  3389. },
  3390. "chunkId": "5ad9214371678a1d97027b6cf28752dcbab25e0f",
  3391. "imports": [
  3392. {
  3393. "value": "cc"
  3394. },
  3395. {
  3396. "value": "cc"
  3397. },
  3398. {
  3399. "value": "cc",
  3400. "loc": {
  3401. "start": {
  3402. "line": 1,
  3403. "column": 109
  3404. },
  3405. "end": {
  3406. "line": 1,
  3407. "column": 113
  3408. }
  3409. }
  3410. }
  3411. ],
  3412. "type": "esm",
  3413. "resolutions": [
  3414. {
  3415. "resolved": {
  3416. "type": "module",
  3417. "url": "cce:/internal/x/cc"
  3418. },
  3419. "messages": []
  3420. },
  3421. {
  3422. "resolved": {
  3423. "type": "module",
  3424. "url": "cce:/internal/x/cc"
  3425. },
  3426. "messages": []
  3427. },
  3428. {
  3429. "resolved": {
  3430. "type": "module",
  3431. "url": "cce:/internal/x/cc"
  3432. },
  3433. "messages": []
  3434. }
  3435. ]
  3436. },
  3437. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/CreateIdiom.ts": {
  3438. "mTimestamp": {
  3439. "mtime": 1736762219733.112,
  3440. "uuid": "3b901a14-e592-479e-9f13-b498988d9599"
  3441. },
  3442. "chunkId": "0e6be8836ae46289898f43dcc0bb4e16f4e5502e",
  3443. "imports": [
  3444. {
  3445. "value": "cce:/internal/code-quality/cr.mjs",
  3446. "resolved": "__unresolved_0"
  3447. },
  3448. {
  3449. "value": "cc"
  3450. },
  3451. {
  3452. "value": "cc"
  3453. },
  3454. {
  3455. "value": "cc",
  3456. "loc": {
  3457. "start": {
  3458. "line": 1,
  3459. "column": 119
  3460. },
  3461. "end": {
  3462. "line": 1,
  3463. "column": 123
  3464. }
  3465. }
  3466. },
  3467. {
  3468. "value": "./Cube_Infor",
  3469. "resolved": "__unresolved_1",
  3470. "loc": {
  3471. "start": {
  3472. "line": 2,
  3473. "column": 39
  3474. },
  3475. "end": {
  3476. "line": 2,
  3477. "column": 53
  3478. }
  3479. }
  3480. },
  3481. {
  3482. "value": "./Container_Manager",
  3483. "resolved": "__unresolved_2",
  3484. "loc": {
  3485. "start": {
  3486. "line": 3,
  3487. "column": 34
  3488. },
  3489. "end": {
  3490. "line": 3,
  3491. "column": 55
  3492. }
  3493. }
  3494. }
  3495. ],
  3496. "type": "esm",
  3497. "resolutions": [
  3498. {
  3499. "resolved": {
  3500. "type": "module",
  3501. "url": "cce:/internal/code-quality/cr.mjs"
  3502. },
  3503. "messages": []
  3504. },
  3505. {
  3506. "resolved": {
  3507. "type": "module",
  3508. "url": "cce:/internal/x/cc"
  3509. },
  3510. "messages": []
  3511. },
  3512. {
  3513. "resolved": {
  3514. "type": "module",
  3515. "url": "cce:/internal/x/cc"
  3516. },
  3517. "messages": []
  3518. },
  3519. {
  3520. "resolved": {
  3521. "type": "module",
  3522. "url": "cce:/internal/x/cc"
  3523. },
  3524. "messages": []
  3525. },
  3526. {
  3527. "resolved": {
  3528. "type": "module",
  3529. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Cube_Infor.ts"
  3530. },
  3531. "messages": []
  3532. },
  3533. {
  3534. "resolved": {
  3535. "type": "module",
  3536. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Container_Manager.ts"
  3537. },
  3538. "messages": []
  3539. }
  3540. ]
  3541. },
  3542. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Cube_Infor.ts": {
  3543. "mTimestamp": {
  3544. "mtime": 1736584886357.881,
  3545. "uuid": "0fe67764-56ea-4565-8511-dee46ed6c032"
  3546. },
  3547. "chunkId": "90d080a3dbac8ba8487064d9ba058a5de18e56a4",
  3548. "imports": [
  3549. {
  3550. "value": "cc"
  3551. },
  3552. {
  3553. "value": "cc"
  3554. },
  3555. {
  3556. "value": "cc",
  3557. "loc": {
  3558. "start": {
  3559. "line": 1,
  3560. "column": 62
  3561. },
  3562. "end": {
  3563. "line": 1,
  3564. "column": 66
  3565. }
  3566. }
  3567. }
  3568. ],
  3569. "type": "esm",
  3570. "resolutions": [
  3571. {
  3572. "resolved": {
  3573. "type": "module",
  3574. "url": "cce:/internal/x/cc"
  3575. },
  3576. "messages": []
  3577. },
  3578. {
  3579. "resolved": {
  3580. "type": "module",
  3581. "url": "cce:/internal/x/cc"
  3582. },
  3583. "messages": []
  3584. },
  3585. {
  3586. "resolved": {
  3587. "type": "module",
  3588. "url": "cce:/internal/x/cc"
  3589. },
  3590. "messages": []
  3591. }
  3592. ]
  3593. },
  3594. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts": {
  3595. "mTimestamp": {
  3596. "mtime": 1732765104000,
  3597. "uuid": "81e48c31-8c60-4c3e-9dab-40e2439634c6"
  3598. },
  3599. "chunkId": "e2c07fd606d93eb79afeed6ef4de521f2be03414",
  3600. "imports": [
  3601. {
  3602. "value": "cce:/internal/code-quality/cr.mjs",
  3603. "resolved": "__unresolved_0"
  3604. },
  3605. {
  3606. "value": "cc"
  3607. },
  3608. {
  3609. "value": "cc"
  3610. },
  3611. {
  3612. "value": "cc",
  3613. "loc": {
  3614. "start": {
  3615. "line": 1,
  3616. "column": 187
  3617. },
  3618. "end": {
  3619. "line": 1,
  3620. "column": 191
  3621. }
  3622. }
  3623. },
  3624. {
  3625. "value": "./ui_base",
  3626. "resolved": "__unresolved_1",
  3627. "loc": {
  3628. "start": {
  3629. "line": 2,
  3630. "column": 20
  3631. },
  3632. "end": {
  3633. "line": 2,
  3634. "column": 31
  3635. }
  3636. }
  3637. },
  3638. {
  3639. "value": "./ui_ResolutionAutoFit",
  3640. "resolved": "__unresolved_2",
  3641. "loc": {
  3642. "start": {
  3643. "line": 3,
  3644. "column": 34
  3645. },
  3646. "end": {
  3647. "line": 3,
  3648. "column": 58
  3649. }
  3650. }
  3651. }
  3652. ],
  3653. "type": "esm",
  3654. "resolutions": [
  3655. {
  3656. "resolved": {
  3657. "type": "module",
  3658. "url": "cce:/internal/code-quality/cr.mjs"
  3659. },
  3660. "messages": []
  3661. },
  3662. {
  3663. "resolved": {
  3664. "type": "module",
  3665. "url": "cce:/internal/x/cc"
  3666. },
  3667. "messages": []
  3668. },
  3669. {
  3670. "resolved": {
  3671. "type": "module",
  3672. "url": "cce:/internal/x/cc"
  3673. },
  3674. "messages": []
  3675. },
  3676. {
  3677. "resolved": {
  3678. "type": "module",
  3679. "url": "cce:/internal/x/cc"
  3680. },
  3681. "messages": []
  3682. },
  3683. {
  3684. "resolved": {
  3685. "type": "module",
  3686. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui_base.ts"
  3687. },
  3688. "messages": []
  3689. },
  3690. {
  3691. "resolved": {
  3692. "type": "module",
  3693. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui_ResolutionAutoFit.ts"
  3694. },
  3695. "messages": []
  3696. }
  3697. ]
  3698. },
  3699. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui_base.ts": {
  3700. "mTimestamp": {
  3701. "mtime": 1731394924000,
  3702. "uuid": "a34ebbf0-9efe-44d8-b1b6-27c447c17536"
  3703. },
  3704. "chunkId": "1c6623815813aae756c57cca6f89a3182c222719",
  3705. "imports": [
  3706. {
  3707. "value": "cc"
  3708. },
  3709. {
  3710. "value": "cc"
  3711. },
  3712. {
  3713. "value": "cc",
  3714. "loc": {
  3715. "start": {
  3716. "line": 1,
  3717. "column": 140
  3718. },
  3719. "end": {
  3720. "line": 1,
  3721. "column": 144
  3722. }
  3723. }
  3724. }
  3725. ],
  3726. "type": "esm",
  3727. "resolutions": [
  3728. {
  3729. "resolved": {
  3730. "type": "module",
  3731. "url": "cce:/internal/x/cc"
  3732. },
  3733. "messages": []
  3734. },
  3735. {
  3736. "resolved": {
  3737. "type": "module",
  3738. "url": "cce:/internal/x/cc"
  3739. },
  3740. "messages": []
  3741. },
  3742. {
  3743. "resolved": {
  3744. "type": "module",
  3745. "url": "cce:/internal/x/cc"
  3746. },
  3747. "messages": []
  3748. }
  3749. ]
  3750. },
  3751. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui_ResolutionAutoFit.ts": {
  3752. "mTimestamp": {
  3753. "mtime": 1731394924000,
  3754. "uuid": "c7d72489-a84b-4886-92e2-028dc77602d1"
  3755. },
  3756. "chunkId": "33d6d868e05219070a908e953bde210e54f92e26",
  3757. "imports": [
  3758. {
  3759. "value": "cc"
  3760. },
  3761. {
  3762. "value": "cc"
  3763. },
  3764. {
  3765. "value": "cc",
  3766. "loc": {
  3767. "start": {
  3768. "line": 1,
  3769. "column": 86
  3770. },
  3771. "end": {
  3772. "line": 1,
  3773. "column": 90
  3774. }
  3775. }
  3776. }
  3777. ],
  3778. "type": "esm",
  3779. "resolutions": [
  3780. {
  3781. "resolved": {
  3782. "type": "module",
  3783. "url": "cce:/internal/x/cc"
  3784. },
  3785. "messages": []
  3786. },
  3787. {
  3788. "resolved": {
  3789. "type": "module",
  3790. "url": "cce:/internal/x/cc"
  3791. },
  3792. "messages": []
  3793. },
  3794. {
  3795. "resolved": {
  3796. "type": "module",
  3797. "url": "cce:/internal/x/cc"
  3798. },
  3799. "messages": []
  3800. }
  3801. ]
  3802. },
  3803. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts": {
  3804. "mTimestamp": {
  3805. "mtime": 1736762889183.055,
  3806. "uuid": "318726fd-082e-4577-a909-35531d0b4305"
  3807. },
  3808. "chunkId": "0a4102a464059398e43bc26dd3fe1faf79989cb3",
  3809. "imports": [
  3810. {
  3811. "value": "cce:/internal/code-quality/cr.mjs",
  3812. "resolved": "__unresolved_0"
  3813. },
  3814. {
  3815. "value": "cc"
  3816. },
  3817. {
  3818. "value": "cc"
  3819. },
  3820. {
  3821. "value": "cc",
  3822. "loc": {
  3823. "start": {
  3824. "line": 1,
  3825. "column": 38
  3826. },
  3827. "end": {
  3828. "line": 1,
  3829. "column": 42
  3830. }
  3831. }
  3832. },
  3833. {
  3834. "value": "../../../ch/ch",
  3835. "resolved": "__unresolved_1",
  3836. "loc": {
  3837. "start": {
  3838. "line": 2,
  3839. "column": 19
  3840. },
  3841. "end": {
  3842. "line": 2,
  3843. "column": 35
  3844. }
  3845. }
  3846. },
  3847. {
  3848. "value": "../../../core/ui/ui",
  3849. "resolved": "__unresolved_2",
  3850. "loc": {
  3851. "start": {
  3852. "line": 3,
  3853. "column": 34
  3854. },
  3855. "end": {
  3856. "line": 3,
  3857. "column": 55
  3858. }
  3859. }
  3860. },
  3861. {
  3862. "value": "../../../core/ui/ui_base",
  3863. "resolved": "__unresolved_3",
  3864. "loc": {
  3865. "start": {
  3866. "line": 4,
  3867. "column": 20
  3868. },
  3869. "end": {
  3870. "line": 4,
  3871. "column": 46
  3872. }
  3873. }
  3874. },
  3875. {
  3876. "value": "../../../Scripts/Container_Manager",
  3877. "resolved": "__unresolved_4",
  3878. "loc": {
  3879. "start": {
  3880. "line": 5,
  3881. "column": 34
  3882. },
  3883. "end": {
  3884. "line": 5,
  3885. "column": 70
  3886. }
  3887. }
  3888. },
  3889. {
  3890. "value": "../../../Scripts/Hall",
  3891. "resolved": "__unresolved_5",
  3892. "loc": {
  3893. "start": {
  3894. "line": 6,
  3895. "column": 21
  3896. },
  3897. "end": {
  3898. "line": 6,
  3899. "column": 44
  3900. }
  3901. }
  3902. },
  3903. {
  3904. "value": "../../../Scripts/ModuleDef",
  3905. "resolved": "__unresolved_6",
  3906. "loc": {
  3907. "start": {
  3908. "line": 7,
  3909. "column": 26
  3910. },
  3911. "end": {
  3912. "line": 7,
  3913. "column": 54
  3914. }
  3915. }
  3916. },
  3917. {
  3918. "value": "../UI_Fail/UI_Fail",
  3919. "resolved": "__unresolved_7",
  3920. "loc": {
  3921. "start": {
  3922. "line": 8,
  3923. "column": 24
  3924. },
  3925. "end": {
  3926. "line": 8,
  3927. "column": 44
  3928. }
  3929. }
  3930. },
  3931. {
  3932. "value": "../UI_GameRules/UI_GameRules",
  3933. "resolved": "__unresolved_8",
  3934. "loc": {
  3935. "start": {
  3936. "line": 9,
  3937. "column": 29
  3938. },
  3939. "end": {
  3940. "line": 9,
  3941. "column": 59
  3942. }
  3943. }
  3944. },
  3945. {
  3946. "value": "../UI_Idioms/UI_Idioms",
  3947. "resolved": "__unresolved_9",
  3948. "loc": {
  3949. "start": {
  3950. "line": 10,
  3951. "column": 26
  3952. },
  3953. "end": {
  3954. "line": 10,
  3955. "column": 50
  3956. }
  3957. }
  3958. },
  3959. {
  3960. "value": "../UI_Settings/UI_Settings",
  3961. "resolved": "__unresolved_10",
  3962. "loc": {
  3963. "start": {
  3964. "line": 11,
  3965. "column": 28
  3966. },
  3967. "end": {
  3968. "line": 11,
  3969. "column": 56
  3970. }
  3971. }
  3972. },
  3973. {
  3974. "value": "../UI_Win/UI_Win",
  3975. "resolved": "__unresolved_11",
  3976. "loc": {
  3977. "start": {
  3978. "line": 12,
  3979. "column": 23
  3980. },
  3981. "end": {
  3982. "line": 12,
  3983. "column": 41
  3984. }
  3985. }
  3986. },
  3987. {
  3988. "value": "./Layout_Main",
  3989. "resolved": "__unresolved_12",
  3990. "loc": {
  3991. "start": {
  3992. "line": 13,
  3993. "column": 28
  3994. },
  3995. "end": {
  3996. "line": 13,
  3997. "column": 43
  3998. }
  3999. }
  4000. }
  4001. ],
  4002. "type": "esm",
  4003. "resolutions": [
  4004. {
  4005. "resolved": {
  4006. "type": "module",
  4007. "url": "cce:/internal/code-quality/cr.mjs"
  4008. },
  4009. "messages": []
  4010. },
  4011. {
  4012. "resolved": {
  4013. "type": "module",
  4014. "url": "cce:/internal/x/cc"
  4015. },
  4016. "messages": []
  4017. },
  4018. {
  4019. "resolved": {
  4020. "type": "module",
  4021. "url": "cce:/internal/x/cc"
  4022. },
  4023. "messages": []
  4024. },
  4025. {
  4026. "resolved": {
  4027. "type": "module",
  4028. "url": "cce:/internal/x/cc"
  4029. },
  4030. "messages": []
  4031. },
  4032. {
  4033. "resolved": {
  4034. "type": "module",
  4035. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/ch.ts"
  4036. },
  4037. "messages": []
  4038. },
  4039. {
  4040. "resolved": {
  4041. "type": "module",
  4042. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts"
  4043. },
  4044. "messages": []
  4045. },
  4046. {
  4047. "resolved": {
  4048. "type": "module",
  4049. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui_base.ts"
  4050. },
  4051. "messages": []
  4052. },
  4053. {
  4054. "resolved": {
  4055. "type": "module",
  4056. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Container_Manager.ts"
  4057. },
  4058. "messages": []
  4059. },
  4060. {
  4061. "resolved": {
  4062. "type": "module",
  4063. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Hall.ts"
  4064. },
  4065. "messages": []
  4066. },
  4067. {
  4068. "resolved": {
  4069. "type": "module",
  4070. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/ModuleDef.ts"
  4071. },
  4072. "messages": []
  4073. },
  4074. {
  4075. "resolved": {
  4076. "type": "module",
  4077. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts"
  4078. },
  4079. "messages": []
  4080. },
  4081. {
  4082. "resolved": {
  4083. "type": "module",
  4084. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_GameRules/UI_GameRules.ts"
  4085. },
  4086. "messages": []
  4087. },
  4088. {
  4089. "resolved": {
  4090. "type": "module",
  4091. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts"
  4092. },
  4093. "messages": []
  4094. },
  4095. {
  4096. "resolved": {
  4097. "type": "module",
  4098. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts"
  4099. },
  4100. "messages": []
  4101. },
  4102. {
  4103. "resolved": {
  4104. "type": "module",
  4105. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts"
  4106. },
  4107. "messages": []
  4108. },
  4109. {
  4110. "resolved": {
  4111. "type": "module",
  4112. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/Layout_Main.ts"
  4113. },
  4114. "messages": []
  4115. }
  4116. ]
  4117. },
  4118. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/ModuleDef.ts": {
  4119. "mTimestamp": {
  4120. "mtime": 1735975674000,
  4121. "uuid": "755bda5f-ea54-487c-b1e9-98196d3757e7"
  4122. },
  4123. "chunkId": "bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678",
  4124. "imports": [
  4125. {
  4126. "value": "cc"
  4127. }
  4128. ],
  4129. "type": "esm",
  4130. "resolutions": [
  4131. {
  4132. "resolved": {
  4133. "type": "module",
  4134. "url": "cce:/internal/x/cc"
  4135. },
  4136. "messages": []
  4137. }
  4138. ]
  4139. },
  4140. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/Layout_Main.ts": {
  4141. "mTimestamp": {
  4142. "mtime": 1736577399102.681,
  4143. "uuid": "e3f729f3-2545-4626-8fd6-63c7dbae24ec"
  4144. },
  4145. "chunkId": "6a163e5eb12e84fcff92e09679473d95caa7ce42",
  4146. "imports": [
  4147. {
  4148. "value": "cce:/internal/code-quality/cr.mjs",
  4149. "resolved": "__unresolved_0"
  4150. },
  4151. {
  4152. "value": "cc"
  4153. },
  4154. {
  4155. "value": "cc"
  4156. },
  4157. {
  4158. "value": "cc",
  4159. "loc": {
  4160. "start": {
  4161. "line": 1,
  4162. "column": 59
  4163. },
  4164. "end": {
  4165. "line": 1,
  4166. "column": 63
  4167. }
  4168. }
  4169. }
  4170. ],
  4171. "type": "esm",
  4172. "resolutions": [
  4173. {
  4174. "resolved": {
  4175. "type": "module",
  4176. "url": "cce:/internal/code-quality/cr.mjs"
  4177. },
  4178. "messages": []
  4179. },
  4180. {
  4181. "resolved": {
  4182. "type": "module",
  4183. "url": "cce:/internal/x/cc"
  4184. },
  4185. "messages": []
  4186. },
  4187. {
  4188. "resolved": {
  4189. "type": "module",
  4190. "url": "cce:/internal/x/cc"
  4191. },
  4192. "messages": []
  4193. },
  4194. {
  4195. "resolved": {
  4196. "type": "module",
  4197. "url": "cce:/internal/x/cc"
  4198. },
  4199. "messages": []
  4200. }
  4201. ]
  4202. },
  4203. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts": {
  4204. "mTimestamp": {
  4205. "mtime": 1736762615145.5635,
  4206. "uuid": "74e38ce4-1747-4c7d-8e84-78d80fd866f1"
  4207. },
  4208. "chunkId": "50dd8b1c328a686f05e0ea16e0613e3558f0f915",
  4209. "imports": [
  4210. {
  4211. "value": "cce:/internal/code-quality/cr.mjs",
  4212. "resolved": "__unresolved_0"
  4213. },
  4214. {
  4215. "value": "cc"
  4216. },
  4217. {
  4218. "value": "cc"
  4219. },
  4220. {
  4221. "value": "cc",
  4222. "loc": {
  4223. "start": {
  4224. "line": 1,
  4225. "column": 52
  4226. },
  4227. "end": {
  4228. "line": 1,
  4229. "column": 56
  4230. }
  4231. }
  4232. },
  4233. {
  4234. "value": "./Layout_Settings",
  4235. "resolved": "__unresolved_1",
  4236. "loc": {
  4237. "start": {
  4238. "line": 2,
  4239. "column": 32
  4240. },
  4241. "end": {
  4242. "line": 2,
  4243. "column": 51
  4244. }
  4245. }
  4246. },
  4247. {
  4248. "value": "../UI_Main/UI_Main",
  4249. "resolved": "__unresolved_2",
  4250. "loc": {
  4251. "start": {
  4252. "line": 3,
  4253. "column": 23
  4254. },
  4255. "end": {
  4256. "line": 3,
  4257. "column": 43
  4258. }
  4259. }
  4260. },
  4261. {
  4262. "value": "../UI_Hall/UI_Hall",
  4263. "resolved": "__unresolved_3",
  4264. "loc": {
  4265. "start": {
  4266. "line": 4,
  4267. "column": 24
  4268. },
  4269. "end": {
  4270. "line": 4,
  4271. "column": 44
  4272. }
  4273. }
  4274. },
  4275. {
  4276. "value": "../../../ch/ch",
  4277. "resolved": "__unresolved_4",
  4278. "loc": {
  4279. "start": {
  4280. "line": 5,
  4281. "column": 19
  4282. },
  4283. "end": {
  4284. "line": 5,
  4285. "column": 35
  4286. }
  4287. }
  4288. },
  4289. {
  4290. "value": "../../../core/ui/ui",
  4291. "resolved": "__unresolved_5",
  4292. "loc": {
  4293. "start": {
  4294. "line": 6,
  4295. "column": 34
  4296. },
  4297. "end": {
  4298. "line": 6,
  4299. "column": 55
  4300. }
  4301. }
  4302. },
  4303. {
  4304. "value": "../../../core/ui/ui_base",
  4305. "resolved": "__unresolved_6",
  4306. "loc": {
  4307. "start": {
  4308. "line": 7,
  4309. "column": 20
  4310. },
  4311. "end": {
  4312. "line": 7,
  4313. "column": 46
  4314. }
  4315. }
  4316. },
  4317. {
  4318. "value": "../../../core/util/ResUtil",
  4319. "resolved": "__unresolved_7",
  4320. "loc": {
  4321. "start": {
  4322. "line": 8,
  4323. "column": 24
  4324. },
  4325. "end": {
  4326. "line": 8,
  4327. "column": 52
  4328. }
  4329. }
  4330. },
  4331. {
  4332. "value": "../../../Scripts/ModuleDef",
  4333. "resolved": "__unresolved_8",
  4334. "loc": {
  4335. "start": {
  4336. "line": 9,
  4337. "column": 26
  4338. },
  4339. "end": {
  4340. "line": 9,
  4341. "column": 54
  4342. }
  4343. }
  4344. },
  4345. {
  4346. "value": "../../../Scripts/SceneDef",
  4347. "resolved": "__unresolved_9",
  4348. "loc": {
  4349. "start": {
  4350. "line": 10,
  4351. "column": 25
  4352. },
  4353. "end": {
  4354. "line": 10,
  4355. "column": 52
  4356. }
  4357. }
  4358. }
  4359. ],
  4360. "type": "esm",
  4361. "resolutions": [
  4362. {
  4363. "resolved": {
  4364. "type": "module",
  4365. "url": "cce:/internal/code-quality/cr.mjs"
  4366. },
  4367. "messages": []
  4368. },
  4369. {
  4370. "resolved": {
  4371. "type": "module",
  4372. "url": "cce:/internal/x/cc"
  4373. },
  4374. "messages": []
  4375. },
  4376. {
  4377. "resolved": {
  4378. "type": "module",
  4379. "url": "cce:/internal/x/cc"
  4380. },
  4381. "messages": []
  4382. },
  4383. {
  4384. "resolved": {
  4385. "type": "module",
  4386. "url": "cce:/internal/x/cc"
  4387. },
  4388. "messages": []
  4389. },
  4390. {
  4391. "resolved": {
  4392. "type": "module",
  4393. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/Layout_Settings.ts"
  4394. },
  4395. "messages": []
  4396. },
  4397. {
  4398. "resolved": {
  4399. "type": "module",
  4400. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts"
  4401. },
  4402. "messages": []
  4403. },
  4404. {
  4405. "resolved": {
  4406. "type": "module",
  4407. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts"
  4408. },
  4409. "messages": []
  4410. },
  4411. {
  4412. "resolved": {
  4413. "type": "module",
  4414. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/ch.ts"
  4415. },
  4416. "messages": []
  4417. },
  4418. {
  4419. "resolved": {
  4420. "type": "module",
  4421. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts"
  4422. },
  4423. "messages": []
  4424. },
  4425. {
  4426. "resolved": {
  4427. "type": "module",
  4428. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui_base.ts"
  4429. },
  4430. "messages": []
  4431. },
  4432. {
  4433. "resolved": {
  4434. "type": "module",
  4435. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/ResUtil.ts"
  4436. },
  4437. "messages": []
  4438. },
  4439. {
  4440. "resolved": {
  4441. "type": "module",
  4442. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/ModuleDef.ts"
  4443. },
  4444. "messages": []
  4445. },
  4446. {
  4447. "resolved": {
  4448. "type": "module",
  4449. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/SceneDef.ts"
  4450. },
  4451. "messages": []
  4452. }
  4453. ]
  4454. },
  4455. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/Layout_Settings.ts": {
  4456. "mTimestamp": {
  4457. "mtime": 1736501420910.7866,
  4458. "uuid": "a23fcebc-ff57-4b16-86b5-1305eba50924"
  4459. },
  4460. "chunkId": "a0c4f651e5297607ee62681e54a78e7903383828",
  4461. "imports": [
  4462. {
  4463. "value": "cc"
  4464. },
  4465. {
  4466. "value": "cc"
  4467. },
  4468. {
  4469. "value": "cc",
  4470. "loc": {
  4471. "start": {
  4472. "line": 1,
  4473. "column": 68
  4474. },
  4475. "end": {
  4476. "line": 1,
  4477. "column": 72
  4478. }
  4479. }
  4480. }
  4481. ],
  4482. "type": "esm",
  4483. "resolutions": [
  4484. {
  4485. "resolved": {
  4486. "type": "module",
  4487. "url": "cce:/internal/x/cc"
  4488. },
  4489. "messages": []
  4490. },
  4491. {
  4492. "resolved": {
  4493. "type": "module",
  4494. "url": "cce:/internal/x/cc"
  4495. },
  4496. "messages": []
  4497. },
  4498. {
  4499. "resolved": {
  4500. "type": "module",
  4501. "url": "cce:/internal/x/cc"
  4502. },
  4503. "messages": []
  4504. }
  4505. ]
  4506. },
  4507. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/ch.ts": {
  4508. "mTimestamp": {
  4509. "mtime": 1735977472000,
  4510. "uuid": "168012b2-7345-4efb-b543-bcd5b60a2689"
  4511. },
  4512. "chunkId": "e671bb16456ad253c126408d753c04295ea07129",
  4513. "imports": [
  4514. {
  4515. "value": "cce:/internal/code-quality/cr.mjs",
  4516. "resolved": "__unresolved_0"
  4517. },
  4518. {
  4519. "value": "cc"
  4520. },
  4521. {
  4522. "value": "./audio/audio",
  4523. "resolved": "__unresolved_1",
  4524. "loc": {
  4525. "start": {
  4526. "line": 1,
  4527. "column": 21
  4528. },
  4529. "end": {
  4530. "line": 1,
  4531. "column": 36
  4532. }
  4533. }
  4534. },
  4535. {
  4536. "value": "./pvp/ch_pvp",
  4537. "resolved": "__unresolved_2",
  4538. "loc": {
  4539. "start": {
  4540. "line": 2,
  4541. "column": 16
  4542. },
  4543. "end": {
  4544. "line": 2,
  4545. "column": 30
  4546. }
  4547. }
  4548. },
  4549. {
  4550. "value": "./ch_util",
  4551. "resolved": "__unresolved_3",
  4552. "loc": {
  4553. "start": {
  4554. "line": 3,
  4555. "column": 17
  4556. },
  4557. "end": {
  4558. "line": 3,
  4559. "column": 28
  4560. }
  4561. }
  4562. },
  4563. {
  4564. "value": "./sign/sign",
  4565. "resolved": "__unresolved_4",
  4566. "loc": {
  4567. "start": {
  4568. "line": 4,
  4569. "column": 17
  4570. },
  4571. "end": {
  4572. "line": 4,
  4573. "column": 30
  4574. }
  4575. }
  4576. },
  4577. {
  4578. "value": "./net/net",
  4579. "resolved": "__unresolved_5",
  4580. "loc": {
  4581. "start": {
  4582. "line": 5,
  4583. "column": 38
  4584. },
  4585. "end": {
  4586. "line": 5,
  4587. "column": 49
  4588. }
  4589. }
  4590. },
  4591. {
  4592. "value": "./net/NetPlayer",
  4593. "resolved": "__unresolved_6",
  4594. "loc": {
  4595. "start": {
  4596. "line": 6,
  4597. "column": 26
  4598. },
  4599. "end": {
  4600. "line": 6,
  4601. "column": 43
  4602. }
  4603. }
  4604. },
  4605. {
  4606. "value": "./net/NetRoom",
  4607. "resolved": "__unresolved_7",
  4608. "loc": {
  4609. "start": {
  4610. "line": 7,
  4611. "column": 24
  4612. },
  4613. "end": {
  4614. "line": 7,
  4615. "column": 39
  4616. }
  4617. }
  4618. }
  4619. ],
  4620. "type": "esm",
  4621. "resolutions": [
  4622. {
  4623. "resolved": {
  4624. "type": "module",
  4625. "url": "cce:/internal/code-quality/cr.mjs"
  4626. },
  4627. "messages": []
  4628. },
  4629. {
  4630. "resolved": {
  4631. "type": "module",
  4632. "url": "cce:/internal/x/cc"
  4633. },
  4634. "messages": []
  4635. },
  4636. {
  4637. "resolved": {
  4638. "type": "module",
  4639. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/audio/audio.ts"
  4640. },
  4641. "messages": []
  4642. },
  4643. {
  4644. "resolved": {
  4645. "type": "module",
  4646. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/pvp/ch_pvp.ts"
  4647. },
  4648. "messages": []
  4649. },
  4650. {
  4651. "resolved": {
  4652. "type": "module",
  4653. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/ch_util.ts"
  4654. },
  4655. "messages": []
  4656. },
  4657. {
  4658. "resolved": {
  4659. "type": "module",
  4660. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/sign/sign.ts"
  4661. },
  4662. "messages": []
  4663. },
  4664. {
  4665. "resolved": {
  4666. "type": "module",
  4667. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/net.ts"
  4668. },
  4669. "messages": []
  4670. },
  4671. {
  4672. "resolved": {
  4673. "type": "module",
  4674. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/NetPlayer.ts"
  4675. },
  4676. "messages": []
  4677. },
  4678. {
  4679. "resolved": {
  4680. "type": "module",
  4681. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/NetRoom.ts"
  4682. },
  4683. "messages": []
  4684. }
  4685. ]
  4686. },
  4687. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/audio/audio.ts": {
  4688. "mTimestamp": {
  4689. "mtime": 1730456036000,
  4690. "uuid": "e18034b6-02ea-4a07-92d0-bc9ef0df5fc4"
  4691. },
  4692. "chunkId": "e908646c1435d653de6447e2ae846c959ac29b33",
  4693. "imports": [
  4694. {
  4695. "value": "cc"
  4696. },
  4697. {
  4698. "value": "cc"
  4699. },
  4700. {
  4701. "value": "cc",
  4702. "loc": {
  4703. "start": {
  4704. "line": 1,
  4705. "column": 69
  4706. },
  4707. "end": {
  4708. "line": 1,
  4709. "column": 73
  4710. }
  4711. }
  4712. }
  4713. ],
  4714. "type": "esm",
  4715. "resolutions": [
  4716. {
  4717. "resolved": {
  4718. "type": "module",
  4719. "url": "cce:/internal/x/cc"
  4720. },
  4721. "messages": []
  4722. },
  4723. {
  4724. "resolved": {
  4725. "type": "module",
  4726. "url": "cce:/internal/x/cc"
  4727. },
  4728. "messages": []
  4729. },
  4730. {
  4731. "resolved": {
  4732. "type": "module",
  4733. "url": "cce:/internal/x/cc"
  4734. },
  4735. "messages": []
  4736. }
  4737. ]
  4738. },
  4739. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/pvp/ch_pvp.ts": {
  4740. "mTimestamp": {
  4741. "mtime": 1732848604000,
  4742. "uuid": "8b65873a-524d-49ab-81e4-1f1d5cb47d8f"
  4743. },
  4744. "chunkId": "1c3614b3a2e4710764372e6a76dbe0058c9d9dab",
  4745. "imports": [
  4746. {
  4747. "value": "cce:/internal/code-quality/cr.mjs",
  4748. "resolved": "__unresolved_0"
  4749. },
  4750. {
  4751. "value": "cc"
  4752. },
  4753. {
  4754. "value": "../ch_util",
  4755. "resolved": "__unresolved_1",
  4756. "loc": {
  4757. "start": {
  4758. "line": 1,
  4759. "column": 20
  4760. },
  4761. "end": {
  4762. "line": 1,
  4763. "column": 32
  4764. }
  4765. }
  4766. }
  4767. ],
  4768. "type": "esm",
  4769. "resolutions": [
  4770. {
  4771. "resolved": {
  4772. "type": "module",
  4773. "url": "cce:/internal/code-quality/cr.mjs"
  4774. },
  4775. "messages": []
  4776. },
  4777. {
  4778. "resolved": {
  4779. "type": "module",
  4780. "url": "cce:/internal/x/cc"
  4781. },
  4782. "messages": []
  4783. },
  4784. {
  4785. "resolved": {
  4786. "type": "module",
  4787. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/ch_util.ts"
  4788. },
  4789. "messages": []
  4790. }
  4791. ]
  4792. },
  4793. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/sign/sign.ts": {
  4794. "mTimestamp": {
  4795. "mtime": 1730456036000,
  4796. "uuid": "6d031cab-c8a4-4b61-a88e-1da5ca87802f"
  4797. },
  4798. "chunkId": "a62597dd07a24c3714ad095eedbfc8f76f2d165c",
  4799. "imports": [
  4800. {
  4801. "value": "cc"
  4802. }
  4803. ],
  4804. "type": "esm",
  4805. "resolutions": [
  4806. {
  4807. "resolved": {
  4808. "type": "module",
  4809. "url": "cce:/internal/x/cc"
  4810. },
  4811. "messages": []
  4812. }
  4813. ]
  4814. },
  4815. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/net.ts": {
  4816. "mTimestamp": {
  4817. "mtime": 1735977472000,
  4818. "uuid": "3f10abbc-5e71-46d9-bd19-8d7cb59e5d22"
  4819. },
  4820. "chunkId": "08ecc5fa925fc3fd11ef12d15f82b21f0039b613",
  4821. "imports": [
  4822. {
  4823. "value": "cce:/internal/code-quality/cr.mjs",
  4824. "resolved": "__unresolved_0"
  4825. },
  4826. {
  4827. "value": "cc"
  4828. },
  4829. {
  4830. "value": "./NetRoom",
  4831. "resolved": "__unresolved_1",
  4832. "loc": {
  4833. "start": {
  4834. "line": 1,
  4835. "column": 24
  4836. },
  4837. "end": {
  4838. "line": 1,
  4839. "column": 35
  4840. }
  4841. }
  4842. },
  4843. {
  4844. "value": "./NetTeam",
  4845. "resolved": "__unresolved_2",
  4846. "loc": {
  4847. "start": {
  4848. "line": 2,
  4849. "column": 24
  4850. },
  4851. "end": {
  4852. "line": 2,
  4853. "column": 35
  4854. }
  4855. }
  4856. },
  4857. {
  4858. "value": "./WsClient",
  4859. "resolved": "__unresolved_3",
  4860. "loc": {
  4861. "start": {
  4862. "line": 3,
  4863. "column": 25
  4864. },
  4865. "end": {
  4866. "line": 3,
  4867. "column": 37
  4868. }
  4869. }
  4870. }
  4871. ],
  4872. "type": "esm",
  4873. "resolutions": [
  4874. {
  4875. "resolved": {
  4876. "type": "module",
  4877. "url": "cce:/internal/code-quality/cr.mjs"
  4878. },
  4879. "messages": []
  4880. },
  4881. {
  4882. "resolved": {
  4883. "type": "module",
  4884. "url": "cce:/internal/x/cc"
  4885. },
  4886. "messages": []
  4887. },
  4888. {
  4889. "resolved": {
  4890. "type": "module",
  4891. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/NetRoom.ts"
  4892. },
  4893. "messages": []
  4894. },
  4895. {
  4896. "resolved": {
  4897. "type": "module",
  4898. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/NetTeam.ts"
  4899. },
  4900. "messages": []
  4901. },
  4902. {
  4903. "resolved": {
  4904. "type": "module",
  4905. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/WsClient.ts"
  4906. },
  4907. "messages": []
  4908. }
  4909. ]
  4910. },
  4911. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/NetRoom.ts": {
  4912. "mTimestamp": {
  4913. "mtime": 1735977472000,
  4914. "uuid": "577dc82a-0c71-4d81-99ac-eb9579469af3"
  4915. },
  4916. "chunkId": "3f8dff31feda7b51e2d0428361dac48e18834ed8",
  4917. "imports": [
  4918. {
  4919. "value": "cce:/internal/code-quality/cr.mjs",
  4920. "resolved": "__unresolved_0"
  4921. },
  4922. {
  4923. "value": "cc"
  4924. },
  4925. {
  4926. "value": "./NetBase",
  4927. "resolved": "__unresolved_1",
  4928. "loc": {
  4929. "start": {
  4930. "line": 1,
  4931. "column": 24
  4932. },
  4933. "end": {
  4934. "line": 1,
  4935. "column": 35
  4936. }
  4937. }
  4938. },
  4939. {
  4940. "value": "./NetPlayer",
  4941. "resolved": "__unresolved_2",
  4942. "loc": {
  4943. "start": {
  4944. "line": 2,
  4945. "column": 26
  4946. },
  4947. "end": {
  4948. "line": 2,
  4949. "column": 39
  4950. }
  4951. }
  4952. }
  4953. ],
  4954. "type": "esm",
  4955. "resolutions": [
  4956. {
  4957. "resolved": {
  4958. "type": "module",
  4959. "url": "cce:/internal/code-quality/cr.mjs"
  4960. },
  4961. "messages": []
  4962. },
  4963. {
  4964. "resolved": {
  4965. "type": "module",
  4966. "url": "cce:/internal/x/cc"
  4967. },
  4968. "messages": []
  4969. },
  4970. {
  4971. "resolved": {
  4972. "type": "module",
  4973. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/NetBase.ts"
  4974. },
  4975. "messages": []
  4976. },
  4977. {
  4978. "resolved": {
  4979. "type": "module",
  4980. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/NetPlayer.ts"
  4981. },
  4982. "messages": []
  4983. }
  4984. ]
  4985. },
  4986. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/NetBase.ts": {
  4987. "mTimestamp": {
  4988. "mtime": 1735977472000,
  4989. "uuid": "ee4ce3fc-63ab-4e6f-badd-226a50749568"
  4990. },
  4991. "chunkId": "879eb4b2cb07a55807079158fde54421bac04056",
  4992. "imports": [
  4993. {
  4994. "value": "cc"
  4995. }
  4996. ],
  4997. "type": "esm",
  4998. "resolutions": [
  4999. {
  5000. "resolved": {
  5001. "type": "module",
  5002. "url": "cce:/internal/x/cc"
  5003. },
  5004. "messages": []
  5005. }
  5006. ]
  5007. },
  5008. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/NetPlayer.ts": {
  5009. "mTimestamp": {
  5010. "mtime": 1735977472000,
  5011. "uuid": "6fc05173-7c63-429c-9b1a-dde11cb30f78"
  5012. },
  5013. "chunkId": "41d16e1f8113566bf1c111c20aceca9e4a6626d6",
  5014. "imports": [
  5015. {
  5016. "value": "cce:/internal/code-quality/cr.mjs",
  5017. "resolved": "__unresolved_0"
  5018. },
  5019. {
  5020. "value": "cc"
  5021. },
  5022. {
  5023. "value": "./NetBase",
  5024. "resolved": "__unresolved_1",
  5025. "loc": {
  5026. "start": {
  5027. "line": 1,
  5028. "column": 24
  5029. },
  5030. "end": {
  5031. "line": 1,
  5032. "column": 35
  5033. }
  5034. }
  5035. }
  5036. ],
  5037. "type": "esm",
  5038. "resolutions": [
  5039. {
  5040. "resolved": {
  5041. "type": "module",
  5042. "url": "cce:/internal/code-quality/cr.mjs"
  5043. },
  5044. "messages": []
  5045. },
  5046. {
  5047. "resolved": {
  5048. "type": "module",
  5049. "url": "cce:/internal/x/cc"
  5050. },
  5051. "messages": []
  5052. },
  5053. {
  5054. "resolved": {
  5055. "type": "module",
  5056. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/NetBase.ts"
  5057. },
  5058. "messages": []
  5059. }
  5060. ]
  5061. },
  5062. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/NetTeam.ts": {
  5063. "mTimestamp": {
  5064. "mtime": 1735977472000,
  5065. "uuid": "33cae0ae-d426-493d-a083-da5acb9f81af"
  5066. },
  5067. "chunkId": "72bc24ff288b2b4316b5ddb0abd45b840383d6f0",
  5068. "imports": [
  5069. {
  5070. "value": "cce:/internal/code-quality/cr.mjs",
  5071. "resolved": "__unresolved_0"
  5072. },
  5073. {
  5074. "value": "cc"
  5075. },
  5076. {
  5077. "value": "./NetPlayer",
  5078. "resolved": "__unresolved_1",
  5079. "loc": {
  5080. "start": {
  5081. "line": 1,
  5082. "column": 26
  5083. },
  5084. "end": {
  5085. "line": 1,
  5086. "column": 39
  5087. }
  5088. }
  5089. }
  5090. ],
  5091. "type": "esm",
  5092. "resolutions": [
  5093. {
  5094. "resolved": {
  5095. "type": "module",
  5096. "url": "cce:/internal/code-quality/cr.mjs"
  5097. },
  5098. "messages": []
  5099. },
  5100. {
  5101. "resolved": {
  5102. "type": "module",
  5103. "url": "cce:/internal/x/cc"
  5104. },
  5105. "messages": []
  5106. },
  5107. {
  5108. "resolved": {
  5109. "type": "module",
  5110. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/NetPlayer.ts"
  5111. },
  5112. "messages": []
  5113. }
  5114. ]
  5115. },
  5116. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/net/WsClient.ts": {
  5117. "mTimestamp": {
  5118. "mtime": 1735977472000,
  5119. "uuid": "d1418e93-2c2a-4321-ada7-99ffcf5a4a7d"
  5120. },
  5121. "chunkId": "3975fe5ce64c51324369e49e8afd9c685ef1036d",
  5122. "imports": [
  5123. {
  5124. "value": "cc"
  5125. }
  5126. ],
  5127. "type": "esm",
  5128. "resolutions": [
  5129. {
  5130. "resolved": {
  5131. "type": "module",
  5132. "url": "cce:/internal/x/cc"
  5133. },
  5134. "messages": []
  5135. }
  5136. ]
  5137. },
  5138. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/SceneDef.ts": {
  5139. "mTimestamp": {
  5140. "mtime": 1736403238000,
  5141. "uuid": "01aa741e-3f0a-4c17-83c4-f95b02f10561"
  5142. },
  5143. "chunkId": "3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe",
  5144. "imports": [
  5145. {
  5146. "value": "cc"
  5147. }
  5148. ],
  5149. "type": "esm",
  5150. "resolutions": [
  5151. {
  5152. "resolved": {
  5153. "type": "module",
  5154. "url": "cce:/internal/x/cc"
  5155. },
  5156. "messages": []
  5157. }
  5158. ]
  5159. },
  5160. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/ResUtil.ts": {
  5161. "mTimestamp": {
  5162. "mtime": 1731394924000,
  5163. "uuid": "fdca46ee-3efc-42b6-a776-d0c4afa42ed3"
  5164. },
  5165. "chunkId": "c969313d23703c6a3fcc53d5e71bae664ed7849e",
  5166. "imports": [
  5167. {
  5168. "value": "cc"
  5169. },
  5170. {
  5171. "value": "cc"
  5172. },
  5173. {
  5174. "value": "cc",
  5175. "loc": {
  5176. "start": {
  5177. "line": 7,
  5178. "column": 106
  5179. },
  5180. "end": {
  5181. "line": 7,
  5182. "column": 110
  5183. }
  5184. }
  5185. }
  5186. ],
  5187. "type": "esm",
  5188. "resolutions": [
  5189. {
  5190. "resolved": {
  5191. "type": "module",
  5192. "url": "cce:/internal/x/cc"
  5193. },
  5194. "messages": []
  5195. },
  5196. {
  5197. "resolved": {
  5198. "type": "module",
  5199. "url": "cce:/internal/x/cc"
  5200. },
  5201. "messages": []
  5202. },
  5203. {
  5204. "resolved": {
  5205. "type": "module",
  5206. "url": "cce:/internal/x/cc"
  5207. },
  5208. "messages": []
  5209. }
  5210. ]
  5211. },
  5212. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts": {
  5213. "mTimestamp": {
  5214. "mtime": 1736762524556.9905,
  5215. "uuid": "e5a30cd7-fdf5-4c69-948c-b00f6489f01a"
  5216. },
  5217. "chunkId": "2cb4568cc17fc880801c649b7e09213445038932",
  5218. "imports": [
  5219. {
  5220. "value": "cce:/internal/code-quality/cr.mjs",
  5221. "resolved": "__unresolved_0"
  5222. },
  5223. {
  5224. "value": "cc"
  5225. },
  5226. {
  5227. "value": "cc"
  5228. },
  5229. {
  5230. "value": "cc",
  5231. "loc": {
  5232. "start": {
  5233. "line": 1,
  5234. "column": 52
  5235. },
  5236. "end": {
  5237. "line": 1,
  5238. "column": 56
  5239. }
  5240. }
  5241. },
  5242. {
  5243. "value": "./Layout_Hall",
  5244. "resolved": "__unresolved_1",
  5245. "loc": {
  5246. "start": {
  5247. "line": 2,
  5248. "column": 28
  5249. },
  5250. "end": {
  5251. "line": 2,
  5252. "column": 43
  5253. }
  5254. }
  5255. },
  5256. {
  5257. "value": "../UI_Rank/UI_Rank",
  5258. "resolved": "__unresolved_2",
  5259. "loc": {
  5260. "start": {
  5261. "line": 3,
  5262. "column": 24
  5263. },
  5264. "end": {
  5265. "line": 3,
  5266. "column": 44
  5267. }
  5268. }
  5269. },
  5270. {
  5271. "value": "../UI_Settings/UI_Settings",
  5272. "resolved": "__unresolved_3",
  5273. "loc": {
  5274. "start": {
  5275. "line": 4,
  5276. "column": 28
  5277. },
  5278. "end": {
  5279. "line": 4,
  5280. "column": 56
  5281. }
  5282. }
  5283. },
  5284. {
  5285. "value": "../UI_Sign/UI_Sign",
  5286. "resolved": "__unresolved_4",
  5287. "loc": {
  5288. "start": {
  5289. "line": 5,
  5290. "column": 24
  5291. },
  5292. "end": {
  5293. "line": 5,
  5294. "column": 44
  5295. }
  5296. }
  5297. },
  5298. {
  5299. "value": "../UI_Invite/UI_Invite",
  5300. "resolved": "__unresolved_5",
  5301. "loc": {
  5302. "start": {
  5303. "line": 6,
  5304. "column": 26
  5305. },
  5306. "end": {
  5307. "line": 6,
  5308. "column": 50
  5309. }
  5310. }
  5311. },
  5312. {
  5313. "value": "../../../core/ui/ui",
  5314. "resolved": "__unresolved_6",
  5315. "loc": {
  5316. "start": {
  5317. "line": 7,
  5318. "column": 34
  5319. },
  5320. "end": {
  5321. "line": 7,
  5322. "column": 55
  5323. }
  5324. }
  5325. },
  5326. {
  5327. "value": "../../../core/ui/ui_base",
  5328. "resolved": "__unresolved_7",
  5329. "loc": {
  5330. "start": {
  5331. "line": 8,
  5332. "column": 20
  5333. },
  5334. "end": {
  5335. "line": 8,
  5336. "column": 46
  5337. }
  5338. }
  5339. },
  5340. {
  5341. "value": "../../../core/util/ResUtil",
  5342. "resolved": "__unresolved_8",
  5343. "loc": {
  5344. "start": {
  5345. "line": 9,
  5346. "column": 24
  5347. },
  5348. "end": {
  5349. "line": 9,
  5350. "column": 52
  5351. }
  5352. }
  5353. },
  5354. {
  5355. "value": "../../../Scripts/ModuleDef",
  5356. "resolved": "__unresolved_9",
  5357. "loc": {
  5358. "start": {
  5359. "line": 10,
  5360. "column": 26
  5361. },
  5362. "end": {
  5363. "line": 10,
  5364. "column": 54
  5365. }
  5366. }
  5367. },
  5368. {
  5369. "value": "../../../Scripts/SceneDef",
  5370. "resolved": "__unresolved_10",
  5371. "loc": {
  5372. "start": {
  5373. "line": 11,
  5374. "column": 25
  5375. },
  5376. "end": {
  5377. "line": 11,
  5378. "column": 52
  5379. }
  5380. }
  5381. }
  5382. ],
  5383. "type": "esm",
  5384. "resolutions": [
  5385. {
  5386. "resolved": {
  5387. "type": "module",
  5388. "url": "cce:/internal/code-quality/cr.mjs"
  5389. },
  5390. "messages": []
  5391. },
  5392. {
  5393. "resolved": {
  5394. "type": "module",
  5395. "url": "cce:/internal/x/cc"
  5396. },
  5397. "messages": []
  5398. },
  5399. {
  5400. "resolved": {
  5401. "type": "module",
  5402. "url": "cce:/internal/x/cc"
  5403. },
  5404. "messages": []
  5405. },
  5406. {
  5407. "resolved": {
  5408. "type": "module",
  5409. "url": "cce:/internal/x/cc"
  5410. },
  5411. "messages": []
  5412. },
  5413. {
  5414. "resolved": {
  5415. "type": "module",
  5416. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/Layout_Hall.ts"
  5417. },
  5418. "messages": []
  5419. },
  5420. {
  5421. "resolved": {
  5422. "type": "module",
  5423. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts"
  5424. },
  5425. "messages": []
  5426. },
  5427. {
  5428. "resolved": {
  5429. "type": "module",
  5430. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts"
  5431. },
  5432. "messages": []
  5433. },
  5434. {
  5435. "resolved": {
  5436. "type": "module",
  5437. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts"
  5438. },
  5439. "messages": []
  5440. },
  5441. {
  5442. "resolved": {
  5443. "type": "module",
  5444. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Invite/UI_Invite.ts"
  5445. },
  5446. "messages": []
  5447. },
  5448. {
  5449. "resolved": {
  5450. "type": "module",
  5451. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts"
  5452. },
  5453. "messages": []
  5454. },
  5455. {
  5456. "resolved": {
  5457. "type": "module",
  5458. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui_base.ts"
  5459. },
  5460. "messages": []
  5461. },
  5462. {
  5463. "resolved": {
  5464. "type": "module",
  5465. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/ResUtil.ts"
  5466. },
  5467. "messages": []
  5468. },
  5469. {
  5470. "resolved": {
  5471. "type": "module",
  5472. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/ModuleDef.ts"
  5473. },
  5474. "messages": []
  5475. },
  5476. {
  5477. "resolved": {
  5478. "type": "module",
  5479. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/SceneDef.ts"
  5480. },
  5481. "messages": []
  5482. }
  5483. ]
  5484. },
  5485. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/Layout_Hall.ts": {
  5486. "mTimestamp": {
  5487. "mtime": 1736582645134.1016,
  5488. "uuid": "13bb8342-f718-401e-a556-fbc31c5c67d5"
  5489. },
  5490. "chunkId": "4f6d58c3ed8fd86feb6424866647fba7a540ce0d",
  5491. "imports": [
  5492. {
  5493. "value": "cc"
  5494. },
  5495. {
  5496. "value": "cc"
  5497. },
  5498. {
  5499. "value": "cc",
  5500. "loc": {
  5501. "start": {
  5502. "line": 1,
  5503. "column": 52
  5504. },
  5505. "end": {
  5506. "line": 1,
  5507. "column": 56
  5508. }
  5509. }
  5510. }
  5511. ],
  5512. "type": "esm",
  5513. "resolutions": [
  5514. {
  5515. "resolved": {
  5516. "type": "module",
  5517. "url": "cce:/internal/x/cc"
  5518. },
  5519. "messages": []
  5520. },
  5521. {
  5522. "resolved": {
  5523. "type": "module",
  5524. "url": "cce:/internal/x/cc"
  5525. },
  5526. "messages": []
  5527. },
  5528. {
  5529. "resolved": {
  5530. "type": "module",
  5531. "url": "cce:/internal/x/cc"
  5532. },
  5533. "messages": []
  5534. }
  5535. ]
  5536. },
  5537. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts": {
  5538. "mTimestamp": {
  5539. "mtime": 1736762857605.307,
  5540. "uuid": "25b8c24c-3543-4e03-bee3-748ec1175900"
  5541. },
  5542. "chunkId": "2d7e3424c179d135dc59489a147ede15a8748562",
  5543. "imports": [
  5544. {
  5545. "value": "cce:/internal/code-quality/cr.mjs",
  5546. "resolved": "__unresolved_0"
  5547. },
  5548. {
  5549. "value": "cc"
  5550. },
  5551. {
  5552. "value": "cc"
  5553. },
  5554. {
  5555. "value": "cc",
  5556. "loc": {
  5557. "start": {
  5558. "line": 1,
  5559. "column": 40
  5560. },
  5561. "end": {
  5562. "line": 1,
  5563. "column": 44
  5564. }
  5565. }
  5566. },
  5567. {
  5568. "value": "cc/env",
  5569. "loc": {
  5570. "start": {
  5571. "line": 2,
  5572. "column": 23
  5573. },
  5574. "end": {
  5575. "line": 2,
  5576. "column": 31
  5577. }
  5578. }
  5579. },
  5580. {
  5581. "value": "../../../core/ui/ui",
  5582. "resolved": "__unresolved_1",
  5583. "loc": {
  5584. "start": {
  5585. "line": 3,
  5586. "column": 34
  5587. },
  5588. "end": {
  5589. "line": 3,
  5590. "column": 55
  5591. }
  5592. }
  5593. },
  5594. {
  5595. "value": "../../../core/ui/ui_base",
  5596. "resolved": "__unresolved_2",
  5597. "loc": {
  5598. "start": {
  5599. "line": 4,
  5600. "column": 20
  5601. },
  5602. "end": {
  5603. "line": 4,
  5604. "column": 46
  5605. }
  5606. }
  5607. },
  5608. {
  5609. "value": "../../../module_basic/ui_waiting/UIWaiting",
  5610. "resolved": "__unresolved_3",
  5611. "loc": {
  5612. "start": {
  5613. "line": 5,
  5614. "column": 26
  5615. },
  5616. "end": {
  5617. "line": 5,
  5618. "column": 70
  5619. }
  5620. }
  5621. },
  5622. {
  5623. "value": "../../../Scripts/Hall",
  5624. "resolved": "__unresolved_4",
  5625. "loc": {
  5626. "start": {
  5627. "line": 6,
  5628. "column": 21
  5629. },
  5630. "end": {
  5631. "line": 6,
  5632. "column": 44
  5633. }
  5634. }
  5635. },
  5636. {
  5637. "value": "../../../Scripts/ModuleDef",
  5638. "resolved": "__unresolved_5",
  5639. "loc": {
  5640. "start": {
  5641. "line": 7,
  5642. "column": 26
  5643. },
  5644. "end": {
  5645. "line": 7,
  5646. "column": 54
  5647. }
  5648. }
  5649. },
  5650. {
  5651. "value": "../UI_Main/UI_Main",
  5652. "resolved": "__unresolved_6",
  5653. "loc": {
  5654. "start": {
  5655. "line": 8,
  5656. "column": 23
  5657. },
  5658. "end": {
  5659. "line": 8,
  5660. "column": 43
  5661. }
  5662. }
  5663. },
  5664. {
  5665. "value": "./Layout_Rank",
  5666. "resolved": "__unresolved_7",
  5667. "loc": {
  5668. "start": {
  5669. "line": 9,
  5670. "column": 28
  5671. },
  5672. "end": {
  5673. "line": 9,
  5674. "column": 43
  5675. }
  5676. }
  5677. },
  5678. {
  5679. "value": "./UI_Rank_Item",
  5680. "resolved": "__unresolved_8",
  5681. "loc": {
  5682. "start": {
  5683. "line": 10,
  5684. "column": 29
  5685. },
  5686. "end": {
  5687. "line": 10,
  5688. "column": 45
  5689. }
  5690. }
  5691. }
  5692. ],
  5693. "type": "esm",
  5694. "resolutions": [
  5695. {
  5696. "resolved": {
  5697. "type": "module",
  5698. "url": "cce:/internal/code-quality/cr.mjs"
  5699. },
  5700. "messages": []
  5701. },
  5702. {
  5703. "resolved": {
  5704. "type": "module",
  5705. "url": "cce:/internal/x/cc"
  5706. },
  5707. "messages": []
  5708. },
  5709. {
  5710. "resolved": {
  5711. "type": "module",
  5712. "url": "cce:/internal/x/cc"
  5713. },
  5714. "messages": []
  5715. },
  5716. {
  5717. "resolved": {
  5718. "type": "module",
  5719. "url": "cce:/internal/x/cc"
  5720. },
  5721. "messages": []
  5722. },
  5723. {
  5724. "resolved": {
  5725. "type": "external",
  5726. "specifierOrURL": "cc/env"
  5727. },
  5728. "messages": []
  5729. },
  5730. {
  5731. "resolved": {
  5732. "type": "module",
  5733. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts"
  5734. },
  5735. "messages": []
  5736. },
  5737. {
  5738. "resolved": {
  5739. "type": "module",
  5740. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui_base.ts"
  5741. },
  5742. "messages": []
  5743. },
  5744. {
  5745. "resolved": {
  5746. "type": "module",
  5747. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_waiting/UIWaiting.ts"
  5748. },
  5749. "messages": []
  5750. },
  5751. {
  5752. "resolved": {
  5753. "type": "module",
  5754. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Hall.ts"
  5755. },
  5756. "messages": []
  5757. },
  5758. {
  5759. "resolved": {
  5760. "type": "module",
  5761. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/ModuleDef.ts"
  5762. },
  5763. "messages": []
  5764. },
  5765. {
  5766. "resolved": {
  5767. "type": "module",
  5768. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts"
  5769. },
  5770. "messages": []
  5771. },
  5772. {
  5773. "resolved": {
  5774. "type": "module",
  5775. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts"
  5776. },
  5777. "messages": []
  5778. },
  5779. {
  5780. "resolved": {
  5781. "type": "module",
  5782. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts"
  5783. },
  5784. "messages": []
  5785. }
  5786. ]
  5787. },
  5788. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts": {
  5789. "mTimestamp": {
  5790. "mtime": 1736735530743.36,
  5791. "uuid": "2eda9e3d-4f15-4c37-b5ef-a71637b79830"
  5792. },
  5793. "chunkId": "30148fb61fef14f86e2cda463a167887dbf8cde4",
  5794. "imports": [
  5795. {
  5796. "value": "cce:/internal/code-quality/cr.mjs",
  5797. "resolved": "__unresolved_0"
  5798. },
  5799. {
  5800. "value": "cc"
  5801. },
  5802. {
  5803. "value": "cc"
  5804. },
  5805. {
  5806. "value": "cc",
  5807. "loc": {
  5808. "start": {
  5809. "line": 1,
  5810. "column": 60
  5811. },
  5812. "end": {
  5813. "line": 1,
  5814. "column": 64
  5815. }
  5816. }
  5817. },
  5818. {
  5819. "value": "db://assets/core/util_comp/List",
  5820. "resolved": "__unresolved_1",
  5821. "loc": {
  5822. "start": {
  5823. "line": 2,
  5824. "column": 17
  5825. },
  5826. "end": {
  5827. "line": 2,
  5828. "column": 50
  5829. }
  5830. }
  5831. },
  5832. {
  5833. "value": "./UI_Rank_Item",
  5834. "resolved": "__unresolved_2",
  5835. "loc": {
  5836. "start": {
  5837. "line": 3,
  5838. "column": 29
  5839. },
  5840. "end": {
  5841. "line": 3,
  5842. "column": 45
  5843. }
  5844. }
  5845. }
  5846. ],
  5847. "type": "esm",
  5848. "resolutions": [
  5849. {
  5850. "resolved": {
  5851. "type": "module",
  5852. "url": "cce:/internal/code-quality/cr.mjs"
  5853. },
  5854. "messages": []
  5855. },
  5856. {
  5857. "resolved": {
  5858. "type": "module",
  5859. "url": "cce:/internal/x/cc"
  5860. },
  5861. "messages": []
  5862. },
  5863. {
  5864. "resolved": {
  5865. "type": "module",
  5866. "url": "cce:/internal/x/cc"
  5867. },
  5868. "messages": []
  5869. },
  5870. {
  5871. "resolved": {
  5872. "type": "module",
  5873. "url": "cce:/internal/x/cc"
  5874. },
  5875. "messages": []
  5876. },
  5877. {
  5878. "resolved": {
  5879. "type": "module",
  5880. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/List.ts"
  5881. },
  5882. "messages": []
  5883. },
  5884. {
  5885. "resolved": {
  5886. "type": "module",
  5887. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts"
  5888. },
  5889. "messages": []
  5890. }
  5891. ]
  5892. },
  5893. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/List.ts": {
  5894. "mTimestamp": {
  5895. "mtime": 1721270366000,
  5896. "uuid": "30e5083d-6d2b-4381-85f7-637bef1fac9e"
  5897. },
  5898. "chunkId": "122ae41024fa99aa4949a176919256851ded60b7",
  5899. "imports": [
  5900. {
  5901. "value": "cce:/internal/code-quality/cr.mjs",
  5902. "resolved": "__unresolved_0"
  5903. },
  5904. {
  5905. "value": "cc"
  5906. },
  5907. {
  5908. "value": "cc"
  5909. },
  5910. {
  5911. "value": "cc",
  5912. "loc": {
  5913. "start": {
  5914. "line": 8,
  5915. "column": 208
  5916. },
  5917. "end": {
  5918. "line": 8,
  5919. "column": 212
  5920. }
  5921. }
  5922. },
  5923. {
  5924. "value": "cc/env",
  5925. "loc": {
  5926. "start": {
  5927. "line": 9,
  5928. "column": 20
  5929. },
  5930. "end": {
  5931. "line": 9,
  5932. "column": 28
  5933. }
  5934. }
  5935. },
  5936. {
  5937. "value": "./ListItem",
  5938. "resolved": "__unresolved_1",
  5939. "loc": {
  5940. "start": {
  5941. "line": 10,
  5942. "column": 21
  5943. },
  5944. "end": {
  5945. "line": 10,
  5946. "column": 33
  5947. }
  5948. }
  5949. }
  5950. ],
  5951. "type": "esm",
  5952. "resolutions": [
  5953. {
  5954. "resolved": {
  5955. "type": "module",
  5956. "url": "cce:/internal/code-quality/cr.mjs"
  5957. },
  5958. "messages": []
  5959. },
  5960. {
  5961. "resolved": {
  5962. "type": "module",
  5963. "url": "cce:/internal/x/cc"
  5964. },
  5965. "messages": []
  5966. },
  5967. {
  5968. "resolved": {
  5969. "type": "module",
  5970. "url": "cce:/internal/x/cc"
  5971. },
  5972. "messages": []
  5973. },
  5974. {
  5975. "resolved": {
  5976. "type": "module",
  5977. "url": "cce:/internal/x/cc"
  5978. },
  5979. "messages": []
  5980. },
  5981. {
  5982. "resolved": {
  5983. "type": "external",
  5984. "specifierOrURL": "cc/env"
  5985. },
  5986. "messages": []
  5987. },
  5988. {
  5989. "resolved": {
  5990. "type": "module",
  5991. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/ListItem.ts"
  5992. },
  5993. "messages": []
  5994. }
  5995. ]
  5996. },
  5997. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/ListItem.ts": {
  5998. "mTimestamp": {
  5999. "mtime": 1734334494000,
  6000. "uuid": "d2ed42b0-4eae-49b5-978f-cd46cd683602"
  6001. },
  6002. "chunkId": "38faaa1a7e061349d2a3e0fb94f944c310c15ca5",
  6003. "imports": [
  6004. {
  6005. "value": "cce:/internal/code-quality/cr.mjs",
  6006. "resolved": "__unresolved_0"
  6007. },
  6008. {
  6009. "value": "cc"
  6010. },
  6011. {
  6012. "value": "cc"
  6013. },
  6014. {
  6015. "value": "cc",
  6016. "loc": {
  6017. "start": {
  6018. "line": 10,
  6019. "column": 126
  6020. },
  6021. "end": {
  6022. "line": 10,
  6023. "column": 130
  6024. }
  6025. }
  6026. },
  6027. {
  6028. "value": "cc/env",
  6029. "loc": {
  6030. "start": {
  6031. "line": 11,
  6032. "column": 20
  6033. },
  6034. "end": {
  6035. "line": 11,
  6036. "column": 28
  6037. }
  6038. }
  6039. }
  6040. ],
  6041. "type": "esm",
  6042. "resolutions": [
  6043. {
  6044. "resolved": {
  6045. "type": "module",
  6046. "url": "cce:/internal/code-quality/cr.mjs"
  6047. },
  6048. "messages": []
  6049. },
  6050. {
  6051. "resolved": {
  6052. "type": "module",
  6053. "url": "cce:/internal/x/cc"
  6054. },
  6055. "messages": []
  6056. },
  6057. {
  6058. "resolved": {
  6059. "type": "module",
  6060. "url": "cce:/internal/x/cc"
  6061. },
  6062. "messages": []
  6063. },
  6064. {
  6065. "resolved": {
  6066. "type": "module",
  6067. "url": "cce:/internal/x/cc"
  6068. },
  6069. "messages": []
  6070. },
  6071. {
  6072. "resolved": {
  6073. "type": "external",
  6074. "specifierOrURL": "cc/env"
  6075. },
  6076. "messages": []
  6077. }
  6078. ]
  6079. },
  6080. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts": {
  6081. "mTimestamp": {
  6082. "mtime": 1736739865559.1875,
  6083. "uuid": "ac170bd8-891a-4445-9268-792ce785584e"
  6084. },
  6085. "chunkId": "aa522899127047b80d0893406f275d7a7aa74d2c",
  6086. "imports": [
  6087. {
  6088. "value": "cce:/internal/code-quality/cr.mjs",
  6089. "resolved": "__unresolved_0"
  6090. },
  6091. {
  6092. "value": "cc"
  6093. },
  6094. {
  6095. "value": "cc"
  6096. },
  6097. {
  6098. "value": "cc",
  6099. "loc": {
  6100. "start": {
  6101. "line": 1,
  6102. "column": 72
  6103. },
  6104. "end": {
  6105. "line": 1,
  6106. "column": 76
  6107. }
  6108. }
  6109. },
  6110. {
  6111. "value": "db://assets/ch/ch",
  6112. "resolved": "__unresolved_1",
  6113. "loc": {
  6114. "start": {
  6115. "line": 2,
  6116. "column": 19
  6117. },
  6118. "end": {
  6119. "line": 2,
  6120. "column": 38
  6121. }
  6122. }
  6123. },
  6124. {
  6125. "value": "../UI/UI_Head_Icon",
  6126. "resolved": "__unresolved_2",
  6127. "loc": {
  6128. "start": {
  6129. "line": 3,
  6130. "column": 29
  6131. },
  6132. "end": {
  6133. "line": 3,
  6134. "column": 49
  6135. }
  6136. }
  6137. }
  6138. ],
  6139. "type": "esm",
  6140. "resolutions": [
  6141. {
  6142. "resolved": {
  6143. "type": "module",
  6144. "url": "cce:/internal/code-quality/cr.mjs"
  6145. },
  6146. "messages": []
  6147. },
  6148. {
  6149. "resolved": {
  6150. "type": "module",
  6151. "url": "cce:/internal/x/cc"
  6152. },
  6153. "messages": []
  6154. },
  6155. {
  6156. "resolved": {
  6157. "type": "module",
  6158. "url": "cce:/internal/x/cc"
  6159. },
  6160. "messages": []
  6161. },
  6162. {
  6163. "resolved": {
  6164. "type": "module",
  6165. "url": "cce:/internal/x/cc"
  6166. },
  6167. "messages": []
  6168. },
  6169. {
  6170. "resolved": {
  6171. "type": "module",
  6172. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/ch.ts"
  6173. },
  6174. "messages": []
  6175. },
  6176. {
  6177. "resolved": {
  6178. "type": "module",
  6179. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts"
  6180. },
  6181. "messages": []
  6182. }
  6183. ]
  6184. },
  6185. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts": {
  6186. "mTimestamp": {
  6187. "mtime": 1736739414103.63,
  6188. "uuid": "32da0d14-83ae-4f2c-b245-fd50cbd7f2d1"
  6189. },
  6190. "chunkId": "47c8e77781a159f10d589db5916314688580bc33",
  6191. "imports": [
  6192. {
  6193. "value": "cce:/internal/code-quality/cr.mjs",
  6194. "resolved": "__unresolved_0"
  6195. },
  6196. {
  6197. "value": "cc"
  6198. },
  6199. {
  6200. "value": "cc"
  6201. },
  6202. {
  6203. "value": "cc",
  6204. "loc": {
  6205. "start": {
  6206. "line": 1,
  6207. "column": 65
  6208. },
  6209. "end": {
  6210. "line": 1,
  6211. "column": 69
  6212. }
  6213. }
  6214. },
  6215. {
  6216. "value": "db://assets/Scripts/Hall",
  6217. "resolved": "__unresolved_1",
  6218. "loc": {
  6219. "start": {
  6220. "line": 2,
  6221. "column": 21
  6222. },
  6223. "end": {
  6224. "line": 2,
  6225. "column": 47
  6226. }
  6227. }
  6228. }
  6229. ],
  6230. "type": "esm",
  6231. "resolutions": [
  6232. {
  6233. "resolved": {
  6234. "type": "module",
  6235. "url": "cce:/internal/code-quality/cr.mjs"
  6236. },
  6237. "messages": []
  6238. },
  6239. {
  6240. "resolved": {
  6241. "type": "module",
  6242. "url": "cce:/internal/x/cc"
  6243. },
  6244. "messages": []
  6245. },
  6246. {
  6247. "resolved": {
  6248. "type": "module",
  6249. "url": "cce:/internal/x/cc"
  6250. },
  6251. "messages": []
  6252. },
  6253. {
  6254. "resolved": {
  6255. "type": "module",
  6256. "url": "cce:/internal/x/cc"
  6257. },
  6258. "messages": []
  6259. },
  6260. {
  6261. "resolved": {
  6262. "type": "module",
  6263. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Hall.ts"
  6264. },
  6265. "messages": []
  6266. }
  6267. ]
  6268. },
  6269. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Hall.ts": {
  6270. "mTimestamp": {
  6271. "mtime": 1736739073142.5876,
  6272. "uuid": "7cb62609-5dee-4b3c-a9ca-17484c97e45c"
  6273. },
  6274. "chunkId": "24a83a22cc223ec58481e36c4a55a5226e7d02c6",
  6275. "imports": [
  6276. {
  6277. "value": "cce:/internal/code-quality/cr.mjs",
  6278. "resolved": "__unresolved_0"
  6279. },
  6280. {
  6281. "value": "cc"
  6282. },
  6283. {
  6284. "value": "cc"
  6285. },
  6286. {
  6287. "value": "cc",
  6288. "loc": {
  6289. "start": {
  6290. "line": 1,
  6291. "column": 54
  6292. },
  6293. "end": {
  6294. "line": 1,
  6295. "column": 58
  6296. }
  6297. }
  6298. },
  6299. {
  6300. "value": "../module_game/ui/UI_Hall/UI_Hall",
  6301. "resolved": "__unresolved_1",
  6302. "loc": {
  6303. "start": {
  6304. "line": 2,
  6305. "column": 24
  6306. },
  6307. "end": {
  6308. "line": 2,
  6309. "column": 59
  6310. }
  6311. }
  6312. },
  6313. {
  6314. "value": "../core/ui/ui",
  6315. "resolved": "__unresolved_2",
  6316. "loc": {
  6317. "start": {
  6318. "line": 3,
  6319. "column": 20
  6320. },
  6321. "end": {
  6322. "line": 3,
  6323. "column": 35
  6324. }
  6325. }
  6326. },
  6327. {
  6328. "value": "../module_game/game/PlayerData",
  6329. "resolved": "__unresolved_3",
  6330. "loc": {
  6331. "start": {
  6332. "line": 4,
  6333. "column": 23
  6334. },
  6335. "end": {
  6336. "line": 4,
  6337. "column": 55
  6338. }
  6339. }
  6340. },
  6341. {
  6342. "value": "../ch/ch",
  6343. "resolved": "__unresolved_4",
  6344. "loc": {
  6345. "start": {
  6346. "line": 5,
  6347. "column": 19
  6348. },
  6349. "end": {
  6350. "line": 5,
  6351. "column": 29
  6352. }
  6353. }
  6354. },
  6355. {
  6356. "value": "../core/util_class/HeadIcon",
  6357. "resolved": "__unresolved_5",
  6358. "loc": {
  6359. "start": {
  6360. "line": 6,
  6361. "column": 30
  6362. },
  6363. "end": {
  6364. "line": 6,
  6365. "column": 59
  6366. }
  6367. }
  6368. }
  6369. ],
  6370. "type": "esm",
  6371. "resolutions": [
  6372. {
  6373. "resolved": {
  6374. "type": "module",
  6375. "url": "cce:/internal/code-quality/cr.mjs"
  6376. },
  6377. "messages": []
  6378. },
  6379. {
  6380. "resolved": {
  6381. "type": "module",
  6382. "url": "cce:/internal/x/cc"
  6383. },
  6384. "messages": []
  6385. },
  6386. {
  6387. "resolved": {
  6388. "type": "module",
  6389. "url": "cce:/internal/x/cc"
  6390. },
  6391. "messages": []
  6392. },
  6393. {
  6394. "resolved": {
  6395. "type": "module",
  6396. "url": "cce:/internal/x/cc"
  6397. },
  6398. "messages": []
  6399. },
  6400. {
  6401. "resolved": {
  6402. "type": "module",
  6403. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts"
  6404. },
  6405. "messages": []
  6406. },
  6407. {
  6408. "resolved": {
  6409. "type": "module",
  6410. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts"
  6411. },
  6412. "messages": []
  6413. },
  6414. {
  6415. "resolved": {
  6416. "type": "module",
  6417. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts"
  6418. },
  6419. "messages": []
  6420. },
  6421. {
  6422. "resolved": {
  6423. "type": "module",
  6424. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/ch.ts"
  6425. },
  6426. "messages": []
  6427. },
  6428. {
  6429. "resolved": {
  6430. "type": "module",
  6431. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/HeadIcon.ts"
  6432. },
  6433. "messages": []
  6434. }
  6435. ]
  6436. },
  6437. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts": {
  6438. "mTimestamp": {
  6439. "mtime": 1736755756941.3687,
  6440. "uuid": "b500dce8-17ea-4468-b075-12c5b4bd6ef9"
  6441. },
  6442. "chunkId": "9fa0e63ffe0a92f6cd390b9195c28487e3487e7c",
  6443. "imports": [
  6444. {
  6445. "value": "cce:/internal/code-quality/cr.mjs",
  6446. "resolved": "__unresolved_0"
  6447. },
  6448. {
  6449. "value": "cc"
  6450. },
  6451. {
  6452. "value": "../../ch/ch",
  6453. "resolved": "__unresolved_1",
  6454. "loc": {
  6455. "start": {
  6456. "line": 1,
  6457. "column": 19
  6458. },
  6459. "end": {
  6460. "line": 1,
  6461. "column": 32
  6462. }
  6463. }
  6464. },
  6465. {
  6466. "value": "../../core/ui/ui",
  6467. "resolved": "__unresolved_2",
  6468. "loc": {
  6469. "start": {
  6470. "line": 2,
  6471. "column": 20
  6472. },
  6473. "end": {
  6474. "line": 2,
  6475. "column": 38
  6476. }
  6477. }
  6478. },
  6479. {
  6480. "value": "../../core/util_class/Container",
  6481. "resolved": "__unresolved_3",
  6482. "loc": {
  6483. "start": {
  6484. "line": 3,
  6485. "column": 26
  6486. },
  6487. "end": {
  6488. "line": 3,
  6489. "column": 59
  6490. }
  6491. }
  6492. },
  6493. {
  6494. "value": "../../core/util_class/GameData",
  6495. "resolved": "__unresolved_4",
  6496. "loc": {
  6497. "start": {
  6498. "line": 4,
  6499. "column": 21
  6500. },
  6501. "end": {
  6502. "line": 4,
  6503. "column": 53
  6504. }
  6505. }
  6506. },
  6507. {
  6508. "value": "../../module_basic/ui_notify/UINotify",
  6509. "resolved": "__unresolved_5",
  6510. "loc": {
  6511. "start": {
  6512. "line": 5,
  6513. "column": 25
  6514. },
  6515. "end": {
  6516. "line": 5,
  6517. "column": 64
  6518. }
  6519. }
  6520. },
  6521. {
  6522. "value": "../../start/Start",
  6523. "resolved": "__unresolved_6",
  6524. "loc": {
  6525. "start": {
  6526. "line": 7,
  6527. "column": 22
  6528. },
  6529. "end": {
  6530. "line": 7,
  6531. "column": 41
  6532. }
  6533. }
  6534. },
  6535. {
  6536. "value": "../ui/UI_Main/UI_Main",
  6537. "resolved": "__unresolved_7",
  6538. "loc": {
  6539. "start": {
  6540. "line": 9,
  6541. "column": 24
  6542. },
  6543. "end": {
  6544. "line": 9,
  6545. "column": 47
  6546. }
  6547. }
  6548. }
  6549. ],
  6550. "type": "esm",
  6551. "resolutions": [
  6552. {
  6553. "resolved": {
  6554. "type": "module",
  6555. "url": "cce:/internal/code-quality/cr.mjs"
  6556. },
  6557. "messages": []
  6558. },
  6559. {
  6560. "resolved": {
  6561. "type": "module",
  6562. "url": "cce:/internal/x/cc"
  6563. },
  6564. "messages": []
  6565. },
  6566. {
  6567. "resolved": {
  6568. "type": "module",
  6569. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/ch.ts"
  6570. },
  6571. "messages": []
  6572. },
  6573. {
  6574. "resolved": {
  6575. "type": "module",
  6576. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts"
  6577. },
  6578. "messages": []
  6579. },
  6580. {
  6581. "resolved": {
  6582. "type": "module",
  6583. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Container.ts"
  6584. },
  6585. "messages": []
  6586. },
  6587. {
  6588. "resolved": {
  6589. "type": "module",
  6590. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/GameData.ts"
  6591. },
  6592. "messages": []
  6593. },
  6594. {
  6595. "resolved": {
  6596. "type": "module",
  6597. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_notify/UINotify.ts"
  6598. },
  6599. "messages": []
  6600. },
  6601. {
  6602. "resolved": {
  6603. "type": "module",
  6604. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/start/Start.ts"
  6605. },
  6606. "messages": []
  6607. },
  6608. {
  6609. "resolved": {
  6610. "type": "module",
  6611. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts"
  6612. },
  6613. "messages": []
  6614. }
  6615. ]
  6616. },
  6617. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Container.ts": {
  6618. "mTimestamp": {
  6619. "mtime": 1729238466000,
  6620. "uuid": "7b36736c-e438-4809-a64b-99cdb2a1b59d"
  6621. },
  6622. "chunkId": "1787d8e2147a43214097b7b6fea81022fa7297b5",
  6623. "imports": [
  6624. {
  6625. "value": "cc"
  6626. }
  6627. ],
  6628. "type": "esm",
  6629. "resolutions": [
  6630. {
  6631. "resolved": {
  6632. "type": "module",
  6633. "url": "cce:/internal/x/cc"
  6634. },
  6635. "messages": []
  6636. }
  6637. ]
  6638. },
  6639. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/GameData.ts": {
  6640. "mTimestamp": {
  6641. "mtime": 1735977698000,
  6642. "uuid": "c88bde51-0f1c-4827-b614-4b0bfa575726"
  6643. },
  6644. "chunkId": "69708f163aeb7f1d3d93c5d9454dca6576ef2581",
  6645. "imports": [
  6646. {
  6647. "value": "cce:/internal/code-quality/cr.mjs",
  6648. "resolved": "__unresolved_0"
  6649. },
  6650. {
  6651. "value": "cc"
  6652. },
  6653. {
  6654. "value": "../../ch/ch",
  6655. "resolved": "__unresolved_1",
  6656. "loc": {
  6657. "start": {
  6658. "line": 2,
  6659. "column": 19
  6660. },
  6661. "end": {
  6662. "line": 2,
  6663. "column": 32
  6664. }
  6665. }
  6666. },
  6667. {
  6668. "value": "./PeriodData",
  6669. "resolved": "__unresolved_2",
  6670. "loc": {
  6671. "start": {
  6672. "line": 3,
  6673. "column": 45
  6674. },
  6675. "end": {
  6676. "line": 3,
  6677. "column": 59
  6678. }
  6679. }
  6680. }
  6681. ],
  6682. "type": "esm",
  6683. "resolutions": [
  6684. {
  6685. "resolved": {
  6686. "type": "module",
  6687. "url": "cce:/internal/code-quality/cr.mjs"
  6688. },
  6689. "messages": []
  6690. },
  6691. {
  6692. "resolved": {
  6693. "type": "module",
  6694. "url": "cce:/internal/x/cc"
  6695. },
  6696. "messages": []
  6697. },
  6698. {
  6699. "resolved": {
  6700. "type": "module",
  6701. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/ch.ts"
  6702. },
  6703. "messages": []
  6704. },
  6705. {
  6706. "resolved": {
  6707. "type": "module",
  6708. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/PeriodData.ts"
  6709. },
  6710. "messages": []
  6711. }
  6712. ]
  6713. },
  6714. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/PeriodData.ts": {
  6715. "mTimestamp": {
  6716. "mtime": 1734076678000,
  6717. "uuid": "6e0401e0-71cd-42da-be28-5dd0d09f0bf2"
  6718. },
  6719. "chunkId": "c0e9a0408b2c77521760095bef7e3d1dc8b428fc",
  6720. "imports": [
  6721. {
  6722. "value": "cc"
  6723. }
  6724. ],
  6725. "type": "esm",
  6726. "resolutions": [
  6727. {
  6728. "resolved": {
  6729. "type": "module",
  6730. "url": "cce:/internal/x/cc"
  6731. },
  6732. "messages": []
  6733. }
  6734. ]
  6735. },
  6736. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_notify/UINotify.ts": {
  6737. "mTimestamp": {
  6738. "mtime": 1736742472743.2798,
  6739. "uuid": "2e62289d-2f25-4905-87ff-ff4e3dee08f6"
  6740. },
  6741. "chunkId": "7a060cba1d5a032475d6578a562fb8df8171eb0b",
  6742. "imports": [
  6743. {
  6744. "value": "cce:/internal/code-quality/cr.mjs",
  6745. "resolved": "__unresolved_0"
  6746. },
  6747. {
  6748. "value": "cc"
  6749. },
  6750. {
  6751. "value": "cc"
  6752. },
  6753. {
  6754. "value": "cc",
  6755. "loc": {
  6756. "start": {
  6757. "line": 1,
  6758. "column": 55
  6759. },
  6760. "end": {
  6761. "line": 1,
  6762. "column": 59
  6763. }
  6764. }
  6765. },
  6766. {
  6767. "value": "./Layout_UI_Notify",
  6768. "resolved": "__unresolved_1",
  6769. "loc": {
  6770. "start": {
  6771. "line": 2,
  6772. "column": 33
  6773. },
  6774. "end": {
  6775. "line": 2,
  6776. "column": 53
  6777. }
  6778. }
  6779. },
  6780. {
  6781. "value": "../../core/ui/ui",
  6782. "resolved": "__unresolved_2",
  6783. "loc": {
  6784. "start": {
  6785. "line": 3,
  6786. "column": 43
  6787. },
  6788. "end": {
  6789. "line": 3,
  6790. "column": 61
  6791. }
  6792. }
  6793. },
  6794. {
  6795. "value": "../../Scripts/ModuleDef",
  6796. "resolved": "__unresolved_3",
  6797. "loc": {
  6798. "start": {
  6799. "line": 4,
  6800. "column": 26
  6801. },
  6802. "end": {
  6803. "line": 4,
  6804. "column": 51
  6805. }
  6806. }
  6807. }
  6808. ],
  6809. "type": "esm",
  6810. "resolutions": [
  6811. {
  6812. "resolved": {
  6813. "type": "module",
  6814. "url": "cce:/internal/code-quality/cr.mjs"
  6815. },
  6816. "messages": []
  6817. },
  6818. {
  6819. "resolved": {
  6820. "type": "module",
  6821. "url": "cce:/internal/x/cc"
  6822. },
  6823. "messages": []
  6824. },
  6825. {
  6826. "resolved": {
  6827. "type": "module",
  6828. "url": "cce:/internal/x/cc"
  6829. },
  6830. "messages": []
  6831. },
  6832. {
  6833. "resolved": {
  6834. "type": "module",
  6835. "url": "cce:/internal/x/cc"
  6836. },
  6837. "messages": []
  6838. },
  6839. {
  6840. "resolved": {
  6841. "type": "module",
  6842. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_notify/Layout_UI_Notify.ts"
  6843. },
  6844. "messages": []
  6845. },
  6846. {
  6847. "resolved": {
  6848. "type": "module",
  6849. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts"
  6850. },
  6851. "messages": []
  6852. },
  6853. {
  6854. "resolved": {
  6855. "type": "module",
  6856. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/ModuleDef.ts"
  6857. },
  6858. "messages": []
  6859. }
  6860. ]
  6861. },
  6862. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_notify/Layout_UI_Notify.ts": {
  6863. "mTimestamp": {
  6864. "mtime": 1717669624000,
  6865. "uuid": "5d1b6436-517e-4e53-b2b2-dbe7988d4646"
  6866. },
  6867. "chunkId": "137a1b4fd5be0cb2bbc18b621b46dee498a285a8",
  6868. "imports": [
  6869. {
  6870. "value": "cc"
  6871. },
  6872. {
  6873. "value": "cc"
  6874. },
  6875. {
  6876. "value": "cc",
  6877. "loc": {
  6878. "start": {
  6879. "line": 1,
  6880. "column": 60
  6881. },
  6882. "end": {
  6883. "line": 1,
  6884. "column": 64
  6885. }
  6886. }
  6887. }
  6888. ],
  6889. "type": "esm",
  6890. "resolutions": [
  6891. {
  6892. "resolved": {
  6893. "type": "module",
  6894. "url": "cce:/internal/x/cc"
  6895. },
  6896. "messages": []
  6897. },
  6898. {
  6899. "resolved": {
  6900. "type": "module",
  6901. "url": "cce:/internal/x/cc"
  6902. },
  6903. "messages": []
  6904. },
  6905. {
  6906. "resolved": {
  6907. "type": "module",
  6908. "url": "cce:/internal/x/cc"
  6909. },
  6910. "messages": []
  6911. }
  6912. ]
  6913. },
  6914. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/start/Start.ts": {
  6915. "mTimestamp": {
  6916. "mtime": 1736764599326.1626,
  6917. "uuid": "66e16dc6-c667-43a7-b91a-82ea83bd3565"
  6918. },
  6919. "chunkId": "41297756668c0510f828032e1d12f96a4d1a9194",
  6920. "imports": [
  6921. {
  6922. "value": "cce:/internal/code-quality/cr.mjs",
  6923. "resolved": "__unresolved_0"
  6924. },
  6925. {
  6926. "value": "cc"
  6927. },
  6928. {
  6929. "value": "cc"
  6930. },
  6931. {
  6932. "value": "cc",
  6933. "loc": {
  6934. "start": {
  6935. "line": 1,
  6936. "column": 75
  6937. },
  6938. "end": {
  6939. "line": 1,
  6940. "column": 79
  6941. }
  6942. }
  6943. },
  6944. {
  6945. "value": "../ch/ch",
  6946. "resolved": "__unresolved_1",
  6947. "loc": {
  6948. "start": {
  6949. "line": 2,
  6950. "column": 19
  6951. },
  6952. "end": {
  6953. "line": 2,
  6954. "column": 29
  6955. }
  6956. }
  6957. },
  6958. {
  6959. "value": "../core/ui/ui",
  6960. "resolved": "__unresolved_2",
  6961. "loc": {
  6962. "start": {
  6963. "line": 3,
  6964. "column": 20
  6965. },
  6966. "end": {
  6967. "line": 3,
  6968. "column": 35
  6969. }
  6970. }
  6971. },
  6972. {
  6973. "value": "../ch/start/ch_start_pack",
  6974. "resolved": "__unresolved_3",
  6975. "loc": {
  6976. "start": {
  6977. "line": 4,
  6978. "column": 30
  6979. },
  6980. "end": {
  6981. "line": 4,
  6982. "column": 57
  6983. }
  6984. }
  6985. },
  6986. {
  6987. "value": "../core/util/ResUtil",
  6988. "resolved": "__unresolved_4",
  6989. "loc": {
  6990. "start": {
  6991. "line": 5,
  6992. "column": 24
  6993. },
  6994. "end": {
  6995. "line": 5,
  6996. "column": 46
  6997. }
  6998. }
  6999. },
  7000. {
  7001. "value": "../Scripts/ModuleDef",
  7002. "resolved": "__unresolved_5",
  7003. "loc": {
  7004. "start": {
  7005. "line": 6,
  7006. "column": 26
  7007. },
  7008. "end": {
  7009. "line": 6,
  7010. "column": 48
  7011. }
  7012. }
  7013. },
  7014. {
  7015. "value": "../Scripts/SceneDef",
  7016. "resolved": "__unresolved_6",
  7017. "loc": {
  7018. "start": {
  7019. "line": 7,
  7020. "column": 25
  7021. },
  7022. "end": {
  7023. "line": 7,
  7024. "column": 46
  7025. }
  7026. }
  7027. },
  7028. {
  7029. "value": "../core/util/TableLoadUtil",
  7030. "resolved": "__unresolved_7",
  7031. "loc": {
  7032. "start": {
  7033. "line": 8,
  7034. "column": 26
  7035. },
  7036. "end": {
  7037. "line": 8,
  7038. "column": 54
  7039. }
  7040. }
  7041. },
  7042. {
  7043. "value": "../module_extra/table_ts/TableUtil",
  7044. "resolved": "__unresolved_8",
  7045. "loc": {
  7046. "start": {
  7047. "line": 9,
  7048. "column": 26
  7049. },
  7050. "end": {
  7051. "line": 9,
  7052. "column": 62
  7053. }
  7054. }
  7055. }
  7056. ],
  7057. "type": "esm",
  7058. "resolutions": [
  7059. {
  7060. "resolved": {
  7061. "type": "module",
  7062. "url": "cce:/internal/code-quality/cr.mjs"
  7063. },
  7064. "messages": []
  7065. },
  7066. {
  7067. "resolved": {
  7068. "type": "module",
  7069. "url": "cce:/internal/x/cc"
  7070. },
  7071. "messages": []
  7072. },
  7073. {
  7074. "resolved": {
  7075. "type": "module",
  7076. "url": "cce:/internal/x/cc"
  7077. },
  7078. "messages": []
  7079. },
  7080. {
  7081. "resolved": {
  7082. "type": "module",
  7083. "url": "cce:/internal/x/cc"
  7084. },
  7085. "messages": []
  7086. },
  7087. {
  7088. "resolved": {
  7089. "type": "module",
  7090. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/ch.ts"
  7091. },
  7092. "messages": []
  7093. },
  7094. {
  7095. "resolved": {
  7096. "type": "module",
  7097. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts"
  7098. },
  7099. "messages": []
  7100. },
  7101. {
  7102. "resolved": {
  7103. "type": "module",
  7104. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/start/ch_start_pack.ts"
  7105. },
  7106. "messages": []
  7107. },
  7108. {
  7109. "resolved": {
  7110. "type": "module",
  7111. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/ResUtil.ts"
  7112. },
  7113. "messages": []
  7114. },
  7115. {
  7116. "resolved": {
  7117. "type": "module",
  7118. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/ModuleDef.ts"
  7119. },
  7120. "messages": []
  7121. },
  7122. {
  7123. "resolved": {
  7124. "type": "module",
  7125. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/SceneDef.ts"
  7126. },
  7127. "messages": []
  7128. },
  7129. {
  7130. "resolved": {
  7131. "type": "module",
  7132. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/TableLoadUtil.ts"
  7133. },
  7134. "messages": []
  7135. },
  7136. {
  7137. "resolved": {
  7138. "type": "module",
  7139. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_extra/table_ts/TableUtil.ts"
  7140. },
  7141. "messages": []
  7142. }
  7143. ]
  7144. },
  7145. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/start/ch_start_pack.ts": {
  7146. "mTimestamp": {
  7147. "mtime": 1735977472000,
  7148. "uuid": "4aa6336e-6ee2-49a8-b6a4-7011475e21d5"
  7149. },
  7150. "chunkId": "31f21e9610b2e754c9705fb8b4947b7629eba3ec",
  7151. "imports": [
  7152. {
  7153. "value": "cce:/internal/code-quality/cr.mjs",
  7154. "resolved": "__unresolved_0"
  7155. },
  7156. {
  7157. "value": "cc"
  7158. },
  7159. {
  7160. "value": "cc"
  7161. },
  7162. {
  7163. "value": "cc",
  7164. "loc": {
  7165. "start": {
  7166. "line": 1,
  7167. "column": 60
  7168. },
  7169. "end": {
  7170. "line": 1,
  7171. "column": 64
  7172. }
  7173. }
  7174. },
  7175. {
  7176. "value": "../ch",
  7177. "resolved": "__unresolved_1",
  7178. "loc": {
  7179. "start": {
  7180. "line": 2,
  7181. "column": 19
  7182. },
  7183. "end": {
  7184. "line": 2,
  7185. "column": 26
  7186. }
  7187. }
  7188. },
  7189. {
  7190. "value": "../audio/audio",
  7191. "resolved": "__unresolved_2",
  7192. "loc": {
  7193. "start": {
  7194. "line": 3,
  7195. "column": 25
  7196. },
  7197. "end": {
  7198. "line": 3,
  7199. "column": 41
  7200. }
  7201. }
  7202. },
  7203. {
  7204. "value": "./ch_sdk_comp",
  7205. "resolved": "__unresolved_3",
  7206. "loc": {
  7207. "start": {
  7208. "line": 4,
  7209. "column": 28
  7210. },
  7211. "end": {
  7212. "line": 4,
  7213. "column": 43
  7214. }
  7215. }
  7216. }
  7217. ],
  7218. "type": "esm",
  7219. "resolutions": [
  7220. {
  7221. "resolved": {
  7222. "type": "module",
  7223. "url": "cce:/internal/code-quality/cr.mjs"
  7224. },
  7225. "messages": []
  7226. },
  7227. {
  7228. "resolved": {
  7229. "type": "module",
  7230. "url": "cce:/internal/x/cc"
  7231. },
  7232. "messages": []
  7233. },
  7234. {
  7235. "resolved": {
  7236. "type": "module",
  7237. "url": "cce:/internal/x/cc"
  7238. },
  7239. "messages": []
  7240. },
  7241. {
  7242. "resolved": {
  7243. "type": "module",
  7244. "url": "cce:/internal/x/cc"
  7245. },
  7246. "messages": []
  7247. },
  7248. {
  7249. "resolved": {
  7250. "type": "module",
  7251. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/ch.ts"
  7252. },
  7253. "messages": []
  7254. },
  7255. {
  7256. "resolved": {
  7257. "type": "module",
  7258. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/audio/audio.ts"
  7259. },
  7260. "messages": []
  7261. },
  7262. {
  7263. "resolved": {
  7264. "type": "module",
  7265. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/start/ch_sdk_comp.ts"
  7266. },
  7267. "messages": []
  7268. }
  7269. ]
  7270. },
  7271. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/start/ch_sdk_comp.ts": {
  7272. "mTimestamp": {
  7273. "mtime": 1735977472000,
  7274. "uuid": "9a64d7da-d484-4f93-9510-4c2cbd5b1462"
  7275. },
  7276. "chunkId": "d72ce35042ce99e7f64ae289f73e61427ebc5661",
  7277. "imports": [
  7278. {
  7279. "value": "cc"
  7280. },
  7281. {
  7282. "value": "cc"
  7283. },
  7284. {
  7285. "value": "cc",
  7286. "loc": {
  7287. "start": {
  7288. "line": 1,
  7289. "column": 56
  7290. },
  7291. "end": {
  7292. "line": 1,
  7293. "column": 60
  7294. }
  7295. }
  7296. }
  7297. ],
  7298. "type": "esm",
  7299. "resolutions": [
  7300. {
  7301. "resolved": {
  7302. "type": "module",
  7303. "url": "cce:/internal/x/cc"
  7304. },
  7305. "messages": []
  7306. },
  7307. {
  7308. "resolved": {
  7309. "type": "module",
  7310. "url": "cce:/internal/x/cc"
  7311. },
  7312. "messages": []
  7313. },
  7314. {
  7315. "resolved": {
  7316. "type": "module",
  7317. "url": "cce:/internal/x/cc"
  7318. },
  7319. "messages": []
  7320. }
  7321. ]
  7322. },
  7323. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/TableLoadUtil.ts": {
  7324. "mTimestamp": {
  7325. "mtime": 1726882414000,
  7326. "uuid": "0d2ab41a-5985-4b3e-9b57-88553af5262f"
  7327. },
  7328. "chunkId": "5f2f6a92220c5db32fcbda8a7cebb9363c896da3",
  7329. "imports": [
  7330. {
  7331. "value": "cc"
  7332. },
  7333. {
  7334. "value": "cc"
  7335. },
  7336. {
  7337. "value": "cc",
  7338. "loc": {
  7339. "start": {
  7340. "line": 1,
  7341. "column": 50
  7342. },
  7343. "end": {
  7344. "line": 1,
  7345. "column": 54
  7346. }
  7347. }
  7348. }
  7349. ],
  7350. "type": "esm",
  7351. "resolutions": [
  7352. {
  7353. "resolved": {
  7354. "type": "module",
  7355. "url": "cce:/internal/x/cc"
  7356. },
  7357. "messages": []
  7358. },
  7359. {
  7360. "resolved": {
  7361. "type": "module",
  7362. "url": "cce:/internal/x/cc"
  7363. },
  7364. "messages": []
  7365. },
  7366. {
  7367. "resolved": {
  7368. "type": "module",
  7369. "url": "cce:/internal/x/cc"
  7370. },
  7371. "messages": []
  7372. }
  7373. ]
  7374. },
  7375. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_extra/table_ts/TableUtil.ts": {
  7376. "mTimestamp": {
  7377. "mtime": 1735978960000,
  7378. "uuid": "182a49fa-1ee7-4f56-afb1-6941fe6ad7ff"
  7379. },
  7380. "chunkId": "09a6fd4930dfcb5968a1b01550a6275640cfa703",
  7381. "imports": [
  7382. {
  7383. "value": "cc"
  7384. }
  7385. ],
  7386. "type": "esm",
  7387. "resolutions": [
  7388. {
  7389. "resolved": {
  7390. "type": "module",
  7391. "url": "cce:/internal/x/cc"
  7392. },
  7393. "messages": []
  7394. }
  7395. ]
  7396. },
  7397. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/HeadIcon.ts": {
  7398. "mTimestamp": {
  7399. "mtime": 1735977722000,
  7400. "uuid": "e8ef16c6-dcb8-4183-bfcf-be5a3252b0c3"
  7401. },
  7402. "chunkId": "815a8e3b66559b0d1265c7b789166062c8861bd5",
  7403. "imports": [
  7404. {
  7405. "value": "cce:/internal/code-quality/cr.mjs",
  7406. "resolved": "__unresolved_0"
  7407. },
  7408. {
  7409. "value": "cc"
  7410. },
  7411. {
  7412. "value": "cc"
  7413. },
  7414. {
  7415. "value": "../../ch/ch",
  7416. "resolved": "__unresolved_1",
  7417. "loc": {
  7418. "start": {
  7419. "line": 2,
  7420. "column": 19
  7421. },
  7422. "end": {
  7423. "line": 2,
  7424. "column": 32
  7425. }
  7426. }
  7427. }
  7428. ],
  7429. "type": "esm",
  7430. "resolutions": [
  7431. {
  7432. "resolved": {
  7433. "type": "module",
  7434. "url": "cce:/internal/code-quality/cr.mjs"
  7435. },
  7436. "messages": []
  7437. },
  7438. {
  7439. "resolved": {
  7440. "type": "module",
  7441. "url": "cce:/internal/x/cc"
  7442. },
  7443. "messages": []
  7444. },
  7445. {
  7446. "resolved": {
  7447. "type": "module",
  7448. "url": "cce:/internal/x/cc"
  7449. },
  7450. "messages": []
  7451. },
  7452. {
  7453. "resolved": {
  7454. "type": "module",
  7455. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/ch.ts"
  7456. },
  7457. "messages": []
  7458. }
  7459. ]
  7460. },
  7461. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_waiting/UIWaiting.ts": {
  7462. "mTimestamp": {
  7463. "mtime": 1724230080000,
  7464. "uuid": "0dda6990-3427-42a3-9190-f79f6a17f0db"
  7465. },
  7466. "chunkId": "9d6b2307e211bf7d71fb96955f3a221662b8b975",
  7467. "imports": [
  7468. {
  7469. "value": "cce:/internal/code-quality/cr.mjs",
  7470. "resolved": "__unresolved_0"
  7471. },
  7472. {
  7473. "value": "cc"
  7474. },
  7475. {
  7476. "value": "../../core/ui/ui",
  7477. "resolved": "__unresolved_1",
  7478. "loc": {
  7479. "start": {
  7480. "line": 2,
  7481. "column": 43
  7482. },
  7483. "end": {
  7484. "line": 2,
  7485. "column": 61
  7486. }
  7487. }
  7488. },
  7489. {
  7490. "value": "../../scripts/ModuleDef",
  7491. "resolved": "__unresolved_2",
  7492. "loc": {
  7493. "start": {
  7494. "line": 3,
  7495. "column": 26
  7496. },
  7497. "end": {
  7498. "line": 3,
  7499. "column": 51
  7500. }
  7501. }
  7502. },
  7503. {
  7504. "value": "./Layout_UIWaiting",
  7505. "resolved": "__unresolved_3",
  7506. "loc": {
  7507. "start": {
  7508. "line": 4,
  7509. "column": 33
  7510. },
  7511. "end": {
  7512. "line": 4,
  7513. "column": 53
  7514. }
  7515. }
  7516. }
  7517. ],
  7518. "type": "esm",
  7519. "resolutions": [
  7520. {
  7521. "resolved": {
  7522. "type": "module",
  7523. "url": "cce:/internal/code-quality/cr.mjs"
  7524. },
  7525. "messages": []
  7526. },
  7527. {
  7528. "resolved": {
  7529. "type": "module",
  7530. "url": "cce:/internal/x/cc"
  7531. },
  7532. "messages": []
  7533. },
  7534. {
  7535. "resolved": {
  7536. "type": "module",
  7537. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts"
  7538. },
  7539. "messages": []
  7540. },
  7541. {
  7542. "resolved": {
  7543. "type": "module",
  7544. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/scripts/ModuleDef.ts"
  7545. },
  7546. "messages": []
  7547. },
  7548. {
  7549. "resolved": {
  7550. "type": "module",
  7551. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_waiting/Layout_UIWaiting.ts"
  7552. },
  7553. "messages": []
  7554. }
  7555. ]
  7556. },
  7557. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/scripts/ModuleDef.ts": {
  7558. "mTimestamp": 1735975674000,
  7559. "chunkId": "b71ec6998eef381fede6b5fd1614855829fc2f22",
  7560. "imports": [],
  7561. "type": "esm",
  7562. "resolutions": []
  7563. },
  7564. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_waiting/Layout_UIWaiting.ts": {
  7565. "mTimestamp": {
  7566. "mtime": 1723621190000,
  7567. "uuid": "cf09698a-2b2a-4173-904e-cb5d62fb9346"
  7568. },
  7569. "chunkId": "c307a58b694cc824581802a8099e6d62860adb91",
  7570. "imports": [
  7571. {
  7572. "value": "cc"
  7573. },
  7574. {
  7575. "value": "cc"
  7576. },
  7577. {
  7578. "value": "cc",
  7579. "loc": {
  7580. "start": {
  7581. "line": 1,
  7582. "column": 51
  7583. },
  7584. "end": {
  7585. "line": 1,
  7586. "column": 55
  7587. }
  7588. }
  7589. }
  7590. ],
  7591. "type": "esm",
  7592. "resolutions": [
  7593. {
  7594. "resolved": {
  7595. "type": "module",
  7596. "url": "cce:/internal/x/cc"
  7597. },
  7598. "messages": []
  7599. },
  7600. {
  7601. "resolved": {
  7602. "type": "module",
  7603. "url": "cce:/internal/x/cc"
  7604. },
  7605. "messages": []
  7606. },
  7607. {
  7608. "resolved": {
  7609. "type": "module",
  7610. "url": "cce:/internal/x/cc"
  7611. },
  7612. "messages": []
  7613. }
  7614. ]
  7615. },
  7616. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts": {
  7617. "mTimestamp": {
  7618. "mtime": 1736762955897.204,
  7619. "uuid": "0aee2a33-23ab-42f7-9652-56a04e975c2c"
  7620. },
  7621. "chunkId": "28edf65eb8d20daf82fac5a67080212e26e054c8",
  7622. "imports": [
  7623. {
  7624. "value": "cce:/internal/code-quality/cr.mjs",
  7625. "resolved": "__unresolved_0"
  7626. },
  7627. {
  7628. "value": "cc"
  7629. },
  7630. {
  7631. "value": "cc"
  7632. },
  7633. {
  7634. "value": "cc",
  7635. "loc": {
  7636. "start": {
  7637. "line": 1,
  7638. "column": 27
  7639. },
  7640. "end": {
  7641. "line": 1,
  7642. "column": 31
  7643. }
  7644. }
  7645. },
  7646. {
  7647. "value": "../../../ch/sign/sign",
  7648. "resolved": "__unresolved_1",
  7649. "loc": {
  7650. "start": {
  7651. "line": 2,
  7652. "column": 20
  7653. },
  7654. "end": {
  7655. "line": 2,
  7656. "column": 43
  7657. }
  7658. }
  7659. },
  7660. {
  7661. "value": "../../../core/ui/ui",
  7662. "resolved": "__unresolved_2",
  7663. "loc": {
  7664. "start": {
  7665. "line": 3,
  7666. "column": 34
  7667. },
  7668. "end": {
  7669. "line": 3,
  7670. "column": 55
  7671. }
  7672. }
  7673. },
  7674. {
  7675. "value": "../../../core/ui/ui_base",
  7676. "resolved": "__unresolved_3",
  7677. "loc": {
  7678. "start": {
  7679. "line": 4,
  7680. "column": 20
  7681. },
  7682. "end": {
  7683. "line": 4,
  7684. "column": 46
  7685. }
  7686. }
  7687. },
  7688. {
  7689. "value": "../../../module_basic/ui_notify/UINotify",
  7690. "resolved": "__unresolved_4",
  7691. "loc": {
  7692. "start": {
  7693. "line": 5,
  7694. "column": 25
  7695. },
  7696. "end": {
  7697. "line": 5,
  7698. "column": 67
  7699. }
  7700. }
  7701. },
  7702. {
  7703. "value": "../../../Scripts/Hall",
  7704. "resolved": "__unresolved_5",
  7705. "loc": {
  7706. "start": {
  7707. "line": 6,
  7708. "column": 21
  7709. },
  7710. "end": {
  7711. "line": 6,
  7712. "column": 44
  7713. }
  7714. }
  7715. },
  7716. {
  7717. "value": "../../../Scripts/ModuleDef",
  7718. "resolved": "__unresolved_6",
  7719. "loc": {
  7720. "start": {
  7721. "line": 7,
  7722. "column": 26
  7723. },
  7724. "end": {
  7725. "line": 7,
  7726. "column": 54
  7727. }
  7728. }
  7729. },
  7730. {
  7731. "value": "../UI_Main/UI_Main",
  7732. "resolved": "__unresolved_7",
  7733. "loc": {
  7734. "start": {
  7735. "line": 8,
  7736. "column": 23
  7737. },
  7738. "end": {
  7739. "line": 8,
  7740. "column": 43
  7741. }
  7742. }
  7743. },
  7744. {
  7745. "value": "./Layout_Sign",
  7746. "resolved": "__unresolved_8",
  7747. "loc": {
  7748. "start": {
  7749. "line": 9,
  7750. "column": 28
  7751. },
  7752. "end": {
  7753. "line": 9,
  7754. "column": 43
  7755. }
  7756. }
  7757. }
  7758. ],
  7759. "type": "esm",
  7760. "resolutions": [
  7761. {
  7762. "resolved": {
  7763. "type": "module",
  7764. "url": "cce:/internal/code-quality/cr.mjs"
  7765. },
  7766. "messages": []
  7767. },
  7768. {
  7769. "resolved": {
  7770. "type": "module",
  7771. "url": "cce:/internal/x/cc"
  7772. },
  7773. "messages": []
  7774. },
  7775. {
  7776. "resolved": {
  7777. "type": "module",
  7778. "url": "cce:/internal/x/cc"
  7779. },
  7780. "messages": []
  7781. },
  7782. {
  7783. "resolved": {
  7784. "type": "module",
  7785. "url": "cce:/internal/x/cc"
  7786. },
  7787. "messages": []
  7788. },
  7789. {
  7790. "resolved": {
  7791. "type": "module",
  7792. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/sign/sign.ts"
  7793. },
  7794. "messages": []
  7795. },
  7796. {
  7797. "resolved": {
  7798. "type": "module",
  7799. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts"
  7800. },
  7801. "messages": []
  7802. },
  7803. {
  7804. "resolved": {
  7805. "type": "module",
  7806. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui_base.ts"
  7807. },
  7808. "messages": []
  7809. },
  7810. {
  7811. "resolved": {
  7812. "type": "module",
  7813. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_notify/UINotify.ts"
  7814. },
  7815. "messages": []
  7816. },
  7817. {
  7818. "resolved": {
  7819. "type": "module",
  7820. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Hall.ts"
  7821. },
  7822. "messages": []
  7823. },
  7824. {
  7825. "resolved": {
  7826. "type": "module",
  7827. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/ModuleDef.ts"
  7828. },
  7829. "messages": []
  7830. },
  7831. {
  7832. "resolved": {
  7833. "type": "module",
  7834. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts"
  7835. },
  7836. "messages": []
  7837. },
  7838. {
  7839. "resolved": {
  7840. "type": "module",
  7841. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Layout_Sign.ts"
  7842. },
  7843. "messages": []
  7844. }
  7845. ]
  7846. },
  7847. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Layout_Sign.ts": {
  7848. "mTimestamp": {
  7849. "mtime": 1736755493325.1265,
  7850. "uuid": "f3b5d41d-75ed-4c19-bd81-818116cf437d"
  7851. },
  7852. "chunkId": "7e7ab0c417629d8b4decc7970b158f69484ca3a0",
  7853. "imports": [
  7854. {
  7855. "value": "cce:/internal/code-quality/cr.mjs",
  7856. "resolved": "__unresolved_0"
  7857. },
  7858. {
  7859. "value": "cc"
  7860. },
  7861. {
  7862. "value": "cc"
  7863. },
  7864. {
  7865. "value": "cc",
  7866. "loc": {
  7867. "start": {
  7868. "line": 1,
  7869. "column": 60
  7870. },
  7871. "end": {
  7872. "line": 1,
  7873. "column": 64
  7874. }
  7875. }
  7876. },
  7877. {
  7878. "value": "./Sign_Reward",
  7879. "resolved": "__unresolved_1",
  7880. "loc": {
  7881. "start": {
  7882. "line": 2,
  7883. "column": 28
  7884. },
  7885. "end": {
  7886. "line": 2,
  7887. "column": 43
  7888. }
  7889. }
  7890. }
  7891. ],
  7892. "type": "esm",
  7893. "resolutions": [
  7894. {
  7895. "resolved": {
  7896. "type": "module",
  7897. "url": "cce:/internal/code-quality/cr.mjs"
  7898. },
  7899. "messages": []
  7900. },
  7901. {
  7902. "resolved": {
  7903. "type": "module",
  7904. "url": "cce:/internal/x/cc"
  7905. },
  7906. "messages": []
  7907. },
  7908. {
  7909. "resolved": {
  7910. "type": "module",
  7911. "url": "cce:/internal/x/cc"
  7912. },
  7913. "messages": []
  7914. },
  7915. {
  7916. "resolved": {
  7917. "type": "module",
  7918. "url": "cce:/internal/x/cc"
  7919. },
  7920. "messages": []
  7921. },
  7922. {
  7923. "resolved": {
  7924. "type": "module",
  7925. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Sign_Reward.ts"
  7926. },
  7927. "messages": []
  7928. }
  7929. ]
  7930. },
  7931. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Sign_Reward.ts": {
  7932. "mTimestamp": {
  7933. "mtime": 1736756062142.2437,
  7934. "uuid": "e331ea7b-24c7-406f-9576-00fafed4b728"
  7935. },
  7936. "chunkId": "4b736ecb9c777512e2deca84bf06782f772c5a85",
  7937. "imports": [
  7938. {
  7939. "value": "cce:/internal/code-quality/cr.mjs",
  7940. "resolved": "__unresolved_0"
  7941. },
  7942. {
  7943. "value": "cc"
  7944. },
  7945. {
  7946. "value": "cc"
  7947. },
  7948. {
  7949. "value": "cc",
  7950. "loc": {
  7951. "start": {
  7952. "line": 1,
  7953. "column": 44
  7954. },
  7955. "end": {
  7956. "line": 1,
  7957. "column": 48
  7958. }
  7959. }
  7960. },
  7961. {
  7962. "value": "db://assets/ch/sign/sign",
  7963. "resolved": "__unresolved_1",
  7964. "loc": {
  7965. "start": {
  7966. "line": 2,
  7967. "column": 20
  7968. },
  7969. "end": {
  7970. "line": 2,
  7971. "column": 46
  7972. }
  7973. }
  7974. },
  7975. {
  7976. "value": "db://assets/module_basic/ui_notify/UINotify",
  7977. "resolved": "__unresolved_2",
  7978. "loc": {
  7979. "start": {
  7980. "line": 3,
  7981. "column": 25
  7982. },
  7983. "end": {
  7984. "line": 3,
  7985. "column": 70
  7986. }
  7987. }
  7988. },
  7989. {
  7990. "value": "db://assets/Scripts/Hall",
  7991. "resolved": "__unresolved_3",
  7992. "loc": {
  7993. "start": {
  7994. "line": 4,
  7995. "column": 21
  7996. },
  7997. "end": {
  7998. "line": 4,
  7999. "column": 47
  8000. }
  8001. }
  8002. }
  8003. ],
  8004. "type": "esm",
  8005. "resolutions": [
  8006. {
  8007. "resolved": {
  8008. "type": "module",
  8009. "url": "cce:/internal/code-quality/cr.mjs"
  8010. },
  8011. "messages": []
  8012. },
  8013. {
  8014. "resolved": {
  8015. "type": "module",
  8016. "url": "cce:/internal/x/cc"
  8017. },
  8018. "messages": []
  8019. },
  8020. {
  8021. "resolved": {
  8022. "type": "module",
  8023. "url": "cce:/internal/x/cc"
  8024. },
  8025. "messages": []
  8026. },
  8027. {
  8028. "resolved": {
  8029. "type": "module",
  8030. "url": "cce:/internal/x/cc"
  8031. },
  8032. "messages": []
  8033. },
  8034. {
  8035. "resolved": {
  8036. "type": "module",
  8037. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/sign/sign.ts"
  8038. },
  8039. "messages": []
  8040. },
  8041. {
  8042. "resolved": {
  8043. "type": "module",
  8044. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_notify/UINotify.ts"
  8045. },
  8046. "messages": []
  8047. },
  8048. {
  8049. "resolved": {
  8050. "type": "module",
  8051. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Hall.ts"
  8052. },
  8053. "messages": []
  8054. }
  8055. ]
  8056. },
  8057. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Invite/UI_Invite.ts": {
  8058. "mTimestamp": {
  8059. "mtime": 1736762966544.8394,
  8060. "uuid": "35c7ba6e-9329-43fc-9381-f4b3a62abe31"
  8061. },
  8062. "chunkId": "73e6dc2a8fc59081071dcebb82927640ef5a7f21",
  8063. "imports": [
  8064. {
  8065. "value": "cce:/internal/code-quality/cr.mjs",
  8066. "resolved": "__unresolved_0"
  8067. },
  8068. {
  8069. "value": "cc"
  8070. },
  8071. {
  8072. "value": "cc"
  8073. },
  8074. {
  8075. "value": "cc",
  8076. "loc": {
  8077. "start": {
  8078. "line": 1,
  8079. "column": 27
  8080. },
  8081. "end": {
  8082. "line": 1,
  8083. "column": 31
  8084. }
  8085. }
  8086. },
  8087. {
  8088. "value": "../../../core/ui/ui",
  8089. "resolved": "__unresolved_1",
  8090. "loc": {
  8091. "start": {
  8092. "line": 2,
  8093. "column": 34
  8094. },
  8095. "end": {
  8096. "line": 2,
  8097. "column": 55
  8098. }
  8099. }
  8100. },
  8101. {
  8102. "value": "../../../core/ui/ui_base",
  8103. "resolved": "__unresolved_2",
  8104. "loc": {
  8105. "start": {
  8106. "line": 3,
  8107. "column": 20
  8108. },
  8109. "end": {
  8110. "line": 3,
  8111. "column": 46
  8112. }
  8113. }
  8114. },
  8115. {
  8116. "value": "../../../Scripts/ModuleDef",
  8117. "resolved": "__unresolved_3",
  8118. "loc": {
  8119. "start": {
  8120. "line": 4,
  8121. "column": 26
  8122. },
  8123. "end": {
  8124. "line": 4,
  8125. "column": 54
  8126. }
  8127. }
  8128. },
  8129. {
  8130. "value": "../UI_Main/UI_Main",
  8131. "resolved": "__unresolved_4",
  8132. "loc": {
  8133. "start": {
  8134. "line": 5,
  8135. "column": 23
  8136. },
  8137. "end": {
  8138. "line": 5,
  8139. "column": 43
  8140. }
  8141. }
  8142. },
  8143. {
  8144. "value": "./Layout_Invite",
  8145. "resolved": "__unresolved_5",
  8146. "loc": {
  8147. "start": {
  8148. "line": 6,
  8149. "column": 30
  8150. },
  8151. "end": {
  8152. "line": 6,
  8153. "column": 47
  8154. }
  8155. }
  8156. }
  8157. ],
  8158. "type": "esm",
  8159. "resolutions": [
  8160. {
  8161. "resolved": {
  8162. "type": "module",
  8163. "url": "cce:/internal/code-quality/cr.mjs"
  8164. },
  8165. "messages": []
  8166. },
  8167. {
  8168. "resolved": {
  8169. "type": "module",
  8170. "url": "cce:/internal/x/cc"
  8171. },
  8172. "messages": []
  8173. },
  8174. {
  8175. "resolved": {
  8176. "type": "module",
  8177. "url": "cce:/internal/x/cc"
  8178. },
  8179. "messages": []
  8180. },
  8181. {
  8182. "resolved": {
  8183. "type": "module",
  8184. "url": "cce:/internal/x/cc"
  8185. },
  8186. "messages": []
  8187. },
  8188. {
  8189. "resolved": {
  8190. "type": "module",
  8191. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts"
  8192. },
  8193. "messages": []
  8194. },
  8195. {
  8196. "resolved": {
  8197. "type": "module",
  8198. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui_base.ts"
  8199. },
  8200. "messages": []
  8201. },
  8202. {
  8203. "resolved": {
  8204. "type": "module",
  8205. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/ModuleDef.ts"
  8206. },
  8207. "messages": []
  8208. },
  8209. {
  8210. "resolved": {
  8211. "type": "module",
  8212. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts"
  8213. },
  8214. "messages": []
  8215. },
  8216. {
  8217. "resolved": {
  8218. "type": "module",
  8219. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Invite/Layout_Invite.ts"
  8220. },
  8221. "messages": []
  8222. }
  8223. ]
  8224. },
  8225. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Invite/Layout_Invite.ts": {
  8226. "mTimestamp": {
  8227. "mtime": 1736582522264.9016,
  8228. "uuid": "85997f47-510f-48ad-9d70-d214fad3ba9b"
  8229. },
  8230. "chunkId": "648fcac29cbf9485ceab7e7d1359724ae2b1b196",
  8231. "imports": [
  8232. {
  8233. "value": "cc"
  8234. },
  8235. {
  8236. "value": "cc"
  8237. },
  8238. {
  8239. "value": "cc",
  8240. "loc": {
  8241. "start": {
  8242. "line": 1,
  8243. "column": 52
  8244. },
  8245. "end": {
  8246. "line": 1,
  8247. "column": 56
  8248. }
  8249. }
  8250. }
  8251. ],
  8252. "type": "esm",
  8253. "resolutions": [
  8254. {
  8255. "resolved": {
  8256. "type": "module",
  8257. "url": "cce:/internal/x/cc"
  8258. },
  8259. "messages": []
  8260. },
  8261. {
  8262. "resolved": {
  8263. "type": "module",
  8264. "url": "cce:/internal/x/cc"
  8265. },
  8266. "messages": []
  8267. },
  8268. {
  8269. "resolved": {
  8270. "type": "module",
  8271. "url": "cce:/internal/x/cc"
  8272. },
  8273. "messages": []
  8274. }
  8275. ]
  8276. },
  8277. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_GameRules/UI_GameRules.ts": {
  8278. "mTimestamp": {
  8279. "mtime": 1736762782543.7307,
  8280. "uuid": "72b78178-4fe4-4b01-9a77-e59ef69e8c1c"
  8281. },
  8282. "chunkId": "d4808bb291a6c1906241b46a992fa068602b87c7",
  8283. "imports": [
  8284. {
  8285. "value": "cce:/internal/code-quality/cr.mjs",
  8286. "resolved": "__unresolved_0"
  8287. },
  8288. {
  8289. "value": "cc"
  8290. },
  8291. {
  8292. "value": "cc"
  8293. },
  8294. {
  8295. "value": "cc",
  8296. "loc": {
  8297. "start": {
  8298. "line": 1,
  8299. "column": 27
  8300. },
  8301. "end": {
  8302. "line": 1,
  8303. "column": 31
  8304. }
  8305. }
  8306. },
  8307. {
  8308. "value": "../../../core/ui/ui",
  8309. "resolved": "__unresolved_1",
  8310. "loc": {
  8311. "start": {
  8312. "line": 2,
  8313. "column": 34
  8314. },
  8315. "end": {
  8316. "line": 2,
  8317. "column": 55
  8318. }
  8319. }
  8320. },
  8321. {
  8322. "value": "../../../core/ui/ui_base",
  8323. "resolved": "__unresolved_2",
  8324. "loc": {
  8325. "start": {
  8326. "line": 3,
  8327. "column": 20
  8328. },
  8329. "end": {
  8330. "line": 3,
  8331. "column": 46
  8332. }
  8333. }
  8334. },
  8335. {
  8336. "value": "../../../Scripts/ModuleDef",
  8337. "resolved": "__unresolved_3",
  8338. "loc": {
  8339. "start": {
  8340. "line": 4,
  8341. "column": 26
  8342. },
  8343. "end": {
  8344. "line": 4,
  8345. "column": 54
  8346. }
  8347. }
  8348. },
  8349. {
  8350. "value": "../UI_Main/UI_Main",
  8351. "resolved": "__unresolved_4",
  8352. "loc": {
  8353. "start": {
  8354. "line": 5,
  8355. "column": 23
  8356. },
  8357. "end": {
  8358. "line": 5,
  8359. "column": 43
  8360. }
  8361. }
  8362. },
  8363. {
  8364. "value": "./Layout_GameRules",
  8365. "resolved": "__unresolved_5",
  8366. "loc": {
  8367. "start": {
  8368. "line": 6,
  8369. "column": 33
  8370. },
  8371. "end": {
  8372. "line": 6,
  8373. "column": 53
  8374. }
  8375. }
  8376. }
  8377. ],
  8378. "type": "esm",
  8379. "resolutions": [
  8380. {
  8381. "resolved": {
  8382. "type": "module",
  8383. "url": "cce:/internal/code-quality/cr.mjs"
  8384. },
  8385. "messages": []
  8386. },
  8387. {
  8388. "resolved": {
  8389. "type": "module",
  8390. "url": "cce:/internal/x/cc"
  8391. },
  8392. "messages": []
  8393. },
  8394. {
  8395. "resolved": {
  8396. "type": "module",
  8397. "url": "cce:/internal/x/cc"
  8398. },
  8399. "messages": []
  8400. },
  8401. {
  8402. "resolved": {
  8403. "type": "module",
  8404. "url": "cce:/internal/x/cc"
  8405. },
  8406. "messages": []
  8407. },
  8408. {
  8409. "resolved": {
  8410. "type": "module",
  8411. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts"
  8412. },
  8413. "messages": []
  8414. },
  8415. {
  8416. "resolved": {
  8417. "type": "module",
  8418. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui_base.ts"
  8419. },
  8420. "messages": []
  8421. },
  8422. {
  8423. "resolved": {
  8424. "type": "module",
  8425. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/ModuleDef.ts"
  8426. },
  8427. "messages": []
  8428. },
  8429. {
  8430. "resolved": {
  8431. "type": "module",
  8432. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts"
  8433. },
  8434. "messages": []
  8435. },
  8436. {
  8437. "resolved": {
  8438. "type": "module",
  8439. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_GameRules/Layout_GameRules.ts"
  8440. },
  8441. "messages": []
  8442. }
  8443. ]
  8444. },
  8445. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_GameRules/Layout_GameRules.ts": {
  8446. "mTimestamp": {
  8447. "mtime": 1736762736380.679,
  8448. "uuid": "e612ca36-376a-45eb-9654-879e8a0fceb3"
  8449. },
  8450. "chunkId": "b968f7f08649c00a45a730a74c55b98d374e1ea3",
  8451. "imports": [
  8452. {
  8453. "value": "cc"
  8454. },
  8455. {
  8456. "value": "cc"
  8457. },
  8458. {
  8459. "value": "cc",
  8460. "loc": {
  8461. "start": {
  8462. "line": 1,
  8463. "column": 52
  8464. },
  8465. "end": {
  8466. "line": 1,
  8467. "column": 56
  8468. }
  8469. }
  8470. }
  8471. ],
  8472. "type": "esm",
  8473. "resolutions": [
  8474. {
  8475. "resolved": {
  8476. "type": "module",
  8477. "url": "cce:/internal/x/cc"
  8478. },
  8479. "messages": []
  8480. },
  8481. {
  8482. "resolved": {
  8483. "type": "module",
  8484. "url": "cce:/internal/x/cc"
  8485. },
  8486. "messages": []
  8487. },
  8488. {
  8489. "resolved": {
  8490. "type": "module",
  8491. "url": "cce:/internal/x/cc"
  8492. },
  8493. "messages": []
  8494. }
  8495. ]
  8496. },
  8497. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts": {
  8498. "mTimestamp": {
  8499. "mtime": 1736762572744.4246,
  8500. "uuid": "25964b75-4418-4a52-9eb3-4c83a7bb6479"
  8501. },
  8502. "chunkId": "fd567b6cff2bda101ea5067e96a8431f92b55a12",
  8503. "imports": [
  8504. {
  8505. "value": "cce:/internal/code-quality/cr.mjs",
  8506. "resolved": "__unresolved_0"
  8507. },
  8508. {
  8509. "value": "cc"
  8510. },
  8511. {
  8512. "value": "cc"
  8513. },
  8514. {
  8515. "value": "cc",
  8516. "loc": {
  8517. "start": {
  8518. "line": 1,
  8519. "column": 50
  8520. },
  8521. "end": {
  8522. "line": 1,
  8523. "column": 54
  8524. }
  8525. }
  8526. },
  8527. {
  8528. "value": "./Layout_Fail",
  8529. "resolved": "__unresolved_1",
  8530. "loc": {
  8531. "start": {
  8532. "line": 2,
  8533. "column": 28
  8534. },
  8535. "end": {
  8536. "line": 2,
  8537. "column": 43
  8538. }
  8539. }
  8540. },
  8541. {
  8542. "value": "../UI_Hall/UI_Hall",
  8543. "resolved": "__unresolved_2",
  8544. "loc": {
  8545. "start": {
  8546. "line": 4,
  8547. "column": 24
  8548. },
  8549. "end": {
  8550. "line": 4,
  8551. "column": 44
  8552. }
  8553. }
  8554. },
  8555. {
  8556. "value": "../../../core/ui/ui",
  8557. "resolved": "__unresolved_3",
  8558. "loc": {
  8559. "start": {
  8560. "line": 6,
  8561. "column": 34
  8562. },
  8563. "end": {
  8564. "line": 6,
  8565. "column": 55
  8566. }
  8567. }
  8568. },
  8569. {
  8570. "value": "../../../core/ui/ui_base",
  8571. "resolved": "__unresolved_4",
  8572. "loc": {
  8573. "start": {
  8574. "line": 7,
  8575. "column": 20
  8576. },
  8577. "end": {
  8578. "line": 7,
  8579. "column": 46
  8580. }
  8581. }
  8582. },
  8583. {
  8584. "value": "../../../core/util/ResUtil",
  8585. "resolved": "__unresolved_5",
  8586. "loc": {
  8587. "start": {
  8588. "line": 8,
  8589. "column": 24
  8590. },
  8591. "end": {
  8592. "line": 8,
  8593. "column": 52
  8594. }
  8595. }
  8596. },
  8597. {
  8598. "value": "../../../Scripts/Container_Manager",
  8599. "resolved": "__unresolved_6",
  8600. "loc": {
  8601. "start": {
  8602. "line": 9,
  8603. "column": 34
  8604. },
  8605. "end": {
  8606. "line": 9,
  8607. "column": 70
  8608. }
  8609. }
  8610. },
  8611. {
  8612. "value": "../../../Scripts/ModuleDef",
  8613. "resolved": "__unresolved_7",
  8614. "loc": {
  8615. "start": {
  8616. "line": 10,
  8617. "column": 26
  8618. },
  8619. "end": {
  8620. "line": 10,
  8621. "column": 54
  8622. }
  8623. }
  8624. },
  8625. {
  8626. "value": "../../../Scripts/SceneDef",
  8627. "resolved": "__unresolved_8",
  8628. "loc": {
  8629. "start": {
  8630. "line": 11,
  8631. "column": 25
  8632. },
  8633. "end": {
  8634. "line": 11,
  8635. "column": 52
  8636. }
  8637. }
  8638. }
  8639. ],
  8640. "type": "esm",
  8641. "resolutions": [
  8642. {
  8643. "resolved": {
  8644. "type": "module",
  8645. "url": "cce:/internal/code-quality/cr.mjs"
  8646. },
  8647. "messages": []
  8648. },
  8649. {
  8650. "resolved": {
  8651. "type": "module",
  8652. "url": "cce:/internal/x/cc"
  8653. },
  8654. "messages": []
  8655. },
  8656. {
  8657. "resolved": {
  8658. "type": "module",
  8659. "url": "cce:/internal/x/cc"
  8660. },
  8661. "messages": []
  8662. },
  8663. {
  8664. "resolved": {
  8665. "type": "module",
  8666. "url": "cce:/internal/x/cc"
  8667. },
  8668. "messages": []
  8669. },
  8670. {
  8671. "resolved": {
  8672. "type": "module",
  8673. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/Layout_Fail.ts"
  8674. },
  8675. "messages": []
  8676. },
  8677. {
  8678. "resolved": {
  8679. "type": "module",
  8680. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts"
  8681. },
  8682. "messages": []
  8683. },
  8684. {
  8685. "resolved": {
  8686. "type": "module",
  8687. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts"
  8688. },
  8689. "messages": []
  8690. },
  8691. {
  8692. "resolved": {
  8693. "type": "module",
  8694. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui_base.ts"
  8695. },
  8696. "messages": []
  8697. },
  8698. {
  8699. "resolved": {
  8700. "type": "module",
  8701. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/ResUtil.ts"
  8702. },
  8703. "messages": []
  8704. },
  8705. {
  8706. "resolved": {
  8707. "type": "module",
  8708. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Container_Manager.ts"
  8709. },
  8710. "messages": []
  8711. },
  8712. {
  8713. "resolved": {
  8714. "type": "module",
  8715. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/ModuleDef.ts"
  8716. },
  8717. "messages": []
  8718. },
  8719. {
  8720. "resolved": {
  8721. "type": "module",
  8722. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/SceneDef.ts"
  8723. },
  8724. "messages": []
  8725. }
  8726. ]
  8727. },
  8728. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/Layout_Fail.ts": {
  8729. "mTimestamp": {
  8730. "mtime": 1736762548741.952,
  8731. "uuid": "039656f6-6080-4203-a39c-cfdedbd8fe69"
  8732. },
  8733. "chunkId": "4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9",
  8734. "imports": [
  8735. {
  8736. "value": "cce:/internal/code-quality/cr.mjs",
  8737. "resolved": "__unresolved_0"
  8738. },
  8739. {
  8740. "value": "cc"
  8741. },
  8742. {
  8743. "value": "cc"
  8744. },
  8745. {
  8746. "value": "cc",
  8747. "loc": {
  8748. "start": {
  8749. "line": 1,
  8750. "column": 72
  8751. },
  8752. "end": {
  8753. "line": 1,
  8754. "column": 76
  8755. }
  8756. }
  8757. }
  8758. ],
  8759. "type": "esm",
  8760. "resolutions": [
  8761. {
  8762. "resolved": {
  8763. "type": "module",
  8764. "url": "cce:/internal/code-quality/cr.mjs"
  8765. },
  8766. "messages": []
  8767. },
  8768. {
  8769. "resolved": {
  8770. "type": "module",
  8771. "url": "cce:/internal/x/cc"
  8772. },
  8773. "messages": []
  8774. },
  8775. {
  8776. "resolved": {
  8777. "type": "module",
  8778. "url": "cce:/internal/x/cc"
  8779. },
  8780. "messages": []
  8781. },
  8782. {
  8783. "resolved": {
  8784. "type": "module",
  8785. "url": "cce:/internal/x/cc"
  8786. },
  8787. "messages": []
  8788. }
  8789. ]
  8790. },
  8791. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts": {
  8792. "mTimestamp": {
  8793. "mtime": 1736762922366.5366,
  8794. "uuid": "831426f2-4045-4818-af66-ffffdcd70ab6"
  8795. },
  8796. "chunkId": "99b535d8a2435b17b7a999d87ff3be42be0d89f6",
  8797. "imports": [
  8798. {
  8799. "value": "cce:/internal/code-quality/cr.mjs",
  8800. "resolved": "__unresolved_0"
  8801. },
  8802. {
  8803. "value": "cc"
  8804. },
  8805. {
  8806. "value": "cc"
  8807. },
  8808. {
  8809. "value": "cc",
  8810. "loc": {
  8811. "start": {
  8812. "line": 1,
  8813. "column": 33
  8814. },
  8815. "end": {
  8816. "line": 1,
  8817. "column": 37
  8818. }
  8819. }
  8820. },
  8821. {
  8822. "value": "../../../core/ui/ui",
  8823. "resolved": "__unresolved_1",
  8824. "loc": {
  8825. "start": {
  8826. "line": 2,
  8827. "column": 34
  8828. },
  8829. "end": {
  8830. "line": 2,
  8831. "column": 55
  8832. }
  8833. }
  8834. },
  8835. {
  8836. "value": "../../../core/ui/ui_base",
  8837. "resolved": "__unresolved_2",
  8838. "loc": {
  8839. "start": {
  8840. "line": 3,
  8841. "column": 20
  8842. },
  8843. "end": {
  8844. "line": 3,
  8845. "column": 46
  8846. }
  8847. }
  8848. },
  8849. {
  8850. "value": "../../../core/util/ResUtil",
  8851. "resolved": "__unresolved_3",
  8852. "loc": {
  8853. "start": {
  8854. "line": 4,
  8855. "column": 24
  8856. },
  8857. "end": {
  8858. "line": 4,
  8859. "column": 52
  8860. }
  8861. }
  8862. },
  8863. {
  8864. "value": "../../../Scripts/Container_Manager",
  8865. "resolved": "__unresolved_4",
  8866. "loc": {
  8867. "start": {
  8868. "line": 5,
  8869. "column": 34
  8870. },
  8871. "end": {
  8872. "line": 5,
  8873. "column": 70
  8874. }
  8875. }
  8876. },
  8877. {
  8878. "value": "../../../Scripts/ModuleDef",
  8879. "resolved": "__unresolved_5",
  8880. "loc": {
  8881. "start": {
  8882. "line": 6,
  8883. "column": 26
  8884. },
  8885. "end": {
  8886. "line": 6,
  8887. "column": 54
  8888. }
  8889. }
  8890. },
  8891. {
  8892. "value": "../../../Scripts/SceneDef",
  8893. "resolved": "__unresolved_6",
  8894. "loc": {
  8895. "start": {
  8896. "line": 7,
  8897. "column": 25
  8898. },
  8899. "end": {
  8900. "line": 7,
  8901. "column": 52
  8902. }
  8903. }
  8904. },
  8905. {
  8906. "value": "../UI_Hall/UI_Hall",
  8907. "resolved": "__unresolved_7",
  8908. "loc": {
  8909. "start": {
  8910. "line": 8,
  8911. "column": 24
  8912. },
  8913. "end": {
  8914. "line": 8,
  8915. "column": 44
  8916. }
  8917. }
  8918. },
  8919. {
  8920. "value": "../UI_Main/UI_Main",
  8921. "resolved": "__unresolved_8",
  8922. "loc": {
  8923. "start": {
  8924. "line": 9,
  8925. "column": 24
  8926. },
  8927. "end": {
  8928. "line": 9,
  8929. "column": 44
  8930. }
  8931. }
  8932. },
  8933. {
  8934. "value": "./Layout_Win",
  8935. "resolved": "__unresolved_9",
  8936. "loc": {
  8937. "start": {
  8938. "line": 10,
  8939. "column": 27
  8940. },
  8941. "end": {
  8942. "line": 10,
  8943. "column": 41
  8944. }
  8945. }
  8946. }
  8947. ],
  8948. "type": "esm",
  8949. "resolutions": [
  8950. {
  8951. "resolved": {
  8952. "type": "module",
  8953. "url": "cce:/internal/code-quality/cr.mjs"
  8954. },
  8955. "messages": []
  8956. },
  8957. {
  8958. "resolved": {
  8959. "type": "module",
  8960. "url": "cce:/internal/x/cc"
  8961. },
  8962. "messages": []
  8963. },
  8964. {
  8965. "resolved": {
  8966. "type": "module",
  8967. "url": "cce:/internal/x/cc"
  8968. },
  8969. "messages": []
  8970. },
  8971. {
  8972. "resolved": {
  8973. "type": "module",
  8974. "url": "cce:/internal/x/cc"
  8975. },
  8976. "messages": []
  8977. },
  8978. {
  8979. "resolved": {
  8980. "type": "module",
  8981. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts"
  8982. },
  8983. "messages": []
  8984. },
  8985. {
  8986. "resolved": {
  8987. "type": "module",
  8988. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui_base.ts"
  8989. },
  8990. "messages": []
  8991. },
  8992. {
  8993. "resolved": {
  8994. "type": "module",
  8995. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/ResUtil.ts"
  8996. },
  8997. "messages": []
  8998. },
  8999. {
  9000. "resolved": {
  9001. "type": "module",
  9002. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Container_Manager.ts"
  9003. },
  9004. "messages": []
  9005. },
  9006. {
  9007. "resolved": {
  9008. "type": "module",
  9009. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/ModuleDef.ts"
  9010. },
  9011. "messages": []
  9012. },
  9013. {
  9014. "resolved": {
  9015. "type": "module",
  9016. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/SceneDef.ts"
  9017. },
  9018. "messages": []
  9019. },
  9020. {
  9021. "resolved": {
  9022. "type": "module",
  9023. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts"
  9024. },
  9025. "messages": []
  9026. },
  9027. {
  9028. "resolved": {
  9029. "type": "module",
  9030. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts"
  9031. },
  9032. "messages": []
  9033. },
  9034. {
  9035. "resolved": {
  9036. "type": "module",
  9037. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/Layout_Win.ts"
  9038. },
  9039. "messages": []
  9040. }
  9041. ]
  9042. },
  9043. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/Layout_Win.ts": {
  9044. "mTimestamp": {
  9045. "mtime": 1736500520226.51,
  9046. "uuid": "50934b37-e6d3-401e-b32a-686791f69257"
  9047. },
  9048. "chunkId": "69d4c56dc1cba34d75bdea3a79331f3df0143ac2",
  9049. "imports": [
  9050. {
  9051. "value": "cce:/internal/code-quality/cr.mjs",
  9052. "resolved": "__unresolved_0"
  9053. },
  9054. {
  9055. "value": "cc"
  9056. },
  9057. {
  9058. "value": "cc"
  9059. },
  9060. {
  9061. "value": "cc",
  9062. "loc": {
  9063. "start": {
  9064. "line": 1,
  9065. "column": 52
  9066. },
  9067. "end": {
  9068. "line": 1,
  9069. "column": 56
  9070. }
  9071. }
  9072. }
  9073. ],
  9074. "type": "esm",
  9075. "resolutions": [
  9076. {
  9077. "resolved": {
  9078. "type": "module",
  9079. "url": "cce:/internal/code-quality/cr.mjs"
  9080. },
  9081. "messages": []
  9082. },
  9083. {
  9084. "resolved": {
  9085. "type": "module",
  9086. "url": "cce:/internal/x/cc"
  9087. },
  9088. "messages": []
  9089. },
  9090. {
  9091. "resolved": {
  9092. "type": "module",
  9093. "url": "cce:/internal/x/cc"
  9094. },
  9095. "messages": []
  9096. },
  9097. {
  9098. "resolved": {
  9099. "type": "module",
  9100. "url": "cce:/internal/x/cc"
  9101. },
  9102. "messages": []
  9103. }
  9104. ]
  9105. },
  9106. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts": {
  9107. "mTimestamp": {
  9108. "mtime": 1736763795838.0645,
  9109. "uuid": "efc87588-a3fa-4f8d-bbba-698279c280c1"
  9110. },
  9111. "chunkId": "789715a9ff1e6669695bc6f37f849347673e7936",
  9112. "imports": [
  9113. {
  9114. "value": "cce:/internal/code-quality/cr.mjs",
  9115. "resolved": "__unresolved_0"
  9116. },
  9117. {
  9118. "value": "cc"
  9119. },
  9120. {
  9121. "value": "cc"
  9122. },
  9123. {
  9124. "value": "cc",
  9125. "loc": {
  9126. "start": {
  9127. "line": 1,
  9128. "column": 149
  9129. },
  9130. "end": {
  9131. "line": 1,
  9132. "column": 153
  9133. }
  9134. }
  9135. },
  9136. {
  9137. "value": "./UI_Idiom",
  9138. "resolved": "__unresolved_1",
  9139. "loc": {
  9140. "start": {
  9141. "line": 2,
  9142. "column": 25
  9143. },
  9144. "end": {
  9145. "line": 2,
  9146. "column": 37
  9147. }
  9148. }
  9149. },
  9150. {
  9151. "value": "./Layout_Idioms",
  9152. "resolved": "__unresolved_2",
  9153. "loc": {
  9154. "start": {
  9155. "line": 3,
  9156. "column": 30
  9157. },
  9158. "end": {
  9159. "line": 3,
  9160. "column": 47
  9161. }
  9162. }
  9163. },
  9164. {
  9165. "value": "../../../core/ui/ui",
  9166. "resolved": "__unresolved_3",
  9167. "loc": {
  9168. "start": {
  9169. "line": 4,
  9170. "column": 29
  9171. },
  9172. "end": {
  9173. "line": 4,
  9174. "column": 50
  9175. }
  9176. }
  9177. },
  9178. {
  9179. "value": "../../../core/ui/ui_base",
  9180. "resolved": "__unresolved_4",
  9181. "loc": {
  9182. "start": {
  9183. "line": 5,
  9184. "column": 20
  9185. },
  9186. "end": {
  9187. "line": 5,
  9188. "column": 46
  9189. }
  9190. }
  9191. },
  9192. {
  9193. "value": "../../../Scripts/Container_Manager",
  9194. "resolved": "__unresolved_5",
  9195. "loc": {
  9196. "start": {
  9197. "line": 6,
  9198. "column": 34
  9199. },
  9200. "end": {
  9201. "line": 6,
  9202. "column": 70
  9203. }
  9204. }
  9205. },
  9206. {
  9207. "value": "../../../Scripts/ModuleDef",
  9208. "resolved": "__unresolved_6",
  9209. "loc": {
  9210. "start": {
  9211. "line": 8,
  9212. "column": 26
  9213. },
  9214. "end": {
  9215. "line": 8,
  9216. "column": 54
  9217. }
  9218. }
  9219. }
  9220. ],
  9221. "type": "esm",
  9222. "resolutions": [
  9223. {
  9224. "resolved": {
  9225. "type": "module",
  9226. "url": "cce:/internal/code-quality/cr.mjs"
  9227. },
  9228. "messages": []
  9229. },
  9230. {
  9231. "resolved": {
  9232. "type": "module",
  9233. "url": "cce:/internal/x/cc"
  9234. },
  9235. "messages": []
  9236. },
  9237. {
  9238. "resolved": {
  9239. "type": "module",
  9240. "url": "cce:/internal/x/cc"
  9241. },
  9242. "messages": []
  9243. },
  9244. {
  9245. "resolved": {
  9246. "type": "module",
  9247. "url": "cce:/internal/x/cc"
  9248. },
  9249. "messages": []
  9250. },
  9251. {
  9252. "resolved": {
  9253. "type": "module",
  9254. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idiom.ts"
  9255. },
  9256. "messages": []
  9257. },
  9258. {
  9259. "resolved": {
  9260. "type": "module",
  9261. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/Layout_Idioms.ts"
  9262. },
  9263. "messages": []
  9264. },
  9265. {
  9266. "resolved": {
  9267. "type": "module",
  9268. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts"
  9269. },
  9270. "messages": []
  9271. },
  9272. {
  9273. "resolved": {
  9274. "type": "module",
  9275. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui_base.ts"
  9276. },
  9277. "messages": []
  9278. },
  9279. {
  9280. "resolved": {
  9281. "type": "module",
  9282. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Container_Manager.ts"
  9283. },
  9284. "messages": []
  9285. },
  9286. {
  9287. "resolved": {
  9288. "type": "module",
  9289. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/ModuleDef.ts"
  9290. },
  9291. "messages": []
  9292. }
  9293. ]
  9294. },
  9295. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idiom.ts": {
  9296. "mTimestamp": {
  9297. "mtime": 1736157968000,
  9298. "uuid": "82315d30-9968-49e6-b99c-8f36ae484f41"
  9299. },
  9300. "chunkId": "f08b1ecc2b97315a99f02a5e6072e9685ea93ef6",
  9301. "imports": [
  9302. {
  9303. "value": "cc"
  9304. },
  9305. {
  9306. "value": "cc"
  9307. },
  9308. {
  9309. "value": "cc",
  9310. "loc": {
  9311. "start": {
  9312. "line": 1,
  9313. "column": 59
  9314. },
  9315. "end": {
  9316. "line": 1,
  9317. "column": 63
  9318. }
  9319. }
  9320. }
  9321. ],
  9322. "type": "esm",
  9323. "resolutions": [
  9324. {
  9325. "resolved": {
  9326. "type": "module",
  9327. "url": "cce:/internal/x/cc"
  9328. },
  9329. "messages": []
  9330. },
  9331. {
  9332. "resolved": {
  9333. "type": "module",
  9334. "url": "cce:/internal/x/cc"
  9335. },
  9336. "messages": []
  9337. },
  9338. {
  9339. "resolved": {
  9340. "type": "module",
  9341. "url": "cce:/internal/x/cc"
  9342. },
  9343. "messages": []
  9344. }
  9345. ]
  9346. },
  9347. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/Layout_Idioms.ts": {
  9348. "mTimestamp": {
  9349. "mtime": 1736762482426.8716,
  9350. "uuid": "42de1966-f0eb-4610-901f-f0336daa4678"
  9351. },
  9352. "chunkId": "4669e191907a2a708fa7ba923dc04da98435f165",
  9353. "imports": [
  9354. {
  9355. "value": "cce:/internal/code-quality/cr.mjs",
  9356. "resolved": "__unresolved_0"
  9357. },
  9358. {
  9359. "value": "cc"
  9360. },
  9361. {
  9362. "value": "cc"
  9363. },
  9364. {
  9365. "value": "cc",
  9366. "loc": {
  9367. "start": {
  9368. "line": 1,
  9369. "column": 64
  9370. },
  9371. "end": {
  9372. "line": 1,
  9373. "column": 68
  9374. }
  9375. }
  9376. }
  9377. ],
  9378. "type": "esm",
  9379. "resolutions": [
  9380. {
  9381. "resolved": {
  9382. "type": "module",
  9383. "url": "cce:/internal/code-quality/cr.mjs"
  9384. },
  9385. "messages": []
  9386. },
  9387. {
  9388. "resolved": {
  9389. "type": "module",
  9390. "url": "cce:/internal/x/cc"
  9391. },
  9392. "messages": []
  9393. },
  9394. {
  9395. "resolved": {
  9396. "type": "module",
  9397. "url": "cce:/internal/x/cc"
  9398. },
  9399. "messages": []
  9400. },
  9401. {
  9402. "resolved": {
  9403. "type": "module",
  9404. "url": "cce:/internal/x/cc"
  9405. },
  9406. "messages": []
  9407. }
  9408. ]
  9409. },
  9410. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/GameCtl.ts": {
  9411. "mTimestamp": {
  9412. "mtime": 1736584651943.8464,
  9413. "uuid": "5237ffb8-fdfb-4894-a5be-ac2d3ada5f02"
  9414. },
  9415. "chunkId": "0768d342c91ff0af66ccc62d8bcc9155fde4acfc",
  9416. "imports": [
  9417. {
  9418. "value": "cce:/internal/code-quality/cr.mjs",
  9419. "resolved": "__unresolved_0"
  9420. },
  9421. {
  9422. "value": "cc"
  9423. },
  9424. {
  9425. "value": "cc"
  9426. },
  9427. {
  9428. "value": "cc",
  9429. "loc": {
  9430. "start": {
  9431. "line": 1,
  9432. "column": 185
  9433. },
  9434. "end": {
  9435. "line": 1,
  9436. "column": 189
  9437. }
  9438. }
  9439. },
  9440. {
  9441. "value": "./Cube_Infor",
  9442. "resolved": "__unresolved_1",
  9443. "loc": {
  9444. "start": {
  9445. "line": 2,
  9446. "column": 39
  9447. },
  9448. "end": {
  9449. "line": 2,
  9450. "column": 53
  9451. }
  9452. }
  9453. },
  9454. {
  9455. "value": "./Container_Manager",
  9456. "resolved": "__unresolved_2",
  9457. "loc": {
  9458. "start": {
  9459. "line": 3,
  9460. "column": 34
  9461. },
  9462. "end": {
  9463. "line": 3,
  9464. "column": 55
  9465. }
  9466. }
  9467. },
  9468. {
  9469. "value": "../module_game/ui/UI_Idioms/UI_Idioms",
  9470. "resolved": "__unresolved_3",
  9471. "loc": {
  9472. "start": {
  9473. "line": 4,
  9474. "column": 26
  9475. },
  9476. "end": {
  9477. "line": 4,
  9478. "column": 65
  9479. }
  9480. }
  9481. },
  9482. {
  9483. "value": "../core/ui/ui",
  9484. "resolved": "__unresolved_4",
  9485. "loc": {
  9486. "start": {
  9487. "line": 5,
  9488. "column": 20
  9489. },
  9490. "end": {
  9491. "line": 5,
  9492. "column": 35
  9493. }
  9494. }
  9495. },
  9496. {
  9497. "value": "../module_game/ui/UI_Main/UI_Main",
  9498. "resolved": "__unresolved_5",
  9499. "loc": {
  9500. "start": {
  9501. "line": 6,
  9502. "column": 24
  9503. },
  9504. "end": {
  9505. "line": 6,
  9506. "column": 59
  9507. }
  9508. }
  9509. }
  9510. ],
  9511. "type": "esm",
  9512. "resolutions": [
  9513. {
  9514. "resolved": {
  9515. "type": "module",
  9516. "url": "cce:/internal/code-quality/cr.mjs"
  9517. },
  9518. "messages": []
  9519. },
  9520. {
  9521. "resolved": {
  9522. "type": "module",
  9523. "url": "cce:/internal/x/cc"
  9524. },
  9525. "messages": []
  9526. },
  9527. {
  9528. "resolved": {
  9529. "type": "module",
  9530. "url": "cce:/internal/x/cc"
  9531. },
  9532. "messages": []
  9533. },
  9534. {
  9535. "resolved": {
  9536. "type": "module",
  9537. "url": "cce:/internal/x/cc"
  9538. },
  9539. "messages": []
  9540. },
  9541. {
  9542. "resolved": {
  9543. "type": "module",
  9544. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Cube_Infor.ts"
  9545. },
  9546. "messages": []
  9547. },
  9548. {
  9549. "resolved": {
  9550. "type": "module",
  9551. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Container_Manager.ts"
  9552. },
  9553. "messages": []
  9554. },
  9555. {
  9556. "resolved": {
  9557. "type": "module",
  9558. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts"
  9559. },
  9560. "messages": []
  9561. },
  9562. {
  9563. "resolved": {
  9564. "type": "module",
  9565. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts"
  9566. },
  9567. "messages": []
  9568. },
  9569. {
  9570. "resolved": {
  9571. "type": "module",
  9572. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts"
  9573. },
  9574. "messages": []
  9575. }
  9576. ]
  9577. },
  9578. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_extra/table_ts/table_level.ts": {
  9579. "mTimestamp": {
  9580. "mtime": 1736566214956.4556,
  9581. "uuid": "33e66388-de6a-481d-b929-3936b9aa806b"
  9582. },
  9583. "chunkId": "b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f",
  9584. "imports": [
  9585. {
  9586. "value": "cce:/internal/code-quality/cr.mjs",
  9587. "resolved": "__unresolved_0"
  9588. },
  9589. {
  9590. "value": "cc"
  9591. },
  9592. {
  9593. "value": "cc"
  9594. },
  9595. {
  9596. "value": "cc",
  9597. "loc": {
  9598. "start": {
  9599. "line": 1,
  9600. "column": 44
  9601. },
  9602. "end": {
  9603. "line": 1,
  9604. "column": 48
  9605. }
  9606. }
  9607. },
  9608. {
  9609. "value": "./TableUtil",
  9610. "resolved": "__unresolved_1",
  9611. "loc": {
  9612. "start": {
  9613. "line": 2,
  9614. "column": 26
  9615. },
  9616. "end": {
  9617. "line": 2,
  9618. "column": 39
  9619. }
  9620. }
  9621. }
  9622. ],
  9623. "type": "esm",
  9624. "resolutions": [
  9625. {
  9626. "resolved": {
  9627. "type": "module",
  9628. "url": "cce:/internal/code-quality/cr.mjs"
  9629. },
  9630. "messages": []
  9631. },
  9632. {
  9633. "resolved": {
  9634. "type": "module",
  9635. "url": "cce:/internal/x/cc"
  9636. },
  9637. "messages": []
  9638. },
  9639. {
  9640. "resolved": {
  9641. "type": "module",
  9642. "url": "cce:/internal/x/cc"
  9643. },
  9644. "messages": []
  9645. },
  9646. {
  9647. "resolved": {
  9648. "type": "module",
  9649. "url": "cce:/internal/x/cc"
  9650. },
  9651. "messages": []
  9652. },
  9653. {
  9654. "resolved": {
  9655. "type": "module",
  9656. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_extra/table_ts/TableUtil.ts"
  9657. },
  9658. "messages": []
  9659. }
  9660. ]
  9661. },
  9662. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_extra/table_ts/table_idiom.ts": {
  9663. "mTimestamp": {
  9664. "mtime": 1736564585115.879,
  9665. "uuid": "66b6a72d-895e-4e4f-93df-20adbe7db71a"
  9666. },
  9667. "chunkId": "82914e241315735457587bc37563ed7db8183cd0",
  9668. "imports": [
  9669. {
  9670. "value": "cce:/internal/code-quality/cr.mjs",
  9671. "resolved": "__unresolved_0"
  9672. },
  9673. {
  9674. "value": "cc"
  9675. },
  9676. {
  9677. "value": "cc"
  9678. },
  9679. {
  9680. "value": "cc",
  9681. "loc": {
  9682. "start": {
  9683. "line": 1,
  9684. "column": 44
  9685. },
  9686. "end": {
  9687. "line": 1,
  9688. "column": 48
  9689. }
  9690. }
  9691. },
  9692. {
  9693. "value": "./TableUtil",
  9694. "resolved": "__unresolved_1",
  9695. "loc": {
  9696. "start": {
  9697. "line": 2,
  9698. "column": 26
  9699. },
  9700. "end": {
  9701. "line": 2,
  9702. "column": 39
  9703. }
  9704. }
  9705. }
  9706. ],
  9707. "type": "esm",
  9708. "resolutions": [
  9709. {
  9710. "resolved": {
  9711. "type": "module",
  9712. "url": "cce:/internal/code-quality/cr.mjs"
  9713. },
  9714. "messages": []
  9715. },
  9716. {
  9717. "resolved": {
  9718. "type": "module",
  9719. "url": "cce:/internal/x/cc"
  9720. },
  9721. "messages": []
  9722. },
  9723. {
  9724. "resolved": {
  9725. "type": "module",
  9726. "url": "cce:/internal/x/cc"
  9727. },
  9728. "messages": []
  9729. },
  9730. {
  9731. "resolved": {
  9732. "type": "module",
  9733. "url": "cce:/internal/x/cc"
  9734. },
  9735. "messages": []
  9736. },
  9737. {
  9738. "resolved": {
  9739. "type": "module",
  9740. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_extra/table_ts/TableUtil.ts"
  9741. },
  9742. "messages": []
  9743. }
  9744. ]
  9745. },
  9746. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/ArrayUtil.ts": {
  9747. "mTimestamp": {
  9748. "mtime": 1726883374000,
  9749. "uuid": "8334108e-7a2b-4f44-81dc-c35f154bb837"
  9750. },
  9751. "chunkId": "6b45817391fda8032e9c3052f72099ae80b977e5",
  9752. "imports": [
  9753. {
  9754. "value": "cc"
  9755. }
  9756. ],
  9757. "type": "esm",
  9758. "resolutions": [
  9759. {
  9760. "resolved": {
  9761. "type": "module",
  9762. "url": "cce:/internal/x/cc"
  9763. },
  9764. "messages": []
  9765. }
  9766. ]
  9767. },
  9768. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/DataTimeUtil.ts": {
  9769. "mTimestamp": {
  9770. "mtime": 1726882298000,
  9771. "uuid": "6aa3e5d2-e8f8-414a-ba3b-5f2c9e97456c"
  9772. },
  9773. "chunkId": "9b4abce15a8c07b4b00096caaa35df726664c0eb",
  9774. "imports": [
  9775. {
  9776. "value": "cc"
  9777. }
  9778. ],
  9779. "type": "esm",
  9780. "resolutions": [
  9781. {
  9782. "resolved": {
  9783. "type": "module",
  9784. "url": "cce:/internal/x/cc"
  9785. },
  9786. "messages": []
  9787. }
  9788. ]
  9789. },
  9790. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/DirectorUtil.ts": {
  9791. "mTimestamp": {
  9792. "mtime": 1729048000000,
  9793. "uuid": "0dd04c52-58cd-46d3-b730-6fd73ced38da"
  9794. },
  9795. "chunkId": "518c777b9b184349470f0a8548bfc02a3ac13b12",
  9796. "imports": [
  9797. {
  9798. "value": "cc"
  9799. },
  9800. {
  9801. "value": "cc"
  9802. },
  9803. {
  9804. "value": "cc",
  9805. "loc": {
  9806. "start": {
  9807. "line": 1,
  9808. "column": 25
  9809. },
  9810. "end": {
  9811. "line": 1,
  9812. "column": 29
  9813. }
  9814. }
  9815. },
  9816. {
  9817. "value": "cc",
  9818. "loc": {
  9819. "start": {
  9820. "line": 2,
  9821. "column": 28
  9822. },
  9823. "end": {
  9824. "line": 2,
  9825. "column": 32
  9826. }
  9827. }
  9828. },
  9829. {
  9830. "value": "cc",
  9831. "loc": {
  9832. "start": {
  9833. "line": 3,
  9834. "column": 30
  9835. },
  9836. "end": {
  9837. "line": 3,
  9838. "column": 34
  9839. }
  9840. }
  9841. },
  9842. {
  9843. "value": "cc",
  9844. "loc": {
  9845. "start": {
  9846. "line": 4,
  9847. "column": 32
  9848. },
  9849. "end": {
  9850. "line": 4,
  9851. "column": 36
  9852. }
  9853. }
  9854. },
  9855. {
  9856. "value": "cc",
  9857. "loc": {
  9858. "start": {
  9859. "line": 5,
  9860. "column": 33
  9861. },
  9862. "end": {
  9863. "line": 5,
  9864. "column": 37
  9865. }
  9866. }
  9867. },
  9868. {
  9869. "value": "cc",
  9870. "loc": {
  9871. "start": {
  9872. "line": 6,
  9873. "column": 19
  9874. },
  9875. "end": {
  9876. "line": 6,
  9877. "column": 23
  9878. }
  9879. }
  9880. },
  9881. {
  9882. "value": "cc",
  9883. "loc": {
  9884. "start": {
  9885. "line": 7,
  9886. "column": 48
  9887. },
  9888. "end": {
  9889. "line": 7,
  9890. "column": 52
  9891. }
  9892. }
  9893. }
  9894. ],
  9895. "type": "esm",
  9896. "resolutions": [
  9897. {
  9898. "resolved": {
  9899. "type": "module",
  9900. "url": "cce:/internal/x/cc"
  9901. },
  9902. "messages": []
  9903. },
  9904. {
  9905. "resolved": {
  9906. "type": "module",
  9907. "url": "cce:/internal/x/cc"
  9908. },
  9909. "messages": []
  9910. },
  9911. {
  9912. "resolved": {
  9913. "type": "module",
  9914. "url": "cce:/internal/x/cc"
  9915. },
  9916. "messages": []
  9917. },
  9918. {
  9919. "resolved": {
  9920. "type": "module",
  9921. "url": "cce:/internal/x/cc"
  9922. },
  9923. "messages": []
  9924. },
  9925. {
  9926. "resolved": {
  9927. "type": "module",
  9928. "url": "cce:/internal/x/cc"
  9929. },
  9930. "messages": []
  9931. },
  9932. {
  9933. "resolved": {
  9934. "type": "module",
  9935. "url": "cce:/internal/x/cc"
  9936. },
  9937. "messages": []
  9938. },
  9939. {
  9940. "resolved": {
  9941. "type": "module",
  9942. "url": "cce:/internal/x/cc"
  9943. },
  9944. "messages": []
  9945. },
  9946. {
  9947. "resolved": {
  9948. "type": "module",
  9949. "url": "cce:/internal/x/cc"
  9950. },
  9951. "messages": []
  9952. },
  9953. {
  9954. "resolved": {
  9955. "type": "module",
  9956. "url": "cce:/internal/x/cc"
  9957. },
  9958. "messages": []
  9959. }
  9960. ]
  9961. },
  9962. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/Instance.ts": {
  9963. "mTimestamp": {
  9964. "mtime": 1723693000000,
  9965. "uuid": "f298abb1-84e6-4870-98ea-2b09f59063fe"
  9966. },
  9967. "chunkId": "73c6533bf475cf801676942513edca165a6ed07f",
  9968. "imports": [
  9969. {
  9970. "value": "cc"
  9971. }
  9972. ],
  9973. "type": "esm",
  9974. "resolutions": [
  9975. {
  9976. "resolved": {
  9977. "type": "module",
  9978. "url": "cce:/internal/x/cc"
  9979. },
  9980. "messages": []
  9981. }
  9982. ]
  9983. },
  9984. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/LocalStorageUtil.ts": {
  9985. "mTimestamp": {
  9986. "mtime": 1723692954000,
  9987. "uuid": "d8e8827e-43d4-4fb5-8ddf-15aa29e19ee2"
  9988. },
  9989. "chunkId": "79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f",
  9990. "imports": [
  9991. {
  9992. "value": "cc"
  9993. },
  9994. {
  9995. "value": "cc"
  9996. },
  9997. {
  9998. "value": "cc",
  9999. "loc": {
  10000. "start": {
  10001. "line": 1,
  10002. "column": 20
  10003. },
  10004. "end": {
  10005. "line": 1,
  10006. "column": 24
  10007. }
  10008. }
  10009. }
  10010. ],
  10011. "type": "esm",
  10012. "resolutions": [
  10013. {
  10014. "resolved": {
  10015. "type": "module",
  10016. "url": "cce:/internal/x/cc"
  10017. },
  10018. "messages": []
  10019. },
  10020. {
  10021. "resolved": {
  10022. "type": "module",
  10023. "url": "cce:/internal/x/cc"
  10024. },
  10025. "messages": []
  10026. },
  10027. {
  10028. "resolved": {
  10029. "type": "module",
  10030. "url": "cce:/internal/x/cc"
  10031. },
  10032. "messages": []
  10033. }
  10034. ]
  10035. },
  10036. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/MathUtil.ts": {
  10037. "mTimestamp": {
  10038. "mtime": 1729565896000,
  10039. "uuid": "5df23a8d-909e-4972-8e1b-ef66d92c925f"
  10040. },
  10041. "chunkId": "2d836b3dc11c70cd1a8621bc539f2b1ca2080115",
  10042. "imports": [
  10043. {
  10044. "value": "cc"
  10045. },
  10046. {
  10047. "value": "cc"
  10048. },
  10049. {
  10050. "value": "cc",
  10051. "loc": {
  10052. "start": {
  10053. "line": 1,
  10054. "column": 39
  10055. },
  10056. "end": {
  10057. "line": 1,
  10058. "column": 43
  10059. }
  10060. }
  10061. }
  10062. ],
  10063. "type": "esm",
  10064. "resolutions": [
  10065. {
  10066. "resolved": {
  10067. "type": "module",
  10068. "url": "cce:/internal/x/cc"
  10069. },
  10070. "messages": []
  10071. },
  10072. {
  10073. "resolved": {
  10074. "type": "module",
  10075. "url": "cce:/internal/x/cc"
  10076. },
  10077. "messages": []
  10078. },
  10079. {
  10080. "resolved": {
  10081. "type": "module",
  10082. "url": "cce:/internal/x/cc"
  10083. },
  10084. "messages": []
  10085. }
  10086. ]
  10087. },
  10088. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/PathUtil.ts": {
  10089. "mTimestamp": {
  10090. "mtime": 1695570588000,
  10091. "uuid": "59900f42-6224-4f49-b3fe-e8c2641562d8"
  10092. },
  10093. "chunkId": "bd8a015d9f05319ae091f7383c093a5f26a12133",
  10094. "imports": [
  10095. {
  10096. "value": "cc"
  10097. }
  10098. ],
  10099. "type": "esm",
  10100. "resolutions": [
  10101. {
  10102. "resolved": {
  10103. "type": "module",
  10104. "url": "cce:/internal/x/cc"
  10105. },
  10106. "messages": []
  10107. }
  10108. ]
  10109. },
  10110. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/ProjectileMathUtil.ts": {
  10111. "mTimestamp": {
  10112. "mtime": 1729566560000,
  10113. "uuid": "16ac3b52-38ce-45c2-965e-f0214a854d86"
  10114. },
  10115. "chunkId": "47ffdbe9496b14c1b1c3a26ce79f8df526beea9b",
  10116. "imports": [
  10117. {
  10118. "value": "cc"
  10119. }
  10120. ],
  10121. "type": "esm",
  10122. "resolutions": [
  10123. {
  10124. "resolved": {
  10125. "type": "module",
  10126. "url": "cce:/internal/x/cc"
  10127. },
  10128. "messages": []
  10129. }
  10130. ]
  10131. },
  10132. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/StringUtil.ts": {
  10133. "mTimestamp": {
  10134. "mtime": 1721373532000,
  10135. "uuid": "77722058-8f23-4726-9278-0ee300084ad9"
  10136. },
  10137. "chunkId": "5355f477731c1aa517e29e27c45ac35bf99fe727",
  10138. "imports": [
  10139. {
  10140. "value": "cc"
  10141. }
  10142. ],
  10143. "type": "esm",
  10144. "resolutions": [
  10145. {
  10146. "resolved": {
  10147. "type": "module",
  10148. "url": "cce:/internal/x/cc"
  10149. },
  10150. "messages": []
  10151. }
  10152. ]
  10153. },
  10154. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/UrlUtil.ts": {
  10155. "mTimestamp": {
  10156. "mtime": 1695570588000,
  10157. "uuid": "27d0798c-6b21-4105-9ac1-9dcc54c92213"
  10158. },
  10159. "chunkId": "e5e04bc899c670002bcc5c7aac441a4c4281e9a4",
  10160. "imports": [
  10161. {
  10162. "value": "cc"
  10163. }
  10164. ],
  10165. "type": "esm",
  10166. "resolutions": [
  10167. {
  10168. "resolved": {
  10169. "type": "module",
  10170. "url": "cce:/internal/x/cc"
  10171. },
  10172. "messages": []
  10173. }
  10174. ]
  10175. },
  10176. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/Utils.ts": {
  10177. "mTimestamp": {
  10178. "mtime": 1718611118000,
  10179. "uuid": "7ea66af4-000a-4815-b8ee-4c58d72485a1"
  10180. },
  10181. "chunkId": "d8ea009be5644c7164c4b5ae51cd349e5525e465",
  10182. "imports": [
  10183. {
  10184. "value": "cc"
  10185. }
  10186. ],
  10187. "type": "esm",
  10188. "resolutions": [
  10189. {
  10190. "resolved": {
  10191. "type": "module",
  10192. "url": "cce:/internal/x/cc"
  10193. },
  10194. "messages": []
  10195. }
  10196. ]
  10197. },
  10198. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Action.ts": {
  10199. "mTimestamp": {
  10200. "mtime": 1729757968000,
  10201. "uuid": "24a1f6e4-bd6f-4040-9f9c-7397f678c9e5"
  10202. },
  10203. "chunkId": "4efee4d45a67b1b88aec3633ffce1bf66a05cb6d",
  10204. "imports": [
  10205. {
  10206. "value": "cc"
  10207. }
  10208. ],
  10209. "type": "esm",
  10210. "resolutions": [
  10211. {
  10212. "resolved": {
  10213. "type": "module",
  10214. "url": "cce:/internal/x/cc"
  10215. },
  10216. "messages": []
  10217. }
  10218. ]
  10219. },
  10220. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Delay.ts": {
  10221. "mTimestamp": {
  10222. "mtime": 1729214786000,
  10223. "uuid": "8e7b9582-bab2-4fbb-87e3-357f4f65b458"
  10224. },
  10225. "chunkId": "f780142056b451af1186d982a8e16130bfd276a2",
  10226. "imports": [
  10227. {
  10228. "value": "cc"
  10229. }
  10230. ],
  10231. "type": "esm",
  10232. "resolutions": [
  10233. {
  10234. "resolved": {
  10235. "type": "module",
  10236. "url": "cce:/internal/x/cc"
  10237. },
  10238. "messages": []
  10239. }
  10240. ]
  10241. },
  10242. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/FMS.ts": {
  10243. "mTimestamp": {
  10244. "mtime": 1726824718000,
  10245. "uuid": "bbc2506c-b74f-4f9b-b444-286abe5a7d89"
  10246. },
  10247. "chunkId": "b601769373047d5119da5c4cb4b3a4bba6a651af",
  10248. "imports": [
  10249. {
  10250. "value": "cc"
  10251. }
  10252. ],
  10253. "type": "esm",
  10254. "resolutions": [
  10255. {
  10256. "resolved": {
  10257. "type": "module",
  10258. "url": "cce:/internal/x/cc"
  10259. },
  10260. "messages": []
  10261. }
  10262. ]
  10263. },
  10264. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Line2DMove.ts": {
  10265. "mTimestamp": {
  10266. "mtime": 1729757968000,
  10267. "uuid": "24592c8c-7c3f-4eea-ab15-95d8430f73db"
  10268. },
  10269. "chunkId": "cf9c45e29398b29856527964dd8d734c5d4fdec4",
  10270. "imports": [
  10271. {
  10272. "value": "cc"
  10273. },
  10274. {
  10275. "value": "cc"
  10276. },
  10277. {
  10278. "value": "cc",
  10279. "loc": {
  10280. "start": {
  10281. "line": 1,
  10282. "column": 21
  10283. },
  10284. "end": {
  10285. "line": 1,
  10286. "column": 25
  10287. }
  10288. }
  10289. }
  10290. ],
  10291. "type": "esm",
  10292. "resolutions": [
  10293. {
  10294. "resolved": {
  10295. "type": "module",
  10296. "url": "cce:/internal/x/cc"
  10297. },
  10298. "messages": []
  10299. },
  10300. {
  10301. "resolved": {
  10302. "type": "module",
  10303. "url": "cce:/internal/x/cc"
  10304. },
  10305. "messages": []
  10306. },
  10307. {
  10308. "resolved": {
  10309. "type": "module",
  10310. "url": "cce:/internal/x/cc"
  10311. },
  10312. "messages": []
  10313. }
  10314. ]
  10315. },
  10316. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/PrefabPool.ts": {
  10317. "mTimestamp": {
  10318. "mtime": 1728964890000,
  10319. "uuid": "12f30917-fa5b-4ee0-9665-191b9edf8804"
  10320. },
  10321. "chunkId": "8e81d067c8870d70331d8b9656a976c1f558e5de",
  10322. "imports": [
  10323. {
  10324. "value": "cc"
  10325. },
  10326. {
  10327. "value": "cc"
  10328. },
  10329. {
  10330. "value": "cc",
  10331. "loc": {
  10332. "start": {
  10333. "line": 1,
  10334. "column": 50
  10335. },
  10336. "end": {
  10337. "line": 1,
  10338. "column": 54
  10339. }
  10340. }
  10341. }
  10342. ],
  10343. "type": "esm",
  10344. "resolutions": [
  10345. {
  10346. "resolved": {
  10347. "type": "module",
  10348. "url": "cce:/internal/x/cc"
  10349. },
  10350. "messages": []
  10351. },
  10352. {
  10353. "resolved": {
  10354. "type": "module",
  10355. "url": "cce:/internal/x/cc"
  10356. },
  10357. "messages": []
  10358. },
  10359. {
  10360. "resolved": {
  10361. "type": "module",
  10362. "url": "cce:/internal/x/cc"
  10363. },
  10364. "messages": []
  10365. }
  10366. ]
  10367. },
  10368. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Queue.ts": {
  10369. "mTimestamp": {
  10370. "mtime": 1729757968000,
  10371. "uuid": "169009a6-3f39-4f91-98ae-3b9ecfc6f46c"
  10372. },
  10373. "chunkId": "df48ec67964f126550b0d5d71bec2b4cfc027d50",
  10374. "imports": [
  10375. {
  10376. "value": "cc"
  10377. }
  10378. ],
  10379. "type": "esm",
  10380. "resolutions": [
  10381. {
  10382. "resolved": {
  10383. "type": "module",
  10384. "url": "cce:/internal/x/cc"
  10385. },
  10386. "messages": []
  10387. }
  10388. ]
  10389. },
  10390. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Random.ts": {
  10391. "mTimestamp": {
  10392. "mtime": 1729757968000,
  10393. "uuid": "0df91f5a-1b94-4b0d-bd92-5330a4bdb89f"
  10394. },
  10395. "chunkId": "e08485787ba9b2ad7c98e435102c966d3f5c64ae",
  10396. "imports": [
  10397. {
  10398. "value": "cc"
  10399. }
  10400. ],
  10401. "type": "esm",
  10402. "resolutions": [
  10403. {
  10404. "resolved": {
  10405. "type": "module",
  10406. "url": "cce:/internal/x/cc"
  10407. },
  10408. "messages": []
  10409. }
  10410. ]
  10411. },
  10412. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/SafeNumber.ts": {
  10413. "mTimestamp": {
  10414. "mtime": 1726883504000,
  10415. "uuid": "7e0d8920-e850-4be3-ac0d-55f3622bb784"
  10416. },
  10417. "chunkId": "1d5d5546c48e71ed58dfa68bc6fecf1be163c751",
  10418. "imports": [
  10419. {
  10420. "value": "cc"
  10421. }
  10422. ],
  10423. "type": "esm",
  10424. "resolutions": [
  10425. {
  10426. "resolved": {
  10427. "type": "module",
  10428. "url": "cce:/internal/x/cc"
  10429. },
  10430. "messages": []
  10431. }
  10432. ]
  10433. },
  10434. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Shake.ts": {
  10435. "mTimestamp": {
  10436. "mtime": 1726824496000,
  10437. "uuid": "88ada871-02bb-483c-a86d-5e7101dbdfa8"
  10438. },
  10439. "chunkId": "7404a8ee135932a387eac99bfb33951576fe8b67",
  10440. "imports": [
  10441. {
  10442. "value": "cc"
  10443. },
  10444. {
  10445. "value": "cc"
  10446. },
  10447. {
  10448. "value": "cc",
  10449. "loc": {
  10450. "start": {
  10451. "line": 1,
  10452. "column": 21
  10453. },
  10454. "end": {
  10455. "line": 1,
  10456. "column": 25
  10457. }
  10458. }
  10459. }
  10460. ],
  10461. "type": "esm",
  10462. "resolutions": [
  10463. {
  10464. "resolved": {
  10465. "type": "module",
  10466. "url": "cce:/internal/x/cc"
  10467. },
  10468. "messages": []
  10469. },
  10470. {
  10471. "resolved": {
  10472. "type": "module",
  10473. "url": "cce:/internal/x/cc"
  10474. },
  10475. "messages": []
  10476. },
  10477. {
  10478. "resolved": {
  10479. "type": "module",
  10480. "url": "cce:/internal/x/cc"
  10481. },
  10482. "messages": []
  10483. }
  10484. ]
  10485. },
  10486. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/State.ts": {
  10487. "mTimestamp": {
  10488. "mtime": 1729757968000,
  10489. "uuid": "d9db0143-8c08-4db8-b03d-3154d254082f"
  10490. },
  10491. "chunkId": "5f91b0c989c2a479c1da04fdb508bd586eba443c",
  10492. "imports": [
  10493. {
  10494. "value": "cc"
  10495. }
  10496. ],
  10497. "type": "esm",
  10498. "resolutions": [
  10499. {
  10500. "resolved": {
  10501. "type": "module",
  10502. "url": "cce:/internal/x/cc"
  10503. },
  10504. "messages": []
  10505. }
  10506. ]
  10507. },
  10508. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/TimeJobCenter.ts": {
  10509. "mTimestamp": {
  10510. "mtime": 1726824208000,
  10511. "uuid": "29a95e83-4861-4b5b-a1bc-dfdf61028cfc"
  10512. },
  10513. "chunkId": "34df8999c17a8450e101699bd789ccbd57ce24ce",
  10514. "imports": [
  10515. {
  10516. "value": "cc"
  10517. }
  10518. ],
  10519. "type": "esm",
  10520. "resolutions": [
  10521. {
  10522. "resolved": {
  10523. "type": "module",
  10524. "url": "cce:/internal/x/cc"
  10525. },
  10526. "messages": []
  10527. }
  10528. ]
  10529. },
  10530. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Timer.ts": {
  10531. "mTimestamp": {
  10532. "mtime": 1731297672000,
  10533. "uuid": "89024f12-7734-48b1-ae9d-3c720ef90c72"
  10534. },
  10535. "chunkId": "d5008f0f69bfd2c16fd6c0deebe987f9210eba0d",
  10536. "imports": [
  10537. {
  10538. "value": "cc"
  10539. }
  10540. ],
  10541. "type": "esm",
  10542. "resolutions": [
  10543. {
  10544. "resolved": {
  10545. "type": "module",
  10546. "url": "cce:/internal/x/cc"
  10547. },
  10548. "messages": []
  10549. }
  10550. ]
  10551. },
  10552. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Toast.ts": {
  10553. "mTimestamp": {
  10554. "mtime": 1726902670000,
  10555. "uuid": "0cfc3e34-caea-4a84-a9bd-240b6b324204"
  10556. },
  10557. "chunkId": "5d8144768428205eb83d54c7574071768f6c1b5b",
  10558. "imports": [
  10559. {
  10560. "value": "cc"
  10561. },
  10562. {
  10563. "value": "cc"
  10564. },
  10565. {
  10566. "value": "cc",
  10567. "loc": {
  10568. "start": {
  10569. "line": 1,
  10570. "column": 146
  10571. },
  10572. "end": {
  10573. "line": 1,
  10574. "column": 150
  10575. }
  10576. }
  10577. }
  10578. ],
  10579. "type": "esm",
  10580. "resolutions": [
  10581. {
  10582. "resolved": {
  10583. "type": "module",
  10584. "url": "cce:/internal/x/cc"
  10585. },
  10586. "messages": []
  10587. },
  10588. {
  10589. "resolved": {
  10590. "type": "module",
  10591. "url": "cce:/internal/x/cc"
  10592. },
  10593. "messages": []
  10594. },
  10595. {
  10596. "resolved": {
  10597. "type": "module",
  10598. "url": "cce:/internal/x/cc"
  10599. },
  10600. "messages": []
  10601. }
  10602. ]
  10603. },
  10604. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Wait.ts": {
  10605. "mTimestamp": {
  10606. "mtime": 1726892180000,
  10607. "uuid": "5f7efc70-9e27-4e53-aca1-32b3cc07d9ba"
  10608. },
  10609. "chunkId": "3166d186d5cd2eca604e02fdebeb727752294da4",
  10610. "imports": [
  10611. {
  10612. "value": "cc"
  10613. }
  10614. ],
  10615. "type": "esm",
  10616. "resolutions": [
  10617. {
  10618. "resolved": {
  10619. "type": "module",
  10620. "url": "cce:/internal/x/cc"
  10621. },
  10622. "messages": []
  10623. }
  10624. ]
  10625. },
  10626. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/ClickPenetrate.ts": {
  10627. "mTimestamp": {
  10628. "mtime": 1698970178000,
  10629. "uuid": "739bf1e9-707b-41dc-85ce-922966dc957b"
  10630. },
  10631. "chunkId": "a89b293907eed8bf35922b74df584b59608173f2",
  10632. "imports": [
  10633. {
  10634. "value": "cc"
  10635. },
  10636. {
  10637. "value": "cc"
  10638. },
  10639. {
  10640. "value": "cc"
  10641. },
  10642. {
  10643. "value": "cc",
  10644. "loc": {
  10645. "start": {
  10646. "line": 2,
  10647. "column": 53
  10648. },
  10649. "end": {
  10650. "line": 2,
  10651. "column": 57
  10652. }
  10653. }
  10654. }
  10655. ],
  10656. "type": "esm",
  10657. "resolutions": [
  10658. {
  10659. "resolved": {
  10660. "type": "module",
  10661. "url": "cce:/internal/x/cc"
  10662. },
  10663. "messages": []
  10664. },
  10665. {
  10666. "resolved": {
  10667. "type": "module",
  10668. "url": "cce:/internal/x/cc"
  10669. },
  10670. "messages": []
  10671. },
  10672. {
  10673. "resolved": {
  10674. "type": "module",
  10675. "url": "cce:/internal/x/cc"
  10676. },
  10677. "messages": []
  10678. },
  10679. {
  10680. "resolved": {
  10681. "type": "module",
  10682. "url": "cce:/internal/x/cc"
  10683. },
  10684. "messages": []
  10685. }
  10686. ]
  10687. },
  10688. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/Game.ts": {
  10689. "mTimestamp": {
  10690. "mtime": 1734748932000,
  10691. "uuid": "c8af79df-add4-47a9-a002-3a69b7dbc9d0"
  10692. },
  10693. "chunkId": "5908d1524fdbf33b63c9c924078b09b63cc7fc89",
  10694. "imports": [
  10695. {
  10696. "value": "cce:/internal/code-quality/cr.mjs",
  10697. "resolved": "__unresolved_0"
  10698. },
  10699. {
  10700. "value": "cc"
  10701. },
  10702. {
  10703. "value": "cc"
  10704. },
  10705. {
  10706. "value": "cc",
  10707. "loc": {
  10708. "start": {
  10709. "line": 1,
  10710. "column": 54
  10711. },
  10712. "end": {
  10713. "line": 1,
  10714. "column": 58
  10715. }
  10716. }
  10717. },
  10718. {
  10719. "value": "../../core/util_class/Delay",
  10720. "resolved": "__unresolved_1",
  10721. "loc": {
  10722. "start": {
  10723. "line": 2,
  10724. "column": 26
  10725. },
  10726. "end": {
  10727. "line": 2,
  10728. "column": 55
  10729. }
  10730. }
  10731. },
  10732. {
  10733. "value": "../../core/util_class/FMS",
  10734. "resolved": "__unresolved_2",
  10735. "loc": {
  10736. "start": {
  10737. "line": 3,
  10738. "column": 24
  10739. },
  10740. "end": {
  10741. "line": 3,
  10742. "column": 51
  10743. }
  10744. }
  10745. },
  10746. {
  10747. "value": "../../core/util_class/TimeJobCenter",
  10748. "resolved": "__unresolved_3",
  10749. "loc": {
  10750. "start": {
  10751. "line": 4,
  10752. "column": 24
  10753. },
  10754. "end": {
  10755. "line": 4,
  10756. "column": 61
  10757. }
  10758. }
  10759. },
  10760. {
  10761. "value": "../../core/util_class/Random",
  10762. "resolved": "__unresolved_4",
  10763. "loc": {
  10764. "start": {
  10765. "line": 5,
  10766. "column": 27
  10767. },
  10768. "end": {
  10769. "line": 5,
  10770. "column": 57
  10771. }
  10772. }
  10773. },
  10774. {
  10775. "value": "../../core/util_class/PrefabPool",
  10776. "resolved": "__unresolved_5",
  10777. "loc": {
  10778. "start": {
  10779. "line": 6,
  10780. "column": 32
  10781. },
  10782. "end": {
  10783. "line": 6,
  10784. "column": 66
  10785. }
  10786. }
  10787. },
  10788. {
  10789. "value": "../../core/util/DirectorUtil",
  10790. "resolved": "__unresolved_6",
  10791. "loc": {
  10792. "start": {
  10793. "line": 7,
  10794. "column": 25
  10795. },
  10796. "end": {
  10797. "line": 7,
  10798. "column": 55
  10799. }
  10800. }
  10801. }
  10802. ],
  10803. "type": "esm",
  10804. "resolutions": [
  10805. {
  10806. "resolved": {
  10807. "type": "module",
  10808. "url": "cce:/internal/code-quality/cr.mjs"
  10809. },
  10810. "messages": []
  10811. },
  10812. {
  10813. "resolved": {
  10814. "type": "module",
  10815. "url": "cce:/internal/x/cc"
  10816. },
  10817. "messages": []
  10818. },
  10819. {
  10820. "resolved": {
  10821. "type": "module",
  10822. "url": "cce:/internal/x/cc"
  10823. },
  10824. "messages": []
  10825. },
  10826. {
  10827. "resolved": {
  10828. "type": "module",
  10829. "url": "cce:/internal/x/cc"
  10830. },
  10831. "messages": []
  10832. },
  10833. {
  10834. "resolved": {
  10835. "type": "module",
  10836. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Delay.ts"
  10837. },
  10838. "messages": []
  10839. },
  10840. {
  10841. "resolved": {
  10842. "type": "module",
  10843. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/FMS.ts"
  10844. },
  10845. "messages": []
  10846. },
  10847. {
  10848. "resolved": {
  10849. "type": "module",
  10850. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/TimeJobCenter.ts"
  10851. },
  10852. "messages": []
  10853. },
  10854. {
  10855. "resolved": {
  10856. "type": "module",
  10857. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Random.ts"
  10858. },
  10859. "messages": []
  10860. },
  10861. {
  10862. "resolved": {
  10863. "type": "module",
  10864. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/PrefabPool.ts"
  10865. },
  10866. "messages": []
  10867. },
  10868. {
  10869. "resolved": {
  10870. "type": "module",
  10871. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util/DirectorUtil.ts"
  10872. },
  10873. "messages": []
  10874. }
  10875. ]
  10876. },
  10877. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/MotionTrail.ts": {
  10878. "mTimestamp": {
  10879. "mtime": 1725582388000,
  10880. "uuid": "bb8ff377-030a-44a8-9af7-7190ce55d5c9"
  10881. },
  10882. "chunkId": "71b930d6142312f684efd1718dfcd7bfd1e95eaa",
  10883. "imports": [
  10884. {
  10885. "value": "cc"
  10886. },
  10887. {
  10888. "value": "cc"
  10889. },
  10890. {
  10891. "value": "cc",
  10892. "loc": {
  10893. "start": {
  10894. "line": 10,
  10895. "column": 195
  10896. },
  10897. "end": {
  10898. "line": 10,
  10899. "column": 199
  10900. }
  10901. }
  10902. }
  10903. ],
  10904. "type": "esm",
  10905. "resolutions": [
  10906. {
  10907. "resolved": {
  10908. "type": "module",
  10909. "url": "cce:/internal/x/cc"
  10910. },
  10911. "messages": []
  10912. },
  10913. {
  10914. "resolved": {
  10915. "type": "module",
  10916. "url": "cce:/internal/x/cc"
  10917. },
  10918. "messages": []
  10919. },
  10920. {
  10921. "resolved": {
  10922. "type": "module",
  10923. "url": "cce:/internal/x/cc"
  10924. },
  10925. "messages": []
  10926. }
  10927. ]
  10928. },
  10929. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/MovieClip.ts": {
  10930. "mTimestamp": {
  10931. "mtime": 1692088458000,
  10932. "uuid": "008dff95-aacf-4d4f-bf80-7d804d63a6f0"
  10933. },
  10934. "chunkId": "a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e",
  10935. "imports": [
  10936. {
  10937. "value": "cc"
  10938. },
  10939. {
  10940. "value": "cc"
  10941. },
  10942. {
  10943. "value": "cc",
  10944. "loc": {
  10945. "start": {
  10946. "line": 1,
  10947. "column": 132
  10948. },
  10949. "end": {
  10950. "line": 1,
  10951. "column": 136
  10952. }
  10953. }
  10954. }
  10955. ],
  10956. "type": "esm",
  10957. "resolutions": [
  10958. {
  10959. "resolved": {
  10960. "type": "module",
  10961. "url": "cce:/internal/x/cc"
  10962. },
  10963. "messages": []
  10964. },
  10965. {
  10966. "resolved": {
  10967. "type": "module",
  10968. "url": "cce:/internal/x/cc"
  10969. },
  10970. "messages": []
  10971. },
  10972. {
  10973. "resolved": {
  10974. "type": "module",
  10975. "url": "cce:/internal/x/cc"
  10976. },
  10977. "messages": []
  10978. }
  10979. ]
  10980. },
  10981. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/RewardFly.ts": {
  10982. "mTimestamp": {
  10983. "mtime": 1718608588000,
  10984. "uuid": "9d999a1a-ed9b-4efc-9867-935fa237adc4"
  10985. },
  10986. "chunkId": "cb13e961bcd8d7069545036fc45d02908c0eee94",
  10987. "imports": [
  10988. {
  10989. "value": "cc"
  10990. },
  10991. {
  10992. "value": "cc"
  10993. },
  10994. {
  10995. "value": "cc",
  10996. "loc": {
  10997. "start": {
  10998. "line": 1,
  10999. "column": 134
  11000. },
  11001. "end": {
  11002. "line": 1,
  11003. "column": 138
  11004. }
  11005. }
  11006. }
  11007. ],
  11008. "type": "esm",
  11009. "resolutions": [
  11010. {
  11011. "resolved": {
  11012. "type": "module",
  11013. "url": "cce:/internal/x/cc"
  11014. },
  11015. "messages": []
  11016. },
  11017. {
  11018. "resolved": {
  11019. "type": "module",
  11020. "url": "cce:/internal/x/cc"
  11021. },
  11022. "messages": []
  11023. },
  11024. {
  11025. "resolved": {
  11026. "type": "module",
  11027. "url": "cce:/internal/x/cc"
  11028. },
  11029. "messages": []
  11030. }
  11031. ]
  11032. },
  11033. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/SpineView.ts": {
  11034. "mTimestamp": {
  11035. "mtime": 1715327222000,
  11036. "uuid": "ce8894fa-d92a-48f2-8b77-f7f3b49c5ad3"
  11037. },
  11038. "chunkId": "20712297188dd3bbe9fb3acc1799edea45dda86b",
  11039. "imports": [
  11040. {
  11041. "value": "cc"
  11042. },
  11043. {
  11044. "value": "cc"
  11045. },
  11046. {
  11047. "value": "cc",
  11048. "loc": {
  11049. "start": {
  11050. "line": 1,
  11051. "column": 56
  11052. },
  11053. "end": {
  11054. "line": 1,
  11055. "column": 60
  11056. }
  11057. }
  11058. }
  11059. ],
  11060. "type": "esm",
  11061. "resolutions": [
  11062. {
  11063. "resolved": {
  11064. "type": "module",
  11065. "url": "cce:/internal/x/cc"
  11066. },
  11067. "messages": []
  11068. },
  11069. {
  11070. "resolved": {
  11071. "type": "module",
  11072. "url": "cce:/internal/x/cc"
  11073. },
  11074. "messages": []
  11075. },
  11076. {
  11077. "resolved": {
  11078. "type": "module",
  11079. "url": "cce:/internal/x/cc"
  11080. },
  11081. "messages": []
  11082. }
  11083. ]
  11084. },
  11085. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_comp/UISpineMovie.ts": {
  11086. "mTimestamp": {
  11087. "mtime": 1715327438000,
  11088. "uuid": "4ce97f73-72dc-43eb-b758-567a56e0c9fe"
  11089. },
  11090. "chunkId": "b338d43f47dfc4fb7dece127fe5d88d8c0b856eb",
  11091. "imports": [
  11092. {
  11093. "value": "cc"
  11094. },
  11095. {
  11096. "value": "cc"
  11097. },
  11098. {
  11099. "value": "cc",
  11100. "loc": {
  11101. "start": {
  11102. "line": 1,
  11103. "column": 59
  11104. },
  11105. "end": {
  11106. "line": 1,
  11107. "column": 63
  11108. }
  11109. }
  11110. }
  11111. ],
  11112. "type": "esm",
  11113. "resolutions": [
  11114. {
  11115. "resolved": {
  11116. "type": "module",
  11117. "url": "cce:/internal/x/cc"
  11118. },
  11119. "messages": []
  11120. },
  11121. {
  11122. "resolved": {
  11123. "type": "module",
  11124. "url": "cce:/internal/x/cc"
  11125. },
  11126. "messages": []
  11127. },
  11128. {
  11129. "resolved": {
  11130. "type": "module",
  11131. "url": "cce:/internal/x/cc"
  11132. },
  11133. "messages": []
  11134. }
  11135. ]
  11136. },
  11137. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_alert/Layout_UIAlert.ts": {
  11138. "mTimestamp": {
  11139. "mtime": 1732779522000,
  11140. "uuid": "6ecd6225-cc8f-473c-b208-a90e1a1d1710"
  11141. },
  11142. "chunkId": "cbb4d04a73447a5aa3e85d805611e17bc6e216c1",
  11143. "imports": [
  11144. {
  11145. "value": "cc"
  11146. },
  11147. {
  11148. "value": "cc"
  11149. },
  11150. {
  11151. "value": "cc",
  11152. "loc": {
  11153. "start": {
  11154. "line": 1,
  11155. "column": 59
  11156. },
  11157. "end": {
  11158. "line": 1,
  11159. "column": 63
  11160. }
  11161. }
  11162. }
  11163. ],
  11164. "type": "esm",
  11165. "resolutions": [
  11166. {
  11167. "resolved": {
  11168. "type": "module",
  11169. "url": "cce:/internal/x/cc"
  11170. },
  11171. "messages": []
  11172. },
  11173. {
  11174. "resolved": {
  11175. "type": "module",
  11176. "url": "cce:/internal/x/cc"
  11177. },
  11178. "messages": []
  11179. },
  11180. {
  11181. "resolved": {
  11182. "type": "module",
  11183. "url": "cce:/internal/x/cc"
  11184. },
  11185. "messages": []
  11186. }
  11187. ]
  11188. },
  11189. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_alert/UIAlert.ts": {
  11190. "mTimestamp": {
  11191. "mtime": 1734059022000,
  11192. "uuid": "7e91ff06-d46b-4c43-8f8b-bedb3d884783"
  11193. },
  11194. "chunkId": "974d5e18287f52413bf4aef79e6b1b43e2db1119",
  11195. "imports": [
  11196. {
  11197. "value": "cce:/internal/code-quality/cr.mjs",
  11198. "resolved": "__unresolved_0"
  11199. },
  11200. {
  11201. "value": "cc"
  11202. },
  11203. {
  11204. "value": "../../core/ui/ui",
  11205. "resolved": "__unresolved_1",
  11206. "loc": {
  11207. "start": {
  11208. "line": 2,
  11209. "column": 43
  11210. },
  11211. "end": {
  11212. "line": 2,
  11213. "column": 61
  11214. }
  11215. }
  11216. },
  11217. {
  11218. "value": "../../core/util_class/Wait",
  11219. "resolved": "__unresolved_2",
  11220. "loc": {
  11221. "start": {
  11222. "line": 3,
  11223. "column": 25
  11224. },
  11225. "end": {
  11226. "line": 3,
  11227. "column": 53
  11228. }
  11229. }
  11230. },
  11231. {
  11232. "value": "../../scripts/ModuleDef",
  11233. "resolved": "__unresolved_3",
  11234. "loc": {
  11235. "start": {
  11236. "line": 4,
  11237. "column": 26
  11238. },
  11239. "end": {
  11240. "line": 4,
  11241. "column": 51
  11242. }
  11243. }
  11244. },
  11245. {
  11246. "value": "./Layout_UIAlert",
  11247. "resolved": "__unresolved_4",
  11248. "loc": {
  11249. "start": {
  11250. "line": 5,
  11251. "column": 31
  11252. },
  11253. "end": {
  11254. "line": 5,
  11255. "column": 49
  11256. }
  11257. }
  11258. }
  11259. ],
  11260. "type": "esm",
  11261. "resolutions": [
  11262. {
  11263. "resolved": {
  11264. "type": "module",
  11265. "url": "cce:/internal/code-quality/cr.mjs"
  11266. },
  11267. "messages": []
  11268. },
  11269. {
  11270. "resolved": {
  11271. "type": "module",
  11272. "url": "cce:/internal/x/cc"
  11273. },
  11274. "messages": []
  11275. },
  11276. {
  11277. "resolved": {
  11278. "type": "module",
  11279. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts"
  11280. },
  11281. "messages": []
  11282. },
  11283. {
  11284. "resolved": {
  11285. "type": "module",
  11286. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/util_class/Wait.ts"
  11287. },
  11288. "messages": []
  11289. },
  11290. {
  11291. "resolved": {
  11292. "type": "module",
  11293. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/scripts/ModuleDef.ts"
  11294. },
  11295. "messages": []
  11296. },
  11297. {
  11298. "resolved": {
  11299. "type": "module",
  11300. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_alert/Layout_UIAlert.ts"
  11301. },
  11302. "messages": []
  11303. }
  11304. ]
  11305. },
  11306. "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI/UI_Item.ts": {
  11307. "mTimestamp": {
  11308. "mtime": 1736750180782.1233,
  11309. "uuid": "12c66d9b-54d1-43c6-855e-68c512fc0bc6"
  11310. },
  11311. "chunkId": "5cc3ce28e30e8e416eb47ff816c05a8fc1f78292",
  11312. "imports": [
  11313. {
  11314. "value": "cce:/internal/code-quality/cr.mjs",
  11315. "resolved": "__unresolved_0"
  11316. },
  11317. {
  11318. "value": "cc"
  11319. },
  11320. {
  11321. "value": "cc"
  11322. },
  11323. {
  11324. "value": "cc",
  11325. "loc": {
  11326. "start": {
  11327. "line": 1,
  11328. "column": 104
  11329. },
  11330. "end": {
  11331. "line": 1,
  11332. "column": 108
  11333. }
  11334. }
  11335. },
  11336. {
  11337. "value": "../../../ch/ch",
  11338. "resolved": "__unresolved_1",
  11339. "loc": {
  11340. "start": {
  11341. "line": 3,
  11342. "column": 19
  11343. },
  11344. "end": {
  11345. "line": 3,
  11346. "column": 35
  11347. }
  11348. }
  11349. },
  11350. {
  11351. "value": "../../../core/ui/ui",
  11352. "resolved": "__unresolved_2",
  11353. "loc": {
  11354. "start": {
  11355. "line": 4,
  11356. "column": 20
  11357. },
  11358. "end": {
  11359. "line": 4,
  11360. "column": 41
  11361. }
  11362. }
  11363. },
  11364. {
  11365. "value": "../../../module_basic/ui_notify/UINotify",
  11366. "resolved": "__unresolved_3",
  11367. "loc": {
  11368. "start": {
  11369. "line": 6,
  11370. "column": 25
  11371. },
  11372. "end": {
  11373. "line": 6,
  11374. "column": 67
  11375. }
  11376. }
  11377. },
  11378. {
  11379. "value": "db://assets/Scripts/Hall",
  11380. "resolved": "__unresolved_4",
  11381. "loc": {
  11382. "start": {
  11383. "line": 7,
  11384. "column": 21
  11385. },
  11386. "end": {
  11387. "line": 7,
  11388. "column": 47
  11389. }
  11390. }
  11391. },
  11392. {
  11393. "value": "../UI_Main/UI_Main",
  11394. "resolved": "__unresolved_5",
  11395. "loc": {
  11396. "start": {
  11397. "line": 8,
  11398. "column": 24
  11399. },
  11400. "end": {
  11401. "line": 8,
  11402. "column": 44
  11403. }
  11404. }
  11405. }
  11406. ],
  11407. "type": "esm",
  11408. "resolutions": [
  11409. {
  11410. "resolved": {
  11411. "type": "module",
  11412. "url": "cce:/internal/code-quality/cr.mjs"
  11413. },
  11414. "messages": []
  11415. },
  11416. {
  11417. "resolved": {
  11418. "type": "module",
  11419. "url": "cce:/internal/x/cc"
  11420. },
  11421. "messages": []
  11422. },
  11423. {
  11424. "resolved": {
  11425. "type": "module",
  11426. "url": "cce:/internal/x/cc"
  11427. },
  11428. "messages": []
  11429. },
  11430. {
  11431. "resolved": {
  11432. "type": "module",
  11433. "url": "cce:/internal/x/cc"
  11434. },
  11435. "messages": []
  11436. },
  11437. {
  11438. "resolved": {
  11439. "type": "module",
  11440. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/ch/ch.ts"
  11441. },
  11442. "messages": []
  11443. },
  11444. {
  11445. "resolved": {
  11446. "type": "module",
  11447. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/core/ui/ui.ts"
  11448. },
  11449. "messages": []
  11450. },
  11451. {
  11452. "resolved": {
  11453. "type": "module",
  11454. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_basic/ui_notify/UINotify.ts"
  11455. },
  11456. "messages": []
  11457. },
  11458. {
  11459. "resolved": {
  11460. "type": "module",
  11461. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/Scripts/Hall.ts"
  11462. },
  11463. "messages": []
  11464. },
  11465. {
  11466. "resolved": {
  11467. "type": "module",
  11468. "url": "file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts"
  11469. },
  11470. "messages": []
  11471. }
  11472. ]
  11473. }
  11474. }
  11475. }