main-record.json 285 KB

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