TreasureNode.prefab 265 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567145681456914570145711457214573145741457514576145771457814579145801458114582145831458414585145861458714588145891459014591145921459314594145951459614597145981459914600146011460214603146041460514606146071460814609146101461114612146131461414615146161461714618146191462014621146221462314624146251462614627146281462914630146311463214633146341463514636146371463814639146401464114642146431464414645146461464714648146491465014651146521465314654146551465614657146581465914660146611466214663146641466514666146671466814669146701467114672146731467414675146761467714678146791468014681146821468314684146851468614687146881468914690146911469214693146941469514696146971469814699147001470114702147031470414705147061470714708147091471014711147121471314714147151471614717147181471914720147211472214723147241472514726147271472814729147301473114732147331473414735147361473714738147391474014741147421474314744147451474614747147481474914750147511475214753147541475514756147571475814759147601476114762147631476414765147661476714768147691477014771147721477314774147751477614777147781477914780147811478214783147841478514786147871478814789147901479114792147931479414795147961479714798147991480014801148021480314804148051480614807148081480914810148111481214813148141481514816148171481814819148201482114822148231482414825148261482714828148291483014831148321483314834148351483614837148381483914840148411484214843148441484514846148471484814849148501485114852148531485414855148561485714858148591486014861148621486314864148651486614867148681486914870148711487214873148741487514876148771487814879148801488114882148831488414885148861488714888148891489014891148921489314894148951489614897148981489914900149011490214903149041490514906149071490814909149101491114912149131491414915149161491714918149191492014921149221492314924149251492614927149281492914930149311493214933149341493514936149371493814939149401494114942149431494414945149461494714948149491495014951149521495314954149551495614957149581495914960149611496214963149641496514966149671496814969149701497114972149731497414975149761497714978149791498014981149821498314984149851498614987149881498914990149911499214993149941499514996149971499814999150001500115002150031500415005150061500715008150091501015011150121501315014150151501615017150181501915020150211502215023150241502515026150271502815029150301503115032150331503415035150361503715038150391504015041150421504315044150451504615047150481504915050150511505215053150541505515056150571505815059150601506115062150631506415065150661506715068150691507015071150721507315074150751507615077150781507915080150811508215083150841508515086150871508815089150901509115092150931509415095150961509715098150991510015101151021510315104151051510615107151081510915110151111511215113151141511515116151171511815119151201512115122151231512415125151261512715128151291513015131151321513315134151351513615137151381513915140151411514215143151441514515146151471514815149151501515115152151531515415155151561515715158151591516015161151621516315164151651516615167151681516915170151711517215173151741517515176151771517815179151801518115182151831518415185151861518715188151891519015191151921519315194151951519615197
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "TreasureNode",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 6
  25. },
  26. {
  27. "__id__": 152
  28. },
  29. {
  30. "__id__": 224
  31. },
  32. {
  33. "__id__": 274
  34. },
  35. {
  36. "__id__": 322
  37. },
  38. {
  39. "__id__": 347
  40. }
  41. ],
  42. "_active": true,
  43. "_components": [
  44. {
  45. "__id__": 416
  46. },
  47. {
  48. "__id__": 417
  49. }
  50. ],
  51. "_prefab": {
  52. "__id__": 418
  53. },
  54. "_opacity": 255,
  55. "_color": {
  56. "__type__": "cc.Color",
  57. "r": 255,
  58. "g": 255,
  59. "b": 255,
  60. "a": 255
  61. },
  62. "_contentSize": {
  63. "__type__": "cc.Size",
  64. "width": 750,
  65. "height": 1334
  66. },
  67. "_anchorPoint": {
  68. "__type__": "cc.Vec2",
  69. "x": 0.5,
  70. "y": 0.5
  71. },
  72. "_trs": {
  73. "__type__": "TypedArray",
  74. "ctor": "Float64Array",
  75. "array": [
  76. 0,
  77. 0,
  78. 0,
  79. 0,
  80. 0,
  81. 0,
  82. 1,
  83. 1,
  84. 1,
  85. 1
  86. ]
  87. },
  88. "_eulerAngles": {
  89. "__type__": "cc.Vec3",
  90. "x": 0,
  91. "y": 0,
  92. "z": 0
  93. },
  94. "_skewX": 0,
  95. "_skewY": 0,
  96. "_is3DNode": false,
  97. "_groupIndex": 0,
  98. "groupIndex": 0,
  99. "_id": ""
  100. },
  101. {
  102. "__type__": "cc.Node",
  103. "_name": "New Sprite(Splash)",
  104. "_objFlags": 0,
  105. "_parent": {
  106. "__id__": 1
  107. },
  108. "_children": [],
  109. "_active": true,
  110. "_components": [
  111. {
  112. "__id__": 3
  113. },
  114. {
  115. "__id__": 4
  116. }
  117. ],
  118. "_prefab": {
  119. "__id__": 5
  120. },
  121. "_opacity": 255,
  122. "_color": {
  123. "__type__": "cc.Color",
  124. "r": 62,
  125. "g": 34,
  126. "b": 30,
  127. "a": 255
  128. },
  129. "_contentSize": {
  130. "__type__": "cc.Size",
  131. "width": 750,
  132. "height": 2000
  133. },
  134. "_anchorPoint": {
  135. "__type__": "cc.Vec2",
  136. "x": 0.5,
  137. "y": 0.5
  138. },
  139. "_trs": {
  140. "__type__": "TypedArray",
  141. "ctor": "Float64Array",
  142. "array": [
  143. 0,
  144. 0,
  145. 0,
  146. 0,
  147. 0,
  148. 0,
  149. 1,
  150. 1,
  151. 1,
  152. 1
  153. ]
  154. },
  155. "_eulerAngles": {
  156. "__type__": "cc.Vec3",
  157. "x": 0,
  158. "y": 0,
  159. "z": 0
  160. },
  161. "_skewX": 0,
  162. "_skewY": 0,
  163. "_is3DNode": false,
  164. "_groupIndex": 0,
  165. "groupIndex": 0,
  166. "_id": ""
  167. },
  168. {
  169. "__type__": "cc.Sprite",
  170. "_name": "New Sprite(Splash)<Sprite>",
  171. "_objFlags": 0,
  172. "node": {
  173. "__id__": 2
  174. },
  175. "_enabled": true,
  176. "_materials": [
  177. {
  178. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  179. }
  180. ],
  181. "_srcBlendFactor": 770,
  182. "_dstBlendFactor": 771,
  183. "_spriteFrame": {
  184. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  185. },
  186. "_type": 0,
  187. "_sizeMode": 0,
  188. "_fillType": 0,
  189. "_fillCenter": {
  190. "__type__": "cc.Vec2",
  191. "x": 0,
  192. "y": 0
  193. },
  194. "_fillStart": 0,
  195. "_fillRange": 0,
  196. "_isTrimmedMode": true,
  197. "_atlas": null,
  198. "_id": ""
  199. },
  200. {
  201. "__type__": "cc.BlockInputEvents",
  202. "_name": "",
  203. "_objFlags": 0,
  204. "node": {
  205. "__id__": 2
  206. },
  207. "_enabled": true,
  208. "_id": ""
  209. },
  210. {
  211. "__type__": "cc.PrefabInfo",
  212. "root": {
  213. "__id__": 1
  214. },
  215. "asset": {
  216. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  217. },
  218. "fileId": "6fbqhfXHJEvq/d2tcDK9eb",
  219. "sync": false
  220. },
  221. {
  222. "__type__": "cc.Node",
  223. "_name": "treasurePart",
  224. "_objFlags": 512,
  225. "_parent": {
  226. "__id__": 1
  227. },
  228. "_children": [
  229. {
  230. "__id__": 7
  231. },
  232. {
  233. "__id__": 37
  234. },
  235. {
  236. "__id__": 40
  237. }
  238. ],
  239. "_active": true,
  240. "_components": [
  241. {
  242. "__id__": 150
  243. }
  244. ],
  245. "_prefab": {
  246. "__id__": 151
  247. },
  248. "_opacity": 255,
  249. "_color": {
  250. "__type__": "cc.Color",
  251. "r": 255,
  252. "g": 255,
  253. "b": 255,
  254. "a": 255
  255. },
  256. "_contentSize": {
  257. "__type__": "cc.Size",
  258. "width": 750,
  259. "height": 1334
  260. },
  261. "_anchorPoint": {
  262. "__type__": "cc.Vec2",
  263. "x": 0.5,
  264. "y": 0.5
  265. },
  266. "_trs": {
  267. "__type__": "TypedArray",
  268. "ctor": "Float64Array",
  269. "array": [
  270. 0,
  271. 0,
  272. 0,
  273. 0,
  274. 0,
  275. 0,
  276. 1,
  277. 1,
  278. 1,
  279. 1
  280. ]
  281. },
  282. "_eulerAngles": {
  283. "__type__": "cc.Vec3",
  284. "x": 0,
  285. "y": 0,
  286. "z": 0
  287. },
  288. "_skewX": 0,
  289. "_skewY": 0,
  290. "_is3DNode": false,
  291. "_groupIndex": 0,
  292. "groupIndex": 0,
  293. "_id": ""
  294. },
  295. {
  296. "__type__": "cc.Node",
  297. "_name": "page_top_bg",
  298. "_objFlags": 0,
  299. "_parent": {
  300. "__id__": 6
  301. },
  302. "_children": [
  303. {
  304. "__id__": 8
  305. },
  306. {
  307. "__id__": 11
  308. },
  309. {
  310. "__id__": 14
  311. },
  312. {
  313. "__id__": 22
  314. },
  315. {
  316. "__id__": 30
  317. }
  318. ],
  319. "_active": true,
  320. "_components": [
  321. {
  322. "__id__": 35
  323. }
  324. ],
  325. "_prefab": {
  326. "__id__": 36
  327. },
  328. "_opacity": 255,
  329. "_color": {
  330. "__type__": "cc.Color",
  331. "r": 255,
  332. "g": 255,
  333. "b": 255,
  334. "a": 255
  335. },
  336. "_contentSize": {
  337. "__type__": "cc.Size",
  338. "width": 750,
  339. "height": 123
  340. },
  341. "_anchorPoint": {
  342. "__type__": "cc.Vec2",
  343. "x": 0.5,
  344. "y": 0.5
  345. },
  346. "_trs": {
  347. "__type__": "TypedArray",
  348. "ctor": "Float64Array",
  349. "array": [
  350. 0,
  351. 552.967,
  352. 0,
  353. 0,
  354. 0,
  355. 0,
  356. 1,
  357. 1,
  358. 1,
  359. 1
  360. ]
  361. },
  362. "_eulerAngles": {
  363. "__type__": "cc.Vec3",
  364. "x": 0,
  365. "y": 0,
  366. "z": 0
  367. },
  368. "_skewX": 0,
  369. "_skewY": 0,
  370. "_is3DNode": false,
  371. "_groupIndex": 0,
  372. "groupIndex": 0,
  373. "_id": ""
  374. },
  375. {
  376. "__type__": "cc.Node",
  377. "_name": "page_top_bg",
  378. "_objFlags": 0,
  379. "_parent": {
  380. "__id__": 7
  381. },
  382. "_children": [],
  383. "_active": true,
  384. "_components": [
  385. {
  386. "__id__": 9
  387. }
  388. ],
  389. "_prefab": {
  390. "__id__": 10
  391. },
  392. "_opacity": 255,
  393. "_color": {
  394. "__type__": "cc.Color",
  395. "r": 255,
  396. "g": 255,
  397. "b": 255,
  398. "a": 255
  399. },
  400. "_contentSize": {
  401. "__type__": "cc.Size",
  402. "width": 750,
  403. "height": 90
  404. },
  405. "_anchorPoint": {
  406. "__type__": "cc.Vec2",
  407. "x": 0.5,
  408. "y": 0.5
  409. },
  410. "_trs": {
  411. "__type__": "TypedArray",
  412. "ctor": "Float64Array",
  413. "array": [
  414. 0,
  415. 16.5,
  416. 0,
  417. 0,
  418. 0,
  419. 0,
  420. 1,
  421. 1,
  422. 1,
  423. 1
  424. ]
  425. },
  426. "_eulerAngles": {
  427. "__type__": "cc.Vec3",
  428. "x": 0,
  429. "y": 0,
  430. "z": 0
  431. },
  432. "_skewX": 0,
  433. "_skewY": 0,
  434. "_is3DNode": false,
  435. "_groupIndex": 0,
  436. "groupIndex": 0,
  437. "_id": ""
  438. },
  439. {
  440. "__type__": "cc.Sprite",
  441. "_name": "page_top_bg<Sprite>",
  442. "_objFlags": 0,
  443. "node": {
  444. "__id__": 8
  445. },
  446. "_enabled": true,
  447. "_materials": [
  448. {
  449. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  450. }
  451. ],
  452. "_srcBlendFactor": 770,
  453. "_dstBlendFactor": 771,
  454. "_spriteFrame": {
  455. "__uuid__": "1751bf37-a63a-447a-9171-b8fe8f7da24c"
  456. },
  457. "_type": 0,
  458. "_sizeMode": 2,
  459. "_fillType": 0,
  460. "_fillCenter": {
  461. "__type__": "cc.Vec2",
  462. "x": 0,
  463. "y": 0
  464. },
  465. "_fillStart": 0,
  466. "_fillRange": 0,
  467. "_isTrimmedMode": true,
  468. "_atlas": null,
  469. "_id": ""
  470. },
  471. {
  472. "__type__": "cc.PrefabInfo",
  473. "root": {
  474. "__id__": 1
  475. },
  476. "asset": {
  477. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  478. },
  479. "fileId": "9fRI1Q0ChGOrdMi373M/a9",
  480. "sync": false
  481. },
  482. {
  483. "__type__": "cc.Node",
  484. "_name": "page_top_txt",
  485. "_objFlags": 0,
  486. "_parent": {
  487. "__id__": 7
  488. },
  489. "_children": [],
  490. "_active": true,
  491. "_components": [
  492. {
  493. "__id__": 12
  494. }
  495. ],
  496. "_prefab": {
  497. "__id__": 13
  498. },
  499. "_opacity": 255,
  500. "_color": {
  501. "__type__": "cc.Color",
  502. "r": 255,
  503. "g": 255,
  504. "b": 255,
  505. "a": 255
  506. },
  507. "_contentSize": {
  508. "__type__": "cc.Size",
  509. "width": 198,
  510. "height": 49
  511. },
  512. "_anchorPoint": {
  513. "__type__": "cc.Vec2",
  514. "x": 0.5,
  515. "y": 0.5
  516. },
  517. "_trs": {
  518. "__type__": "TypedArray",
  519. "ctor": "Float64Array",
  520. "array": [
  521. -159.897,
  522. 15.026,
  523. 0,
  524. 0,
  525. 0,
  526. 0,
  527. 1,
  528. 1,
  529. 1,
  530. 1
  531. ]
  532. },
  533. "_eulerAngles": {
  534. "__type__": "cc.Vec3",
  535. "x": 0,
  536. "y": 0,
  537. "z": 0
  538. },
  539. "_skewX": 0,
  540. "_skewY": 0,
  541. "_is3DNode": false,
  542. "_groupIndex": 0,
  543. "groupIndex": 0,
  544. "_id": ""
  545. },
  546. {
  547. "__type__": "cc.Sprite",
  548. "_name": "page_top_txt<Sprite>",
  549. "_objFlags": 0,
  550. "node": {
  551. "__id__": 11
  552. },
  553. "_enabled": true,
  554. "_materials": [
  555. {
  556. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  557. }
  558. ],
  559. "_srcBlendFactor": 770,
  560. "_dstBlendFactor": 771,
  561. "_spriteFrame": {
  562. "__uuid__": "0b9b4c89-970a-4e81-ae64-78729462719c"
  563. },
  564. "_type": 0,
  565. "_sizeMode": 1,
  566. "_fillType": 0,
  567. "_fillCenter": {
  568. "__type__": "cc.Vec2",
  569. "x": 0,
  570. "y": 0
  571. },
  572. "_fillStart": 0,
  573. "_fillRange": 0,
  574. "_isTrimmedMode": true,
  575. "_atlas": null,
  576. "_id": ""
  577. },
  578. {
  579. "__type__": "cc.PrefabInfo",
  580. "root": {
  581. "__id__": 1
  582. },
  583. "asset": {
  584. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  585. },
  586. "fileId": "64/bsx9+tIYL86C/qn4GG1",
  587. "sync": false
  588. },
  589. {
  590. "__type__": "cc.Node",
  591. "_name": "btnClose",
  592. "_objFlags": 0,
  593. "_parent": {
  594. "__id__": 7
  595. },
  596. "_children": [
  597. {
  598. "__id__": 15
  599. }
  600. ],
  601. "_active": true,
  602. "_components": [
  603. {
  604. "__id__": 19
  605. }
  606. ],
  607. "_prefab": {
  608. "__id__": 21
  609. },
  610. "_opacity": 255,
  611. "_color": {
  612. "__type__": "cc.Color",
  613. "r": 255,
  614. "g": 255,
  615. "b": 255,
  616. "a": 255
  617. },
  618. "_contentSize": {
  619. "__type__": "cc.Size",
  620. "width": 100,
  621. "height": 100
  622. },
  623. "_anchorPoint": {
  624. "__type__": "cc.Vec2",
  625. "x": 0.5,
  626. "y": 0.5
  627. },
  628. "_trs": {
  629. "__type__": "TypedArray",
  630. "ctor": "Float64Array",
  631. "array": [
  632. -326.025,
  633. 15,
  634. 0,
  635. 0,
  636. 0,
  637. 0,
  638. 1,
  639. 1,
  640. 1,
  641. 1
  642. ]
  643. },
  644. "_eulerAngles": {
  645. "__type__": "cc.Vec3",
  646. "x": 0,
  647. "y": 0,
  648. "z": 0
  649. },
  650. "_skewX": 0,
  651. "_skewY": 0,
  652. "_is3DNode": false,
  653. "_groupIndex": 0,
  654. "groupIndex": 0,
  655. "_id": ""
  656. },
  657. {
  658. "__type__": "cc.Node",
  659. "_name": "Background",
  660. "_objFlags": 512,
  661. "_parent": {
  662. "__id__": 14
  663. },
  664. "_children": [],
  665. "_active": true,
  666. "_components": [
  667. {
  668. "__id__": 16
  669. },
  670. {
  671. "__id__": 17
  672. }
  673. ],
  674. "_prefab": {
  675. "__id__": 18
  676. },
  677. "_opacity": 255,
  678. "_color": {
  679. "__type__": "cc.Color",
  680. "r": 255,
  681. "g": 255,
  682. "b": 255,
  683. "a": 255
  684. },
  685. "_contentSize": {
  686. "__type__": "cc.Size",
  687. "width": 75,
  688. "height": 60
  689. },
  690. "_anchorPoint": {
  691. "__type__": "cc.Vec2",
  692. "x": 0.5,
  693. "y": 0.5
  694. },
  695. "_trs": {
  696. "__type__": "TypedArray",
  697. "ctor": "Float64Array",
  698. "array": [
  699. 0,
  700. 0,
  701. 0,
  702. 0,
  703. 0,
  704. 0,
  705. 1,
  706. 1,
  707. 1,
  708. 1
  709. ]
  710. },
  711. "_eulerAngles": {
  712. "__type__": "cc.Vec3",
  713. "x": 0,
  714. "y": 0,
  715. "z": 0
  716. },
  717. "_skewX": 0,
  718. "_skewY": 0,
  719. "_is3DNode": false,
  720. "_groupIndex": 0,
  721. "groupIndex": 0,
  722. "_id": ""
  723. },
  724. {
  725. "__type__": "cc.Sprite",
  726. "_name": "Background<Sprite>",
  727. "_objFlags": 0,
  728. "node": {
  729. "__id__": 15
  730. },
  731. "_enabled": true,
  732. "_materials": [
  733. {
  734. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  735. }
  736. ],
  737. "_srcBlendFactor": 770,
  738. "_dstBlendFactor": 771,
  739. "_spriteFrame": {
  740. "__uuid__": "a4cab443-5965-4853-87ad-b01f0a50b085"
  741. },
  742. "_type": 0,
  743. "_sizeMode": 1,
  744. "_fillType": 0,
  745. "_fillCenter": {
  746. "__type__": "cc.Vec2",
  747. "x": 0,
  748. "y": 0
  749. },
  750. "_fillStart": 0,
  751. "_fillRange": 0,
  752. "_isTrimmedMode": true,
  753. "_atlas": null,
  754. "_id": ""
  755. },
  756. {
  757. "__type__": "cc.Widget",
  758. "_name": "",
  759. "_objFlags": 0,
  760. "node": {
  761. "__id__": 15
  762. },
  763. "_enabled": true,
  764. "alignMode": 0,
  765. "_target": null,
  766. "_alignFlags": 45,
  767. "_left": 12.5,
  768. "_right": 12.5,
  769. "_top": 20,
  770. "_bottom": 20,
  771. "_verticalCenter": 0,
  772. "_horizontalCenter": 0,
  773. "_isAbsLeft": true,
  774. "_isAbsRight": true,
  775. "_isAbsTop": true,
  776. "_isAbsBottom": true,
  777. "_isAbsHorizontalCenter": true,
  778. "_isAbsVerticalCenter": true,
  779. "_originalWidth": 100,
  780. "_originalHeight": 40,
  781. "_id": ""
  782. },
  783. {
  784. "__type__": "cc.PrefabInfo",
  785. "root": {
  786. "__id__": 1
  787. },
  788. "asset": {
  789. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  790. },
  791. "fileId": "5fygHoU2JMELbWRxB1z1OV",
  792. "sync": false
  793. },
  794. {
  795. "__type__": "cc.Button",
  796. "_name": "",
  797. "_objFlags": 0,
  798. "node": {
  799. "__id__": 14
  800. },
  801. "_enabled": true,
  802. "_normalMaterial": {
  803. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  804. },
  805. "_grayMaterial": null,
  806. "duration": 0.1,
  807. "zoomScale": 0.8,
  808. "clickEvents": [
  809. {
  810. "__id__": 20
  811. }
  812. ],
  813. "_N$interactable": true,
  814. "_N$enableAutoGrayEffect": false,
  815. "_N$transition": 3,
  816. "transition": 3,
  817. "_N$normalColor": {
  818. "__type__": "cc.Color",
  819. "r": 230,
  820. "g": 230,
  821. "b": 230,
  822. "a": 255
  823. },
  824. "_N$pressedColor": {
  825. "__type__": "cc.Color",
  826. "r": 200,
  827. "g": 200,
  828. "b": 200,
  829. "a": 255
  830. },
  831. "pressedColor": {
  832. "__type__": "cc.Color",
  833. "r": 200,
  834. "g": 200,
  835. "b": 200,
  836. "a": 255
  837. },
  838. "_N$hoverColor": {
  839. "__type__": "cc.Color",
  840. "r": 255,
  841. "g": 255,
  842. "b": 255,
  843. "a": 255
  844. },
  845. "hoverColor": {
  846. "__type__": "cc.Color",
  847. "r": 255,
  848. "g": 255,
  849. "b": 255,
  850. "a": 255
  851. },
  852. "_N$disabledColor": {
  853. "__type__": "cc.Color",
  854. "r": 120,
  855. "g": 120,
  856. "b": 120,
  857. "a": 200
  858. },
  859. "_N$normalSprite": {
  860. "__uuid__": "c532e90f-bf60-436c-9c3e-84d95d058a4f"
  861. },
  862. "_N$pressedSprite": {
  863. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  864. },
  865. "pressedSprite": {
  866. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  867. },
  868. "_N$hoverSprite": {
  869. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  870. },
  871. "hoverSprite": {
  872. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  873. },
  874. "_N$disabledSprite": {
  875. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  876. },
  877. "_N$target": {
  878. "__id__": 14
  879. },
  880. "_id": ""
  881. },
  882. {
  883. "__type__": "cc.ClickEvent",
  884. "target": {
  885. "__id__": 1
  886. },
  887. "component": "",
  888. "_componentId": "b150700q4JFCaxD1R8c6DRF",
  889. "handler": "clickClose",
  890. "customEventData": ""
  891. },
  892. {
  893. "__type__": "cc.PrefabInfo",
  894. "root": {
  895. "__id__": 1
  896. },
  897. "asset": {
  898. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  899. },
  900. "fileId": "7dUfGN42dLNKpSgFsvHzcW",
  901. "sync": false
  902. },
  903. {
  904. "__type__": "cc.Node",
  905. "_name": "btnHelp",
  906. "_objFlags": 0,
  907. "_parent": {
  908. "__id__": 7
  909. },
  910. "_children": [
  911. {
  912. "__id__": 23
  913. }
  914. ],
  915. "_active": true,
  916. "_components": [
  917. {
  918. "__id__": 27
  919. }
  920. ],
  921. "_prefab": {
  922. "__id__": 29
  923. },
  924. "_opacity": 255,
  925. "_color": {
  926. "__type__": "cc.Color",
  927. "r": 255,
  928. "g": 255,
  929. "b": 255,
  930. "a": 255
  931. },
  932. "_contentSize": {
  933. "__type__": "cc.Size",
  934. "width": 100,
  935. "height": 100
  936. },
  937. "_anchorPoint": {
  938. "__type__": "cc.Vec2",
  939. "x": 0.5,
  940. "y": 0.5
  941. },
  942. "_trs": {
  943. "__type__": "TypedArray",
  944. "ctor": "Float64Array",
  945. "array": [
  946. 316.532,
  947. 14.246,
  948. 0,
  949. 0,
  950. 0,
  951. 0,
  952. 1,
  953. 1,
  954. 1,
  955. 1
  956. ]
  957. },
  958. "_eulerAngles": {
  959. "__type__": "cc.Vec3",
  960. "x": 0,
  961. "y": 0,
  962. "z": 0
  963. },
  964. "_skewX": 0,
  965. "_skewY": 0,
  966. "_is3DNode": false,
  967. "_groupIndex": 0,
  968. "groupIndex": 0,
  969. "_id": ""
  970. },
  971. {
  972. "__type__": "cc.Node",
  973. "_name": "Background",
  974. "_objFlags": 512,
  975. "_parent": {
  976. "__id__": 22
  977. },
  978. "_children": [],
  979. "_active": true,
  980. "_components": [
  981. {
  982. "__id__": 24
  983. },
  984. {
  985. "__id__": 25
  986. }
  987. ],
  988. "_prefab": {
  989. "__id__": 26
  990. },
  991. "_opacity": 255,
  992. "_color": {
  993. "__type__": "cc.Color",
  994. "r": 255,
  995. "g": 255,
  996. "b": 255,
  997. "a": 255
  998. },
  999. "_contentSize": {
  1000. "__type__": "cc.Size",
  1001. "width": 55,
  1002. "height": 54
  1003. },
  1004. "_anchorPoint": {
  1005. "__type__": "cc.Vec2",
  1006. "x": 0.5,
  1007. "y": 0.5
  1008. },
  1009. "_trs": {
  1010. "__type__": "TypedArray",
  1011. "ctor": "Float64Array",
  1012. "array": [
  1013. 0,
  1014. 0,
  1015. 0,
  1016. 0,
  1017. 0,
  1018. 0,
  1019. 1,
  1020. 1,
  1021. 1,
  1022. 1
  1023. ]
  1024. },
  1025. "_eulerAngles": {
  1026. "__type__": "cc.Vec3",
  1027. "x": 0,
  1028. "y": 0,
  1029. "z": 0
  1030. },
  1031. "_skewX": 0,
  1032. "_skewY": 0,
  1033. "_is3DNode": false,
  1034. "_groupIndex": 0,
  1035. "groupIndex": 0,
  1036. "_id": ""
  1037. },
  1038. {
  1039. "__type__": "cc.Sprite",
  1040. "_name": "Background<Sprite>",
  1041. "_objFlags": 0,
  1042. "node": {
  1043. "__id__": 23
  1044. },
  1045. "_enabled": true,
  1046. "_materials": [
  1047. {
  1048. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1049. }
  1050. ],
  1051. "_srcBlendFactor": 770,
  1052. "_dstBlendFactor": 771,
  1053. "_spriteFrame": {
  1054. "__uuid__": "bcad36a7-201b-41e6-8ae0-5de0b8c5444a"
  1055. },
  1056. "_type": 0,
  1057. "_sizeMode": 1,
  1058. "_fillType": 0,
  1059. "_fillCenter": {
  1060. "__type__": "cc.Vec2",
  1061. "x": 0,
  1062. "y": 0
  1063. },
  1064. "_fillStart": 0,
  1065. "_fillRange": 0,
  1066. "_isTrimmedMode": true,
  1067. "_atlas": null,
  1068. "_id": ""
  1069. },
  1070. {
  1071. "__type__": "cc.Widget",
  1072. "_name": "",
  1073. "_objFlags": 0,
  1074. "node": {
  1075. "__id__": 23
  1076. },
  1077. "_enabled": true,
  1078. "alignMode": 0,
  1079. "_target": null,
  1080. "_alignFlags": 45,
  1081. "_left": 22.5,
  1082. "_right": 22.5,
  1083. "_top": 23,
  1084. "_bottom": 23,
  1085. "_verticalCenter": 0,
  1086. "_horizontalCenter": 0,
  1087. "_isAbsLeft": true,
  1088. "_isAbsRight": true,
  1089. "_isAbsTop": true,
  1090. "_isAbsBottom": true,
  1091. "_isAbsHorizontalCenter": true,
  1092. "_isAbsVerticalCenter": true,
  1093. "_originalWidth": 100,
  1094. "_originalHeight": 40,
  1095. "_id": ""
  1096. },
  1097. {
  1098. "__type__": "cc.PrefabInfo",
  1099. "root": {
  1100. "__id__": 1
  1101. },
  1102. "asset": {
  1103. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  1104. },
  1105. "fileId": "9dJ8InG11J4768JxgvR+Wo",
  1106. "sync": false
  1107. },
  1108. {
  1109. "__type__": "cc.Button",
  1110. "_name": "",
  1111. "_objFlags": 0,
  1112. "node": {
  1113. "__id__": 22
  1114. },
  1115. "_enabled": true,
  1116. "_normalMaterial": {
  1117. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1118. },
  1119. "_grayMaterial": null,
  1120. "duration": 0.1,
  1121. "zoomScale": 0.8,
  1122. "clickEvents": [
  1123. {
  1124. "__id__": 28
  1125. }
  1126. ],
  1127. "_N$interactable": true,
  1128. "_N$enableAutoGrayEffect": false,
  1129. "_N$transition": 3,
  1130. "transition": 3,
  1131. "_N$normalColor": {
  1132. "__type__": "cc.Color",
  1133. "r": 230,
  1134. "g": 230,
  1135. "b": 230,
  1136. "a": 255
  1137. },
  1138. "_N$pressedColor": {
  1139. "__type__": "cc.Color",
  1140. "r": 200,
  1141. "g": 200,
  1142. "b": 200,
  1143. "a": 255
  1144. },
  1145. "pressedColor": {
  1146. "__type__": "cc.Color",
  1147. "r": 200,
  1148. "g": 200,
  1149. "b": 200,
  1150. "a": 255
  1151. },
  1152. "_N$hoverColor": {
  1153. "__type__": "cc.Color",
  1154. "r": 255,
  1155. "g": 255,
  1156. "b": 255,
  1157. "a": 255
  1158. },
  1159. "hoverColor": {
  1160. "__type__": "cc.Color",
  1161. "r": 255,
  1162. "g": 255,
  1163. "b": 255,
  1164. "a": 255
  1165. },
  1166. "_N$disabledColor": {
  1167. "__type__": "cc.Color",
  1168. "r": 120,
  1169. "g": 120,
  1170. "b": 120,
  1171. "a": 200
  1172. },
  1173. "_N$normalSprite": {
  1174. "__uuid__": "c532e90f-bf60-436c-9c3e-84d95d058a4f"
  1175. },
  1176. "_N$pressedSprite": {
  1177. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1178. },
  1179. "pressedSprite": {
  1180. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1181. },
  1182. "_N$hoverSprite": {
  1183. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1184. },
  1185. "hoverSprite": {
  1186. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1187. },
  1188. "_N$disabledSprite": {
  1189. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1190. },
  1191. "_N$target": {
  1192. "__id__": 22
  1193. },
  1194. "_id": ""
  1195. },
  1196. {
  1197. "__type__": "cc.ClickEvent",
  1198. "target": {
  1199. "__id__": 1
  1200. },
  1201. "component": "",
  1202. "_componentId": "b150700q4JFCaxD1R8c6DRF",
  1203. "handler": "clickOpenHelp",
  1204. "customEventData": ""
  1205. },
  1206. {
  1207. "__type__": "cc.PrefabInfo",
  1208. "root": {
  1209. "__id__": 1
  1210. },
  1211. "asset": {
  1212. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  1213. },
  1214. "fileId": "f0F/LQud5KcIC/dqXI+wBb",
  1215. "sync": false
  1216. },
  1217. {
  1218. "__type__": "cc.Node",
  1219. "_name": "labRedCode",
  1220. "_objFlags": 0,
  1221. "_parent": {
  1222. "__id__": 7
  1223. },
  1224. "_children": [],
  1225. "_active": true,
  1226. "_components": [
  1227. {
  1228. "__id__": 31
  1229. },
  1230. {
  1231. "__id__": 32
  1232. }
  1233. ],
  1234. "_prefab": {
  1235. "__id__": 34
  1236. },
  1237. "_opacity": 255,
  1238. "_color": {
  1239. "__type__": "cc.Color",
  1240. "r": 250,
  1241. "g": 255,
  1242. "b": 173,
  1243. "a": 255
  1244. },
  1245. "_contentSize": {
  1246. "__type__": "cc.Size",
  1247. "width": 150,
  1248. "height": 37.8
  1249. },
  1250. "_anchorPoint": {
  1251. "__type__": "cc.Vec2",
  1252. "x": 0.5,
  1253. "y": 0.5
  1254. },
  1255. "_trs": {
  1256. "__type__": "TypedArray",
  1257. "ctor": "Float64Array",
  1258. "array": [
  1259. 285.733,
  1260. -50.395,
  1261. 0,
  1262. 0,
  1263. 0,
  1264. 0,
  1265. 1,
  1266. 1,
  1267. 1,
  1268. 1
  1269. ]
  1270. },
  1271. "_eulerAngles": {
  1272. "__type__": "cc.Vec3",
  1273. "x": 0,
  1274. "y": 0,
  1275. "z": 0
  1276. },
  1277. "_skewX": 0,
  1278. "_skewY": 0,
  1279. "_is3DNode": false,
  1280. "_groupIndex": 0,
  1281. "groupIndex": 0,
  1282. "_id": ""
  1283. },
  1284. {
  1285. "__type__": "cc.Label",
  1286. "_name": "",
  1287. "_objFlags": 0,
  1288. "node": {
  1289. "__id__": 30
  1290. },
  1291. "_enabled": true,
  1292. "_materials": [
  1293. {
  1294. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1295. }
  1296. ],
  1297. "_useOriginalSize": false,
  1298. "_string": "我的红包码",
  1299. "_N$string": "我的红包码",
  1300. "_fontSize": 30,
  1301. "_lineHeight": 30,
  1302. "_enableWrapText": true,
  1303. "_N$file": null,
  1304. "_isSystemFontUsed": true,
  1305. "_spacingX": 0,
  1306. "_batchAsBitmap": false,
  1307. "_styleFlags": 5,
  1308. "_underlineHeight": 0,
  1309. "_N$horizontalAlign": 1,
  1310. "_N$verticalAlign": 1,
  1311. "_N$fontFamily": "Arial",
  1312. "_N$overflow": 0,
  1313. "_N$cacheMode": 0,
  1314. "_id": ""
  1315. },
  1316. {
  1317. "__type__": "cc.Button",
  1318. "_name": "",
  1319. "_objFlags": 0,
  1320. "node": {
  1321. "__id__": 30
  1322. },
  1323. "_enabled": true,
  1324. "_normalMaterial": null,
  1325. "_grayMaterial": null,
  1326. "duration": 0.1,
  1327. "zoomScale": 1.2,
  1328. "clickEvents": [
  1329. {
  1330. "__id__": 33
  1331. }
  1332. ],
  1333. "_N$interactable": true,
  1334. "_N$enableAutoGrayEffect": false,
  1335. "_N$transition": 0,
  1336. "transition": 0,
  1337. "_N$normalColor": {
  1338. "__type__": "cc.Color",
  1339. "r": 255,
  1340. "g": 255,
  1341. "b": 255,
  1342. "a": 255
  1343. },
  1344. "_N$pressedColor": {
  1345. "__type__": "cc.Color",
  1346. "r": 211,
  1347. "g": 211,
  1348. "b": 211,
  1349. "a": 255
  1350. },
  1351. "pressedColor": {
  1352. "__type__": "cc.Color",
  1353. "r": 211,
  1354. "g": 211,
  1355. "b": 211,
  1356. "a": 255
  1357. },
  1358. "_N$hoverColor": {
  1359. "__type__": "cc.Color",
  1360. "r": 255,
  1361. "g": 255,
  1362. "b": 255,
  1363. "a": 255
  1364. },
  1365. "hoverColor": {
  1366. "__type__": "cc.Color",
  1367. "r": 255,
  1368. "g": 255,
  1369. "b": 255,
  1370. "a": 255
  1371. },
  1372. "_N$disabledColor": {
  1373. "__type__": "cc.Color",
  1374. "r": 124,
  1375. "g": 124,
  1376. "b": 124,
  1377. "a": 255
  1378. },
  1379. "_N$normalSprite": null,
  1380. "_N$pressedSprite": null,
  1381. "pressedSprite": null,
  1382. "_N$hoverSprite": null,
  1383. "hoverSprite": null,
  1384. "_N$disabledSprite": null,
  1385. "_N$target": {
  1386. "__id__": 30
  1387. },
  1388. "_id": ""
  1389. },
  1390. {
  1391. "__type__": "cc.ClickEvent",
  1392. "target": {
  1393. "__id__": 1
  1394. },
  1395. "component": "",
  1396. "_componentId": "b150700q4JFCaxD1R8c6DRF",
  1397. "handler": "clickRedCode",
  1398. "customEventData": ""
  1399. },
  1400. {
  1401. "__type__": "cc.PrefabInfo",
  1402. "root": {
  1403. "__id__": 1
  1404. },
  1405. "asset": {
  1406. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  1407. },
  1408. "fileId": "53IcWn6mJAAo/xteyKkhlk",
  1409. "sync": false
  1410. },
  1411. {
  1412. "__type__": "cc.Widget",
  1413. "_name": "",
  1414. "_objFlags": 0,
  1415. "node": {
  1416. "__id__": 7
  1417. },
  1418. "_enabled": true,
  1419. "alignMode": 1,
  1420. "_target": null,
  1421. "_alignFlags": 1,
  1422. "_left": 0,
  1423. "_right": 0,
  1424. "_top": 52.533000000000015,
  1425. "_bottom": 0,
  1426. "_verticalCenter": 0,
  1427. "_horizontalCenter": 0,
  1428. "_isAbsLeft": true,
  1429. "_isAbsRight": true,
  1430. "_isAbsTop": true,
  1431. "_isAbsBottom": true,
  1432. "_isAbsHorizontalCenter": true,
  1433. "_isAbsVerticalCenter": true,
  1434. "_originalWidth": 0,
  1435. "_originalHeight": 0,
  1436. "_id": ""
  1437. },
  1438. {
  1439. "__type__": "cc.PrefabInfo",
  1440. "root": {
  1441. "__id__": 1
  1442. },
  1443. "asset": {
  1444. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  1445. },
  1446. "fileId": "01XPTfE6ZC8LeetsvUqBbD",
  1447. "sync": false
  1448. },
  1449. {
  1450. "__type__": "cc.Node",
  1451. "_name": "txt_bg",
  1452. "_objFlags": 0,
  1453. "_parent": {
  1454. "__id__": 6
  1455. },
  1456. "_children": [],
  1457. "_active": true,
  1458. "_components": [
  1459. {
  1460. "__id__": 38
  1461. }
  1462. ],
  1463. "_prefab": {
  1464. "__id__": 39
  1465. },
  1466. "_opacity": 255,
  1467. "_color": {
  1468. "__type__": "cc.Color",
  1469. "r": 255,
  1470. "g": 255,
  1471. "b": 255,
  1472. "a": 255
  1473. },
  1474. "_contentSize": {
  1475. "__type__": "cc.Size",
  1476. "width": 372,
  1477. "height": 84
  1478. },
  1479. "_anchorPoint": {
  1480. "__type__": "cc.Vec2",
  1481. "x": 0.5,
  1482. "y": 0.5
  1483. },
  1484. "_trs": {
  1485. "__type__": "TypedArray",
  1486. "ctor": "Float64Array",
  1487. "array": [
  1488. 0,
  1489. 435.41,
  1490. 0,
  1491. 0,
  1492. 0,
  1493. 0,
  1494. 1,
  1495. 1,
  1496. 1,
  1497. 1
  1498. ]
  1499. },
  1500. "_eulerAngles": {
  1501. "__type__": "cc.Vec3",
  1502. "x": 0,
  1503. "y": 0,
  1504. "z": 0
  1505. },
  1506. "_skewX": 0,
  1507. "_skewY": 0,
  1508. "_is3DNode": false,
  1509. "_groupIndex": 0,
  1510. "groupIndex": 0,
  1511. "_id": ""
  1512. },
  1513. {
  1514. "__type__": "cc.Sprite",
  1515. "_name": "txt_bg<Sprite>",
  1516. "_objFlags": 0,
  1517. "node": {
  1518. "__id__": 37
  1519. },
  1520. "_enabled": true,
  1521. "_materials": [
  1522. {
  1523. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1524. }
  1525. ],
  1526. "_srcBlendFactor": 770,
  1527. "_dstBlendFactor": 771,
  1528. "_spriteFrame": null,
  1529. "_type": 0,
  1530. "_sizeMode": 1,
  1531. "_fillType": 0,
  1532. "_fillCenter": {
  1533. "__type__": "cc.Vec2",
  1534. "x": 0,
  1535. "y": 0
  1536. },
  1537. "_fillStart": 0,
  1538. "_fillRange": 0,
  1539. "_isTrimmedMode": true,
  1540. "_atlas": null,
  1541. "_id": ""
  1542. },
  1543. {
  1544. "__type__": "cc.PrefabInfo",
  1545. "root": {
  1546. "__id__": 1
  1547. },
  1548. "asset": {
  1549. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  1550. },
  1551. "fileId": "a0w0Xs0hdF+6vA/LtxMCoa",
  1552. "sync": false
  1553. },
  1554. {
  1555. "__type__": "cc.Node",
  1556. "_name": "topPart",
  1557. "_objFlags": 0,
  1558. "_parent": {
  1559. "__id__": 6
  1560. },
  1561. "_children": [
  1562. {
  1563. "__id__": 41
  1564. },
  1565. {
  1566. "__id__": 59
  1567. },
  1568. {
  1569. "__id__": 97
  1570. },
  1571. {
  1572. "__id__": 103
  1573. },
  1574. {
  1575. "__id__": 106
  1576. },
  1577. {
  1578. "__id__": 112
  1579. },
  1580. {
  1581. "__id__": 130
  1582. },
  1583. {
  1584. "__id__": 136
  1585. },
  1586. {
  1587. "__id__": 142
  1588. },
  1589. {
  1590. "__id__": 146
  1591. }
  1592. ],
  1593. "_active": true,
  1594. "_components": [
  1595. {
  1596. "__id__": 148
  1597. }
  1598. ],
  1599. "_prefab": {
  1600. "__id__": 149
  1601. },
  1602. "_opacity": 255,
  1603. "_color": {
  1604. "__type__": "cc.Color",
  1605. "r": 255,
  1606. "g": 255,
  1607. "b": 255,
  1608. "a": 255
  1609. },
  1610. "_contentSize": {
  1611. "__type__": "cc.Size",
  1612. "width": 718,
  1613. "height": 250
  1614. },
  1615. "_anchorPoint": {
  1616. "__type__": "cc.Vec2",
  1617. "x": 0.5,
  1618. "y": 0.5
  1619. },
  1620. "_trs": {
  1621. "__type__": "TypedArray",
  1622. "ctor": "Float64Array",
  1623. "array": [
  1624. 0,
  1625. 346.248,
  1626. 0,
  1627. 0,
  1628. 0,
  1629. 0,
  1630. 1,
  1631. 1,
  1632. 1,
  1633. 1
  1634. ]
  1635. },
  1636. "_eulerAngles": {
  1637. "__type__": "cc.Vec3",
  1638. "x": 0,
  1639. "y": 0,
  1640. "z": 0
  1641. },
  1642. "_skewX": 0,
  1643. "_skewY": 0,
  1644. "_is3DNode": false,
  1645. "_groupIndex": 0,
  1646. "groupIndex": 0,
  1647. "_id": ""
  1648. },
  1649. {
  1650. "__type__": "cc.Node",
  1651. "_name": "leftNode",
  1652. "_objFlags": 0,
  1653. "_parent": {
  1654. "__id__": 40
  1655. },
  1656. "_children": [
  1657. {
  1658. "__id__": 42
  1659. },
  1660. {
  1661. "__id__": 45
  1662. },
  1663. {
  1664. "__id__": 50
  1665. },
  1666. {
  1667. "__id__": 54
  1668. }
  1669. ],
  1670. "_active": true,
  1671. "_components": [
  1672. {
  1673. "__id__": 57
  1674. }
  1675. ],
  1676. "_prefab": {
  1677. "__id__": 58
  1678. },
  1679. "_opacity": 255,
  1680. "_color": {
  1681. "__type__": "cc.Color",
  1682. "r": 255,
  1683. "g": 255,
  1684. "b": 255,
  1685. "a": 255
  1686. },
  1687. "_contentSize": {
  1688. "__type__": "cc.Size",
  1689. "width": 343,
  1690. "height": 180
  1691. },
  1692. "_anchorPoint": {
  1693. "__type__": "cc.Vec2",
  1694. "x": 0.5,
  1695. "y": 0.5
  1696. },
  1697. "_trs": {
  1698. "__type__": "TypedArray",
  1699. "ctor": "Float64Array",
  1700. "array": [
  1701. -191,
  1702. 37.073,
  1703. 0,
  1704. 0,
  1705. 0,
  1706. 0,
  1707. 1,
  1708. 1,
  1709. 1,
  1710. 1
  1711. ]
  1712. },
  1713. "_eulerAngles": {
  1714. "__type__": "cc.Vec3",
  1715. "x": 0,
  1716. "y": 0,
  1717. "z": 0
  1718. },
  1719. "_skewX": 0,
  1720. "_skewY": 0,
  1721. "_is3DNode": false,
  1722. "_groupIndex": 0,
  1723. "groupIndex": 0,
  1724. "_id": ""
  1725. },
  1726. {
  1727. "__type__": "cc.Node",
  1728. "_name": "dangqian",
  1729. "_objFlags": 0,
  1730. "_parent": {
  1731. "__id__": 41
  1732. },
  1733. "_children": [],
  1734. "_active": true,
  1735. "_components": [
  1736. {
  1737. "__id__": 43
  1738. }
  1739. ],
  1740. "_prefab": {
  1741. "__id__": 44
  1742. },
  1743. "_opacity": 255,
  1744. "_color": {
  1745. "__type__": "cc.Color",
  1746. "r": 255,
  1747. "g": 255,
  1748. "b": 255,
  1749. "a": 255
  1750. },
  1751. "_contentSize": {
  1752. "__type__": "cc.Size",
  1753. "width": 194,
  1754. "height": 40
  1755. },
  1756. "_anchorPoint": {
  1757. "__type__": "cc.Vec2",
  1758. "x": 0.5,
  1759. "y": 0.5
  1760. },
  1761. "_trs": {
  1762. "__type__": "TypedArray",
  1763. "ctor": "Float64Array",
  1764. "array": [
  1765. -38.769,
  1766. 31.966,
  1767. 0,
  1768. 0,
  1769. 0,
  1770. 0,
  1771. 1,
  1772. 0.9,
  1773. 0.9,
  1774. 1
  1775. ]
  1776. },
  1777. "_eulerAngles": {
  1778. "__type__": "cc.Vec3",
  1779. "x": 0,
  1780. "y": 0,
  1781. "z": 0
  1782. },
  1783. "_skewX": 0,
  1784. "_skewY": 0,
  1785. "_is3DNode": false,
  1786. "_groupIndex": 0,
  1787. "groupIndex": 0,
  1788. "_id": ""
  1789. },
  1790. {
  1791. "__type__": "cc.Sprite",
  1792. "_name": "dangqian<Sprite>",
  1793. "_objFlags": 0,
  1794. "node": {
  1795. "__id__": 42
  1796. },
  1797. "_enabled": true,
  1798. "_materials": [
  1799. {
  1800. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1801. }
  1802. ],
  1803. "_srcBlendFactor": 770,
  1804. "_dstBlendFactor": 771,
  1805. "_spriteFrame": {
  1806. "__uuid__": "30622194-6377-4595-a355-0ea000161705"
  1807. },
  1808. "_type": 0,
  1809. "_sizeMode": 1,
  1810. "_fillType": 0,
  1811. "_fillCenter": {
  1812. "__type__": "cc.Vec2",
  1813. "x": 0,
  1814. "y": 0
  1815. },
  1816. "_fillStart": 0,
  1817. "_fillRange": 0,
  1818. "_isTrimmedMode": true,
  1819. "_atlas": null,
  1820. "_id": ""
  1821. },
  1822. {
  1823. "__type__": "cc.PrefabInfo",
  1824. "root": {
  1825. "__id__": 1
  1826. },
  1827. "asset": {
  1828. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  1829. },
  1830. "fileId": "85faOEW1pPooZJEzLgiGpz",
  1831. "sync": false
  1832. },
  1833. {
  1834. "__type__": "cc.Node",
  1835. "_name": "tuobaoquan_bg",
  1836. "_objFlags": 0,
  1837. "_parent": {
  1838. "__id__": 41
  1839. },
  1840. "_children": [],
  1841. "_active": true,
  1842. "_components": [
  1843. {
  1844. "__id__": 46
  1845. },
  1846. {
  1847. "__id__": 47
  1848. }
  1849. ],
  1850. "_prefab": {
  1851. "__id__": 49
  1852. },
  1853. "_opacity": 255,
  1854. "_color": {
  1855. "__type__": "cc.Color",
  1856. "r": 255,
  1857. "g": 255,
  1858. "b": 255,
  1859. "a": 255
  1860. },
  1861. "_contentSize": {
  1862. "__type__": "cc.Size",
  1863. "width": 59,
  1864. "height": 68
  1865. },
  1866. "_anchorPoint": {
  1867. "__type__": "cc.Vec2",
  1868. "x": 0.5,
  1869. "y": 0.5
  1870. },
  1871. "_trs": {
  1872. "__type__": "TypedArray",
  1873. "ctor": "Float64Array",
  1874. "array": [
  1875. 101.74,
  1876. 39.212,
  1877. 0,
  1878. 0,
  1879. 0,
  1880. 0,
  1881. 1,
  1882. 1,
  1883. 1,
  1884. 1
  1885. ]
  1886. },
  1887. "_eulerAngles": {
  1888. "__type__": "cc.Vec3",
  1889. "x": 0,
  1890. "y": 0,
  1891. "z": 0
  1892. },
  1893. "_skewX": 0,
  1894. "_skewY": 0,
  1895. "_is3DNode": false,
  1896. "_groupIndex": 0,
  1897. "groupIndex": 0,
  1898. "_id": ""
  1899. },
  1900. {
  1901. "__type__": "cc.Sprite",
  1902. "_name": "tuobaoquan_bg<Sprite>",
  1903. "_objFlags": 0,
  1904. "node": {
  1905. "__id__": 45
  1906. },
  1907. "_enabled": true,
  1908. "_materials": [
  1909. {
  1910. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1911. }
  1912. ],
  1913. "_srcBlendFactor": 770,
  1914. "_dstBlendFactor": 771,
  1915. "_spriteFrame": {
  1916. "__uuid__": "8dbc16f4-bfb7-4713-963e-d85264a1fef9"
  1917. },
  1918. "_type": 0,
  1919. "_sizeMode": 1,
  1920. "_fillType": 0,
  1921. "_fillCenter": {
  1922. "__type__": "cc.Vec2",
  1923. "x": 0,
  1924. "y": 0
  1925. },
  1926. "_fillStart": 0,
  1927. "_fillRange": 0,
  1928. "_isTrimmedMode": true,
  1929. "_atlas": null,
  1930. "_id": ""
  1931. },
  1932. {
  1933. "__type__": "cc.Button",
  1934. "_name": "",
  1935. "_objFlags": 0,
  1936. "node": {
  1937. "__id__": 45
  1938. },
  1939. "_enabled": true,
  1940. "_normalMaterial": null,
  1941. "_grayMaterial": null,
  1942. "duration": 0.1,
  1943. "zoomScale": 1.2,
  1944. "clickEvents": [
  1945. {
  1946. "__id__": 48
  1947. }
  1948. ],
  1949. "_N$interactable": true,
  1950. "_N$enableAutoGrayEffect": false,
  1951. "_N$transition": 0,
  1952. "transition": 0,
  1953. "_N$normalColor": {
  1954. "__type__": "cc.Color",
  1955. "r": 255,
  1956. "g": 255,
  1957. "b": 255,
  1958. "a": 255
  1959. },
  1960. "_N$pressedColor": {
  1961. "__type__": "cc.Color",
  1962. "r": 211,
  1963. "g": 211,
  1964. "b": 211,
  1965. "a": 255
  1966. },
  1967. "pressedColor": {
  1968. "__type__": "cc.Color",
  1969. "r": 211,
  1970. "g": 211,
  1971. "b": 211,
  1972. "a": 255
  1973. },
  1974. "_N$hoverColor": {
  1975. "__type__": "cc.Color",
  1976. "r": 255,
  1977. "g": 255,
  1978. "b": 255,
  1979. "a": 255
  1980. },
  1981. "hoverColor": {
  1982. "__type__": "cc.Color",
  1983. "r": 255,
  1984. "g": 255,
  1985. "b": 255,
  1986. "a": 255
  1987. },
  1988. "_N$disabledColor": {
  1989. "__type__": "cc.Color",
  1990. "r": 124,
  1991. "g": 124,
  1992. "b": 124,
  1993. "a": 255
  1994. },
  1995. "_N$normalSprite": null,
  1996. "_N$pressedSprite": null,
  1997. "pressedSprite": null,
  1998. "_N$hoverSprite": null,
  1999. "hoverSprite": null,
  2000. "_N$disabledSprite": null,
  2001. "_N$target": null,
  2002. "_id": ""
  2003. },
  2004. {
  2005. "__type__": "cc.ClickEvent",
  2006. "target": {
  2007. "__id__": 1
  2008. },
  2009. "component": "",
  2010. "_componentId": "b150700q4JFCaxD1R8c6DRF",
  2011. "handler": "clickIconShowTipOne",
  2012. "customEventData": ""
  2013. },
  2014. {
  2015. "__type__": "cc.PrefabInfo",
  2016. "root": {
  2017. "__id__": 1
  2018. },
  2019. "asset": {
  2020. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  2021. },
  2022. "fileId": "53vkLZUAtHaKjecabWFnHn",
  2023. "sync": false
  2024. },
  2025. {
  2026. "__type__": "cc.Node",
  2027. "_name": "labTicket",
  2028. "_objFlags": 0,
  2029. "_parent": {
  2030. "__id__": 41
  2031. },
  2032. "_children": [],
  2033. "_active": true,
  2034. "_components": [
  2035. {
  2036. "__id__": 51
  2037. },
  2038. {
  2039. "__id__": 52
  2040. }
  2041. ],
  2042. "_prefab": {
  2043. "__id__": 53
  2044. },
  2045. "_opacity": 255,
  2046. "_color": {
  2047. "__type__": "cc.Color",
  2048. "r": 255,
  2049. "g": 255,
  2050. "b": 255,
  2051. "a": 255
  2052. },
  2053. "_contentSize": {
  2054. "__type__": "cc.Size",
  2055. "width": 20.68,
  2056. "height": 54.4
  2057. },
  2058. "_anchorPoint": {
  2059. "__type__": "cc.Vec2",
  2060. "x": 0,
  2061. "y": 0.5
  2062. },
  2063. "_trs": {
  2064. "__type__": "TypedArray",
  2065. "ctor": "Float64Array",
  2066. "array": [
  2067. 130.707,
  2068. 15.602,
  2069. 0,
  2070. 0,
  2071. 0,
  2072. 0,
  2073. 1,
  2074. 1,
  2075. 1,
  2076. 1
  2077. ]
  2078. },
  2079. "_eulerAngles": {
  2080. "__type__": "cc.Vec3",
  2081. "x": 0,
  2082. "y": 0,
  2083. "z": 0
  2084. },
  2085. "_skewX": 0,
  2086. "_skewY": 0,
  2087. "_is3DNode": false,
  2088. "_groupIndex": 0,
  2089. "groupIndex": 0,
  2090. "_id": ""
  2091. },
  2092. {
  2093. "__type__": "cc.Label",
  2094. "_name": "labTicket<Label>",
  2095. "_objFlags": 0,
  2096. "node": {
  2097. "__id__": 50
  2098. },
  2099. "_enabled": true,
  2100. "_materials": [
  2101. {
  2102. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2103. }
  2104. ],
  2105. "_useOriginalSize": false,
  2106. "_string": "5",
  2107. "_N$string": "5",
  2108. "_fontSize": 30,
  2109. "_lineHeight": 40,
  2110. "_enableWrapText": true,
  2111. "_N$file": null,
  2112. "_isSystemFontUsed": true,
  2113. "_spacingX": 0,
  2114. "_batchAsBitmap": false,
  2115. "_styleFlags": 0,
  2116. "_underlineHeight": 0,
  2117. "_N$horizontalAlign": 1,
  2118. "_N$verticalAlign": 1,
  2119. "_N$fontFamily": "Arial",
  2120. "_N$overflow": 0,
  2121. "_N$cacheMode": 0,
  2122. "_id": ""
  2123. },
  2124. {
  2125. "__type__": "cc.LabelOutline",
  2126. "_name": "",
  2127. "_objFlags": 0,
  2128. "node": {
  2129. "__id__": 50
  2130. },
  2131. "_enabled": true,
  2132. "_color": {
  2133. "__type__": "cc.Color",
  2134. "r": 85,
  2135. "g": 0,
  2136. "b": 0,
  2137. "a": 255
  2138. },
  2139. "_width": 2,
  2140. "_id": ""
  2141. },
  2142. {
  2143. "__type__": "cc.PrefabInfo",
  2144. "root": {
  2145. "__id__": 1
  2146. },
  2147. "asset": {
  2148. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  2149. },
  2150. "fileId": "0fQ4swq1ZIa6Bc5HEsvMud",
  2151. "sync": false
  2152. },
  2153. {
  2154. "__type__": "cc.Node",
  2155. "_name": "labLeftTimes",
  2156. "_objFlags": 0,
  2157. "_parent": {
  2158. "__id__": 41
  2159. },
  2160. "_children": [],
  2161. "_active": true,
  2162. "_components": [
  2163. {
  2164. "__id__": 55
  2165. }
  2166. ],
  2167. "_prefab": {
  2168. "__id__": 56
  2169. },
  2170. "_opacity": 255,
  2171. "_color": {
  2172. "__type__": "cc.Color",
  2173. "r": 232,
  2174. "g": 190,
  2175. "b": 63,
  2176. "a": 255
  2177. },
  2178. "_contentSize": {
  2179. "__type__": "cc.Size",
  2180. "width": 259.59,
  2181. "height": 44.1
  2182. },
  2183. "_anchorPoint": {
  2184. "__type__": "cc.Vec2",
  2185. "x": 0,
  2186. "y": 0.5
  2187. },
  2188. "_trs": {
  2189. "__type__": "TypedArray",
  2190. "ctor": "Float64Array",
  2191. "array": [
  2192. -155.38,
  2193. -27.393,
  2194. 0,
  2195. 0,
  2196. 0,
  2197. 0,
  2198. 1,
  2199. 1,
  2200. 1,
  2201. 1
  2202. ]
  2203. },
  2204. "_eulerAngles": {
  2205. "__type__": "cc.Vec3",
  2206. "x": 0,
  2207. "y": 0,
  2208. "z": 0
  2209. },
  2210. "_skewX": 0,
  2211. "_skewY": 0,
  2212. "_is3DNode": false,
  2213. "_groupIndex": 0,
  2214. "groupIndex": 0,
  2215. "_id": ""
  2216. },
  2217. {
  2218. "__type__": "cc.Label",
  2219. "_name": "",
  2220. "_objFlags": 0,
  2221. "node": {
  2222. "__id__": 54
  2223. },
  2224. "_enabled": true,
  2225. "_materials": [
  2226. {
  2227. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2228. }
  2229. ],
  2230. "_useOriginalSize": false,
  2231. "_string": "今日剩余次数:15",
  2232. "_N$string": "今日剩余次数:15",
  2233. "_fontSize": 32,
  2234. "_lineHeight": 35,
  2235. "_enableWrapText": true,
  2236. "_N$file": null,
  2237. "_isSystemFontUsed": true,
  2238. "_spacingX": 0,
  2239. "_batchAsBitmap": false,
  2240. "_styleFlags": 1,
  2241. "_underlineHeight": 0,
  2242. "_N$horizontalAlign": 1,
  2243. "_N$verticalAlign": 1,
  2244. "_N$fontFamily": "Arial",
  2245. "_N$overflow": 0,
  2246. "_N$cacheMode": 0,
  2247. "_id": ""
  2248. },
  2249. {
  2250. "__type__": "cc.PrefabInfo",
  2251. "root": {
  2252. "__id__": 1
  2253. },
  2254. "asset": {
  2255. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  2256. },
  2257. "fileId": "a8paImOt1IzrQOS15DIOvL",
  2258. "sync": false
  2259. },
  2260. {
  2261. "__type__": "cc.Sprite",
  2262. "_name": "",
  2263. "_objFlags": 0,
  2264. "node": {
  2265. "__id__": 41
  2266. },
  2267. "_enabled": true,
  2268. "_materials": [
  2269. {
  2270. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2271. }
  2272. ],
  2273. "_srcBlendFactor": 770,
  2274. "_dstBlendFactor": 771,
  2275. "_spriteFrame": {
  2276. "__uuid__": "3d3c4d82-4fb9-48d5-a5f6-5b15cb550b1a"
  2277. },
  2278. "_type": 0,
  2279. "_sizeMode": 2,
  2280. "_fillType": 0,
  2281. "_fillCenter": {
  2282. "__type__": "cc.Vec2",
  2283. "x": 0,
  2284. "y": 0
  2285. },
  2286. "_fillStart": 0,
  2287. "_fillRange": 0,
  2288. "_isTrimmedMode": true,
  2289. "_atlas": null,
  2290. "_id": ""
  2291. },
  2292. {
  2293. "__type__": "cc.PrefabInfo",
  2294. "root": {
  2295. "__id__": 1
  2296. },
  2297. "asset": {
  2298. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  2299. },
  2300. "fileId": "1b+l3FYhVOsJlfnbpIEfl9",
  2301. "sync": false
  2302. },
  2303. {
  2304. "__type__": "cc.Node",
  2305. "_name": "rightNode",
  2306. "_objFlags": 0,
  2307. "_parent": {
  2308. "__id__": 40
  2309. },
  2310. "_children": [
  2311. {
  2312. "__id__": 60
  2313. },
  2314. {
  2315. "__id__": 63
  2316. },
  2317. {
  2318. "__id__": 67
  2319. },
  2320. {
  2321. "__id__": 72
  2322. },
  2323. {
  2324. "__id__": 76
  2325. },
  2326. {
  2327. "__id__": 80
  2328. }
  2329. ],
  2330. "_active": true,
  2331. "_components": [
  2332. {
  2333. "__id__": 95
  2334. }
  2335. ],
  2336. "_prefab": {
  2337. "__id__": 96
  2338. },
  2339. "_opacity": 255,
  2340. "_color": {
  2341. "__type__": "cc.Color",
  2342. "r": 255,
  2343. "g": 255,
  2344. "b": 255,
  2345. "a": 255
  2346. },
  2347. "_contentSize": {
  2348. "__type__": "cc.Size",
  2349. "width": 343,
  2350. "height": 180
  2351. },
  2352. "_anchorPoint": {
  2353. "__type__": "cc.Vec2",
  2354. "x": 0.5,
  2355. "y": 0.5
  2356. },
  2357. "_trs": {
  2358. "__type__": "TypedArray",
  2359. "ctor": "Float64Array",
  2360. "array": [
  2361. 191.745,
  2362. 37,
  2363. 0,
  2364. 0,
  2365. 0,
  2366. 0,
  2367. 1,
  2368. 1,
  2369. 1,
  2370. 1
  2371. ]
  2372. },
  2373. "_eulerAngles": {
  2374. "__type__": "cc.Vec3",
  2375. "x": 0,
  2376. "y": 0,
  2377. "z": 0
  2378. },
  2379. "_skewX": 0,
  2380. "_skewY": 0,
  2381. "_is3DNode": false,
  2382. "_groupIndex": 0,
  2383. "groupIndex": 0,
  2384. "_id": ""
  2385. },
  2386. {
  2387. "__type__": "cc.Node",
  2388. "_name": "jibin",
  2389. "_objFlags": 0,
  2390. "_parent": {
  2391. "__id__": 59
  2392. },
  2393. "_children": [],
  2394. "_active": true,
  2395. "_components": [
  2396. {
  2397. "__id__": 61
  2398. }
  2399. ],
  2400. "_prefab": {
  2401. "__id__": 62
  2402. },
  2403. "_opacity": 255,
  2404. "_color": {
  2405. "__type__": "cc.Color",
  2406. "r": 255,
  2407. "g": 255,
  2408. "b": 255,
  2409. "a": 255
  2410. },
  2411. "_contentSize": {
  2412. "__type__": "cc.Size",
  2413. "width": 83,
  2414. "height": 57
  2415. },
  2416. "_anchorPoint": {
  2417. "__type__": "cc.Vec2",
  2418. "x": 0.5,
  2419. "y": 0.5
  2420. },
  2421. "_trs": {
  2422. "__type__": "TypedArray",
  2423. "ctor": "Float64Array",
  2424. "array": [
  2425. 86.173,
  2426. 42.172,
  2427. 0,
  2428. 0,
  2429. 0,
  2430. 0,
  2431. 1,
  2432. 1,
  2433. 1,
  2434. 1
  2435. ]
  2436. },
  2437. "_eulerAngles": {
  2438. "__type__": "cc.Vec3",
  2439. "x": 0,
  2440. "y": 0,
  2441. "z": 0
  2442. },
  2443. "_skewX": 0,
  2444. "_skewY": 0,
  2445. "_is3DNode": false,
  2446. "_groupIndex": 0,
  2447. "groupIndex": 0,
  2448. "_id": ""
  2449. },
  2450. {
  2451. "__type__": "cc.Sprite",
  2452. "_name": "",
  2453. "_objFlags": 0,
  2454. "node": {
  2455. "__id__": 60
  2456. },
  2457. "_enabled": true,
  2458. "_materials": [
  2459. {
  2460. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2461. }
  2462. ],
  2463. "_srcBlendFactor": 770,
  2464. "_dstBlendFactor": 771,
  2465. "_spriteFrame": {
  2466. "__uuid__": "89b3c4b3-ab06-47f1-9b89-67e2723c274a"
  2467. },
  2468. "_type": 0,
  2469. "_sizeMode": 1,
  2470. "_fillType": 0,
  2471. "_fillCenter": {
  2472. "__type__": "cc.Vec2",
  2473. "x": 0,
  2474. "y": 0
  2475. },
  2476. "_fillStart": 0,
  2477. "_fillRange": 0,
  2478. "_isTrimmedMode": true,
  2479. "_atlas": null,
  2480. "_id": ""
  2481. },
  2482. {
  2483. "__type__": "cc.PrefabInfo",
  2484. "root": {
  2485. "__id__": 1
  2486. },
  2487. "asset": {
  2488. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  2489. },
  2490. "fileId": "1519yKvtlMGbIEdH8cfDL+",
  2491. "sync": false
  2492. },
  2493. {
  2494. "__type__": "cc.Node",
  2495. "_name": "label",
  2496. "_objFlags": 0,
  2497. "_parent": {
  2498. "__id__": 59
  2499. },
  2500. "_children": [],
  2501. "_active": true,
  2502. "_components": [
  2503. {
  2504. "__id__": 64
  2505. },
  2506. {
  2507. "__id__": 65
  2508. }
  2509. ],
  2510. "_prefab": {
  2511. "__id__": 66
  2512. },
  2513. "_opacity": 255,
  2514. "_color": {
  2515. "__type__": "cc.Color",
  2516. "r": 255,
  2517. "g": 255,
  2518. "b": 255,
  2519. "a": 255
  2520. },
  2521. "_contentSize": {
  2522. "__type__": "cc.Size",
  2523. "width": 41.96,
  2524. "height": 92.2
  2525. },
  2526. "_anchorPoint": {
  2527. "__type__": "cc.Vec2",
  2528. "x": 0.5,
  2529. "y": 0.5
  2530. },
  2531. "_trs": {
  2532. "__type__": "TypedArray",
  2533. "ctor": "Float64Array",
  2534. "array": [
  2535. 0,
  2536. 45.172,
  2537. 0,
  2538. 0,
  2539. 0,
  2540. 0,
  2541. 1,
  2542. 1,
  2543. 1,
  2544. 1
  2545. ]
  2546. },
  2547. "_eulerAngles": {
  2548. "__type__": "cc.Vec3",
  2549. "x": 0,
  2550. "y": 0,
  2551. "z": 0
  2552. },
  2553. "_skewX": 0,
  2554. "_skewY": 0,
  2555. "_is3DNode": false,
  2556. "_groupIndex": 0,
  2557. "groupIndex": 0,
  2558. "_id": ""
  2559. },
  2560. {
  2561. "__type__": "cc.Label",
  2562. "_name": "labTicket<Label>",
  2563. "_objFlags": 0,
  2564. "node": {
  2565. "__id__": 63
  2566. },
  2567. "_enabled": true,
  2568. "_materials": [
  2569. {
  2570. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2571. }
  2572. ],
  2573. "_useOriginalSize": false,
  2574. "_string": "+",
  2575. "_N$string": "+",
  2576. "_fontSize": 65,
  2577. "_lineHeight": 70,
  2578. "_enableWrapText": true,
  2579. "_N$file": null,
  2580. "_isSystemFontUsed": true,
  2581. "_spacingX": 0,
  2582. "_batchAsBitmap": false,
  2583. "_styleFlags": 1,
  2584. "_underlineHeight": 0,
  2585. "_N$horizontalAlign": 1,
  2586. "_N$verticalAlign": 1,
  2587. "_N$fontFamily": "Arial",
  2588. "_N$overflow": 0,
  2589. "_N$cacheMode": 0,
  2590. "_id": ""
  2591. },
  2592. {
  2593. "__type__": "cc.LabelOutline",
  2594. "_name": "",
  2595. "_objFlags": 0,
  2596. "node": {
  2597. "__id__": 63
  2598. },
  2599. "_enabled": true,
  2600. "_color": {
  2601. "__type__": "cc.Color",
  2602. "r": 85,
  2603. "g": 0,
  2604. "b": 0,
  2605. "a": 255
  2606. },
  2607. "_width": 2,
  2608. "_id": ""
  2609. },
  2610. {
  2611. "__type__": "cc.PrefabInfo",
  2612. "root": {
  2613. "__id__": 1
  2614. },
  2615. "asset": {
  2616. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  2617. },
  2618. "fileId": "cfqFZtUYtGEJphCdcJC6ZD",
  2619. "sync": false
  2620. },
  2621. {
  2622. "__type__": "cc.Node",
  2623. "_name": "duobaoquan1",
  2624. "_objFlags": 0,
  2625. "_parent": {
  2626. "__id__": 59
  2627. },
  2628. "_children": [],
  2629. "_active": true,
  2630. "_components": [
  2631. {
  2632. "__id__": 68
  2633. },
  2634. {
  2635. "__id__": 69
  2636. }
  2637. ],
  2638. "_prefab": {
  2639. "__id__": 71
  2640. },
  2641. "_opacity": 255,
  2642. "_color": {
  2643. "__type__": "cc.Color",
  2644. "r": 255,
  2645. "g": 255,
  2646. "b": 255,
  2647. "a": 255
  2648. },
  2649. "_contentSize": {
  2650. "__type__": "cc.Size",
  2651. "width": 59,
  2652. "height": 68
  2653. },
  2654. "_anchorPoint": {
  2655. "__type__": "cc.Vec2",
  2656. "x": 0.5,
  2657. "y": 0.5
  2658. },
  2659. "_trs": {
  2660. "__type__": "TypedArray",
  2661. "ctor": "Float64Array",
  2662. "array": [
  2663. -76.439,
  2664. 42.172,
  2665. 0,
  2666. 0,
  2667. 0,
  2668. 0,
  2669. 1,
  2670. 1,
  2671. 1,
  2672. 1
  2673. ]
  2674. },
  2675. "_eulerAngles": {
  2676. "__type__": "cc.Vec3",
  2677. "x": 0,
  2678. "y": 0,
  2679. "z": 0
  2680. },
  2681. "_skewX": 0,
  2682. "_skewY": 0,
  2683. "_is3DNode": false,
  2684. "_groupIndex": 0,
  2685. "groupIndex": 0,
  2686. "_id": ""
  2687. },
  2688. {
  2689. "__type__": "cc.Sprite",
  2690. "_name": "",
  2691. "_objFlags": 0,
  2692. "node": {
  2693. "__id__": 67
  2694. },
  2695. "_enabled": true,
  2696. "_materials": [
  2697. {
  2698. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2699. }
  2700. ],
  2701. "_srcBlendFactor": 770,
  2702. "_dstBlendFactor": 771,
  2703. "_spriteFrame": {
  2704. "__uuid__": "8dbc16f4-bfb7-4713-963e-d85264a1fef9"
  2705. },
  2706. "_type": 0,
  2707. "_sizeMode": 1,
  2708. "_fillType": 0,
  2709. "_fillCenter": {
  2710. "__type__": "cc.Vec2",
  2711. "x": 0,
  2712. "y": 0
  2713. },
  2714. "_fillStart": 0,
  2715. "_fillRange": 0,
  2716. "_isTrimmedMode": true,
  2717. "_atlas": null,
  2718. "_id": ""
  2719. },
  2720. {
  2721. "__type__": "cc.Button",
  2722. "_name": "",
  2723. "_objFlags": 0,
  2724. "node": {
  2725. "__id__": 67
  2726. },
  2727. "_enabled": true,
  2728. "_normalMaterial": null,
  2729. "_grayMaterial": null,
  2730. "duration": 0.1,
  2731. "zoomScale": 1.2,
  2732. "clickEvents": [
  2733. {
  2734. "__id__": 70
  2735. }
  2736. ],
  2737. "_N$interactable": true,
  2738. "_N$enableAutoGrayEffect": false,
  2739. "_N$transition": 0,
  2740. "transition": 0,
  2741. "_N$normalColor": {
  2742. "__type__": "cc.Color",
  2743. "r": 255,
  2744. "g": 255,
  2745. "b": 255,
  2746. "a": 255
  2747. },
  2748. "_N$pressedColor": {
  2749. "__type__": "cc.Color",
  2750. "r": 211,
  2751. "g": 211,
  2752. "b": 211,
  2753. "a": 255
  2754. },
  2755. "pressedColor": {
  2756. "__type__": "cc.Color",
  2757. "r": 211,
  2758. "g": 211,
  2759. "b": 211,
  2760. "a": 255
  2761. },
  2762. "_N$hoverColor": {
  2763. "__type__": "cc.Color",
  2764. "r": 255,
  2765. "g": 255,
  2766. "b": 255,
  2767. "a": 255
  2768. },
  2769. "hoverColor": {
  2770. "__type__": "cc.Color",
  2771. "r": 255,
  2772. "g": 255,
  2773. "b": 255,
  2774. "a": 255
  2775. },
  2776. "_N$disabledColor": {
  2777. "__type__": "cc.Color",
  2778. "r": 124,
  2779. "g": 124,
  2780. "b": 124,
  2781. "a": 255
  2782. },
  2783. "_N$normalSprite": null,
  2784. "_N$pressedSprite": null,
  2785. "pressedSprite": null,
  2786. "_N$hoverSprite": null,
  2787. "hoverSprite": null,
  2788. "_N$disabledSprite": null,
  2789. "_N$target": null,
  2790. "_id": ""
  2791. },
  2792. {
  2793. "__type__": "cc.ClickEvent",
  2794. "target": {
  2795. "__id__": 1
  2796. },
  2797. "component": "",
  2798. "_componentId": "b150700q4JFCaxD1R8c6DRF",
  2799. "handler": "clickIconShowTipSec",
  2800. "customEventData": ""
  2801. },
  2802. {
  2803. "__type__": "cc.PrefabInfo",
  2804. "root": {
  2805. "__id__": 1
  2806. },
  2807. "asset": {
  2808. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  2809. },
  2810. "fileId": "85N1WsAj5KpKln9dwLGr+n",
  2811. "sync": false
  2812. },
  2813. {
  2814. "__type__": "cc.Node",
  2815. "_name": "label",
  2816. "_objFlags": 0,
  2817. "_parent": {
  2818. "__id__": 59
  2819. },
  2820. "_children": [],
  2821. "_active": true,
  2822. "_components": [
  2823. {
  2824. "__id__": 73
  2825. },
  2826. {
  2827. "__id__": 74
  2828. }
  2829. ],
  2830. "_prefab": {
  2831. "__id__": 75
  2832. },
  2833. "_opacity": 255,
  2834. "_color": {
  2835. "__type__": "cc.Color",
  2836. "r": 255,
  2837. "g": 255,
  2838. "b": 255,
  2839. "a": 255
  2840. },
  2841. "_contentSize": {
  2842. "__type__": "cc.Size",
  2843. "width": 20.68,
  2844. "height": 48.1
  2845. },
  2846. "_anchorPoint": {
  2847. "__type__": "cc.Vec2",
  2848. "x": 0.5,
  2849. "y": 0.5
  2850. },
  2851. "_trs": {
  2852. "__type__": "TypedArray",
  2853. "ctor": "Float64Array",
  2854. "array": [
  2855. -48.678,
  2856. 18.41,
  2857. 0,
  2858. 0,
  2859. 0,
  2860. 0,
  2861. 1,
  2862. 1,
  2863. 1,
  2864. 1
  2865. ]
  2866. },
  2867. "_eulerAngles": {
  2868. "__type__": "cc.Vec3",
  2869. "x": 0,
  2870. "y": 0,
  2871. "z": 0
  2872. },
  2873. "_skewX": 0,
  2874. "_skewY": 0,
  2875. "_is3DNode": false,
  2876. "_groupIndex": 0,
  2877. "groupIndex": 0,
  2878. "_id": ""
  2879. },
  2880. {
  2881. "__type__": "cc.Label",
  2882. "_name": "labTicket<Label>",
  2883. "_objFlags": 0,
  2884. "node": {
  2885. "__id__": 72
  2886. },
  2887. "_enabled": true,
  2888. "_materials": [
  2889. {
  2890. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2891. }
  2892. ],
  2893. "_useOriginalSize": false,
  2894. "_string": "1",
  2895. "_N$string": "1",
  2896. "_fontSize": 30,
  2897. "_lineHeight": 35,
  2898. "_enableWrapText": true,
  2899. "_N$file": null,
  2900. "_isSystemFontUsed": true,
  2901. "_spacingX": 0,
  2902. "_batchAsBitmap": false,
  2903. "_styleFlags": 0,
  2904. "_underlineHeight": 0,
  2905. "_N$horizontalAlign": 1,
  2906. "_N$verticalAlign": 1,
  2907. "_N$fontFamily": "Arial",
  2908. "_N$overflow": 0,
  2909. "_N$cacheMode": 0,
  2910. "_id": ""
  2911. },
  2912. {
  2913. "__type__": "cc.LabelOutline",
  2914. "_name": "",
  2915. "_objFlags": 0,
  2916. "node": {
  2917. "__id__": 72
  2918. },
  2919. "_enabled": true,
  2920. "_color": {
  2921. "__type__": "cc.Color",
  2922. "r": 85,
  2923. "g": 0,
  2924. "b": 0,
  2925. "a": 255
  2926. },
  2927. "_width": 2,
  2928. "_id": ""
  2929. },
  2930. {
  2931. "__type__": "cc.PrefabInfo",
  2932. "root": {
  2933. "__id__": 1
  2934. },
  2935. "asset": {
  2936. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  2937. },
  2938. "fileId": "a1FBz/EDJMDqyHPs8jK92W",
  2939. "sync": false
  2940. },
  2941. {
  2942. "__type__": "cc.Node",
  2943. "_name": "rewardMoney",
  2944. "_objFlags": 0,
  2945. "_parent": {
  2946. "__id__": 59
  2947. },
  2948. "_children": [],
  2949. "_active": true,
  2950. "_components": [
  2951. {
  2952. "__id__": 77
  2953. },
  2954. {
  2955. "__id__": 78
  2956. }
  2957. ],
  2958. "_prefab": {
  2959. "__id__": 79
  2960. },
  2961. "_opacity": 255,
  2962. "_color": {
  2963. "__type__": "cc.Color",
  2964. "r": 255,
  2965. "g": 255,
  2966. "b": 255,
  2967. "a": 255
  2968. },
  2969. "_contentSize": {
  2970. "__type__": "cc.Size",
  2971. "width": 4,
  2972. "height": 48.1
  2973. },
  2974. "_anchorPoint": {
  2975. "__type__": "cc.Vec2",
  2976. "x": 0.5,
  2977. "y": 0.5
  2978. },
  2979. "_trs": {
  2980. "__type__": "TypedArray",
  2981. "ctor": "Float64Array",
  2982. "array": [
  2983. 92.228,
  2984. 18.41,
  2985. 0,
  2986. 0,
  2987. 0,
  2988. 0,
  2989. 1,
  2990. 1,
  2991. 1,
  2992. 1
  2993. ]
  2994. },
  2995. "_eulerAngles": {
  2996. "__type__": "cc.Vec3",
  2997. "x": 0,
  2998. "y": 0,
  2999. "z": 0
  3000. },
  3001. "_skewX": 0,
  3002. "_skewY": 0,
  3003. "_is3DNode": false,
  3004. "_groupIndex": 0,
  3005. "groupIndex": 0,
  3006. "_id": ""
  3007. },
  3008. {
  3009. "__type__": "cc.Label",
  3010. "_name": "labTicket<Label>",
  3011. "_objFlags": 0,
  3012. "node": {
  3013. "__id__": 76
  3014. },
  3015. "_enabled": true,
  3016. "_materials": [
  3017. {
  3018. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3019. }
  3020. ],
  3021. "_useOriginalSize": false,
  3022. "_string": "",
  3023. "_N$string": "",
  3024. "_fontSize": 28,
  3025. "_lineHeight": 35,
  3026. "_enableWrapText": true,
  3027. "_N$file": null,
  3028. "_isSystemFontUsed": true,
  3029. "_spacingX": 0,
  3030. "_batchAsBitmap": false,
  3031. "_styleFlags": 0,
  3032. "_underlineHeight": 0,
  3033. "_N$horizontalAlign": 1,
  3034. "_N$verticalAlign": 1,
  3035. "_N$fontFamily": "Arial",
  3036. "_N$overflow": 0,
  3037. "_N$cacheMode": 0,
  3038. "_id": ""
  3039. },
  3040. {
  3041. "__type__": "cc.LabelOutline",
  3042. "_name": "",
  3043. "_objFlags": 0,
  3044. "node": {
  3045. "__id__": 76
  3046. },
  3047. "_enabled": true,
  3048. "_color": {
  3049. "__type__": "cc.Color",
  3050. "r": 85,
  3051. "g": 0,
  3052. "b": 0,
  3053. "a": 255
  3054. },
  3055. "_width": 2,
  3056. "_id": ""
  3057. },
  3058. {
  3059. "__type__": "cc.PrefabInfo",
  3060. "root": {
  3061. "__id__": 1
  3062. },
  3063. "asset": {
  3064. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  3065. },
  3066. "fileId": "4ftNtA6RREiJbPvGOsKknJ",
  3067. "sync": false
  3068. },
  3069. {
  3070. "__type__": "cc.Node",
  3071. "_name": "tc_btn_1",
  3072. "_objFlags": 0,
  3073. "_parent": {
  3074. "__id__": 59
  3075. },
  3076. "_children": [
  3077. {
  3078. "__id__": 81
  3079. },
  3080. {
  3081. "__id__": 84
  3082. },
  3083. {
  3084. "__id__": 87
  3085. }
  3086. ],
  3087. "_active": true,
  3088. "_components": [
  3089. {
  3090. "__id__": 91
  3091. },
  3092. {
  3093. "__id__": 92
  3094. }
  3095. ],
  3096. "_prefab": {
  3097. "__id__": 94
  3098. },
  3099. "_opacity": 255,
  3100. "_color": {
  3101. "__type__": "cc.Color",
  3102. "r": 255,
  3103. "g": 255,
  3104. "b": 255,
  3105. "a": 255
  3106. },
  3107. "_contentSize": {
  3108. "__type__": "cc.Size",
  3109. "width": 198,
  3110. "height": 71
  3111. },
  3112. "_anchorPoint": {
  3113. "__type__": "cc.Vec2",
  3114. "x": 0.5,
  3115. "y": 0.5
  3116. },
  3117. "_trs": {
  3118. "__type__": "TypedArray",
  3119. "ctor": "Float64Array",
  3120. "array": [
  3121. 0,
  3122. -39.871,
  3123. 0,
  3124. 0,
  3125. 0,
  3126. 0,
  3127. 1,
  3128. 1,
  3129. 1,
  3130. 1
  3131. ]
  3132. },
  3133. "_eulerAngles": {
  3134. "__type__": "cc.Vec3",
  3135. "x": 0,
  3136. "y": 0,
  3137. "z": 0
  3138. },
  3139. "_skewX": 0,
  3140. "_skewY": 0,
  3141. "_is3DNode": false,
  3142. "_groupIndex": 0,
  3143. "groupIndex": 0,
  3144. "_id": ""
  3145. },
  3146. {
  3147. "__type__": "cc.Node",
  3148. "_name": "video_bg",
  3149. "_objFlags": 0,
  3150. "_parent": {
  3151. "__id__": 80
  3152. },
  3153. "_children": [],
  3154. "_active": true,
  3155. "_components": [
  3156. {
  3157. "__id__": 82
  3158. }
  3159. ],
  3160. "_prefab": {
  3161. "__id__": 83
  3162. },
  3163. "_opacity": 255,
  3164. "_color": {
  3165. "__type__": "cc.Color",
  3166. "r": 255,
  3167. "g": 255,
  3168. "b": 255,
  3169. "a": 255
  3170. },
  3171. "_contentSize": {
  3172. "__type__": "cc.Size",
  3173. "width": 38,
  3174. "height": 38
  3175. },
  3176. "_anchorPoint": {
  3177. "__type__": "cc.Vec2",
  3178. "x": 0.5,
  3179. "y": 0.5
  3180. },
  3181. "_trs": {
  3182. "__type__": "TypedArray",
  3183. "ctor": "Float64Array",
  3184. "array": [
  3185. -58.944,
  3186. 2,
  3187. 0,
  3188. 0,
  3189. 0,
  3190. 0,
  3191. 1,
  3192. 0.9,
  3193. 0.9,
  3194. 1
  3195. ]
  3196. },
  3197. "_eulerAngles": {
  3198. "__type__": "cc.Vec3",
  3199. "x": 0,
  3200. "y": 0,
  3201. "z": 0
  3202. },
  3203. "_skewX": 0,
  3204. "_skewY": 0,
  3205. "_is3DNode": false,
  3206. "_groupIndex": 0,
  3207. "groupIndex": 0,
  3208. "_id": ""
  3209. },
  3210. {
  3211. "__type__": "cc.Sprite",
  3212. "_name": "video_bg<Sprite>",
  3213. "_objFlags": 0,
  3214. "node": {
  3215. "__id__": 81
  3216. },
  3217. "_enabled": true,
  3218. "_materials": [
  3219. {
  3220. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3221. }
  3222. ],
  3223. "_srcBlendFactor": 770,
  3224. "_dstBlendFactor": 771,
  3225. "_spriteFrame": {
  3226. "__uuid__": "f35c633e-003b-411b-a5ed-e80357525759"
  3227. },
  3228. "_type": 0,
  3229. "_sizeMode": 1,
  3230. "_fillType": 0,
  3231. "_fillCenter": {
  3232. "__type__": "cc.Vec2",
  3233. "x": 0,
  3234. "y": 0
  3235. },
  3236. "_fillStart": 0,
  3237. "_fillRange": 0,
  3238. "_isTrimmedMode": true,
  3239. "_atlas": null,
  3240. "_id": ""
  3241. },
  3242. {
  3243. "__type__": "cc.PrefabInfo",
  3244. "root": {
  3245. "__id__": 1
  3246. },
  3247. "asset": {
  3248. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  3249. },
  3250. "fileId": "dblAZel7dO2ai/ZXP+HMuj",
  3251. "sync": false
  3252. },
  3253. {
  3254. "__type__": "cc.Node",
  3255. "_name": "videoImg",
  3256. "_objFlags": 0,
  3257. "_parent": {
  3258. "__id__": 80
  3259. },
  3260. "_children": [],
  3261. "_active": true,
  3262. "_components": [
  3263. {
  3264. "__id__": 85
  3265. }
  3266. ],
  3267. "_prefab": {
  3268. "__id__": 86
  3269. },
  3270. "_opacity": 255,
  3271. "_color": {
  3272. "__type__": "cc.Color",
  3273. "r": 255,
  3274. "g": 255,
  3275. "b": 255,
  3276. "a": 255
  3277. },
  3278. "_contentSize": {
  3279. "__type__": "cc.Size",
  3280. "width": 25,
  3281. "height": 18
  3282. },
  3283. "_anchorPoint": {
  3284. "__type__": "cc.Vec2",
  3285. "x": 0.5,
  3286. "y": 0.5
  3287. },
  3288. "_trs": {
  3289. "__type__": "TypedArray",
  3290. "ctor": "Float64Array",
  3291. "array": [
  3292. -57.944,
  3293. 2,
  3294. 0,
  3295. 0,
  3296. 0,
  3297. 0,
  3298. 1,
  3299. 0.9,
  3300. 0.9,
  3301. 1
  3302. ]
  3303. },
  3304. "_eulerAngles": {
  3305. "__type__": "cc.Vec3",
  3306. "x": 0,
  3307. "y": 0,
  3308. "z": 0
  3309. },
  3310. "_skewX": 0,
  3311. "_skewY": 0,
  3312. "_is3DNode": false,
  3313. "_groupIndex": 0,
  3314. "groupIndex": 0,
  3315. "_id": ""
  3316. },
  3317. {
  3318. "__type__": "cc.Sprite",
  3319. "_name": "videoImg<Sprite>",
  3320. "_objFlags": 0,
  3321. "node": {
  3322. "__id__": 84
  3323. },
  3324. "_enabled": true,
  3325. "_materials": [
  3326. {
  3327. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3328. }
  3329. ],
  3330. "_srcBlendFactor": 770,
  3331. "_dstBlendFactor": 771,
  3332. "_spriteFrame": {
  3333. "__uuid__": "a0c1d5bc-7cbd-4bc8-9e16-6cb4b8aba1af"
  3334. },
  3335. "_type": 0,
  3336. "_sizeMode": 1,
  3337. "_fillType": 0,
  3338. "_fillCenter": {
  3339. "__type__": "cc.Vec2",
  3340. "x": 0,
  3341. "y": 0
  3342. },
  3343. "_fillStart": 0,
  3344. "_fillRange": 0,
  3345. "_isTrimmedMode": true,
  3346. "_atlas": null,
  3347. "_id": ""
  3348. },
  3349. {
  3350. "__type__": "cc.PrefabInfo",
  3351. "root": {
  3352. "__id__": 1
  3353. },
  3354. "asset": {
  3355. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  3356. },
  3357. "fileId": "c434xGwXRIuZaivzTH3QzJ",
  3358. "sync": false
  3359. },
  3360. {
  3361. "__type__": "cc.Node",
  3362. "_name": "New Label",
  3363. "_objFlags": 0,
  3364. "_parent": {
  3365. "__id__": 80
  3366. },
  3367. "_children": [],
  3368. "_active": true,
  3369. "_components": [
  3370. {
  3371. "__id__": 88
  3372. },
  3373. {
  3374. "__id__": 89
  3375. }
  3376. ],
  3377. "_prefab": {
  3378. "__id__": 90
  3379. },
  3380. "_opacity": 255,
  3381. "_color": {
  3382. "__type__": "cc.Color",
  3383. "r": 255,
  3384. "g": 255,
  3385. "b": 255,
  3386. "a": 255
  3387. },
  3388. "_contentSize": {
  3389. "__type__": "cc.Size",
  3390. "width": 116,
  3391. "height": 41.8
  3392. },
  3393. "_anchorPoint": {
  3394. "__type__": "cc.Vec2",
  3395. "x": 0.5,
  3396. "y": 0.5
  3397. },
  3398. "_trs": {
  3399. "__type__": "TypedArray",
  3400. "ctor": "Float64Array",
  3401. "array": [
  3402. 17.275,
  3403. 3,
  3404. 0,
  3405. 0,
  3406. 0,
  3407. 0,
  3408. 1,
  3409. 1,
  3410. 1,
  3411. 1
  3412. ]
  3413. },
  3414. "_eulerAngles": {
  3415. "__type__": "cc.Vec3",
  3416. "x": 0,
  3417. "y": 0,
  3418. "z": 0
  3419. },
  3420. "_skewX": 0,
  3421. "_skewY": 0,
  3422. "_is3DNode": false,
  3423. "_groupIndex": 0,
  3424. "groupIndex": 0,
  3425. "_id": ""
  3426. },
  3427. {
  3428. "__type__": "cc.Label",
  3429. "_name": "New Label<Label>",
  3430. "_objFlags": 0,
  3431. "node": {
  3432. "__id__": 87
  3433. },
  3434. "_enabled": true,
  3435. "_materials": [
  3436. {
  3437. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3438. }
  3439. ],
  3440. "_useOriginalSize": false,
  3441. "_string": "免费获取",
  3442. "_N$string": "免费获取",
  3443. "_fontSize": 28,
  3444. "_lineHeight": 30,
  3445. "_enableWrapText": true,
  3446. "_N$file": null,
  3447. "_isSystemFontUsed": true,
  3448. "_spacingX": 0,
  3449. "_batchAsBitmap": false,
  3450. "_styleFlags": 0,
  3451. "_underlineHeight": 0,
  3452. "_N$horizontalAlign": 1,
  3453. "_N$verticalAlign": 1,
  3454. "_N$fontFamily": "Arial",
  3455. "_N$overflow": 0,
  3456. "_N$cacheMode": 0,
  3457. "_id": ""
  3458. },
  3459. {
  3460. "__type__": "cc.LabelOutline",
  3461. "_name": "",
  3462. "_objFlags": 0,
  3463. "node": {
  3464. "__id__": 87
  3465. },
  3466. "_enabled": true,
  3467. "_color": {
  3468. "__type__": "cc.Color",
  3469. "r": 32,
  3470. "g": 115,
  3471. "b": 3,
  3472. "a": 255
  3473. },
  3474. "_width": 2,
  3475. "_id": ""
  3476. },
  3477. {
  3478. "__type__": "cc.PrefabInfo",
  3479. "root": {
  3480. "__id__": 1
  3481. },
  3482. "asset": {
  3483. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  3484. },
  3485. "fileId": "07S9fOWeNO+ppaG56F6RVs",
  3486. "sync": false
  3487. },
  3488. {
  3489. "__type__": "cc.Sprite",
  3490. "_name": "tc_btn_1<Sprite>",
  3491. "_objFlags": 0,
  3492. "node": {
  3493. "__id__": 80
  3494. },
  3495. "_enabled": true,
  3496. "_materials": [
  3497. {
  3498. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3499. }
  3500. ],
  3501. "_srcBlendFactor": 770,
  3502. "_dstBlendFactor": 771,
  3503. "_spriteFrame": {
  3504. "__uuid__": "868b7152-32b3-4b48-87b9-a42256e2bb15"
  3505. },
  3506. "_type": 0,
  3507. "_sizeMode": 1,
  3508. "_fillType": 0,
  3509. "_fillCenter": {
  3510. "__type__": "cc.Vec2",
  3511. "x": 0,
  3512. "y": 0
  3513. },
  3514. "_fillStart": 0,
  3515. "_fillRange": 0,
  3516. "_isTrimmedMode": true,
  3517. "_atlas": null,
  3518. "_id": ""
  3519. },
  3520. {
  3521. "__type__": "cc.Button",
  3522. "_name": "",
  3523. "_objFlags": 0,
  3524. "node": {
  3525. "__id__": 80
  3526. },
  3527. "_enabled": true,
  3528. "_normalMaterial": {
  3529. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3530. },
  3531. "_grayMaterial": null,
  3532. "duration": 0.1,
  3533. "zoomScale": 0.8,
  3534. "clickEvents": [
  3535. {
  3536. "__id__": 93
  3537. }
  3538. ],
  3539. "_N$interactable": true,
  3540. "_N$enableAutoGrayEffect": false,
  3541. "_N$transition": 3,
  3542. "transition": 3,
  3543. "_N$normalColor": {
  3544. "__type__": "cc.Color",
  3545. "r": 255,
  3546. "g": 255,
  3547. "b": 255,
  3548. "a": 255
  3549. },
  3550. "_N$pressedColor": {
  3551. "__type__": "cc.Color",
  3552. "r": 211,
  3553. "g": 211,
  3554. "b": 211,
  3555. "a": 255
  3556. },
  3557. "pressedColor": {
  3558. "__type__": "cc.Color",
  3559. "r": 211,
  3560. "g": 211,
  3561. "b": 211,
  3562. "a": 255
  3563. },
  3564. "_N$hoverColor": {
  3565. "__type__": "cc.Color",
  3566. "r": 255,
  3567. "g": 255,
  3568. "b": 255,
  3569. "a": 255
  3570. },
  3571. "hoverColor": {
  3572. "__type__": "cc.Color",
  3573. "r": 255,
  3574. "g": 255,
  3575. "b": 255,
  3576. "a": 255
  3577. },
  3578. "_N$disabledColor": {
  3579. "__type__": "cc.Color",
  3580. "r": 124,
  3581. "g": 124,
  3582. "b": 124,
  3583. "a": 255
  3584. },
  3585. "_N$normalSprite": null,
  3586. "_N$pressedSprite": null,
  3587. "pressedSprite": null,
  3588. "_N$hoverSprite": null,
  3589. "hoverSprite": null,
  3590. "_N$disabledSprite": null,
  3591. "_N$target": {
  3592. "__id__": 80
  3593. },
  3594. "_id": ""
  3595. },
  3596. {
  3597. "__type__": "cc.ClickEvent",
  3598. "target": {
  3599. "__id__": 1
  3600. },
  3601. "component": "",
  3602. "_componentId": "b150700q4JFCaxD1R8c6DRF",
  3603. "handler": "clickGetTicket",
  3604. "customEventData": ""
  3605. },
  3606. {
  3607. "__type__": "cc.PrefabInfo",
  3608. "root": {
  3609. "__id__": 1
  3610. },
  3611. "asset": {
  3612. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  3613. },
  3614. "fileId": "b3a4xP8dJBw5BR3Nyq60A6",
  3615. "sync": false
  3616. },
  3617. {
  3618. "__type__": "cc.Sprite",
  3619. "_name": "",
  3620. "_objFlags": 0,
  3621. "node": {
  3622. "__id__": 59
  3623. },
  3624. "_enabled": true,
  3625. "_materials": [
  3626. {
  3627. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3628. }
  3629. ],
  3630. "_srcBlendFactor": 770,
  3631. "_dstBlendFactor": 771,
  3632. "_spriteFrame": {
  3633. "__uuid__": "3d3c4d82-4fb9-48d5-a5f6-5b15cb550b1a"
  3634. },
  3635. "_type": 0,
  3636. "_sizeMode": 2,
  3637. "_fillType": 0,
  3638. "_fillCenter": {
  3639. "__type__": "cc.Vec2",
  3640. "x": 0,
  3641. "y": 0
  3642. },
  3643. "_fillStart": 0,
  3644. "_fillRange": 0,
  3645. "_isTrimmedMode": true,
  3646. "_atlas": null,
  3647. "_id": ""
  3648. },
  3649. {
  3650. "__type__": "cc.PrefabInfo",
  3651. "root": {
  3652. "__id__": 1
  3653. },
  3654. "asset": {
  3655. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  3656. },
  3657. "fileId": "73UCja11ZOVIzAT5o5Z5hN",
  3658. "sync": false
  3659. },
  3660. {
  3661. "__type__": "cc.Node",
  3662. "_name": "txt_bg1",
  3663. "_objFlags": 0,
  3664. "_parent": {
  3665. "__id__": 40
  3666. },
  3667. "_children": [
  3668. {
  3669. "__id__": 98
  3670. }
  3671. ],
  3672. "_active": true,
  3673. "_components": [
  3674. {
  3675. "__id__": 101
  3676. }
  3677. ],
  3678. "_prefab": {
  3679. "__id__": 102
  3680. },
  3681. "_opacity": 255,
  3682. "_color": {
  3683. "__type__": "cc.Color",
  3684. "r": 255,
  3685. "g": 255,
  3686. "b": 255,
  3687. "a": 255
  3688. },
  3689. "_contentSize": {
  3690. "__type__": "cc.Size",
  3691. "width": 709,
  3692. "height": 67
  3693. },
  3694. "_anchorPoint": {
  3695. "__type__": "cc.Vec2",
  3696. "x": 0.5,
  3697. "y": 0.5
  3698. },
  3699. "_trs": {
  3700. "__type__": "TypedArray",
  3701. "ctor": "Float64Array",
  3702. "array": [
  3703. 0,
  3704. -123.148,
  3705. 0,
  3706. 0,
  3707. 0,
  3708. 0,
  3709. 1,
  3710. 1,
  3711. 1,
  3712. 1
  3713. ]
  3714. },
  3715. "_eulerAngles": {
  3716. "__type__": "cc.Vec3",
  3717. "x": 0,
  3718. "y": 0,
  3719. "z": 0
  3720. },
  3721. "_skewX": 0,
  3722. "_skewY": 0,
  3723. "_is3DNode": false,
  3724. "_groupIndex": 0,
  3725. "groupIndex": 0,
  3726. "_id": ""
  3727. },
  3728. {
  3729. "__type__": "cc.Node",
  3730. "_name": "laba",
  3731. "_objFlags": 0,
  3732. "_parent": {
  3733. "__id__": 97
  3734. },
  3735. "_children": [],
  3736. "_active": true,
  3737. "_components": [
  3738. {
  3739. "__id__": 99
  3740. }
  3741. ],
  3742. "_prefab": {
  3743. "__id__": 100
  3744. },
  3745. "_opacity": 255,
  3746. "_color": {
  3747. "__type__": "cc.Color",
  3748. "r": 255,
  3749. "g": 255,
  3750. "b": 255,
  3751. "a": 255
  3752. },
  3753. "_contentSize": {
  3754. "__type__": "cc.Size",
  3755. "width": 57,
  3756. "height": 46
  3757. },
  3758. "_anchorPoint": {
  3759. "__type__": "cc.Vec2",
  3760. "x": 0.5,
  3761. "y": 0.5
  3762. },
  3763. "_trs": {
  3764. "__type__": "TypedArray",
  3765. "ctor": "Float64Array",
  3766. "array": [
  3767. -321.739,
  3768. 0,
  3769. 0,
  3770. 0,
  3771. 0,
  3772. 0,
  3773. 1,
  3774. 1,
  3775. 1,
  3776. 1
  3777. ]
  3778. },
  3779. "_eulerAngles": {
  3780. "__type__": "cc.Vec3",
  3781. "x": 0,
  3782. "y": 0,
  3783. "z": 0
  3784. },
  3785. "_skewX": 0,
  3786. "_skewY": 0,
  3787. "_is3DNode": false,
  3788. "_groupIndex": 0,
  3789. "groupIndex": 0,
  3790. "_id": ""
  3791. },
  3792. {
  3793. "__type__": "cc.Sprite",
  3794. "_name": "",
  3795. "_objFlags": 0,
  3796. "node": {
  3797. "__id__": 98
  3798. },
  3799. "_enabled": true,
  3800. "_materials": [
  3801. {
  3802. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3803. }
  3804. ],
  3805. "_srcBlendFactor": 770,
  3806. "_dstBlendFactor": 771,
  3807. "_spriteFrame": {
  3808. "__uuid__": "2b1eadce-97ad-4414-9fe0-a24bd7a5a179"
  3809. },
  3810. "_type": 0,
  3811. "_sizeMode": 1,
  3812. "_fillType": 0,
  3813. "_fillCenter": {
  3814. "__type__": "cc.Vec2",
  3815. "x": 0,
  3816. "y": 0
  3817. },
  3818. "_fillStart": 0,
  3819. "_fillRange": 0,
  3820. "_isTrimmedMode": true,
  3821. "_atlas": null,
  3822. "_id": ""
  3823. },
  3824. {
  3825. "__type__": "cc.PrefabInfo",
  3826. "root": {
  3827. "__id__": 1
  3828. },
  3829. "asset": {
  3830. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  3831. },
  3832. "fileId": "26TOS72n1HXJW2KIM0Fdo2",
  3833. "sync": false
  3834. },
  3835. {
  3836. "__type__": "cc.Sprite",
  3837. "_name": "txt_bg1<Sprite>",
  3838. "_objFlags": 0,
  3839. "node": {
  3840. "__id__": 97
  3841. },
  3842. "_enabled": true,
  3843. "_materials": [
  3844. {
  3845. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3846. }
  3847. ],
  3848. "_srcBlendFactor": 770,
  3849. "_dstBlendFactor": 771,
  3850. "_spriteFrame": {
  3851. "__uuid__": "daef1a2b-87a8-4be4-9706-b91ef51a7290"
  3852. },
  3853. "_type": 1,
  3854. "_sizeMode": 2,
  3855. "_fillType": 0,
  3856. "_fillCenter": {
  3857. "__type__": "cc.Vec2",
  3858. "x": 0,
  3859. "y": 0
  3860. },
  3861. "_fillStart": 0,
  3862. "_fillRange": 0,
  3863. "_isTrimmedMode": true,
  3864. "_atlas": null,
  3865. "_id": ""
  3866. },
  3867. {
  3868. "__type__": "cc.PrefabInfo",
  3869. "root": {
  3870. "__id__": 1
  3871. },
  3872. "asset": {
  3873. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  3874. },
  3875. "fileId": "66BAm7jjtDjZLg9yO3s4jn",
  3876. "sync": false
  3877. },
  3878. {
  3879. "__type__": "cc.Node",
  3880. "_name": "labDes2",
  3881. "_objFlags": 0,
  3882. "_parent": {
  3883. "__id__": 40
  3884. },
  3885. "_children": [],
  3886. "_active": true,
  3887. "_components": [
  3888. {
  3889. "__id__": 104
  3890. }
  3891. ],
  3892. "_prefab": {
  3893. "__id__": 105
  3894. },
  3895. "_opacity": 255,
  3896. "_color": {
  3897. "__type__": "cc.Color",
  3898. "r": 251,
  3899. "g": 231,
  3900. "b": 210,
  3901. "a": 255
  3902. },
  3903. "_contentSize": {
  3904. "__type__": "cc.Size",
  3905. "width": 396,
  3906. "height": 27.72
  3907. },
  3908. "_anchorPoint": {
  3909. "__type__": "cc.Vec2",
  3910. "x": 0.5,
  3911. "y": 0.5
  3912. },
  3913. "_trs": {
  3914. "__type__": "TypedArray",
  3915. "ctor": "Float64Array",
  3916. "array": [
  3917. 0,
  3918. -69.117,
  3919. 0,
  3920. 0,
  3921. 0,
  3922. 0,
  3923. 1,
  3924. 1,
  3925. 1,
  3926. 1
  3927. ]
  3928. },
  3929. "_eulerAngles": {
  3930. "__type__": "cc.Vec3",
  3931. "x": 0,
  3932. "y": 0,
  3933. "z": 0
  3934. },
  3935. "_skewX": 0,
  3936. "_skewY": 0,
  3937. "_is3DNode": false,
  3938. "_groupIndex": 0,
  3939. "groupIndex": 0,
  3940. "_id": ""
  3941. },
  3942. {
  3943. "__type__": "cc.Label",
  3944. "_name": "labDes2<Label>",
  3945. "_objFlags": 0,
  3946. "node": {
  3947. "__id__": 103
  3948. },
  3949. "_enabled": true,
  3950. "_materials": [
  3951. {
  3952. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3953. }
  3954. ],
  3955. "_useOriginalSize": false,
  3956. "_string": "夺宝视频不会累加到其他玩法的视频进度",
  3957. "_N$string": "夺宝视频不会累加到其他玩法的视频进度",
  3958. "_fontSize": 22,
  3959. "_lineHeight": 22,
  3960. "_enableWrapText": true,
  3961. "_N$file": null,
  3962. "_isSystemFontUsed": true,
  3963. "_spacingX": 0,
  3964. "_batchAsBitmap": false,
  3965. "_styleFlags": 1,
  3966. "_underlineHeight": 0,
  3967. "_N$horizontalAlign": 1,
  3968. "_N$verticalAlign": 1,
  3969. "_N$fontFamily": "Arial",
  3970. "_N$overflow": 0,
  3971. "_N$cacheMode": 0,
  3972. "_id": ""
  3973. },
  3974. {
  3975. "__type__": "cc.PrefabInfo",
  3976. "root": {
  3977. "__id__": 1
  3978. },
  3979. "asset": {
  3980. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  3981. },
  3982. "fileId": "beKX/xBtNGqr+LSYfbInF/",
  3983. "sync": false
  3984. },
  3985. {
  3986. "__type__": "cc.Node",
  3987. "_name": "New Node",
  3988. "_objFlags": 0,
  3989. "_parent": {
  3990. "__id__": 40
  3991. },
  3992. "_children": [
  3993. {
  3994. "__id__": 107
  3995. }
  3996. ],
  3997. "_active": true,
  3998. "_components": [
  3999. {
  4000. "__id__": 110
  4001. }
  4002. ],
  4003. "_prefab": {
  4004. "__id__": 111
  4005. },
  4006. "_opacity": 255,
  4007. "_color": {
  4008. "__type__": "cc.Color",
  4009. "r": 255,
  4010. "g": 255,
  4011. "b": 255,
  4012. "a": 255
  4013. },
  4014. "_contentSize": {
  4015. "__type__": "cc.Size",
  4016. "width": 612,
  4017. "height": 67
  4018. },
  4019. "_anchorPoint": {
  4020. "__type__": "cc.Vec2",
  4021. "x": 0.5,
  4022. "y": 0.5
  4023. },
  4024. "_trs": {
  4025. "__type__": "TypedArray",
  4026. "ctor": "Float64Array",
  4027. "array": [
  4028. 0,
  4029. -123.713,
  4030. 0,
  4031. 0,
  4032. 0,
  4033. 0,
  4034. 1,
  4035. 1,
  4036. 1,
  4037. 1
  4038. ]
  4039. },
  4040. "_eulerAngles": {
  4041. "__type__": "cc.Vec3",
  4042. "x": 0,
  4043. "y": 0,
  4044. "z": 0
  4045. },
  4046. "_skewX": 0,
  4047. "_skewY": 0,
  4048. "_is3DNode": false,
  4049. "_groupIndex": 0,
  4050. "groupIndex": 0,
  4051. "_id": ""
  4052. },
  4053. {
  4054. "__type__": "cc.Node",
  4055. "_name": "labDes3",
  4056. "_objFlags": 0,
  4057. "_parent": {
  4058. "__id__": 106
  4059. },
  4060. "_children": [],
  4061. "_active": true,
  4062. "_components": [
  4063. {
  4064. "__id__": 108
  4065. }
  4066. ],
  4067. "_prefab": {
  4068. "__id__": 109
  4069. },
  4070. "_opacity": 255,
  4071. "_color": {
  4072. "__type__": "cc.Color",
  4073. "r": 255,
  4074. "g": 255,
  4075. "b": 255,
  4076. "a": 255
  4077. },
  4078. "_contentSize": {
  4079. "__type__": "cc.Size",
  4080. "width": 0,
  4081. "height": 50.4
  4082. },
  4083. "_anchorPoint": {
  4084. "__type__": "cc.Vec2",
  4085. "x": 0.5,
  4086. "y": 0.5
  4087. },
  4088. "_trs": {
  4089. "__type__": "TypedArray",
  4090. "ctor": "Float64Array",
  4091. "array": [
  4092. 0,
  4093. 0,
  4094. 0,
  4095. 0,
  4096. 0,
  4097. 0,
  4098. 1,
  4099. 1,
  4100. 1,
  4101. 1
  4102. ]
  4103. },
  4104. "_eulerAngles": {
  4105. "__type__": "cc.Vec3",
  4106. "x": 0,
  4107. "y": 0,
  4108. "z": 0
  4109. },
  4110. "_skewX": 0,
  4111. "_skewY": 0,
  4112. "_is3DNode": false,
  4113. "_groupIndex": 0,
  4114. "groupIndex": 0,
  4115. "_id": ""
  4116. },
  4117. {
  4118. "__type__": "cc.RichText",
  4119. "_name": "",
  4120. "_objFlags": 0,
  4121. "node": {
  4122. "__id__": 107
  4123. },
  4124. "_enabled": true,
  4125. "_fontFamily": "Arial",
  4126. "_isSystemFontUsed": true,
  4127. "_N$string": "",
  4128. "_N$horizontalAlign": 0,
  4129. "_N$fontSize": 32,
  4130. "_N$font": null,
  4131. "_N$cacheMode": 0,
  4132. "_N$maxWidth": 0,
  4133. "_N$lineHeight": 40,
  4134. "_N$imageAtlas": null,
  4135. "_N$handleTouchEvent": true,
  4136. "_id": ""
  4137. },
  4138. {
  4139. "__type__": "cc.PrefabInfo",
  4140. "root": {
  4141. "__id__": 1
  4142. },
  4143. "asset": {
  4144. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  4145. },
  4146. "fileId": "78LrZSnGdEy7ALPggM2ccI",
  4147. "sync": false
  4148. },
  4149. {
  4150. "__type__": "cc.Mask",
  4151. "_name": "",
  4152. "_objFlags": 0,
  4153. "node": {
  4154. "__id__": 106
  4155. },
  4156. "_enabled": true,
  4157. "_materials": [
  4158. {
  4159. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4160. }
  4161. ],
  4162. "_spriteFrame": null,
  4163. "_type": 0,
  4164. "_segments": 64,
  4165. "_N$alphaThreshold": 0.1,
  4166. "_N$inverted": false,
  4167. "_id": ""
  4168. },
  4169. {
  4170. "__type__": "cc.PrefabInfo",
  4171. "root": {
  4172. "__id__": 1
  4173. },
  4174. "asset": {
  4175. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  4176. },
  4177. "fileId": "2bZ1K+0LhKjYe5dmrv/UzR",
  4178. "sync": false
  4179. },
  4180. {
  4181. "__type__": "cc.Node",
  4182. "_name": "sc",
  4183. "_objFlags": 0,
  4184. "_parent": {
  4185. "__id__": 40
  4186. },
  4187. "_children": [
  4188. {
  4189. "__id__": 113
  4190. },
  4191. {
  4192. "__id__": 120
  4193. }
  4194. ],
  4195. "_active": true,
  4196. "_components": [
  4197. {
  4198. "__id__": 128
  4199. },
  4200. {
  4201. "__id__": 118
  4202. }
  4203. ],
  4204. "_prefab": {
  4205. "__id__": 129
  4206. },
  4207. "_opacity": 255,
  4208. "_color": {
  4209. "__type__": "cc.Color",
  4210. "r": 255,
  4211. "g": 255,
  4212. "b": 255,
  4213. "a": 255
  4214. },
  4215. "_contentSize": {
  4216. "__type__": "cc.Size",
  4217. "width": 710,
  4218. "height": 785
  4219. },
  4220. "_anchorPoint": {
  4221. "__type__": "cc.Vec2",
  4222. "x": 0.5,
  4223. "y": 1
  4224. },
  4225. "_trs": {
  4226. "__type__": "TypedArray",
  4227. "ctor": "Float64Array",
  4228. "array": [
  4229. 0,
  4230. -174.292,
  4231. 0,
  4232. 0,
  4233. 0,
  4234. 0,
  4235. 1,
  4236. 1,
  4237. 1,
  4238. 1
  4239. ]
  4240. },
  4241. "_eulerAngles": {
  4242. "__type__": "cc.Vec3",
  4243. "x": 0,
  4244. "y": 0,
  4245. "z": 0
  4246. },
  4247. "_skewX": 0,
  4248. "_skewY": 0,
  4249. "_is3DNode": false,
  4250. "_groupIndex": 0,
  4251. "groupIndex": 0,
  4252. "_id": ""
  4253. },
  4254. {
  4255. "__type__": "cc.Node",
  4256. "_name": "scrollBar",
  4257. "_objFlags": 512,
  4258. "_parent": {
  4259. "__id__": 112
  4260. },
  4261. "_children": [
  4262. {
  4263. "__id__": 114
  4264. }
  4265. ],
  4266. "_active": false,
  4267. "_components": [
  4268. {
  4269. "__id__": 117
  4270. },
  4271. {
  4272. "__id__": 125
  4273. },
  4274. {
  4275. "__id__": 126
  4276. }
  4277. ],
  4278. "_prefab": {
  4279. "__id__": 127
  4280. },
  4281. "_opacity": 255,
  4282. "_color": {
  4283. "__type__": "cc.Color",
  4284. "r": 255,
  4285. "g": 255,
  4286. "b": 255,
  4287. "a": 255
  4288. },
  4289. "_contentSize": {
  4290. "__type__": "cc.Size",
  4291. "width": 12,
  4292. "height": 250
  4293. },
  4294. "_anchorPoint": {
  4295. "__type__": "cc.Vec2",
  4296. "x": 1,
  4297. "y": 0.5
  4298. },
  4299. "_trs": {
  4300. "__type__": "TypedArray",
  4301. "ctor": "Float64Array",
  4302. "array": [
  4303. 120,
  4304. 0,
  4305. 0,
  4306. 0,
  4307. 0,
  4308. 0,
  4309. 1,
  4310. 1,
  4311. 1,
  4312. 1
  4313. ]
  4314. },
  4315. "_eulerAngles": {
  4316. "__type__": "cc.Vec3",
  4317. "x": 0,
  4318. "y": 0,
  4319. "z": 0
  4320. },
  4321. "_skewX": 0,
  4322. "_skewY": 0,
  4323. "_is3DNode": false,
  4324. "_groupIndex": 0,
  4325. "groupIndex": 0,
  4326. "_id": ""
  4327. },
  4328. {
  4329. "__type__": "cc.Node",
  4330. "_name": "bar",
  4331. "_objFlags": 512,
  4332. "_parent": {
  4333. "__id__": 113
  4334. },
  4335. "_children": [],
  4336. "_active": true,
  4337. "_components": [
  4338. {
  4339. "__id__": 115
  4340. }
  4341. ],
  4342. "_prefab": {
  4343. "__id__": 116
  4344. },
  4345. "_opacity": 255,
  4346. "_color": {
  4347. "__type__": "cc.Color",
  4348. "r": 255,
  4349. "g": 255,
  4350. "b": 255,
  4351. "a": 255
  4352. },
  4353. "_contentSize": {
  4354. "__type__": "cc.Size",
  4355. "width": 10,
  4356. "height": 30
  4357. },
  4358. "_anchorPoint": {
  4359. "__type__": "cc.Vec2",
  4360. "x": 1,
  4361. "y": 0
  4362. },
  4363. "_trs": {
  4364. "__type__": "TypedArray",
  4365. "ctor": "Float64Array",
  4366. "array": [
  4367. -1,
  4368. 0,
  4369. 0,
  4370. 0,
  4371. 0,
  4372. 0,
  4373. 1,
  4374. 1,
  4375. 1,
  4376. 1
  4377. ]
  4378. },
  4379. "_eulerAngles": {
  4380. "__type__": "cc.Vec3",
  4381. "x": 0,
  4382. "y": 0,
  4383. "z": 0
  4384. },
  4385. "_skewX": 0,
  4386. "_skewY": 0,
  4387. "_is3DNode": false,
  4388. "_groupIndex": 0,
  4389. "groupIndex": 0,
  4390. "_id": ""
  4391. },
  4392. {
  4393. "__type__": "cc.Sprite",
  4394. "_name": "bar<Sprite>",
  4395. "_objFlags": 0,
  4396. "node": {
  4397. "__id__": 114
  4398. },
  4399. "_enabled": true,
  4400. "_materials": [
  4401. {
  4402. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4403. }
  4404. ],
  4405. "_srcBlendFactor": 770,
  4406. "_dstBlendFactor": 771,
  4407. "_spriteFrame": {
  4408. "__uuid__": "5c3bb932-6c3c-468f-88a9-c8c61d458641"
  4409. },
  4410. "_type": 1,
  4411. "_sizeMode": 0,
  4412. "_fillType": 0,
  4413. "_fillCenter": {
  4414. "__type__": "cc.Vec2",
  4415. "x": 0,
  4416. "y": 0
  4417. },
  4418. "_fillStart": 0,
  4419. "_fillRange": 0,
  4420. "_isTrimmedMode": true,
  4421. "_atlas": null,
  4422. "_id": ""
  4423. },
  4424. {
  4425. "__type__": "cc.PrefabInfo",
  4426. "root": {
  4427. "__id__": 1
  4428. },
  4429. "asset": {
  4430. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  4431. },
  4432. "fileId": "e4eTgU67ZFy6S4f74sOD+6",
  4433. "sync": false
  4434. },
  4435. {
  4436. "__type__": "cc.Scrollbar",
  4437. "_name": "",
  4438. "_objFlags": 0,
  4439. "node": {
  4440. "__id__": 113
  4441. },
  4442. "_enabled": true,
  4443. "_scrollView": {
  4444. "__id__": 118
  4445. },
  4446. "_touching": false,
  4447. "_opacity": 255,
  4448. "enableAutoHide": true,
  4449. "autoHideTime": 1,
  4450. "_N$handle": {
  4451. "__id__": 115
  4452. },
  4453. "_N$direction": 1,
  4454. "_id": ""
  4455. },
  4456. {
  4457. "__type__": "cc.ScrollView",
  4458. "_name": "",
  4459. "_objFlags": 0,
  4460. "node": {
  4461. "__id__": 112
  4462. },
  4463. "_enabled": true,
  4464. "horizontal": false,
  4465. "vertical": true,
  4466. "inertia": true,
  4467. "brake": 0.75,
  4468. "elastic": true,
  4469. "bounceDuration": 0.23,
  4470. "scrollEvents": [],
  4471. "cancelInnerEvents": true,
  4472. "_N$content": {
  4473. "__id__": 119
  4474. },
  4475. "content": {
  4476. "__id__": 119
  4477. },
  4478. "_N$horizontalScrollBar": null,
  4479. "_N$verticalScrollBar": {
  4480. "__id__": 117
  4481. },
  4482. "_id": ""
  4483. },
  4484. {
  4485. "__type__": "cc.Node",
  4486. "_name": "content",
  4487. "_objFlags": 512,
  4488. "_parent": {
  4489. "__id__": 120
  4490. },
  4491. "_children": [],
  4492. "_active": true,
  4493. "_components": [
  4494. {
  4495. "__id__": 123
  4496. }
  4497. ],
  4498. "_prefab": {
  4499. "__id__": 124
  4500. },
  4501. "_opacity": 255,
  4502. "_color": {
  4503. "__type__": "cc.Color",
  4504. "r": 255,
  4505. "g": 255,
  4506. "b": 255,
  4507. "a": 255
  4508. },
  4509. "_contentSize": {
  4510. "__type__": "cc.Size",
  4511. "width": 684,
  4512. "height": 10
  4513. },
  4514. "_anchorPoint": {
  4515. "__type__": "cc.Vec2",
  4516. "x": 0.5,
  4517. "y": 1
  4518. },
  4519. "_trs": {
  4520. "__type__": "TypedArray",
  4521. "ctor": "Float64Array",
  4522. "array": [
  4523. 0,
  4524. 20,
  4525. 0,
  4526. 0,
  4527. 0,
  4528. 0,
  4529. 1,
  4530. 1,
  4531. 1,
  4532. 1
  4533. ]
  4534. },
  4535. "_eulerAngles": {
  4536. "__type__": "cc.Vec3",
  4537. "x": 0,
  4538. "y": 0,
  4539. "z": 0
  4540. },
  4541. "_skewX": 0,
  4542. "_skewY": 0,
  4543. "_is3DNode": false,
  4544. "_groupIndex": 0,
  4545. "groupIndex": 0,
  4546. "_id": ""
  4547. },
  4548. {
  4549. "__type__": "cc.Node",
  4550. "_name": "view",
  4551. "_objFlags": 512,
  4552. "_parent": {
  4553. "__id__": 112
  4554. },
  4555. "_children": [
  4556. {
  4557. "__id__": 119
  4558. }
  4559. ],
  4560. "_active": true,
  4561. "_components": [
  4562. {
  4563. "__id__": 121
  4564. }
  4565. ],
  4566. "_prefab": {
  4567. "__id__": 122
  4568. },
  4569. "_opacity": 255,
  4570. "_color": {
  4571. "__type__": "cc.Color",
  4572. "r": 255,
  4573. "g": 255,
  4574. "b": 255,
  4575. "a": 255
  4576. },
  4577. "_contentSize": {
  4578. "__type__": "cc.Size",
  4579. "width": 710,
  4580. "height": 785
  4581. },
  4582. "_anchorPoint": {
  4583. "__type__": "cc.Vec2",
  4584. "x": 0.5,
  4585. "y": 1
  4586. },
  4587. "_trs": {
  4588. "__type__": "TypedArray",
  4589. "ctor": "Float64Array",
  4590. "array": [
  4591. 0,
  4592. 0,
  4593. 0,
  4594. 0,
  4595. 0,
  4596. 0,
  4597. 1,
  4598. 1,
  4599. 1,
  4600. 1
  4601. ]
  4602. },
  4603. "_eulerAngles": {
  4604. "__type__": "cc.Vec3",
  4605. "x": 0,
  4606. "y": 0,
  4607. "z": 0
  4608. },
  4609. "_skewX": 0,
  4610. "_skewY": 0,
  4611. "_is3DNode": false,
  4612. "_groupIndex": 0,
  4613. "groupIndex": 0,
  4614. "_id": ""
  4615. },
  4616. {
  4617. "__type__": "cc.Mask",
  4618. "_name": "view<Mask>",
  4619. "_objFlags": 0,
  4620. "node": {
  4621. "__id__": 120
  4622. },
  4623. "_enabled": true,
  4624. "_materials": [
  4625. {
  4626. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4627. }
  4628. ],
  4629. "_spriteFrame": null,
  4630. "_type": 0,
  4631. "_segments": 64,
  4632. "_N$alphaThreshold": 0,
  4633. "_N$inverted": false,
  4634. "_id": ""
  4635. },
  4636. {
  4637. "__type__": "cc.PrefabInfo",
  4638. "root": {
  4639. "__id__": 1
  4640. },
  4641. "asset": {
  4642. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  4643. },
  4644. "fileId": "99rF95MG5CSK1QhantQ7P/",
  4645. "sync": false
  4646. },
  4647. {
  4648. "__type__": "cc.Layout",
  4649. "_name": "",
  4650. "_objFlags": 0,
  4651. "node": {
  4652. "__id__": 119
  4653. },
  4654. "_enabled": true,
  4655. "_layoutSize": {
  4656. "__type__": "cc.Size",
  4657. "width": 684,
  4658. "height": 10
  4659. },
  4660. "_resize": 1,
  4661. "_N$layoutType": 2,
  4662. "_N$cellSize": {
  4663. "__type__": "cc.Size",
  4664. "width": 40,
  4665. "height": 40
  4666. },
  4667. "_N$startAxis": 0,
  4668. "_N$paddingLeft": 0,
  4669. "_N$paddingRight": 0,
  4670. "_N$paddingTop": 10,
  4671. "_N$paddingBottom": 0,
  4672. "_N$spacingX": 0,
  4673. "_N$spacingY": 0,
  4674. "_N$verticalDirection": 1,
  4675. "_N$horizontalDirection": 0,
  4676. "_N$affectedByScale": false,
  4677. "_id": ""
  4678. },
  4679. {
  4680. "__type__": "cc.PrefabInfo",
  4681. "root": {
  4682. "__id__": 1
  4683. },
  4684. "asset": {
  4685. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  4686. },
  4687. "fileId": "7dFDP254BDhq781geoQ1L8",
  4688. "sync": false
  4689. },
  4690. {
  4691. "__type__": "cc.Widget",
  4692. "_name": "",
  4693. "_objFlags": 0,
  4694. "node": {
  4695. "__id__": 113
  4696. },
  4697. "_enabled": true,
  4698. "alignMode": 0,
  4699. "_target": null,
  4700. "_alignFlags": 37,
  4701. "_left": 350.07654921020657,
  4702. "_right": 0,
  4703. "_top": 0,
  4704. "_bottom": 0,
  4705. "_verticalCenter": 0,
  4706. "_horizontalCenter": 0,
  4707. "_isAbsLeft": true,
  4708. "_isAbsRight": true,
  4709. "_isAbsTop": true,
  4710. "_isAbsBottom": true,
  4711. "_isAbsHorizontalCenter": true,
  4712. "_isAbsVerticalCenter": true,
  4713. "_originalWidth": 0,
  4714. "_originalHeight": 237,
  4715. "_id": ""
  4716. },
  4717. {
  4718. "__type__": "cc.Sprite",
  4719. "_name": "scrollBar<Sprite>",
  4720. "_objFlags": 0,
  4721. "node": {
  4722. "__id__": 113
  4723. },
  4724. "_enabled": true,
  4725. "_materials": [
  4726. {
  4727. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4728. }
  4729. ],
  4730. "_srcBlendFactor": 770,
  4731. "_dstBlendFactor": 771,
  4732. "_spriteFrame": {
  4733. "__uuid__": "5fe5dcaa-b513-4dc5-a166-573627b3a159"
  4734. },
  4735. "_type": 1,
  4736. "_sizeMode": 0,
  4737. "_fillType": 0,
  4738. "_fillCenter": {
  4739. "__type__": "cc.Vec2",
  4740. "x": 0,
  4741. "y": 0
  4742. },
  4743. "_fillStart": 0,
  4744. "_fillRange": 0,
  4745. "_isTrimmedMode": true,
  4746. "_atlas": null,
  4747. "_id": ""
  4748. },
  4749. {
  4750. "__type__": "cc.PrefabInfo",
  4751. "root": {
  4752. "__id__": 1
  4753. },
  4754. "asset": {
  4755. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  4756. },
  4757. "fileId": "7660/6BL1HZITRRpGfFEiQ",
  4758. "sync": false
  4759. },
  4760. {
  4761. "__type__": "cc.Sprite",
  4762. "_name": "sc<Sprite>",
  4763. "_objFlags": 0,
  4764. "node": {
  4765. "__id__": 112
  4766. },
  4767. "_enabled": true,
  4768. "_materials": [
  4769. {
  4770. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4771. }
  4772. ],
  4773. "_srcBlendFactor": 770,
  4774. "_dstBlendFactor": 771,
  4775. "_spriteFrame": null,
  4776. "_type": 1,
  4777. "_sizeMode": 0,
  4778. "_fillType": 0,
  4779. "_fillCenter": {
  4780. "__type__": "cc.Vec2",
  4781. "x": 0,
  4782. "y": 0
  4783. },
  4784. "_fillStart": 0,
  4785. "_fillRange": 0,
  4786. "_isTrimmedMode": true,
  4787. "_atlas": null,
  4788. "_id": ""
  4789. },
  4790. {
  4791. "__type__": "cc.PrefabInfo",
  4792. "root": {
  4793. "__id__": 1
  4794. },
  4795. "asset": {
  4796. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  4797. },
  4798. "fileId": "1b4ccEM6JMio6dxPHXexcb",
  4799. "sync": false
  4800. },
  4801. {
  4802. "__type__": "cc.Node",
  4803. "_name": "qipao",
  4804. "_objFlags": 0,
  4805. "_parent": {
  4806. "__id__": 40
  4807. },
  4808. "_children": [
  4809. {
  4810. "__id__": 131
  4811. }
  4812. ],
  4813. "_active": false,
  4814. "_components": [
  4815. {
  4816. "__id__": 134
  4817. }
  4818. ],
  4819. "_prefab": {
  4820. "__id__": 135
  4821. },
  4822. "_opacity": 255,
  4823. "_color": {
  4824. "__type__": "cc.Color",
  4825. "r": 255,
  4826. "g": 255,
  4827. "b": 255,
  4828. "a": 255
  4829. },
  4830. "_contentSize": {
  4831. "__type__": "cc.Size",
  4832. "width": 180,
  4833. "height": 70
  4834. },
  4835. "_anchorPoint": {
  4836. "__type__": "cc.Vec2",
  4837. "x": 0.5,
  4838. "y": 0.5
  4839. },
  4840. "_trs": {
  4841. "__type__": "TypedArray",
  4842. "ctor": "Float64Array",
  4843. "array": [
  4844. -141.04,
  4845. 143.903,
  4846. 0,
  4847. 0,
  4848. 0,
  4849. 0,
  4850. 1,
  4851. 1,
  4852. 1,
  4853. 1
  4854. ]
  4855. },
  4856. "_eulerAngles": {
  4857. "__type__": "cc.Vec3",
  4858. "x": 0,
  4859. "y": 0,
  4860. "z": 0
  4861. },
  4862. "_skewX": 0,
  4863. "_skewY": 0,
  4864. "_is3DNode": false,
  4865. "_groupIndex": 0,
  4866. "groupIndex": 0,
  4867. "_id": ""
  4868. },
  4869. {
  4870. "__type__": "cc.Node",
  4871. "_name": "labTip",
  4872. "_objFlags": 0,
  4873. "_parent": {
  4874. "__id__": 130
  4875. },
  4876. "_children": [],
  4877. "_active": true,
  4878. "_components": [
  4879. {
  4880. "__id__": 132
  4881. }
  4882. ],
  4883. "_prefab": {
  4884. "__id__": 133
  4885. },
  4886. "_opacity": 255,
  4887. "_color": {
  4888. "__type__": "cc.Color",
  4889. "r": 0,
  4890. "g": 0,
  4891. "b": 0,
  4892. "a": 255
  4893. },
  4894. "_contentSize": {
  4895. "__type__": "cc.Size",
  4896. "width": 190,
  4897. "height": 50.4
  4898. },
  4899. "_anchorPoint": {
  4900. "__type__": "cc.Vec2",
  4901. "x": 0.5,
  4902. "y": 0.5
  4903. },
  4904. "_trs": {
  4905. "__type__": "TypedArray",
  4906. "ctor": "Float64Array",
  4907. "array": [
  4908. 9.28,
  4909. 5.065,
  4910. 0,
  4911. 0,
  4912. 0,
  4913. 0,
  4914. 1,
  4915. 1,
  4916. 1,
  4917. 1
  4918. ]
  4919. },
  4920. "_eulerAngles": {
  4921. "__type__": "cc.Vec3",
  4922. "x": 0,
  4923. "y": 0,
  4924. "z": 0
  4925. },
  4926. "_skewX": 0,
  4927. "_skewY": 0,
  4928. "_is3DNode": false,
  4929. "_groupIndex": 0,
  4930. "groupIndex": 0,
  4931. "_id": ""
  4932. },
  4933. {
  4934. "__type__": "cc.Label",
  4935. "_name": "labTip<Label>",
  4936. "_objFlags": 0,
  4937. "node": {
  4938. "__id__": 131
  4939. },
  4940. "_enabled": true,
  4941. "_materials": [
  4942. {
  4943. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4944. }
  4945. ],
  4946. "_useOriginalSize": false,
  4947. "_string": "参与夺宝的门票",
  4948. "_N$string": "参与夺宝的门票",
  4949. "_fontSize": 24,
  4950. "_lineHeight": 40,
  4951. "_enableWrapText": true,
  4952. "_N$file": null,
  4953. "_isSystemFontUsed": true,
  4954. "_spacingX": 0,
  4955. "_batchAsBitmap": false,
  4956. "_styleFlags": 0,
  4957. "_underlineHeight": 0,
  4958. "_N$horizontalAlign": 0,
  4959. "_N$verticalAlign": 1,
  4960. "_N$fontFamily": "Arial",
  4961. "_N$overflow": 3,
  4962. "_N$cacheMode": 0,
  4963. "_id": ""
  4964. },
  4965. {
  4966. "__type__": "cc.PrefabInfo",
  4967. "root": {
  4968. "__id__": 1
  4969. },
  4970. "asset": {
  4971. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  4972. },
  4973. "fileId": "1fVXedl9tKKIj4XgsVM2mv",
  4974. "sync": false
  4975. },
  4976. {
  4977. "__type__": "cc.Sprite",
  4978. "_name": "qipao<Sprite>",
  4979. "_objFlags": 0,
  4980. "node": {
  4981. "__id__": 130
  4982. },
  4983. "_enabled": true,
  4984. "_materials": [
  4985. {
  4986. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4987. }
  4988. ],
  4989. "_srcBlendFactor": 770,
  4990. "_dstBlendFactor": 771,
  4991. "_spriteFrame": {
  4992. "__uuid__": "d9d618d6-0241-4eda-82e8-ff58e26f7f97"
  4993. },
  4994. "_type": 1,
  4995. "_sizeMode": 0,
  4996. "_fillType": 0,
  4997. "_fillCenter": {
  4998. "__type__": "cc.Vec2",
  4999. "x": 0,
  5000. "y": 0
  5001. },
  5002. "_fillStart": 0,
  5003. "_fillRange": 0,
  5004. "_isTrimmedMode": true,
  5005. "_atlas": null,
  5006. "_id": ""
  5007. },
  5008. {
  5009. "__type__": "cc.PrefabInfo",
  5010. "root": {
  5011. "__id__": 1
  5012. },
  5013. "asset": {
  5014. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  5015. },
  5016. "fileId": "84c/xhhf5GoZrInbkdlqxE",
  5017. "sync": false
  5018. },
  5019. {
  5020. "__type__": "cc.Node",
  5021. "_name": "qipao copy",
  5022. "_objFlags": 0,
  5023. "_parent": {
  5024. "__id__": 40
  5025. },
  5026. "_children": [
  5027. {
  5028. "__id__": 137
  5029. }
  5030. ],
  5031. "_active": false,
  5032. "_components": [
  5033. {
  5034. "__id__": 140
  5035. }
  5036. ],
  5037. "_prefab": {
  5038. "__id__": 141
  5039. },
  5040. "_opacity": 255,
  5041. "_color": {
  5042. "__type__": "cc.Color",
  5043. "r": 255,
  5044. "g": 255,
  5045. "b": 255,
  5046. "a": 255
  5047. },
  5048. "_contentSize": {
  5049. "__type__": "cc.Size",
  5050. "width": 180,
  5051. "height": 70
  5052. },
  5053. "_anchorPoint": {
  5054. "__type__": "cc.Vec2",
  5055. "x": 0.5,
  5056. "y": 0.5
  5057. },
  5058. "_trs": {
  5059. "__type__": "TypedArray",
  5060. "ctor": "Float64Array",
  5061. "array": [
  5062. 61.799,
  5063. 143.903,
  5064. 0,
  5065. 0,
  5066. 0,
  5067. 0,
  5068. 1,
  5069. 1,
  5070. 1,
  5071. 1
  5072. ]
  5073. },
  5074. "_eulerAngles": {
  5075. "__type__": "cc.Vec3",
  5076. "x": 0,
  5077. "y": 0,
  5078. "z": 0
  5079. },
  5080. "_skewX": 0,
  5081. "_skewY": 0,
  5082. "_is3DNode": false,
  5083. "_groupIndex": 0,
  5084. "groupIndex": 0,
  5085. "_id": ""
  5086. },
  5087. {
  5088. "__type__": "cc.Node",
  5089. "_name": "labTip",
  5090. "_objFlags": 0,
  5091. "_parent": {
  5092. "__id__": 136
  5093. },
  5094. "_children": [],
  5095. "_active": true,
  5096. "_components": [
  5097. {
  5098. "__id__": 138
  5099. }
  5100. ],
  5101. "_prefab": {
  5102. "__id__": 139
  5103. },
  5104. "_opacity": 255,
  5105. "_color": {
  5106. "__type__": "cc.Color",
  5107. "r": 0,
  5108. "g": 0,
  5109. "b": 0,
  5110. "a": 255
  5111. },
  5112. "_contentSize": {
  5113. "__type__": "cc.Size",
  5114. "width": 190,
  5115. "height": 50.4
  5116. },
  5117. "_anchorPoint": {
  5118. "__type__": "cc.Vec2",
  5119. "x": 0.5,
  5120. "y": 0.5
  5121. },
  5122. "_trs": {
  5123. "__type__": "TypedArray",
  5124. "ctor": "Float64Array",
  5125. "array": [
  5126. 9.28,
  5127. 5.065,
  5128. 0,
  5129. 0,
  5130. 0,
  5131. 0,
  5132. 1,
  5133. 1,
  5134. 1,
  5135. 1
  5136. ]
  5137. },
  5138. "_eulerAngles": {
  5139. "__type__": "cc.Vec3",
  5140. "x": 0,
  5141. "y": 0,
  5142. "z": 0
  5143. },
  5144. "_skewX": 0,
  5145. "_skewY": 0,
  5146. "_is3DNode": false,
  5147. "_groupIndex": 0,
  5148. "groupIndex": 0,
  5149. "_id": ""
  5150. },
  5151. {
  5152. "__type__": "cc.Label",
  5153. "_name": "labTip<Label>",
  5154. "_objFlags": 0,
  5155. "node": {
  5156. "__id__": 137
  5157. },
  5158. "_enabled": true,
  5159. "_materials": [
  5160. {
  5161. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5162. }
  5163. ],
  5164. "_useOriginalSize": false,
  5165. "_string": "参与夺宝的门票",
  5166. "_N$string": "参与夺宝的门票",
  5167. "_fontSize": 24,
  5168. "_lineHeight": 40,
  5169. "_enableWrapText": true,
  5170. "_N$file": null,
  5171. "_isSystemFontUsed": true,
  5172. "_spacingX": 0,
  5173. "_batchAsBitmap": false,
  5174. "_styleFlags": 0,
  5175. "_underlineHeight": 0,
  5176. "_N$horizontalAlign": 0,
  5177. "_N$verticalAlign": 1,
  5178. "_N$fontFamily": "Arial",
  5179. "_N$overflow": 3,
  5180. "_N$cacheMode": 0,
  5181. "_id": ""
  5182. },
  5183. {
  5184. "__type__": "cc.PrefabInfo",
  5185. "root": {
  5186. "__id__": 1
  5187. },
  5188. "asset": {
  5189. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  5190. },
  5191. "fileId": "3fCCz/q+tIY7Yd8uAzD20u",
  5192. "sync": false
  5193. },
  5194. {
  5195. "__type__": "cc.Sprite",
  5196. "_name": "qipao<Sprite>",
  5197. "_objFlags": 0,
  5198. "node": {
  5199. "__id__": 136
  5200. },
  5201. "_enabled": true,
  5202. "_materials": [
  5203. {
  5204. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5205. }
  5206. ],
  5207. "_srcBlendFactor": 770,
  5208. "_dstBlendFactor": 771,
  5209. "_spriteFrame": {
  5210. "__uuid__": "d9d618d6-0241-4eda-82e8-ff58e26f7f97"
  5211. },
  5212. "_type": 1,
  5213. "_sizeMode": 0,
  5214. "_fillType": 0,
  5215. "_fillCenter": {
  5216. "__type__": "cc.Vec2",
  5217. "x": 0,
  5218. "y": 0
  5219. },
  5220. "_fillStart": 0,
  5221. "_fillRange": 0,
  5222. "_isTrimmedMode": true,
  5223. "_atlas": null,
  5224. "_id": ""
  5225. },
  5226. {
  5227. "__type__": "cc.PrefabInfo",
  5228. "root": {
  5229. "__id__": 1
  5230. },
  5231. "asset": {
  5232. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  5233. },
  5234. "fileId": "bfd1sZFLNIqqsCfwIAQoNX",
  5235. "sync": false
  5236. },
  5237. {
  5238. "__type__": "cc.Node",
  5239. "_name": "guideRect1",
  5240. "_objFlags": 0,
  5241. "_parent": {
  5242. "__id__": 40
  5243. },
  5244. "_children": [],
  5245. "_active": true,
  5246. "_components": [
  5247. {
  5248. "__id__": 143
  5249. }
  5250. ],
  5251. "_prefab": {
  5252. "__id__": 145
  5253. },
  5254. "_opacity": 255,
  5255. "_color": {
  5256. "__type__": "cc.Color",
  5257. "r": 255,
  5258. "g": 255,
  5259. "b": 255,
  5260. "a": 255
  5261. },
  5262. "_contentSize": {
  5263. "__type__": "cc.Size",
  5264. "width": 750,
  5265. "height": 181
  5266. },
  5267. "_anchorPoint": {
  5268. "__type__": "cc.Vec2",
  5269. "x": 0.5,
  5270. "y": 0.5
  5271. },
  5272. "_trs": {
  5273. "__type__": "TypedArray",
  5274. "ctor": "Float64Array",
  5275. "array": [
  5276. 0,
  5277. 36.752,
  5278. 0,
  5279. 0,
  5280. 0,
  5281. 0,
  5282. 1,
  5283. 1,
  5284. 1,
  5285. 1
  5286. ]
  5287. },
  5288. "_eulerAngles": {
  5289. "__type__": "cc.Vec3",
  5290. "x": 0,
  5291. "y": 0,
  5292. "z": 0
  5293. },
  5294. "_skewX": 0,
  5295. "_skewY": 0,
  5296. "_is3DNode": false,
  5297. "_groupIndex": 0,
  5298. "groupIndex": 0,
  5299. "_id": ""
  5300. },
  5301. {
  5302. "__type__": "cc.Button",
  5303. "_name": "",
  5304. "_objFlags": 0,
  5305. "node": {
  5306. "__id__": 142
  5307. },
  5308. "_enabled": true,
  5309. "_normalMaterial": null,
  5310. "_grayMaterial": null,
  5311. "duration": 0.1,
  5312. "zoomScale": 1.2,
  5313. "clickEvents": [
  5314. {
  5315. "__id__": 144
  5316. }
  5317. ],
  5318. "_N$interactable": true,
  5319. "_N$enableAutoGrayEffect": false,
  5320. "_N$transition": 0,
  5321. "transition": 0,
  5322. "_N$normalColor": {
  5323. "__type__": "cc.Color",
  5324. "r": 255,
  5325. "g": 255,
  5326. "b": 255,
  5327. "a": 255
  5328. },
  5329. "_N$pressedColor": {
  5330. "__type__": "cc.Color",
  5331. "r": 211,
  5332. "g": 211,
  5333. "b": 211,
  5334. "a": 255
  5335. },
  5336. "pressedColor": {
  5337. "__type__": "cc.Color",
  5338. "r": 211,
  5339. "g": 211,
  5340. "b": 211,
  5341. "a": 255
  5342. },
  5343. "_N$hoverColor": {
  5344. "__type__": "cc.Color",
  5345. "r": 255,
  5346. "g": 255,
  5347. "b": 255,
  5348. "a": 255
  5349. },
  5350. "hoverColor": {
  5351. "__type__": "cc.Color",
  5352. "r": 255,
  5353. "g": 255,
  5354. "b": 255,
  5355. "a": 255
  5356. },
  5357. "_N$disabledColor": {
  5358. "__type__": "cc.Color",
  5359. "r": 124,
  5360. "g": 124,
  5361. "b": 124,
  5362. "a": 255
  5363. },
  5364. "_N$normalSprite": null,
  5365. "_N$pressedSprite": null,
  5366. "pressedSprite": null,
  5367. "_N$hoverSprite": null,
  5368. "hoverSprite": null,
  5369. "_N$disabledSprite": null,
  5370. "_N$target": null,
  5371. "_id": ""
  5372. },
  5373. {
  5374. "__type__": "cc.ClickEvent",
  5375. "target": {
  5376. "__id__": 1
  5377. },
  5378. "component": "",
  5379. "_componentId": "b150700q4JFCaxD1R8c6DRF",
  5380. "handler": "Click_GuideRectBtn",
  5381. "customEventData": ""
  5382. },
  5383. {
  5384. "__type__": "cc.PrefabInfo",
  5385. "root": {
  5386. "__id__": 1
  5387. },
  5388. "asset": {
  5389. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  5390. },
  5391. "fileId": "dbWWfQlN9Fxp8oeNm5NEIz",
  5392. "sync": false
  5393. },
  5394. {
  5395. "__type__": "cc.Node",
  5396. "_name": "guideRect2",
  5397. "_objFlags": 0,
  5398. "_parent": {
  5399. "__id__": 40
  5400. },
  5401. "_children": [],
  5402. "_active": true,
  5403. "_components": [],
  5404. "_prefab": {
  5405. "__id__": 147
  5406. },
  5407. "_opacity": 255,
  5408. "_color": {
  5409. "__type__": "cc.Color",
  5410. "r": 255,
  5411. "g": 255,
  5412. "b": 255,
  5413. "a": 255
  5414. },
  5415. "_contentSize": {
  5416. "__type__": "cc.Size",
  5417. "width": 750,
  5418. "height": 933
  5419. },
  5420. "_anchorPoint": {
  5421. "__type__": "cc.Vec2",
  5422. "x": 0.5,
  5423. "y": 0.5
  5424. },
  5425. "_trs": {
  5426. "__type__": "TypedArray",
  5427. "ctor": "Float64Array",
  5428. "array": [
  5429. 0,
  5430. -548.248,
  5431. 0,
  5432. 0,
  5433. 0,
  5434. 0,
  5435. 1,
  5436. 1,
  5437. 1,
  5438. 1
  5439. ]
  5440. },
  5441. "_eulerAngles": {
  5442. "__type__": "cc.Vec3",
  5443. "x": 0,
  5444. "y": 0,
  5445. "z": 0
  5446. },
  5447. "_skewX": 0,
  5448. "_skewY": 0,
  5449. "_is3DNode": false,
  5450. "_groupIndex": 0,
  5451. "groupIndex": 0,
  5452. "_id": ""
  5453. },
  5454. {
  5455. "__type__": "cc.PrefabInfo",
  5456. "root": {
  5457. "__id__": 1
  5458. },
  5459. "asset": {
  5460. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  5461. },
  5462. "fileId": "76pT/5bahFQ7IAXx8eEjs4",
  5463. "sync": false
  5464. },
  5465. {
  5466. "__type__": "cc.Widget",
  5467. "_name": "",
  5468. "_objFlags": 0,
  5469. "node": {
  5470. "__id__": 40
  5471. },
  5472. "_enabled": true,
  5473. "alignMode": 1,
  5474. "_target": null,
  5475. "_alignFlags": 1,
  5476. "_left": 0,
  5477. "_right": 0,
  5478. "_top": 195.752,
  5479. "_bottom": 0,
  5480. "_verticalCenter": 0,
  5481. "_horizontalCenter": 0,
  5482. "_isAbsLeft": true,
  5483. "_isAbsRight": true,
  5484. "_isAbsTop": true,
  5485. "_isAbsBottom": true,
  5486. "_isAbsHorizontalCenter": true,
  5487. "_isAbsVerticalCenter": true,
  5488. "_originalWidth": 0,
  5489. "_originalHeight": 0,
  5490. "_id": ""
  5491. },
  5492. {
  5493. "__type__": "cc.PrefabInfo",
  5494. "root": {
  5495. "__id__": 1
  5496. },
  5497. "asset": {
  5498. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  5499. },
  5500. "fileId": "35Nf/fpalKbqL3f9K10N+X",
  5501. "sync": false
  5502. },
  5503. {
  5504. "__type__": "cc.Widget",
  5505. "_name": "",
  5506. "_objFlags": 0,
  5507. "node": {
  5508. "__id__": 6
  5509. },
  5510. "_enabled": true,
  5511. "alignMode": 1,
  5512. "_target": null,
  5513. "_alignFlags": 45,
  5514. "_left": 0,
  5515. "_right": 0,
  5516. "_top": 0,
  5517. "_bottom": 0,
  5518. "_verticalCenter": 0,
  5519. "_horizontalCenter": 0,
  5520. "_isAbsLeft": true,
  5521. "_isAbsRight": true,
  5522. "_isAbsTop": true,
  5523. "_isAbsBottom": true,
  5524. "_isAbsHorizontalCenter": true,
  5525. "_isAbsVerticalCenter": true,
  5526. "_originalWidth": 750,
  5527. "_originalHeight": 1334,
  5528. "_id": ""
  5529. },
  5530. {
  5531. "__type__": "cc.PrefabInfo",
  5532. "root": {
  5533. "__id__": 1
  5534. },
  5535. "asset": {
  5536. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  5537. },
  5538. "fileId": "01SlQPEYpJYL1XH9c0iWqD",
  5539. "sync": false
  5540. },
  5541. {
  5542. "__type__": "cc.Node",
  5543. "_name": "resultPart",
  5544. "_objFlags": 0,
  5545. "_parent": {
  5546. "__id__": 1
  5547. },
  5548. "_children": [
  5549. {
  5550. "__id__": 153
  5551. },
  5552. {
  5553. "__id__": 158
  5554. },
  5555. {
  5556. "__id__": 162
  5557. }
  5558. ],
  5559. "_active": false,
  5560. "_components": [],
  5561. "_prefab": {
  5562. "__id__": 223
  5563. },
  5564. "_opacity": 255,
  5565. "_color": {
  5566. "__type__": "cc.Color",
  5567. "r": 255,
  5568. "g": 255,
  5569. "b": 255,
  5570. "a": 255
  5571. },
  5572. "_contentSize": {
  5573. "__type__": "cc.Size",
  5574. "width": 0,
  5575. "height": 0
  5576. },
  5577. "_anchorPoint": {
  5578. "__type__": "cc.Vec2",
  5579. "x": 0.5,
  5580. "y": 0.5
  5581. },
  5582. "_trs": {
  5583. "__type__": "TypedArray",
  5584. "ctor": "Float64Array",
  5585. "array": [
  5586. 0,
  5587. 0,
  5588. 0,
  5589. 0,
  5590. 0,
  5591. 0,
  5592. 1,
  5593. 1,
  5594. 1,
  5595. 1
  5596. ]
  5597. },
  5598. "_eulerAngles": {
  5599. "__type__": "cc.Vec3",
  5600. "x": 0,
  5601. "y": 0,
  5602. "z": 0
  5603. },
  5604. "_skewX": 0,
  5605. "_skewY": 0,
  5606. "_is3DNode": false,
  5607. "_groupIndex": 0,
  5608. "groupIndex": 0,
  5609. "_id": ""
  5610. },
  5611. {
  5612. "__type__": "cc.Node",
  5613. "_name": "New Sprite(Splash)",
  5614. "_objFlags": 0,
  5615. "_parent": {
  5616. "__id__": 152
  5617. },
  5618. "_children": [],
  5619. "_active": true,
  5620. "_components": [
  5621. {
  5622. "__id__": 154
  5623. },
  5624. {
  5625. "__id__": 155
  5626. },
  5627. {
  5628. "__id__": 156
  5629. }
  5630. ],
  5631. "_prefab": {
  5632. "__id__": 157
  5633. },
  5634. "_opacity": 178,
  5635. "_color": {
  5636. "__type__": "cc.Color",
  5637. "r": 0,
  5638. "g": 0,
  5639. "b": 0,
  5640. "a": 255
  5641. },
  5642. "_contentSize": {
  5643. "__type__": "cc.Size",
  5644. "width": 750,
  5645. "height": 2000
  5646. },
  5647. "_anchorPoint": {
  5648. "__type__": "cc.Vec2",
  5649. "x": 0.5,
  5650. "y": 0.5
  5651. },
  5652. "_trs": {
  5653. "__type__": "TypedArray",
  5654. "ctor": "Float64Array",
  5655. "array": [
  5656. 0,
  5657. 0,
  5658. 0,
  5659. 0,
  5660. 0,
  5661. 0,
  5662. 1,
  5663. 1,
  5664. 1,
  5665. 1
  5666. ]
  5667. },
  5668. "_eulerAngles": {
  5669. "__type__": "cc.Vec3",
  5670. "x": 0,
  5671. "y": 0,
  5672. "z": 0
  5673. },
  5674. "_skewX": 0,
  5675. "_skewY": 0,
  5676. "_is3DNode": false,
  5677. "_groupIndex": 0,
  5678. "groupIndex": 0,
  5679. "_id": ""
  5680. },
  5681. {
  5682. "__type__": "cc.Sprite",
  5683. "_name": "New Sprite(Splash)<Sprite>",
  5684. "_objFlags": 0,
  5685. "node": {
  5686. "__id__": 153
  5687. },
  5688. "_enabled": true,
  5689. "_materials": [
  5690. {
  5691. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5692. }
  5693. ],
  5694. "_srcBlendFactor": 770,
  5695. "_dstBlendFactor": 771,
  5696. "_spriteFrame": {
  5697. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  5698. },
  5699. "_type": 0,
  5700. "_sizeMode": 0,
  5701. "_fillType": 0,
  5702. "_fillCenter": {
  5703. "__type__": "cc.Vec2",
  5704. "x": 0,
  5705. "y": 0
  5706. },
  5707. "_fillStart": 0,
  5708. "_fillRange": 0,
  5709. "_isTrimmedMode": true,
  5710. "_atlas": null,
  5711. "_id": ""
  5712. },
  5713. {
  5714. "__type__": "cc.BlockInputEvents",
  5715. "_name": "",
  5716. "_objFlags": 0,
  5717. "node": {
  5718. "__id__": 153
  5719. },
  5720. "_enabled": true,
  5721. "_id": ""
  5722. },
  5723. {
  5724. "__type__": "cc.Button",
  5725. "_name": "",
  5726. "_objFlags": 0,
  5727. "node": {
  5728. "__id__": 153
  5729. },
  5730. "_enabled": true,
  5731. "_normalMaterial": null,
  5732. "_grayMaterial": null,
  5733. "duration": 0.1,
  5734. "zoomScale": 1.2,
  5735. "clickEvents": [],
  5736. "_N$interactable": true,
  5737. "_N$enableAutoGrayEffect": false,
  5738. "_N$transition": 0,
  5739. "transition": 0,
  5740. "_N$normalColor": {
  5741. "__type__": "cc.Color",
  5742. "r": 255,
  5743. "g": 255,
  5744. "b": 255,
  5745. "a": 255
  5746. },
  5747. "_N$pressedColor": {
  5748. "__type__": "cc.Color",
  5749. "r": 211,
  5750. "g": 211,
  5751. "b": 211,
  5752. "a": 255
  5753. },
  5754. "pressedColor": {
  5755. "__type__": "cc.Color",
  5756. "r": 211,
  5757. "g": 211,
  5758. "b": 211,
  5759. "a": 255
  5760. },
  5761. "_N$hoverColor": {
  5762. "__type__": "cc.Color",
  5763. "r": 255,
  5764. "g": 255,
  5765. "b": 255,
  5766. "a": 255
  5767. },
  5768. "hoverColor": {
  5769. "__type__": "cc.Color",
  5770. "r": 255,
  5771. "g": 255,
  5772. "b": 255,
  5773. "a": 255
  5774. },
  5775. "_N$disabledColor": {
  5776. "__type__": "cc.Color",
  5777. "r": 124,
  5778. "g": 124,
  5779. "b": 124,
  5780. "a": 255
  5781. },
  5782. "_N$normalSprite": null,
  5783. "_N$pressedSprite": null,
  5784. "pressedSprite": null,
  5785. "_N$hoverSprite": null,
  5786. "hoverSprite": null,
  5787. "_N$disabledSprite": null,
  5788. "_N$target": null,
  5789. "_id": ""
  5790. },
  5791. {
  5792. "__type__": "cc.PrefabInfo",
  5793. "root": {
  5794. "__id__": 1
  5795. },
  5796. "asset": {
  5797. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  5798. },
  5799. "fileId": "bbFAEsTBhML7mVqfpPAULf",
  5800. "sync": false
  5801. },
  5802. {
  5803. "__type__": "cc.Node",
  5804. "_name": "btnClose",
  5805. "_objFlags": 0,
  5806. "_parent": {
  5807. "__id__": 152
  5808. },
  5809. "_children": [],
  5810. "_active": true,
  5811. "_components": [
  5812. {
  5813. "__id__": 159
  5814. }
  5815. ],
  5816. "_prefab": {
  5817. "__id__": 161
  5818. },
  5819. "_opacity": 255,
  5820. "_color": {
  5821. "__type__": "cc.Color",
  5822. "r": 255,
  5823. "g": 255,
  5824. "b": 255,
  5825. "a": 255
  5826. },
  5827. "_contentSize": {
  5828. "__type__": "cc.Size",
  5829. "width": 750,
  5830. "height": 2000
  5831. },
  5832. "_anchorPoint": {
  5833. "__type__": "cc.Vec2",
  5834. "x": 0.5,
  5835. "y": 0.5
  5836. },
  5837. "_trs": {
  5838. "__type__": "TypedArray",
  5839. "ctor": "Float64Array",
  5840. "array": [
  5841. 0,
  5842. 0,
  5843. 0,
  5844. 0,
  5845. 0,
  5846. 0,
  5847. 1,
  5848. 1,
  5849. 1,
  5850. 1
  5851. ]
  5852. },
  5853. "_eulerAngles": {
  5854. "__type__": "cc.Vec3",
  5855. "x": 0,
  5856. "y": 0,
  5857. "z": 0
  5858. },
  5859. "_skewX": 0,
  5860. "_skewY": 0,
  5861. "_is3DNode": false,
  5862. "_groupIndex": 0,
  5863. "groupIndex": 0,
  5864. "_id": ""
  5865. },
  5866. {
  5867. "__type__": "cc.Button",
  5868. "_name": "",
  5869. "_objFlags": 0,
  5870. "node": {
  5871. "__id__": 158
  5872. },
  5873. "_enabled": true,
  5874. "_normalMaterial": {
  5875. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5876. },
  5877. "_grayMaterial": null,
  5878. "duration": 0.1,
  5879. "zoomScale": 0.8,
  5880. "clickEvents": [
  5881. {
  5882. "__id__": 160
  5883. }
  5884. ],
  5885. "_N$interactable": true,
  5886. "_N$enableAutoGrayEffect": false,
  5887. "_N$transition": 3,
  5888. "transition": 3,
  5889. "_N$normalColor": {
  5890. "__type__": "cc.Color",
  5891. "r": 230,
  5892. "g": 230,
  5893. "b": 230,
  5894. "a": 255
  5895. },
  5896. "_N$pressedColor": {
  5897. "__type__": "cc.Color",
  5898. "r": 200,
  5899. "g": 200,
  5900. "b": 200,
  5901. "a": 255
  5902. },
  5903. "pressedColor": {
  5904. "__type__": "cc.Color",
  5905. "r": 200,
  5906. "g": 200,
  5907. "b": 200,
  5908. "a": 255
  5909. },
  5910. "_N$hoverColor": {
  5911. "__type__": "cc.Color",
  5912. "r": 255,
  5913. "g": 255,
  5914. "b": 255,
  5915. "a": 255
  5916. },
  5917. "hoverColor": {
  5918. "__type__": "cc.Color",
  5919. "r": 255,
  5920. "g": 255,
  5921. "b": 255,
  5922. "a": 255
  5923. },
  5924. "_N$disabledColor": {
  5925. "__type__": "cc.Color",
  5926. "r": 120,
  5927. "g": 120,
  5928. "b": 120,
  5929. "a": 200
  5930. },
  5931. "_N$normalSprite": {
  5932. "__uuid__": "c532e90f-bf60-436c-9c3e-84d95d058a4f"
  5933. },
  5934. "_N$pressedSprite": {
  5935. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5936. },
  5937. "pressedSprite": {
  5938. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5939. },
  5940. "_N$hoverSprite": {
  5941. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5942. },
  5943. "hoverSprite": {
  5944. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5945. },
  5946. "_N$disabledSprite": {
  5947. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  5948. },
  5949. "_N$target": {
  5950. "__id__": 158
  5951. },
  5952. "_id": ""
  5953. },
  5954. {
  5955. "__type__": "cc.ClickEvent",
  5956. "target": {
  5957. "__id__": 1
  5958. },
  5959. "component": "",
  5960. "_componentId": "b150700q4JFCaxD1R8c6DRF",
  5961. "handler": "clickCloseResult",
  5962. "customEventData": ""
  5963. },
  5964. {
  5965. "__type__": "cc.PrefabInfo",
  5966. "root": {
  5967. "__id__": 1
  5968. },
  5969. "asset": {
  5970. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  5971. },
  5972. "fileId": "d9U9KhKQFPHZ6YylzcEel1",
  5973. "sync": false
  5974. },
  5975. {
  5976. "__type__": "cc.Node",
  5977. "_name": "par",
  5978. "_objFlags": 0,
  5979. "_parent": {
  5980. "__id__": 152
  5981. },
  5982. "_children": [
  5983. {
  5984. "__id__": 163
  5985. },
  5986. {
  5987. "__id__": 167
  5988. },
  5989. {
  5990. "__id__": 170
  5991. },
  5992. {
  5993. "__id__": 184
  5994. },
  5995. {
  5996. "__id__": 190
  5997. },
  5998. {
  5999. "__id__": 194
  6000. },
  6001. {
  6002. "__id__": 202
  6003. },
  6004. {
  6005. "__id__": 205
  6006. },
  6007. {
  6008. "__id__": 208
  6009. },
  6010. {
  6011. "__id__": 218
  6012. }
  6013. ],
  6014. "_active": true,
  6015. "_components": [
  6016. {
  6017. "__id__": 221
  6018. }
  6019. ],
  6020. "_prefab": {
  6021. "__id__": 222
  6022. },
  6023. "_opacity": 255,
  6024. "_color": {
  6025. "__type__": "cc.Color",
  6026. "r": 255,
  6027. "g": 255,
  6028. "b": 255,
  6029. "a": 255
  6030. },
  6031. "_contentSize": {
  6032. "__type__": "cc.Size",
  6033. "width": 0,
  6034. "height": 0
  6035. },
  6036. "_anchorPoint": {
  6037. "__type__": "cc.Vec2",
  6038. "x": 0.5,
  6039. "y": 0.5
  6040. },
  6041. "_trs": {
  6042. "__type__": "TypedArray",
  6043. "ctor": "Float64Array",
  6044. "array": [
  6045. 0,
  6046. 0,
  6047. 0,
  6048. 0,
  6049. 0,
  6050. 0,
  6051. 1,
  6052. 1,
  6053. 1,
  6054. 1
  6055. ]
  6056. },
  6057. "_eulerAngles": {
  6058. "__type__": "cc.Vec3",
  6059. "x": 0,
  6060. "y": 0,
  6061. "z": 0
  6062. },
  6063. "_skewX": 0,
  6064. "_skewY": 0,
  6065. "_is3DNode": false,
  6066. "_groupIndex": 0,
  6067. "groupIndex": 0,
  6068. "_id": ""
  6069. },
  6070. {
  6071. "__type__": "cc.Node",
  6072. "_name": "tc_hongbao_bg",
  6073. "_objFlags": 0,
  6074. "_parent": {
  6075. "__id__": 162
  6076. },
  6077. "_children": [],
  6078. "_active": true,
  6079. "_components": [
  6080. {
  6081. "__id__": 164
  6082. },
  6083. {
  6084. "__id__": 165
  6085. }
  6086. ],
  6087. "_prefab": {
  6088. "__id__": 166
  6089. },
  6090. "_opacity": 255,
  6091. "_color": {
  6092. "__type__": "cc.Color",
  6093. "r": 255,
  6094. "g": 255,
  6095. "b": 255,
  6096. "a": 255
  6097. },
  6098. "_contentSize": {
  6099. "__type__": "cc.Size",
  6100. "width": 583,
  6101. "height": 728
  6102. },
  6103. "_anchorPoint": {
  6104. "__type__": "cc.Vec2",
  6105. "x": 0.5,
  6106. "y": 0.5
  6107. },
  6108. "_trs": {
  6109. "__type__": "TypedArray",
  6110. "ctor": "Float64Array",
  6111. "array": [
  6112. 0,
  6113. -59.002,
  6114. 0,
  6115. 0,
  6116. 0,
  6117. 0,
  6118. 1,
  6119. 1,
  6120. 1,
  6121. 1
  6122. ]
  6123. },
  6124. "_eulerAngles": {
  6125. "__type__": "cc.Vec3",
  6126. "x": 0,
  6127. "y": 0,
  6128. "z": 0
  6129. },
  6130. "_skewX": 0,
  6131. "_skewY": 0,
  6132. "_is3DNode": false,
  6133. "_groupIndex": 0,
  6134. "groupIndex": 0,
  6135. "_id": ""
  6136. },
  6137. {
  6138. "__type__": "cc.Sprite",
  6139. "_name": "tc_hongbao_bg<Sprite>",
  6140. "_objFlags": 0,
  6141. "node": {
  6142. "__id__": 163
  6143. },
  6144. "_enabled": true,
  6145. "_materials": [
  6146. {
  6147. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6148. }
  6149. ],
  6150. "_srcBlendFactor": 770,
  6151. "_dstBlendFactor": 771,
  6152. "_spriteFrame": {
  6153. "__uuid__": "5000760f-3e8e-4135-ab5a-077151dd1488"
  6154. },
  6155. "_type": 0,
  6156. "_sizeMode": 1,
  6157. "_fillType": 0,
  6158. "_fillCenter": {
  6159. "__type__": "cc.Vec2",
  6160. "x": 0,
  6161. "y": 0
  6162. },
  6163. "_fillStart": 0,
  6164. "_fillRange": 0,
  6165. "_isTrimmedMode": true,
  6166. "_atlas": null,
  6167. "_id": ""
  6168. },
  6169. {
  6170. "__type__": "cc.BlockInputEvents",
  6171. "_name": "",
  6172. "_objFlags": 0,
  6173. "node": {
  6174. "__id__": 163
  6175. },
  6176. "_enabled": true,
  6177. "_id": ""
  6178. },
  6179. {
  6180. "__type__": "cc.PrefabInfo",
  6181. "root": {
  6182. "__id__": 1
  6183. },
  6184. "asset": {
  6185. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  6186. },
  6187. "fileId": "f05kT97GtNrISnJjOzo166",
  6188. "sync": false
  6189. },
  6190. {
  6191. "__type__": "cc.Node",
  6192. "_name": "fail",
  6193. "_objFlags": 0,
  6194. "_parent": {
  6195. "__id__": 162
  6196. },
  6197. "_children": [],
  6198. "_active": true,
  6199. "_components": [
  6200. {
  6201. "__id__": 168
  6202. }
  6203. ],
  6204. "_prefab": {
  6205. "__id__": 169
  6206. },
  6207. "_opacity": 255,
  6208. "_color": {
  6209. "__type__": "cc.Color",
  6210. "r": 255,
  6211. "g": 255,
  6212. "b": 255,
  6213. "a": 255
  6214. },
  6215. "_contentSize": {
  6216. "__type__": "cc.Size",
  6217. "width": 542,
  6218. "height": 81
  6219. },
  6220. "_anchorPoint": {
  6221. "__type__": "cc.Vec2",
  6222. "x": 0.5,
  6223. "y": 0.5
  6224. },
  6225. "_trs": {
  6226. "__type__": "TypedArray",
  6227. "ctor": "Float64Array",
  6228. "array": [
  6229. 0,
  6230. 433.572,
  6231. 0,
  6232. 0,
  6233. 0,
  6234. 0,
  6235. 1,
  6236. 1,
  6237. 1,
  6238. 1
  6239. ]
  6240. },
  6241. "_eulerAngles": {
  6242. "__type__": "cc.Vec3",
  6243. "x": 0,
  6244. "y": 0,
  6245. "z": 0
  6246. },
  6247. "_skewX": 0,
  6248. "_skewY": 0,
  6249. "_is3DNode": false,
  6250. "_groupIndex": 0,
  6251. "groupIndex": 0,
  6252. "_id": ""
  6253. },
  6254. {
  6255. "__type__": "cc.Sprite",
  6256. "_name": "fail<Sprite>",
  6257. "_objFlags": 0,
  6258. "node": {
  6259. "__id__": 167
  6260. },
  6261. "_enabled": true,
  6262. "_materials": [
  6263. {
  6264. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6265. }
  6266. ],
  6267. "_srcBlendFactor": 770,
  6268. "_dstBlendFactor": 771,
  6269. "_spriteFrame": {
  6270. "__uuid__": "210690d3-0948-4a46-bfe2-fe558c12d363"
  6271. },
  6272. "_type": 0,
  6273. "_sizeMode": 1,
  6274. "_fillType": 0,
  6275. "_fillCenter": {
  6276. "__type__": "cc.Vec2",
  6277. "x": 0,
  6278. "y": 0
  6279. },
  6280. "_fillStart": 0,
  6281. "_fillRange": 0,
  6282. "_isTrimmedMode": true,
  6283. "_atlas": null,
  6284. "_id": ""
  6285. },
  6286. {
  6287. "__type__": "cc.PrefabInfo",
  6288. "root": {
  6289. "__id__": 1
  6290. },
  6291. "asset": {
  6292. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  6293. },
  6294. "fileId": "f2RvV/L0pGI6+NQsn/RbEM",
  6295. "sync": false
  6296. },
  6297. {
  6298. "__type__": "cc.Node",
  6299. "_name": "success",
  6300. "_objFlags": 0,
  6301. "_parent": {
  6302. "__id__": 162
  6303. },
  6304. "_children": [
  6305. {
  6306. "__id__": 171
  6307. },
  6308. {
  6309. "__id__": 180
  6310. }
  6311. ],
  6312. "_active": false,
  6313. "_components": [],
  6314. "_prefab": {
  6315. "__id__": 183
  6316. },
  6317. "_opacity": 255,
  6318. "_color": {
  6319. "__type__": "cc.Color",
  6320. "r": 255,
  6321. "g": 255,
  6322. "b": 255,
  6323. "a": 255
  6324. },
  6325. "_contentSize": {
  6326. "__type__": "cc.Size",
  6327. "width": 530,
  6328. "height": 86
  6329. },
  6330. "_anchorPoint": {
  6331. "__type__": "cc.Vec2",
  6332. "x": 0.5,
  6333. "y": 0.5
  6334. },
  6335. "_trs": {
  6336. "__type__": "TypedArray",
  6337. "ctor": "Float64Array",
  6338. "array": [
  6339. 0,
  6340. 451.904,
  6341. 0,
  6342. 0,
  6343. 0,
  6344. 0,
  6345. 1,
  6346. 1,
  6347. 1,
  6348. 1
  6349. ]
  6350. },
  6351. "_eulerAngles": {
  6352. "__type__": "cc.Vec3",
  6353. "x": 0,
  6354. "y": 0,
  6355. "z": 0
  6356. },
  6357. "_skewX": 0,
  6358. "_skewY": 0,
  6359. "_is3DNode": false,
  6360. "_groupIndex": 0,
  6361. "groupIndex": 0,
  6362. "_id": ""
  6363. },
  6364. {
  6365. "__type__": "cc.Node",
  6366. "_name": "New Node",
  6367. "_objFlags": 0,
  6368. "_parent": {
  6369. "__id__": 170
  6370. },
  6371. "_children": [
  6372. {
  6373. "__id__": 172
  6374. },
  6375. {
  6376. "__id__": 175
  6377. }
  6378. ],
  6379. "_active": true,
  6380. "_components": [],
  6381. "_prefab": {
  6382. "__id__": 179
  6383. },
  6384. "_opacity": 255,
  6385. "_color": {
  6386. "__type__": "cc.Color",
  6387. "r": 255,
  6388. "g": 255,
  6389. "b": 255,
  6390. "a": 255
  6391. },
  6392. "_contentSize": {
  6393. "__type__": "cc.Size",
  6394. "width": 750,
  6395. "height": 1334
  6396. },
  6397. "_anchorPoint": {
  6398. "__type__": "cc.Vec2",
  6399. "x": 0.5,
  6400. "y": 0.5
  6401. },
  6402. "_trs": {
  6403. "__type__": "TypedArray",
  6404. "ctor": "Float64Array",
  6405. "array": [
  6406. 0,
  6407. -361.64,
  6408. 0,
  6409. 0,
  6410. 0,
  6411. 0,
  6412. 1,
  6413. 1,
  6414. 1,
  6415. 1
  6416. ]
  6417. },
  6418. "_eulerAngles": {
  6419. "__type__": "cc.Vec3",
  6420. "x": 0,
  6421. "y": 0,
  6422. "z": 0
  6423. },
  6424. "_skewX": 0,
  6425. "_skewY": 0,
  6426. "_is3DNode": false,
  6427. "_groupIndex": 0,
  6428. "groupIndex": 0,
  6429. "_id": ""
  6430. },
  6431. {
  6432. "__type__": "cc.Node",
  6433. "_name": "rewardimg",
  6434. "_objFlags": 0,
  6435. "_parent": {
  6436. "__id__": 171
  6437. },
  6438. "_children": [],
  6439. "_active": true,
  6440. "_components": [
  6441. {
  6442. "__id__": 173
  6443. }
  6444. ],
  6445. "_prefab": {
  6446. "__id__": 174
  6447. },
  6448. "_opacity": 255,
  6449. "_color": {
  6450. "__type__": "cc.Color",
  6451. "r": 255,
  6452. "g": 255,
  6453. "b": 255,
  6454. "a": 255
  6455. },
  6456. "_contentSize": {
  6457. "__type__": "cc.Size",
  6458. "width": 1039,
  6459. "height": 421
  6460. },
  6461. "_anchorPoint": {
  6462. "__type__": "cc.Vec2",
  6463. "x": 0.5,
  6464. "y": 0.5
  6465. },
  6466. "_trs": {
  6467. "__type__": "TypedArray",
  6468. "ctor": "Float64Array",
  6469. "array": [
  6470. 0,
  6471. 588.028,
  6472. 0,
  6473. 0,
  6474. 0,
  6475. 0,
  6476. 1,
  6477. 1,
  6478. 1,
  6479. 1
  6480. ]
  6481. },
  6482. "_eulerAngles": {
  6483. "__type__": "cc.Vec3",
  6484. "x": 0,
  6485. "y": 0,
  6486. "z": 0
  6487. },
  6488. "_skewX": 0,
  6489. "_skewY": 0,
  6490. "_is3DNode": false,
  6491. "_groupIndex": 0,
  6492. "groupIndex": 0,
  6493. "_id": ""
  6494. },
  6495. {
  6496. "__type__": "cc.Sprite",
  6497. "_name": "",
  6498. "_objFlags": 0,
  6499. "node": {
  6500. "__id__": 172
  6501. },
  6502. "_enabled": true,
  6503. "_materials": [
  6504. {
  6505. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6506. }
  6507. ],
  6508. "_srcBlendFactor": 770,
  6509. "_dstBlendFactor": 771,
  6510. "_spriteFrame": {
  6511. "__uuid__": "dc63d82c-fc32-44d6-aa14-2192e330cd3b"
  6512. },
  6513. "_type": 0,
  6514. "_sizeMode": 1,
  6515. "_fillType": 0,
  6516. "_fillCenter": {
  6517. "__type__": "cc.Vec2",
  6518. "x": 0,
  6519. "y": 0
  6520. },
  6521. "_fillStart": 0,
  6522. "_fillRange": 0,
  6523. "_isTrimmedMode": true,
  6524. "_atlas": null,
  6525. "_id": ""
  6526. },
  6527. {
  6528. "__type__": "cc.PrefabInfo",
  6529. "root": {
  6530. "__id__": 1
  6531. },
  6532. "asset": {
  6533. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  6534. },
  6535. "fileId": "ecXVk+1K9FbpxH9/xICqNi",
  6536. "sync": false
  6537. },
  6538. {
  6539. "__type__": "cc.Node",
  6540. "_name": "rewardbg",
  6541. "_objFlags": 0,
  6542. "_parent": {
  6543. "__id__": 171
  6544. },
  6545. "_children": [],
  6546. "_active": true,
  6547. "_components": [
  6548. {
  6549. "__id__": 176
  6550. },
  6551. {
  6552. "__id__": 177
  6553. }
  6554. ],
  6555. "_prefab": {
  6556. "__id__": 178
  6557. },
  6558. "_opacity": 255,
  6559. "_color": {
  6560. "__type__": "cc.Color",
  6561. "r": 255,
  6562. "g": 255,
  6563. "b": 255,
  6564. "a": 255
  6565. },
  6566. "_contentSize": {
  6567. "__type__": "cc.Size",
  6568. "width": 750,
  6569. "height": 466
  6570. },
  6571. "_anchorPoint": {
  6572. "__type__": "cc.Vec2",
  6573. "x": 0.5,
  6574. "y": 0.5
  6575. },
  6576. "_trs": {
  6577. "__type__": "TypedArray",
  6578. "ctor": "Float64Array",
  6579. "array": [
  6580. 0,
  6581. 439.15800000000013,
  6582. 0,
  6583. 0,
  6584. 0,
  6585. 0,
  6586. 1,
  6587. 1,
  6588. 1,
  6589. 1
  6590. ]
  6591. },
  6592. "_eulerAngles": {
  6593. "__type__": "cc.Vec3",
  6594. "x": 0,
  6595. "y": 0,
  6596. "z": 0
  6597. },
  6598. "_skewX": 0,
  6599. "_skewY": 0,
  6600. "_is3DNode": false,
  6601. "_groupIndex": 0,
  6602. "groupIndex": 0,
  6603. "_id": ""
  6604. },
  6605. {
  6606. "__type__": "cc.Sprite",
  6607. "_name": "",
  6608. "_objFlags": 0,
  6609. "node": {
  6610. "__id__": 175
  6611. },
  6612. "_enabled": true,
  6613. "_materials": [
  6614. {
  6615. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6616. }
  6617. ],
  6618. "_srcBlendFactor": 770,
  6619. "_dstBlendFactor": 771,
  6620. "_spriteFrame": {
  6621. "__uuid__": "4c5705e1-3476-461b-93f1-9bc1d5ab1218"
  6622. },
  6623. "_type": 0,
  6624. "_sizeMode": 1,
  6625. "_fillType": 0,
  6626. "_fillCenter": {
  6627. "__type__": "cc.Vec2",
  6628. "x": 0,
  6629. "y": 0
  6630. },
  6631. "_fillStart": 0,
  6632. "_fillRange": 0,
  6633. "_isTrimmedMode": true,
  6634. "_atlas": null,
  6635. "_id": ""
  6636. },
  6637. {
  6638. "__type__": "cc.Widget",
  6639. "_name": "",
  6640. "_objFlags": 0,
  6641. "node": {
  6642. "__id__": 175
  6643. },
  6644. "_enabled": true,
  6645. "alignMode": 1,
  6646. "_target": null,
  6647. "_alignFlags": 1,
  6648. "_left": 0,
  6649. "_right": 0,
  6650. "_top": -5.158000000000072,
  6651. "_bottom": 0,
  6652. "_verticalCenter": 0,
  6653. "_horizontalCenter": 0,
  6654. "_isAbsLeft": true,
  6655. "_isAbsRight": true,
  6656. "_isAbsTop": true,
  6657. "_isAbsBottom": true,
  6658. "_isAbsHorizontalCenter": true,
  6659. "_isAbsVerticalCenter": true,
  6660. "_originalWidth": 0,
  6661. "_originalHeight": 0,
  6662. "_id": ""
  6663. },
  6664. {
  6665. "__type__": "cc.PrefabInfo",
  6666. "root": {
  6667. "__id__": 1
  6668. },
  6669. "asset": {
  6670. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  6671. },
  6672. "fileId": "2dRCMQIwNEppJURjOIcXbN",
  6673. "sync": false
  6674. },
  6675. {
  6676. "__type__": "cc.PrefabInfo",
  6677. "root": {
  6678. "__id__": 1
  6679. },
  6680. "asset": {
  6681. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  6682. },
  6683. "fileId": "b5mNQb5UBAxa9IEFRtQSqC",
  6684. "sync": false
  6685. },
  6686. {
  6687. "__type__": "cc.Node",
  6688. "_name": "rewardLab",
  6689. "_objFlags": 0,
  6690. "_parent": {
  6691. "__id__": 170
  6692. },
  6693. "_children": [],
  6694. "_active": true,
  6695. "_components": [
  6696. {
  6697. "__id__": 181
  6698. }
  6699. ],
  6700. "_prefab": {
  6701. "__id__": 182
  6702. },
  6703. "_opacity": 255,
  6704. "_color": {
  6705. "__type__": "cc.Color",
  6706. "r": 255,
  6707. "g": 255,
  6708. "b": 255,
  6709. "a": 255
  6710. },
  6711. "_contentSize": {
  6712. "__type__": "cc.Size",
  6713. "width": 530,
  6714. "height": 86
  6715. },
  6716. "_anchorPoint": {
  6717. "__type__": "cc.Vec2",
  6718. "x": 0.5,
  6719. "y": 0.5
  6720. },
  6721. "_trs": {
  6722. "__type__": "TypedArray",
  6723. "ctor": "Float64Array",
  6724. "array": [
  6725. 0,
  6726. 0,
  6727. 0,
  6728. 0,
  6729. 0,
  6730. 0,
  6731. 1,
  6732. 1,
  6733. 1,
  6734. 1
  6735. ]
  6736. },
  6737. "_eulerAngles": {
  6738. "__type__": "cc.Vec3",
  6739. "x": 0,
  6740. "y": 0,
  6741. "z": 0
  6742. },
  6743. "_skewX": 0,
  6744. "_skewY": 0,
  6745. "_is3DNode": false,
  6746. "_groupIndex": 0,
  6747. "groupIndex": 0,
  6748. "_id": ""
  6749. },
  6750. {
  6751. "__type__": "cc.Sprite",
  6752. "_name": "",
  6753. "_objFlags": 0,
  6754. "node": {
  6755. "__id__": 180
  6756. },
  6757. "_enabled": true,
  6758. "_materials": [
  6759. {
  6760. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6761. }
  6762. ],
  6763. "_srcBlendFactor": 770,
  6764. "_dstBlendFactor": 771,
  6765. "_spriteFrame": {
  6766. "__uuid__": "2311715b-7ef2-4692-b099-e271a8bb84ce"
  6767. },
  6768. "_type": 0,
  6769. "_sizeMode": 1,
  6770. "_fillType": 0,
  6771. "_fillCenter": {
  6772. "__type__": "cc.Vec2",
  6773. "x": 0,
  6774. "y": 0
  6775. },
  6776. "_fillStart": 0,
  6777. "_fillRange": 0,
  6778. "_isTrimmedMode": true,
  6779. "_atlas": null,
  6780. "_id": ""
  6781. },
  6782. {
  6783. "__type__": "cc.PrefabInfo",
  6784. "root": {
  6785. "__id__": 1
  6786. },
  6787. "asset": {
  6788. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  6789. },
  6790. "fileId": "0eTVCo2JVD/ZyOTe8qSEI4",
  6791. "sync": false
  6792. },
  6793. {
  6794. "__type__": "cc.PrefabInfo",
  6795. "root": {
  6796. "__id__": 1
  6797. },
  6798. "asset": {
  6799. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  6800. },
  6801. "fileId": "5bhtwNn/ZDT5iA4OvN3a2r",
  6802. "sync": false
  6803. },
  6804. {
  6805. "__type__": "cc.Node",
  6806. "_name": "New Node",
  6807. "_objFlags": 0,
  6808. "_parent": {
  6809. "__id__": 162
  6810. },
  6811. "_children": [
  6812. {
  6813. "__id__": 185
  6814. }
  6815. ],
  6816. "_active": true,
  6817. "_components": [
  6818. {
  6819. "__id__": 188
  6820. }
  6821. ],
  6822. "_prefab": {
  6823. "__id__": 189
  6824. },
  6825. "_opacity": 255,
  6826. "_color": {
  6827. "__type__": "cc.Color",
  6828. "r": 255,
  6829. "g": 255,
  6830. "b": 255,
  6831. "a": 255
  6832. },
  6833. "_contentSize": {
  6834. "__type__": "cc.Size",
  6835. "width": 140,
  6836. "height": 140
  6837. },
  6838. "_anchorPoint": {
  6839. "__type__": "cc.Vec2",
  6840. "x": 0.5,
  6841. "y": 0.5
  6842. },
  6843. "_trs": {
  6844. "__type__": "TypedArray",
  6845. "ctor": "Float64Array",
  6846. "array": [
  6847. 0,
  6848. 296.054,
  6849. 0,
  6850. 0,
  6851. 0,
  6852. 0,
  6853. 1,
  6854. 1,
  6855. 1,
  6856. 1
  6857. ]
  6858. },
  6859. "_eulerAngles": {
  6860. "__type__": "cc.Vec3",
  6861. "x": 0,
  6862. "y": 0,
  6863. "z": 0
  6864. },
  6865. "_skewX": 0,
  6866. "_skewY": 0,
  6867. "_is3DNode": false,
  6868. "_groupIndex": 0,
  6869. "groupIndex": 0,
  6870. "_id": ""
  6871. },
  6872. {
  6873. "__type__": "cc.Node",
  6874. "_name": "setup_icon_weixin",
  6875. "_objFlags": 0,
  6876. "_parent": {
  6877. "__id__": 184
  6878. },
  6879. "_children": [],
  6880. "_active": true,
  6881. "_components": [
  6882. {
  6883. "__id__": 186
  6884. }
  6885. ],
  6886. "_prefab": {
  6887. "__id__": 187
  6888. },
  6889. "_opacity": 255,
  6890. "_color": {
  6891. "__type__": "cc.Color",
  6892. "r": 255,
  6893. "g": 255,
  6894. "b": 255,
  6895. "a": 255
  6896. },
  6897. "_contentSize": {
  6898. "__type__": "cc.Size",
  6899. "width": 140,
  6900. "height": 140
  6901. },
  6902. "_anchorPoint": {
  6903. "__type__": "cc.Vec2",
  6904. "x": 0.5,
  6905. "y": 0.5
  6906. },
  6907. "_trs": {
  6908. "__type__": "TypedArray",
  6909. "ctor": "Float64Array",
  6910. "array": [
  6911. 0,
  6912. 0,
  6913. 0,
  6914. 0,
  6915. 0,
  6916. 0,
  6917. 1,
  6918. 1,
  6919. 1,
  6920. 1
  6921. ]
  6922. },
  6923. "_eulerAngles": {
  6924. "__type__": "cc.Vec3",
  6925. "x": 0,
  6926. "y": 0,
  6927. "z": 0
  6928. },
  6929. "_skewX": 0,
  6930. "_skewY": 0,
  6931. "_is3DNode": false,
  6932. "_groupIndex": 0,
  6933. "groupIndex": 0,
  6934. "_id": ""
  6935. },
  6936. {
  6937. "__type__": "cc.Sprite",
  6938. "_name": "setup_icon_weixin<Sprite>",
  6939. "_objFlags": 0,
  6940. "node": {
  6941. "__id__": 185
  6942. },
  6943. "_enabled": true,
  6944. "_materials": [
  6945. {
  6946. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6947. }
  6948. ],
  6949. "_srcBlendFactor": 770,
  6950. "_dstBlendFactor": 771,
  6951. "_spriteFrame": {
  6952. "__uuid__": "ac3612fd-71aa-4f7e-8af2-9a90a1419ffd"
  6953. },
  6954. "_type": 0,
  6955. "_sizeMode": 0,
  6956. "_fillType": 0,
  6957. "_fillCenter": {
  6958. "__type__": "cc.Vec2",
  6959. "x": 0,
  6960. "y": 0
  6961. },
  6962. "_fillStart": 0,
  6963. "_fillRange": 0,
  6964. "_isTrimmedMode": true,
  6965. "_atlas": null,
  6966. "_id": ""
  6967. },
  6968. {
  6969. "__type__": "cc.PrefabInfo",
  6970. "root": {
  6971. "__id__": 1
  6972. },
  6973. "asset": {
  6974. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  6975. },
  6976. "fileId": "10gU+7Vn1LbZR0bW6R7WA9",
  6977. "sync": false
  6978. },
  6979. {
  6980. "__type__": "cc.Mask",
  6981. "_name": "New Node<Mask>",
  6982. "_objFlags": 0,
  6983. "node": {
  6984. "__id__": 184
  6985. },
  6986. "_enabled": true,
  6987. "_materials": [
  6988. {
  6989. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6990. }
  6991. ],
  6992. "_spriteFrame": null,
  6993. "_type": 1,
  6994. "_segments": 64,
  6995. "_N$alphaThreshold": 0,
  6996. "_N$inverted": false,
  6997. "_id": ""
  6998. },
  6999. {
  7000. "__type__": "cc.PrefabInfo",
  7001. "root": {
  7002. "__id__": 1
  7003. },
  7004. "asset": {
  7005. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  7006. },
  7007. "fileId": "b1mzalWu9Ez5664t8rPMcp",
  7008. "sync": false
  7009. },
  7010. {
  7011. "__type__": "cc.Node",
  7012. "_name": "labPass",
  7013. "_objFlags": 0,
  7014. "_parent": {
  7015. "__id__": 162
  7016. },
  7017. "_children": [],
  7018. "_active": true,
  7019. "_components": [
  7020. {
  7021. "__id__": 191
  7022. },
  7023. {
  7024. "__id__": 192
  7025. }
  7026. ],
  7027. "_prefab": {
  7028. "__id__": 193
  7029. },
  7030. "_opacity": 255,
  7031. "_color": {
  7032. "__type__": "cc.Color",
  7033. "r": 255,
  7034. "g": 239,
  7035. "b": 199,
  7036. "a": 255
  7037. },
  7038. "_contentSize": {
  7039. "__type__": "cc.Size",
  7040. "width": 252,
  7041. "height": 65
  7042. },
  7043. "_anchorPoint": {
  7044. "__type__": "cc.Vec2",
  7045. "x": 0.5,
  7046. "y": 0.5
  7047. },
  7048. "_trs": {
  7049. "__type__": "TypedArray",
  7050. "ctor": "Float64Array",
  7051. "array": [
  7052. 0,
  7053. -283.349,
  7054. 0,
  7055. 0,
  7056. 0,
  7057. 0,
  7058. 1,
  7059. 1,
  7060. 1,
  7061. 1
  7062. ]
  7063. },
  7064. "_eulerAngles": {
  7065. "__type__": "cc.Vec3",
  7066. "x": 0,
  7067. "y": 0,
  7068. "z": 0
  7069. },
  7070. "_skewX": 0,
  7071. "_skewY": 0,
  7072. "_is3DNode": false,
  7073. "_groupIndex": 0,
  7074. "groupIndex": 0,
  7075. "_id": ""
  7076. },
  7077. {
  7078. "__type__": "cc.Label",
  7079. "_name": "labPass<Label>",
  7080. "_objFlags": 0,
  7081. "node": {
  7082. "__id__": 190
  7083. },
  7084. "_enabled": true,
  7085. "_materials": [
  7086. {
  7087. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7088. }
  7089. ],
  7090. "_useOriginalSize": false,
  7091. "_string": "超时未领取",
  7092. "_N$string": "超时未领取",
  7093. "_fontSize": 50,
  7094. "_lineHeight": 50,
  7095. "_enableWrapText": true,
  7096. "_N$file": null,
  7097. "_isSystemFontUsed": true,
  7098. "_spacingX": 0,
  7099. "_batchAsBitmap": false,
  7100. "_styleFlags": 1,
  7101. "_underlineHeight": 0,
  7102. "_N$horizontalAlign": 1,
  7103. "_N$verticalAlign": 1,
  7104. "_N$fontFamily": "Arial",
  7105. "_N$overflow": 0,
  7106. "_N$cacheMode": 0,
  7107. "_id": ""
  7108. },
  7109. {
  7110. "__type__": "cc.LabelOutline",
  7111. "_name": "",
  7112. "_objFlags": 0,
  7113. "node": {
  7114. "__id__": 190
  7115. },
  7116. "_enabled": true,
  7117. "_color": {
  7118. "__type__": "cc.Color",
  7119. "r": 177,
  7120. "g": 71,
  7121. "b": 75,
  7122. "a": 255
  7123. },
  7124. "_width": 1,
  7125. "_id": ""
  7126. },
  7127. {
  7128. "__type__": "cc.PrefabInfo",
  7129. "root": {
  7130. "__id__": 1
  7131. },
  7132. "asset": {
  7133. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  7134. },
  7135. "fileId": "79Yvg0DFlL4o7K2P495A3L",
  7136. "sync": false
  7137. },
  7138. {
  7139. "__type__": "cc.Node",
  7140. "_name": "btnState",
  7141. "_objFlags": 0,
  7142. "_parent": {
  7143. "__id__": 162
  7144. },
  7145. "_children": [
  7146. {
  7147. "__id__": 195
  7148. }
  7149. ],
  7150. "_active": true,
  7151. "_components": [
  7152. {
  7153. "__id__": 198
  7154. },
  7155. {
  7156. "__id__": 199
  7157. }
  7158. ],
  7159. "_prefab": {
  7160. "__id__": 201
  7161. },
  7162. "_opacity": 255,
  7163. "_color": {
  7164. "__type__": "cc.Color",
  7165. "r": 255,
  7166. "g": 255,
  7167. "b": 255,
  7168. "a": 255
  7169. },
  7170. "_contentSize": {
  7171. "__type__": "cc.Size",
  7172. "width": 517,
  7173. "height": 107
  7174. },
  7175. "_anchorPoint": {
  7176. "__type__": "cc.Vec2",
  7177. "x": 0.5,
  7178. "y": 0.5
  7179. },
  7180. "_trs": {
  7181. "__type__": "TypedArray",
  7182. "ctor": "Float64Array",
  7183. "array": [
  7184. 0,
  7185. -283.349,
  7186. 0,
  7187. 0,
  7188. 0,
  7189. 0,
  7190. 1,
  7191. 1,
  7192. 1,
  7193. 1
  7194. ]
  7195. },
  7196. "_eulerAngles": {
  7197. "__type__": "cc.Vec3",
  7198. "x": 0,
  7199. "y": 0,
  7200. "z": 0
  7201. },
  7202. "_skewX": 0,
  7203. "_skewY": 0,
  7204. "_is3DNode": false,
  7205. "_groupIndex": 0,
  7206. "groupIndex": 0,
  7207. "_id": ""
  7208. },
  7209. {
  7210. "__type__": "cc.Node",
  7211. "_name": "labState",
  7212. "_objFlags": 0,
  7213. "_parent": {
  7214. "__id__": 194
  7215. },
  7216. "_children": [],
  7217. "_active": true,
  7218. "_components": [
  7219. {
  7220. "__id__": 196
  7221. }
  7222. ],
  7223. "_prefab": {
  7224. "__id__": 197
  7225. },
  7226. "_opacity": 255,
  7227. "_color": {
  7228. "__type__": "cc.Color",
  7229. "r": 233,
  7230. "g": 39,
  7231. "b": 53,
  7232. "a": 255
  7233. },
  7234. "_contentSize": {
  7235. "__type__": "cc.Size",
  7236. "width": 200,
  7237. "height": 50.4
  7238. },
  7239. "_anchorPoint": {
  7240. "__type__": "cc.Vec2",
  7241. "x": 0.5,
  7242. "y": 0.5
  7243. },
  7244. "_trs": {
  7245. "__type__": "TypedArray",
  7246. "ctor": "Float64Array",
  7247. "array": [
  7248. 0,
  7249. 5.303,
  7250. 0,
  7251. 0,
  7252. 0,
  7253. 0,
  7254. 1,
  7255. 1,
  7256. 1,
  7257. 1
  7258. ]
  7259. },
  7260. "_eulerAngles": {
  7261. "__type__": "cc.Vec3",
  7262. "x": 0,
  7263. "y": 0,
  7264. "z": 0
  7265. },
  7266. "_skewX": 0,
  7267. "_skewY": 0,
  7268. "_is3DNode": false,
  7269. "_groupIndex": 0,
  7270. "groupIndex": 0,
  7271. "_id": ""
  7272. },
  7273. {
  7274. "__type__": "cc.Label",
  7275. "_name": "labState<Label>",
  7276. "_objFlags": 0,
  7277. "node": {
  7278. "__id__": 195
  7279. },
  7280. "_enabled": true,
  7281. "_materials": [
  7282. {
  7283. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7284. }
  7285. ],
  7286. "_useOriginalSize": false,
  7287. "_string": "参加下一期",
  7288. "_N$string": "参加下一期",
  7289. "_fontSize": 40,
  7290. "_lineHeight": 40,
  7291. "_enableWrapText": true,
  7292. "_N$file": null,
  7293. "_isSystemFontUsed": true,
  7294. "_spacingX": 0,
  7295. "_batchAsBitmap": false,
  7296. "_styleFlags": 1,
  7297. "_underlineHeight": 0,
  7298. "_N$horizontalAlign": 1,
  7299. "_N$verticalAlign": 1,
  7300. "_N$fontFamily": "Arial",
  7301. "_N$overflow": 0,
  7302. "_N$cacheMode": 0,
  7303. "_id": ""
  7304. },
  7305. {
  7306. "__type__": "cc.PrefabInfo",
  7307. "root": {
  7308. "__id__": 1
  7309. },
  7310. "asset": {
  7311. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  7312. },
  7313. "fileId": "5bodnoC4FHTYnAlkzR3F3t",
  7314. "sync": false
  7315. },
  7316. {
  7317. "__type__": "cc.Sprite",
  7318. "_name": "btnState<Sprite>",
  7319. "_objFlags": 0,
  7320. "node": {
  7321. "__id__": 194
  7322. },
  7323. "_enabled": true,
  7324. "_materials": [
  7325. {
  7326. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7327. }
  7328. ],
  7329. "_srcBlendFactor": 770,
  7330. "_dstBlendFactor": 771,
  7331. "_spriteFrame": {
  7332. "__uuid__": "a71133d1-e5b0-4530-ab91-97694deaecc4"
  7333. },
  7334. "_type": 0,
  7335. "_sizeMode": 1,
  7336. "_fillType": 0,
  7337. "_fillCenter": {
  7338. "__type__": "cc.Vec2",
  7339. "x": 0,
  7340. "y": 0
  7341. },
  7342. "_fillStart": 0,
  7343. "_fillRange": 0,
  7344. "_isTrimmedMode": true,
  7345. "_atlas": null,
  7346. "_id": ""
  7347. },
  7348. {
  7349. "__type__": "cc.Button",
  7350. "_name": "",
  7351. "_objFlags": 0,
  7352. "node": {
  7353. "__id__": 194
  7354. },
  7355. "_enabled": true,
  7356. "_normalMaterial": {
  7357. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7358. },
  7359. "_grayMaterial": null,
  7360. "duration": 0.1,
  7361. "zoomScale": 0.8,
  7362. "clickEvents": [
  7363. {
  7364. "__id__": 200
  7365. }
  7366. ],
  7367. "_N$interactable": true,
  7368. "_N$enableAutoGrayEffect": false,
  7369. "_N$transition": 3,
  7370. "transition": 3,
  7371. "_N$normalColor": {
  7372. "__type__": "cc.Color",
  7373. "r": 255,
  7374. "g": 255,
  7375. "b": 255,
  7376. "a": 255
  7377. },
  7378. "_N$pressedColor": {
  7379. "__type__": "cc.Color",
  7380. "r": 211,
  7381. "g": 211,
  7382. "b": 211,
  7383. "a": 255
  7384. },
  7385. "pressedColor": {
  7386. "__type__": "cc.Color",
  7387. "r": 211,
  7388. "g": 211,
  7389. "b": 211,
  7390. "a": 255
  7391. },
  7392. "_N$hoverColor": {
  7393. "__type__": "cc.Color",
  7394. "r": 255,
  7395. "g": 255,
  7396. "b": 255,
  7397. "a": 255
  7398. },
  7399. "hoverColor": {
  7400. "__type__": "cc.Color",
  7401. "r": 255,
  7402. "g": 255,
  7403. "b": 255,
  7404. "a": 255
  7405. },
  7406. "_N$disabledColor": {
  7407. "__type__": "cc.Color",
  7408. "r": 124,
  7409. "g": 124,
  7410. "b": 124,
  7411. "a": 255
  7412. },
  7413. "_N$normalSprite": null,
  7414. "_N$pressedSprite": null,
  7415. "pressedSprite": null,
  7416. "_N$hoverSprite": null,
  7417. "hoverSprite": null,
  7418. "_N$disabledSprite": null,
  7419. "_N$target": {
  7420. "__id__": 194
  7421. },
  7422. "_id": ""
  7423. },
  7424. {
  7425. "__type__": "cc.ClickEvent",
  7426. "target": {
  7427. "__id__": 1
  7428. },
  7429. "component": "",
  7430. "_componentId": "b150700q4JFCaxD1R8c6DRF",
  7431. "handler": "clickBtnState",
  7432. "customEventData": ""
  7433. },
  7434. {
  7435. "__type__": "cc.PrefabInfo",
  7436. "root": {
  7437. "__id__": 1
  7438. },
  7439. "asset": {
  7440. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  7441. },
  7442. "fileId": "0fU1Z/34xNeauiF/9L/3tu",
  7443. "sync": false
  7444. },
  7445. {
  7446. "__type__": "cc.Node",
  7447. "_name": "labIssue",
  7448. "_objFlags": 0,
  7449. "_parent": {
  7450. "__id__": 162
  7451. },
  7452. "_children": [],
  7453. "_active": true,
  7454. "_components": [
  7455. {
  7456. "__id__": 203
  7457. }
  7458. ],
  7459. "_prefab": {
  7460. "__id__": 204
  7461. },
  7462. "_opacity": 255,
  7463. "_color": {
  7464. "__type__": "cc.Color",
  7465. "r": 253,
  7466. "g": 211,
  7467. "b": 162,
  7468. "a": 255
  7469. },
  7470. "_contentSize": {
  7471. "__type__": "cc.Size",
  7472. "width": 316.11,
  7473. "height": 63
  7474. },
  7475. "_anchorPoint": {
  7476. "__type__": "cc.Vec2",
  7477. "x": 0.5,
  7478. "y": 0.5
  7479. },
  7480. "_trs": {
  7481. "__type__": "TypedArray",
  7482. "ctor": "Float64Array",
  7483. "array": [
  7484. 0,
  7485. -183.932,
  7486. 0,
  7487. 0,
  7488. 0,
  7489. 0,
  7490. 1,
  7491. 1,
  7492. 1,
  7493. 1
  7494. ]
  7495. },
  7496. "_eulerAngles": {
  7497. "__type__": "cc.Vec3",
  7498. "x": 0,
  7499. "y": 0,
  7500. "z": 0
  7501. },
  7502. "_skewX": 0,
  7503. "_skewY": 0,
  7504. "_is3DNode": false,
  7505. "_groupIndex": 0,
  7506. "groupIndex": 0,
  7507. "_id": ""
  7508. },
  7509. {
  7510. "__type__": "cc.Label",
  7511. "_name": "labIssue<Label>",
  7512. "_objFlags": 0,
  7513. "node": {
  7514. "__id__": 202
  7515. },
  7516. "_enabled": true,
  7517. "_materials": [
  7518. {
  7519. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7520. }
  7521. ],
  7522. "_useOriginalSize": false,
  7523. "_string": "现金夺宝第16582期",
  7524. "_N$string": "现金夺宝第16582期",
  7525. "_fontSize": 36,
  7526. "_lineHeight": 50,
  7527. "_enableWrapText": true,
  7528. "_N$file": null,
  7529. "_isSystemFontUsed": true,
  7530. "_spacingX": 0,
  7531. "_batchAsBitmap": false,
  7532. "_styleFlags": 0,
  7533. "_underlineHeight": 0,
  7534. "_N$horizontalAlign": 1,
  7535. "_N$verticalAlign": 1,
  7536. "_N$fontFamily": "Arial",
  7537. "_N$overflow": 0,
  7538. "_N$cacheMode": 0,
  7539. "_id": ""
  7540. },
  7541. {
  7542. "__type__": "cc.PrefabInfo",
  7543. "root": {
  7544. "__id__": 1
  7545. },
  7546. "asset": {
  7547. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  7548. },
  7549. "fileId": "baBurDS6pMtqb943QAA+8F",
  7550. "sync": false
  7551. },
  7552. {
  7553. "__type__": "cc.Node",
  7554. "_name": "labAwardMoney",
  7555. "_objFlags": 0,
  7556. "_parent": {
  7557. "__id__": 162
  7558. },
  7559. "_children": [],
  7560. "_active": true,
  7561. "_components": [
  7562. {
  7563. "__id__": 206
  7564. }
  7565. ],
  7566. "_prefab": {
  7567. "__id__": 207
  7568. },
  7569. "_opacity": 255,
  7570. "_color": {
  7571. "__type__": "cc.Color",
  7572. "r": 247,
  7573. "g": 60,
  7574. "b": 66,
  7575. "a": 255
  7576. },
  7577. "_contentSize": {
  7578. "__type__": "cc.Size",
  7579. "width": 253.35,
  7580. "height": 151.2
  7581. },
  7582. "_anchorPoint": {
  7583. "__type__": "cc.Vec2",
  7584. "x": 0.5,
  7585. "y": 0.5
  7586. },
  7587. "_trs": {
  7588. "__type__": "TypedArray",
  7589. "ctor": "Float64Array",
  7590. "array": [
  7591. 0,
  7592. 56.254,
  7593. 0,
  7594. 0,
  7595. 0,
  7596. 0,
  7597. 1,
  7598. 1,
  7599. 1,
  7600. 1
  7601. ]
  7602. },
  7603. "_eulerAngles": {
  7604. "__type__": "cc.Vec3",
  7605. "x": 0,
  7606. "y": 0,
  7607. "z": 0
  7608. },
  7609. "_skewX": 0,
  7610. "_skewY": 0,
  7611. "_is3DNode": false,
  7612. "_groupIndex": 0,
  7613. "groupIndex": 0,
  7614. "_id": ""
  7615. },
  7616. {
  7617. "__type__": "cc.Label",
  7618. "_name": "labAwardMoney<Label>",
  7619. "_objFlags": 0,
  7620. "node": {
  7621. "__id__": 205
  7622. },
  7623. "_enabled": true,
  7624. "_materials": [
  7625. {
  7626. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7627. }
  7628. ],
  7629. "_useOriginalSize": false,
  7630. "_string": "¥0.3",
  7631. "_N$string": "¥0.3",
  7632. "_fontSize": 106,
  7633. "_lineHeight": 120,
  7634. "_enableWrapText": true,
  7635. "_N$file": null,
  7636. "_isSystemFontUsed": true,
  7637. "_spacingX": 0,
  7638. "_batchAsBitmap": false,
  7639. "_styleFlags": 1,
  7640. "_underlineHeight": 0,
  7641. "_N$horizontalAlign": 1,
  7642. "_N$verticalAlign": 1,
  7643. "_N$fontFamily": "Arial",
  7644. "_N$overflow": 0,
  7645. "_N$cacheMode": 0,
  7646. "_id": ""
  7647. },
  7648. {
  7649. "__type__": "cc.PrefabInfo",
  7650. "root": {
  7651. "__id__": 1
  7652. },
  7653. "asset": {
  7654. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  7655. },
  7656. "fileId": "32IhFZxUZFL6nSNKgKCuDF",
  7657. "sync": false
  7658. },
  7659. {
  7660. "__type__": "cc.Node",
  7661. "_name": "New Layout",
  7662. "_objFlags": 0,
  7663. "_parent": {
  7664. "__id__": 162
  7665. },
  7666. "_children": [
  7667. {
  7668. "__id__": 209
  7669. },
  7670. {
  7671. "__id__": 212
  7672. }
  7673. ],
  7674. "_active": true,
  7675. "_components": [
  7676. {
  7677. "__id__": 215
  7678. },
  7679. {
  7680. "__id__": 216
  7681. }
  7682. ],
  7683. "_prefab": {
  7684. "__id__": 217
  7685. },
  7686. "_opacity": 255,
  7687. "_color": {
  7688. "__type__": "cc.Color",
  7689. "r": 255,
  7690. "g": 251,
  7691. "b": 238,
  7692. "a": 255
  7693. },
  7694. "_contentSize": {
  7695. "__type__": "cc.Size",
  7696. "width": 360,
  7697. "height": 60
  7698. },
  7699. "_anchorPoint": {
  7700. "__type__": "cc.Vec2",
  7701. "x": 0.5,
  7702. "y": 0.5
  7703. },
  7704. "_trs": {
  7705. "__type__": "TypedArray",
  7706. "ctor": "Float64Array",
  7707. "array": [
  7708. 0,
  7709. 142.5,
  7710. 0,
  7711. 0,
  7712. 0,
  7713. 0,
  7714. 1,
  7715. 1,
  7716. 1,
  7717. 1
  7718. ]
  7719. },
  7720. "_eulerAngles": {
  7721. "__type__": "cc.Vec3",
  7722. "x": 0,
  7723. "y": 0,
  7724. "z": 0
  7725. },
  7726. "_skewX": 0,
  7727. "_skewY": 0,
  7728. "_is3DNode": false,
  7729. "_groupIndex": 0,
  7730. "groupIndex": 0,
  7731. "_id": ""
  7732. },
  7733. {
  7734. "__type__": "cc.Node",
  7735. "_name": "New Label",
  7736. "_objFlags": 0,
  7737. "_parent": {
  7738. "__id__": 208
  7739. },
  7740. "_children": [],
  7741. "_active": true,
  7742. "_components": [
  7743. {
  7744. "__id__": 210
  7745. }
  7746. ],
  7747. "_prefab": {
  7748. "__id__": 211
  7749. },
  7750. "_opacity": 255,
  7751. "_color": {
  7752. "__type__": "cc.Color",
  7753. "r": 166,
  7754. "g": 81,
  7755. "b": 103,
  7756. "a": 255
  7757. },
  7758. "_contentSize": {
  7759. "__type__": "cc.Size",
  7760. "width": 144,
  7761. "height": 45.36
  7762. },
  7763. "_anchorPoint": {
  7764. "__type__": "cc.Vec2",
  7765. "x": 0.5,
  7766. "y": 0.5
  7767. },
  7768. "_trs": {
  7769. "__type__": "TypedArray",
  7770. "ctor": "Float64Array",
  7771. "array": [
  7772. -108,
  7773. 0,
  7774. 0,
  7775. 0,
  7776. 0,
  7777. 0,
  7778. 1,
  7779. 1,
  7780. 1,
  7781. 1
  7782. ]
  7783. },
  7784. "_eulerAngles": {
  7785. "__type__": "cc.Vec3",
  7786. "x": 0,
  7787. "y": 0,
  7788. "z": 0
  7789. },
  7790. "_skewX": 0,
  7791. "_skewY": 0,
  7792. "_is3DNode": false,
  7793. "_groupIndex": 0,
  7794. "groupIndex": 0,
  7795. "_id": ""
  7796. },
  7797. {
  7798. "__type__": "cc.Label",
  7799. "_name": "New Label<Label>",
  7800. "_objFlags": 0,
  7801. "node": {
  7802. "__id__": 209
  7803. },
  7804. "_enabled": true,
  7805. "_materials": [
  7806. {
  7807. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7808. }
  7809. ],
  7810. "_useOriginalSize": false,
  7811. "_string": "中奖人:",
  7812. "_N$string": "中奖人:",
  7813. "_fontSize": 36,
  7814. "_lineHeight": 36,
  7815. "_enableWrapText": true,
  7816. "_N$file": null,
  7817. "_isSystemFontUsed": true,
  7818. "_spacingX": 0,
  7819. "_batchAsBitmap": false,
  7820. "_styleFlags": 0,
  7821. "_underlineHeight": 0,
  7822. "_N$horizontalAlign": 1,
  7823. "_N$verticalAlign": 1,
  7824. "_N$fontFamily": "Arial",
  7825. "_N$overflow": 0,
  7826. "_N$cacheMode": 0,
  7827. "_id": ""
  7828. },
  7829. {
  7830. "__type__": "cc.PrefabInfo",
  7831. "root": {
  7832. "__id__": 1
  7833. },
  7834. "asset": {
  7835. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  7836. },
  7837. "fileId": "3b5AnPHXJHUr6ZEihtR/68",
  7838. "sync": false
  7839. },
  7840. {
  7841. "__type__": "cc.Node",
  7842. "_name": "labNickname",
  7843. "_objFlags": 0,
  7844. "_parent": {
  7845. "__id__": 208
  7846. },
  7847. "_children": [],
  7848. "_active": true,
  7849. "_components": [
  7850. {
  7851. "__id__": 213
  7852. }
  7853. ],
  7854. "_prefab": {
  7855. "__id__": 214
  7856. },
  7857. "_opacity": 255,
  7858. "_color": {
  7859. "__type__": "cc.Color",
  7860. "r": 166,
  7861. "g": 81,
  7862. "b": 103,
  7863. "a": 255
  7864. },
  7865. "_contentSize": {
  7866. "__type__": "cc.Size",
  7867. "width": 216,
  7868. "height": 45.36
  7869. },
  7870. "_anchorPoint": {
  7871. "__type__": "cc.Vec2",
  7872. "x": 0.5,
  7873. "y": 0.5
  7874. },
  7875. "_trs": {
  7876. "__type__": "TypedArray",
  7877. "ctor": "Float64Array",
  7878. "array": [
  7879. 72,
  7880. 0,
  7881. 0,
  7882. 0,
  7883. 0,
  7884. 0,
  7885. 1,
  7886. 1,
  7887. 1,
  7888. 1
  7889. ]
  7890. },
  7891. "_eulerAngles": {
  7892. "__type__": "cc.Vec3",
  7893. "x": 0,
  7894. "y": 0,
  7895. "z": 0
  7896. },
  7897. "_skewX": 0,
  7898. "_skewY": 0,
  7899. "_is3DNode": false,
  7900. "_groupIndex": 0,
  7901. "groupIndex": 0,
  7902. "_id": ""
  7903. },
  7904. {
  7905. "__type__": "cc.Label",
  7906. "_name": "labNickname<Label>",
  7907. "_objFlags": 0,
  7908. "node": {
  7909. "__id__": 212
  7910. },
  7911. "_enabled": true,
  7912. "_materials": [
  7913. {
  7914. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7915. }
  7916. ],
  7917. "_useOriginalSize": false,
  7918. "_string": "幸运草伴我行",
  7919. "_N$string": "幸运草伴我行",
  7920. "_fontSize": 36,
  7921. "_lineHeight": 36,
  7922. "_enableWrapText": true,
  7923. "_N$file": null,
  7924. "_isSystemFontUsed": true,
  7925. "_spacingX": 0,
  7926. "_batchAsBitmap": false,
  7927. "_styleFlags": 0,
  7928. "_underlineHeight": 0,
  7929. "_N$horizontalAlign": 1,
  7930. "_N$verticalAlign": 1,
  7931. "_N$fontFamily": "Arial",
  7932. "_N$overflow": 0,
  7933. "_N$cacheMode": 0,
  7934. "_id": ""
  7935. },
  7936. {
  7937. "__type__": "cc.PrefabInfo",
  7938. "root": {
  7939. "__id__": 1
  7940. },
  7941. "asset": {
  7942. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  7943. },
  7944. "fileId": "78Yh4NKmpBE63dnFbvYrPV",
  7945. "sync": false
  7946. },
  7947. {
  7948. "__type__": "cc.Sprite",
  7949. "_name": "New Layout<Sprite>",
  7950. "_objFlags": 0,
  7951. "node": {
  7952. "__id__": 208
  7953. },
  7954. "_enabled": true,
  7955. "_materials": [
  7956. {
  7957. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7958. }
  7959. ],
  7960. "_srcBlendFactor": 770,
  7961. "_dstBlendFactor": 771,
  7962. "_spriteFrame": null,
  7963. "_type": 1,
  7964. "_sizeMode": 0,
  7965. "_fillType": 0,
  7966. "_fillCenter": {
  7967. "__type__": "cc.Vec2",
  7968. "x": 0,
  7969. "y": 0
  7970. },
  7971. "_fillStart": 0,
  7972. "_fillRange": 0,
  7973. "_isTrimmedMode": true,
  7974. "_atlas": null,
  7975. "_id": ""
  7976. },
  7977. {
  7978. "__type__": "cc.Layout",
  7979. "_name": "",
  7980. "_objFlags": 0,
  7981. "node": {
  7982. "__id__": 208
  7983. },
  7984. "_enabled": true,
  7985. "_layoutSize": {
  7986. "__type__": "cc.Size",
  7987. "width": 360,
  7988. "height": 60
  7989. },
  7990. "_resize": 1,
  7991. "_N$layoutType": 1,
  7992. "_N$cellSize": {
  7993. "__type__": "cc.Size",
  7994. "width": 40,
  7995. "height": 40
  7996. },
  7997. "_N$startAxis": 0,
  7998. "_N$paddingLeft": 0,
  7999. "_N$paddingRight": 0,
  8000. "_N$paddingTop": 0,
  8001. "_N$paddingBottom": 0,
  8002. "_N$spacingX": 0,
  8003. "_N$spacingY": 0,
  8004. "_N$verticalDirection": 1,
  8005. "_N$horizontalDirection": 0,
  8006. "_N$affectedByScale": false,
  8007. "_id": ""
  8008. },
  8009. {
  8010. "__type__": "cc.PrefabInfo",
  8011. "root": {
  8012. "__id__": 1
  8013. },
  8014. "asset": {
  8015. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  8016. },
  8017. "fileId": "0eeUWa0R1J6YfuRN/MdQru",
  8018. "sync": false
  8019. },
  8020. {
  8021. "__type__": "cc.Node",
  8022. "_name": "labDes",
  8023. "_objFlags": 0,
  8024. "_parent": {
  8025. "__id__": 162
  8026. },
  8027. "_children": [],
  8028. "_active": true,
  8029. "_components": [
  8030. {
  8031. "__id__": 219
  8032. }
  8033. ],
  8034. "_prefab": {
  8035. "__id__": 220
  8036. },
  8037. "_opacity": 255,
  8038. "_color": {
  8039. "__type__": "cc.Color",
  8040. "r": 253,
  8041. "g": 211,
  8042. "b": 162,
  8043. "a": 255
  8044. },
  8045. "_contentSize": {
  8046. "__type__": "cc.Size",
  8047. "width": 390,
  8048. "height": 37.8
  8049. },
  8050. "_anchorPoint": {
  8051. "__type__": "cc.Vec2",
  8052. "x": 0.5,
  8053. "y": 0.5
  8054. },
  8055. "_trs": {
  8056. "__type__": "TypedArray",
  8057. "ctor": "Float64Array",
  8058. "array": [
  8059. 0,
  8060. -373.365,
  8061. 0,
  8062. 0,
  8063. 0,
  8064. 0,
  8065. 1,
  8066. 1,
  8067. 1,
  8068. 1
  8069. ]
  8070. },
  8071. "_eulerAngles": {
  8072. "__type__": "cc.Vec3",
  8073. "x": 0,
  8074. "y": 0,
  8075. "z": 0
  8076. },
  8077. "_skewX": 0,
  8078. "_skewY": 0,
  8079. "_is3DNode": false,
  8080. "_groupIndex": 0,
  8081. "groupIndex": 0,
  8082. "_id": ""
  8083. },
  8084. {
  8085. "__type__": "cc.Label",
  8086. "_name": "labDes<Label>",
  8087. "_objFlags": 0,
  8088. "node": {
  8089. "__id__": 218
  8090. },
  8091. "_enabled": true,
  8092. "_materials": [
  8093. {
  8094. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8095. }
  8096. ],
  8097. "_useOriginalSize": false,
  8098. "_string": "参加次数越多,中奖概率越高",
  8099. "_N$string": "参加次数越多,中奖概率越高",
  8100. "_fontSize": 30,
  8101. "_lineHeight": 30,
  8102. "_enableWrapText": true,
  8103. "_N$file": null,
  8104. "_isSystemFontUsed": true,
  8105. "_spacingX": 0,
  8106. "_batchAsBitmap": false,
  8107. "_styleFlags": 0,
  8108. "_underlineHeight": 0,
  8109. "_N$horizontalAlign": 1,
  8110. "_N$verticalAlign": 1,
  8111. "_N$fontFamily": "Arial",
  8112. "_N$overflow": 0,
  8113. "_N$cacheMode": 0,
  8114. "_id": ""
  8115. },
  8116. {
  8117. "__type__": "cc.PrefabInfo",
  8118. "root": {
  8119. "__id__": 1
  8120. },
  8121. "asset": {
  8122. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  8123. },
  8124. "fileId": "04D6U9sMxIkpxk+b8vj3PQ",
  8125. "sync": false
  8126. },
  8127. {
  8128. "__type__": "c303cMObORMP73Of1/g1ZVg",
  8129. "_name": "",
  8130. "_objFlags": 0,
  8131. "node": {
  8132. "__id__": 162
  8133. },
  8134. "_enabled": true,
  8135. "panelType": 0,
  8136. "_id": ""
  8137. },
  8138. {
  8139. "__type__": "cc.PrefabInfo",
  8140. "root": {
  8141. "__id__": 1
  8142. },
  8143. "asset": {
  8144. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  8145. },
  8146. "fileId": "4cFCu18NFJ5Ytymh/l+rkP",
  8147. "sync": false
  8148. },
  8149. {
  8150. "__type__": "cc.PrefabInfo",
  8151. "root": {
  8152. "__id__": 1
  8153. },
  8154. "asset": {
  8155. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  8156. },
  8157. "fileId": "6ftlTQ0lFDrrwEwgacuyCC",
  8158. "sync": false
  8159. },
  8160. {
  8161. "__type__": "cc.Node",
  8162. "_name": "recordPart",
  8163. "_objFlags": 0,
  8164. "_parent": {
  8165. "__id__": 1
  8166. },
  8167. "_children": [
  8168. {
  8169. "__id__": 225
  8170. },
  8171. {
  8172. "__id__": 231
  8173. }
  8174. ],
  8175. "_active": false,
  8176. "_components": [],
  8177. "_prefab": {
  8178. "__id__": 273
  8179. },
  8180. "_opacity": 255,
  8181. "_color": {
  8182. "__type__": "cc.Color",
  8183. "r": 255,
  8184. "g": 255,
  8185. "b": 255,
  8186. "a": 255
  8187. },
  8188. "_contentSize": {
  8189. "__type__": "cc.Size",
  8190. "width": 0,
  8191. "height": 0
  8192. },
  8193. "_anchorPoint": {
  8194. "__type__": "cc.Vec2",
  8195. "x": 0.5,
  8196. "y": 0.5
  8197. },
  8198. "_trs": {
  8199. "__type__": "TypedArray",
  8200. "ctor": "Float64Array",
  8201. "array": [
  8202. 0,
  8203. 0,
  8204. 0,
  8205. 0,
  8206. 0,
  8207. 0,
  8208. 1,
  8209. 1,
  8210. 1,
  8211. 1
  8212. ]
  8213. },
  8214. "_eulerAngles": {
  8215. "__type__": "cc.Vec3",
  8216. "x": 0,
  8217. "y": 0,
  8218. "z": 0
  8219. },
  8220. "_skewX": 0,
  8221. "_skewY": 0,
  8222. "_is3DNode": false,
  8223. "_groupIndex": 0,
  8224. "groupIndex": 0,
  8225. "_id": ""
  8226. },
  8227. {
  8228. "__type__": "cc.Node",
  8229. "_name": "New Sprite(Splash)",
  8230. "_objFlags": 0,
  8231. "_parent": {
  8232. "__id__": 224
  8233. },
  8234. "_children": [],
  8235. "_active": true,
  8236. "_components": [
  8237. {
  8238. "__id__": 226
  8239. },
  8240. {
  8241. "__id__": 227
  8242. },
  8243. {
  8244. "__id__": 228
  8245. }
  8246. ],
  8247. "_prefab": {
  8248. "__id__": 230
  8249. },
  8250. "_opacity": 178,
  8251. "_color": {
  8252. "__type__": "cc.Color",
  8253. "r": 0,
  8254. "g": 0,
  8255. "b": 0,
  8256. "a": 255
  8257. },
  8258. "_contentSize": {
  8259. "__type__": "cc.Size",
  8260. "width": 750,
  8261. "height": 2000
  8262. },
  8263. "_anchorPoint": {
  8264. "__type__": "cc.Vec2",
  8265. "x": 0.5,
  8266. "y": 0.5
  8267. },
  8268. "_trs": {
  8269. "__type__": "TypedArray",
  8270. "ctor": "Float64Array",
  8271. "array": [
  8272. 0,
  8273. 0,
  8274. 0,
  8275. 0,
  8276. 0,
  8277. 0,
  8278. 1,
  8279. 1,
  8280. 1,
  8281. 1
  8282. ]
  8283. },
  8284. "_eulerAngles": {
  8285. "__type__": "cc.Vec3",
  8286. "x": 0,
  8287. "y": 0,
  8288. "z": 0
  8289. },
  8290. "_skewX": 0,
  8291. "_skewY": 0,
  8292. "_is3DNode": false,
  8293. "_groupIndex": 0,
  8294. "groupIndex": 0,
  8295. "_id": ""
  8296. },
  8297. {
  8298. "__type__": "cc.Sprite",
  8299. "_name": "New Sprite(Splash)<Sprite>",
  8300. "_objFlags": 0,
  8301. "node": {
  8302. "__id__": 225
  8303. },
  8304. "_enabled": true,
  8305. "_materials": [
  8306. {
  8307. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8308. }
  8309. ],
  8310. "_srcBlendFactor": 770,
  8311. "_dstBlendFactor": 771,
  8312. "_spriteFrame": {
  8313. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  8314. },
  8315. "_type": 0,
  8316. "_sizeMode": 0,
  8317. "_fillType": 0,
  8318. "_fillCenter": {
  8319. "__type__": "cc.Vec2",
  8320. "x": 0,
  8321. "y": 0
  8322. },
  8323. "_fillStart": 0,
  8324. "_fillRange": 0,
  8325. "_isTrimmedMode": true,
  8326. "_atlas": null,
  8327. "_id": ""
  8328. },
  8329. {
  8330. "__type__": "cc.BlockInputEvents",
  8331. "_name": "",
  8332. "_objFlags": 0,
  8333. "node": {
  8334. "__id__": 225
  8335. },
  8336. "_enabled": true,
  8337. "_id": ""
  8338. },
  8339. {
  8340. "__type__": "cc.Button",
  8341. "_name": "",
  8342. "_objFlags": 0,
  8343. "node": {
  8344. "__id__": 225
  8345. },
  8346. "_enabled": true,
  8347. "_normalMaterial": null,
  8348. "_grayMaterial": null,
  8349. "duration": 0.1,
  8350. "zoomScale": 1.2,
  8351. "clickEvents": [
  8352. {
  8353. "__id__": 229
  8354. }
  8355. ],
  8356. "_N$interactable": true,
  8357. "_N$enableAutoGrayEffect": false,
  8358. "_N$transition": 0,
  8359. "transition": 0,
  8360. "_N$normalColor": {
  8361. "__type__": "cc.Color",
  8362. "r": 255,
  8363. "g": 255,
  8364. "b": 255,
  8365. "a": 255
  8366. },
  8367. "_N$pressedColor": {
  8368. "__type__": "cc.Color",
  8369. "r": 211,
  8370. "g": 211,
  8371. "b": 211,
  8372. "a": 255
  8373. },
  8374. "pressedColor": {
  8375. "__type__": "cc.Color",
  8376. "r": 211,
  8377. "g": 211,
  8378. "b": 211,
  8379. "a": 255
  8380. },
  8381. "_N$hoverColor": {
  8382. "__type__": "cc.Color",
  8383. "r": 255,
  8384. "g": 255,
  8385. "b": 255,
  8386. "a": 255
  8387. },
  8388. "hoverColor": {
  8389. "__type__": "cc.Color",
  8390. "r": 255,
  8391. "g": 255,
  8392. "b": 255,
  8393. "a": 255
  8394. },
  8395. "_N$disabledColor": {
  8396. "__type__": "cc.Color",
  8397. "r": 124,
  8398. "g": 124,
  8399. "b": 124,
  8400. "a": 255
  8401. },
  8402. "_N$normalSprite": null,
  8403. "_N$pressedSprite": null,
  8404. "pressedSprite": null,
  8405. "_N$hoverSprite": null,
  8406. "hoverSprite": null,
  8407. "_N$disabledSprite": null,
  8408. "_N$target": null,
  8409. "_id": ""
  8410. },
  8411. {
  8412. "__type__": "cc.ClickEvent",
  8413. "target": {
  8414. "__id__": 1
  8415. },
  8416. "component": "",
  8417. "_componentId": "b150700q4JFCaxD1R8c6DRF",
  8418. "handler": "clickCloseRecord",
  8419. "customEventData": ""
  8420. },
  8421. {
  8422. "__type__": "cc.PrefabInfo",
  8423. "root": {
  8424. "__id__": 1
  8425. },
  8426. "asset": {
  8427. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  8428. },
  8429. "fileId": "b51+GC0zdC0Js6rTGsuC3J",
  8430. "sync": false
  8431. },
  8432. {
  8433. "__type__": "cc.Node",
  8434. "_name": "par",
  8435. "_objFlags": 0,
  8436. "_parent": {
  8437. "__id__": 224
  8438. },
  8439. "_children": [
  8440. {
  8441. "__id__": 232
  8442. },
  8443. {
  8444. "__id__": 235
  8445. },
  8446. {
  8447. "__id__": 238
  8448. },
  8449. {
  8450. "__id__": 242
  8451. },
  8452. {
  8453. "__id__": 245
  8454. },
  8455. {
  8456. "__id__": 253
  8457. }
  8458. ],
  8459. "_active": true,
  8460. "_components": [
  8461. {
  8462. "__id__": 271
  8463. }
  8464. ],
  8465. "_prefab": {
  8466. "__id__": 272
  8467. },
  8468. "_opacity": 255,
  8469. "_color": {
  8470. "__type__": "cc.Color",
  8471. "r": 255,
  8472. "g": 255,
  8473. "b": 255,
  8474. "a": 255
  8475. },
  8476. "_contentSize": {
  8477. "__type__": "cc.Size",
  8478. "width": 0,
  8479. "height": 0
  8480. },
  8481. "_anchorPoint": {
  8482. "__type__": "cc.Vec2",
  8483. "x": 0.5,
  8484. "y": 0.5
  8485. },
  8486. "_trs": {
  8487. "__type__": "TypedArray",
  8488. "ctor": "Float64Array",
  8489. "array": [
  8490. 0,
  8491. 0,
  8492. 0,
  8493. 0,
  8494. 0,
  8495. 0,
  8496. 1,
  8497. 1,
  8498. 1,
  8499. 1
  8500. ]
  8501. },
  8502. "_eulerAngles": {
  8503. "__type__": "cc.Vec3",
  8504. "x": 0,
  8505. "y": 0,
  8506. "z": 0
  8507. },
  8508. "_skewX": 0,
  8509. "_skewY": 0,
  8510. "_is3DNode": false,
  8511. "_groupIndex": 0,
  8512. "groupIndex": 0,
  8513. "_id": ""
  8514. },
  8515. {
  8516. "__type__": "cc.Node",
  8517. "_name": "tc_bg",
  8518. "_objFlags": 0,
  8519. "_parent": {
  8520. "__id__": 231
  8521. },
  8522. "_children": [],
  8523. "_active": true,
  8524. "_components": [
  8525. {
  8526. "__id__": 233
  8527. }
  8528. ],
  8529. "_prefab": {
  8530. "__id__": 234
  8531. },
  8532. "_opacity": 255,
  8533. "_color": {
  8534. "__type__": "cc.Color",
  8535. "r": 255,
  8536. "g": 255,
  8537. "b": 255,
  8538. "a": 255
  8539. },
  8540. "_contentSize": {
  8541. "__type__": "cc.Size",
  8542. "width": 709,
  8543. "height": 855
  8544. },
  8545. "_anchorPoint": {
  8546. "__type__": "cc.Vec2",
  8547. "x": 0.5,
  8548. "y": 0.5
  8549. },
  8550. "_trs": {
  8551. "__type__": "TypedArray",
  8552. "ctor": "Float64Array",
  8553. "array": [
  8554. 0,
  8555. -8,
  8556. 0,
  8557. 0,
  8558. 0,
  8559. 0,
  8560. 1,
  8561. 1,
  8562. 1,
  8563. 1
  8564. ]
  8565. },
  8566. "_eulerAngles": {
  8567. "__type__": "cc.Vec3",
  8568. "x": 0,
  8569. "y": 0,
  8570. "z": 0
  8571. },
  8572. "_skewX": 0,
  8573. "_skewY": 0,
  8574. "_is3DNode": false,
  8575. "_groupIndex": 0,
  8576. "groupIndex": 0,
  8577. "_id": ""
  8578. },
  8579. {
  8580. "__type__": "cc.Sprite",
  8581. "_name": "tc_bg<Sprite>",
  8582. "_objFlags": 0,
  8583. "node": {
  8584. "__id__": 232
  8585. },
  8586. "_enabled": true,
  8587. "_materials": [
  8588. {
  8589. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8590. }
  8591. ],
  8592. "_srcBlendFactor": 770,
  8593. "_dstBlendFactor": 771,
  8594. "_spriteFrame": {
  8595. "__uuid__": "18be736f-6af1-46fa-b462-eaea58d79b6f"
  8596. },
  8597. "_type": 0,
  8598. "_sizeMode": 2,
  8599. "_fillType": 0,
  8600. "_fillCenter": {
  8601. "__type__": "cc.Vec2",
  8602. "x": 0,
  8603. "y": 0
  8604. },
  8605. "_fillStart": 0,
  8606. "_fillRange": 0,
  8607. "_isTrimmedMode": true,
  8608. "_atlas": null,
  8609. "_id": ""
  8610. },
  8611. {
  8612. "__type__": "cc.PrefabInfo",
  8613. "root": {
  8614. "__id__": 1
  8615. },
  8616. "asset": {
  8617. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  8618. },
  8619. "fileId": "f5oLzLPH5DfIV2W4bpezm1",
  8620. "sync": false
  8621. },
  8622. {
  8623. "__type__": "cc.Node",
  8624. "_name": "txt_bg1",
  8625. "_objFlags": 0,
  8626. "_parent": {
  8627. "__id__": 231
  8628. },
  8629. "_children": [],
  8630. "_active": true,
  8631. "_components": [
  8632. {
  8633. "__id__": 236
  8634. }
  8635. ],
  8636. "_prefab": {
  8637. "__id__": 237
  8638. },
  8639. "_opacity": 255,
  8640. "_color": {
  8641. "__type__": "cc.Color",
  8642. "r": 255,
  8643. "g": 255,
  8644. "b": 255,
  8645. "a": 255
  8646. },
  8647. "_contentSize": {
  8648. "__type__": "cc.Size",
  8649. "width": 612,
  8650. "height": 59
  8651. },
  8652. "_anchorPoint": {
  8653. "__type__": "cc.Vec2",
  8654. "x": 0.5,
  8655. "y": 0.5
  8656. },
  8657. "_trs": {
  8658. "__type__": "TypedArray",
  8659. "ctor": "Float64Array",
  8660. "array": [
  8661. 0,
  8662. 271.485,
  8663. 0,
  8664. 0,
  8665. 0,
  8666. 0,
  8667. 1,
  8668. 1,
  8669. 1,
  8670. 1
  8671. ]
  8672. },
  8673. "_eulerAngles": {
  8674. "__type__": "cc.Vec3",
  8675. "x": 0,
  8676. "y": 0,
  8677. "z": 0
  8678. },
  8679. "_skewX": 0,
  8680. "_skewY": 0,
  8681. "_is3DNode": false,
  8682. "_groupIndex": 0,
  8683. "groupIndex": 0,
  8684. "_id": ""
  8685. },
  8686. {
  8687. "__type__": "cc.Sprite",
  8688. "_name": "txt_bg1<Sprite>",
  8689. "_objFlags": 0,
  8690. "node": {
  8691. "__id__": 235
  8692. },
  8693. "_enabled": true,
  8694. "_materials": [
  8695. {
  8696. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8697. }
  8698. ],
  8699. "_srcBlendFactor": 770,
  8700. "_dstBlendFactor": 771,
  8701. "_spriteFrame": {
  8702. "__uuid__": "c617e184-a569-4315-afb4-8bff6d93d619"
  8703. },
  8704. "_type": 1,
  8705. "_sizeMode": 0,
  8706. "_fillType": 0,
  8707. "_fillCenter": {
  8708. "__type__": "cc.Vec2",
  8709. "x": 0,
  8710. "y": 0
  8711. },
  8712. "_fillStart": 0,
  8713. "_fillRange": 0,
  8714. "_isTrimmedMode": true,
  8715. "_atlas": null,
  8716. "_id": ""
  8717. },
  8718. {
  8719. "__type__": "cc.PrefabInfo",
  8720. "root": {
  8721. "__id__": 1
  8722. },
  8723. "asset": {
  8724. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  8725. },
  8726. "fileId": "bdlaTX+ndPEKG4oSUW4+Uz",
  8727. "sync": false
  8728. },
  8729. {
  8730. "__type__": "cc.Node",
  8731. "_name": "labRTitle",
  8732. "_objFlags": 0,
  8733. "_parent": {
  8734. "__id__": 231
  8735. },
  8736. "_children": [],
  8737. "_active": true,
  8738. "_components": [
  8739. {
  8740. "__id__": 239
  8741. },
  8742. {
  8743. "__id__": 240
  8744. }
  8745. ],
  8746. "_prefab": {
  8747. "__id__": 241
  8748. },
  8749. "_opacity": 255,
  8750. "_color": {
  8751. "__type__": "cc.Color",
  8752. "r": 243,
  8753. "g": 229,
  8754. "b": 100,
  8755. "a": 255
  8756. },
  8757. "_contentSize": {
  8758. "__type__": "cc.Size",
  8759. "width": 299.95,
  8760. "height": 63.96
  8761. },
  8762. "_anchorPoint": {
  8763. "__type__": "cc.Vec2",
  8764. "x": 0.5,
  8765. "y": 0.5
  8766. },
  8767. "_trs": {
  8768. "__type__": "TypedArray",
  8769. "ctor": "Float64Array",
  8770. "array": [
  8771. 0,
  8772. 367.035,
  8773. 0,
  8774. 0,
  8775. 0,
  8776. 0,
  8777. 1,
  8778. 1,
  8779. 1,
  8780. 1
  8781. ]
  8782. },
  8783. "_eulerAngles": {
  8784. "__type__": "cc.Vec3",
  8785. "x": 0,
  8786. "y": 0,
  8787. "z": 0
  8788. },
  8789. "_skewX": 0,
  8790. "_skewY": 0,
  8791. "_is3DNode": false,
  8792. "_groupIndex": 0,
  8793. "groupIndex": 0,
  8794. "_id": ""
  8795. },
  8796. {
  8797. "__type__": "cc.Label",
  8798. "_name": "labRTitle<Label>",
  8799. "_objFlags": 0,
  8800. "node": {
  8801. "__id__": 238
  8802. },
  8803. "_enabled": true,
  8804. "_materials": [
  8805. {
  8806. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8807. }
  8808. ],
  8809. "_useOriginalSize": false,
  8810. "_string": "0.3元开奖记录",
  8811. "_N$string": "0.3元开奖记录",
  8812. "_fontSize": 46,
  8813. "_lineHeight": 46,
  8814. "_enableWrapText": true,
  8815. "_N$file": null,
  8816. "_isSystemFontUsed": true,
  8817. "_spacingX": 0,
  8818. "_batchAsBitmap": false,
  8819. "_styleFlags": 1,
  8820. "_underlineHeight": 0,
  8821. "_N$horizontalAlign": 1,
  8822. "_N$verticalAlign": 1,
  8823. "_N$fontFamily": "Arial",
  8824. "_N$overflow": 0,
  8825. "_N$cacheMode": 0,
  8826. "_id": ""
  8827. },
  8828. {
  8829. "__type__": "cc.LabelOutline",
  8830. "_name": "",
  8831. "_objFlags": 0,
  8832. "node": {
  8833. "__id__": 238
  8834. },
  8835. "_enabled": true,
  8836. "_color": {
  8837. "__type__": "cc.Color",
  8838. "r": 15,
  8839. "g": 7,
  8840. "b": 7,
  8841. "a": 255
  8842. },
  8843. "_width": 3,
  8844. "_id": ""
  8845. },
  8846. {
  8847. "__type__": "cc.PrefabInfo",
  8848. "root": {
  8849. "__id__": 1
  8850. },
  8851. "asset": {
  8852. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  8853. },
  8854. "fileId": "37eL3DaV5OYJGMVUVy9RVv",
  8855. "sync": false
  8856. },
  8857. {
  8858. "__type__": "cc.Node",
  8859. "_name": "labDes",
  8860. "_objFlags": 0,
  8861. "_parent": {
  8862. "__id__": 231
  8863. },
  8864. "_children": [],
  8865. "_active": true,
  8866. "_components": [
  8867. {
  8868. "__id__": 243
  8869. }
  8870. ],
  8871. "_prefab": {
  8872. "__id__": 244
  8873. },
  8874. "_opacity": 255,
  8875. "_color": {
  8876. "__type__": "cc.Color",
  8877. "r": 251,
  8878. "g": 231,
  8879. "b": 210,
  8880. "a": 255
  8881. },
  8882. "_contentSize": {
  8883. "__type__": "cc.Size",
  8884. "width": 303.37,
  8885. "height": 37.8
  8886. },
  8887. "_anchorPoint": {
  8888. "__type__": "cc.Vec2",
  8889. "x": 0.5,
  8890. "y": 0.5
  8891. },
  8892. "_trs": {
  8893. "__type__": "TypedArray",
  8894. "ctor": "Float64Array",
  8895. "array": [
  8896. 0,
  8897. 273.877,
  8898. 0,
  8899. 0,
  8900. 0,
  8901. 0,
  8902. 1,
  8903. 1,
  8904. 1,
  8905. 1
  8906. ]
  8907. },
  8908. "_eulerAngles": {
  8909. "__type__": "cc.Vec3",
  8910. "x": 0,
  8911. "y": 0,
  8912. "z": 0
  8913. },
  8914. "_skewX": 0,
  8915. "_skewY": 0,
  8916. "_is3DNode": false,
  8917. "_groupIndex": 0,
  8918. "groupIndex": 0,
  8919. "_id": ""
  8920. },
  8921. {
  8922. "__type__": "cc.Label",
  8923. "_name": "labDes<Label>",
  8924. "_objFlags": 0,
  8925. "node": {
  8926. "__id__": 242
  8927. },
  8928. "_enabled": true,
  8929. "_materials": [
  8930. {
  8931. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8932. }
  8933. ],
  8934. "_useOriginalSize": false,
  8935. "_string": "保留最近10条中奖记录",
  8936. "_N$string": "保留最近10条中奖记录",
  8937. "_fontSize": 30,
  8938. "_lineHeight": 30,
  8939. "_enableWrapText": true,
  8940. "_N$file": null,
  8941. "_isSystemFontUsed": true,
  8942. "_spacingX": 0,
  8943. "_batchAsBitmap": false,
  8944. "_styleFlags": 0,
  8945. "_underlineHeight": 0,
  8946. "_N$horizontalAlign": 1,
  8947. "_N$verticalAlign": 1,
  8948. "_N$fontFamily": "Arial",
  8949. "_N$overflow": 0,
  8950. "_N$cacheMode": 0,
  8951. "_id": ""
  8952. },
  8953. {
  8954. "__type__": "cc.PrefabInfo",
  8955. "root": {
  8956. "__id__": 1
  8957. },
  8958. "asset": {
  8959. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  8960. },
  8961. "fileId": "2duOCiYctBf799wOWt2Urp",
  8962. "sync": false
  8963. },
  8964. {
  8965. "__type__": "cc.Node",
  8966. "_name": "btnRClose",
  8967. "_objFlags": 0,
  8968. "_parent": {
  8969. "__id__": 231
  8970. },
  8971. "_children": [
  8972. {
  8973. "__id__": 246
  8974. }
  8975. ],
  8976. "_active": false,
  8977. "_components": [
  8978. {
  8979. "__id__": 250
  8980. }
  8981. ],
  8982. "_prefab": {
  8983. "__id__": 252
  8984. },
  8985. "_opacity": 255,
  8986. "_color": {
  8987. "__type__": "cc.Color",
  8988. "r": 255,
  8989. "g": 255,
  8990. "b": 255,
  8991. "a": 255
  8992. },
  8993. "_contentSize": {
  8994. "__type__": "cc.Size",
  8995. "width": 100,
  8996. "height": 100
  8997. },
  8998. "_anchorPoint": {
  8999. "__type__": "cc.Vec2",
  9000. "x": 0.5,
  9001. "y": 0.5
  9002. },
  9003. "_trs": {
  9004. "__type__": "TypedArray",
  9005. "ctor": "Float64Array",
  9006. "array": [
  9007. 308,
  9008. 363.755,
  9009. 0,
  9010. 0,
  9011. 0,
  9012. 0,
  9013. 1,
  9014. 1,
  9015. 1,
  9016. 1
  9017. ]
  9018. },
  9019. "_eulerAngles": {
  9020. "__type__": "cc.Vec3",
  9021. "x": 0,
  9022. "y": 0,
  9023. "z": 0
  9024. },
  9025. "_skewX": 0,
  9026. "_skewY": 0,
  9027. "_is3DNode": false,
  9028. "_groupIndex": 0,
  9029. "groupIndex": 0,
  9030. "_id": ""
  9031. },
  9032. {
  9033. "__type__": "cc.Node",
  9034. "_name": "Background",
  9035. "_objFlags": 512,
  9036. "_parent": {
  9037. "__id__": 245
  9038. },
  9039. "_children": [],
  9040. "_active": true,
  9041. "_components": [
  9042. {
  9043. "__id__": 247
  9044. },
  9045. {
  9046. "__id__": 248
  9047. }
  9048. ],
  9049. "_prefab": {
  9050. "__id__": 249
  9051. },
  9052. "_opacity": 255,
  9053. "_color": {
  9054. "__type__": "cc.Color",
  9055. "r": 255,
  9056. "g": 255,
  9057. "b": 255,
  9058. "a": 255
  9059. },
  9060. "_contentSize": {
  9061. "__type__": "cc.Size",
  9062. "width": 65,
  9063. "height": 73
  9064. },
  9065. "_anchorPoint": {
  9066. "__type__": "cc.Vec2",
  9067. "x": 0.5,
  9068. "y": 0.5
  9069. },
  9070. "_trs": {
  9071. "__type__": "TypedArray",
  9072. "ctor": "Float64Array",
  9073. "array": [
  9074. 0,
  9075. 0,
  9076. 0,
  9077. 0,
  9078. 0,
  9079. 0,
  9080. 1,
  9081. 1,
  9082. 1,
  9083. 1
  9084. ]
  9085. },
  9086. "_eulerAngles": {
  9087. "__type__": "cc.Vec3",
  9088. "x": 0,
  9089. "y": 0,
  9090. "z": 0
  9091. },
  9092. "_skewX": 0,
  9093. "_skewY": 0,
  9094. "_is3DNode": false,
  9095. "_groupIndex": 0,
  9096. "groupIndex": 0,
  9097. "_id": ""
  9098. },
  9099. {
  9100. "__type__": "cc.Sprite",
  9101. "_name": "Background<Sprite>",
  9102. "_objFlags": 0,
  9103. "node": {
  9104. "__id__": 246
  9105. },
  9106. "_enabled": true,
  9107. "_materials": [
  9108. {
  9109. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9110. }
  9111. ],
  9112. "_srcBlendFactor": 770,
  9113. "_dstBlendFactor": 771,
  9114. "_spriteFrame": {
  9115. "__uuid__": "ca6b0d14-9d7e-42c2-adb0-07269c5df201"
  9116. },
  9117. "_type": 0,
  9118. "_sizeMode": 0,
  9119. "_fillType": 0,
  9120. "_fillCenter": {
  9121. "__type__": "cc.Vec2",
  9122. "x": 0,
  9123. "y": 0
  9124. },
  9125. "_fillStart": 0,
  9126. "_fillRange": 0,
  9127. "_isTrimmedMode": true,
  9128. "_atlas": null,
  9129. "_id": ""
  9130. },
  9131. {
  9132. "__type__": "cc.Widget",
  9133. "_name": "",
  9134. "_objFlags": 0,
  9135. "node": {
  9136. "__id__": 246
  9137. },
  9138. "_enabled": true,
  9139. "alignMode": 0,
  9140. "_target": null,
  9141. "_alignFlags": 45,
  9142. "_left": 17.5,
  9143. "_right": 17.5,
  9144. "_top": 13.5,
  9145. "_bottom": 13.5,
  9146. "_verticalCenter": 0,
  9147. "_horizontalCenter": 0,
  9148. "_isAbsLeft": true,
  9149. "_isAbsRight": true,
  9150. "_isAbsTop": true,
  9151. "_isAbsBottom": true,
  9152. "_isAbsHorizontalCenter": true,
  9153. "_isAbsVerticalCenter": true,
  9154. "_originalWidth": 100,
  9155. "_originalHeight": 40,
  9156. "_id": ""
  9157. },
  9158. {
  9159. "__type__": "cc.PrefabInfo",
  9160. "root": {
  9161. "__id__": 1
  9162. },
  9163. "asset": {
  9164. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  9165. },
  9166. "fileId": "faokFItppHI6PxsLrksj/J",
  9167. "sync": false
  9168. },
  9169. {
  9170. "__type__": "cc.Button",
  9171. "_name": "",
  9172. "_objFlags": 0,
  9173. "node": {
  9174. "__id__": 245
  9175. },
  9176. "_enabled": true,
  9177. "_normalMaterial": {
  9178. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9179. },
  9180. "_grayMaterial": null,
  9181. "duration": 0.1,
  9182. "zoomScale": 0.8,
  9183. "clickEvents": [
  9184. {
  9185. "__id__": 251
  9186. }
  9187. ],
  9188. "_N$interactable": true,
  9189. "_N$enableAutoGrayEffect": false,
  9190. "_N$transition": 3,
  9191. "transition": 3,
  9192. "_N$normalColor": {
  9193. "__type__": "cc.Color",
  9194. "r": 230,
  9195. "g": 230,
  9196. "b": 230,
  9197. "a": 255
  9198. },
  9199. "_N$pressedColor": {
  9200. "__type__": "cc.Color",
  9201. "r": 200,
  9202. "g": 200,
  9203. "b": 200,
  9204. "a": 255
  9205. },
  9206. "pressedColor": {
  9207. "__type__": "cc.Color",
  9208. "r": 200,
  9209. "g": 200,
  9210. "b": 200,
  9211. "a": 255
  9212. },
  9213. "_N$hoverColor": {
  9214. "__type__": "cc.Color",
  9215. "r": 255,
  9216. "g": 255,
  9217. "b": 255,
  9218. "a": 255
  9219. },
  9220. "hoverColor": {
  9221. "__type__": "cc.Color",
  9222. "r": 255,
  9223. "g": 255,
  9224. "b": 255,
  9225. "a": 255
  9226. },
  9227. "_N$disabledColor": {
  9228. "__type__": "cc.Color",
  9229. "r": 120,
  9230. "g": 120,
  9231. "b": 120,
  9232. "a": 200
  9233. },
  9234. "_N$normalSprite": {
  9235. "__uuid__": "c532e90f-bf60-436c-9c3e-84d95d058a4f"
  9236. },
  9237. "_N$pressedSprite": {
  9238. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  9239. },
  9240. "pressedSprite": {
  9241. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  9242. },
  9243. "_N$hoverSprite": {
  9244. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  9245. },
  9246. "hoverSprite": {
  9247. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  9248. },
  9249. "_N$disabledSprite": {
  9250. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  9251. },
  9252. "_N$target": {
  9253. "__id__": 245
  9254. },
  9255. "_id": ""
  9256. },
  9257. {
  9258. "__type__": "cc.ClickEvent",
  9259. "target": {
  9260. "__id__": 1
  9261. },
  9262. "component": "",
  9263. "_componentId": "b150700q4JFCaxD1R8c6DRF",
  9264. "handler": "clickCloseRecord",
  9265. "customEventData": ""
  9266. },
  9267. {
  9268. "__type__": "cc.PrefabInfo",
  9269. "root": {
  9270. "__id__": 1
  9271. },
  9272. "asset": {
  9273. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  9274. },
  9275. "fileId": "6e9t/OmktDVrqxEUi5yH0t",
  9276. "sync": false
  9277. },
  9278. {
  9279. "__type__": "cc.Node",
  9280. "_name": "rSc",
  9281. "_objFlags": 0,
  9282. "_parent": {
  9283. "__id__": 231
  9284. },
  9285. "_children": [
  9286. {
  9287. "__id__": 254
  9288. },
  9289. {
  9290. "__id__": 261
  9291. }
  9292. ],
  9293. "_active": true,
  9294. "_components": [
  9295. {
  9296. "__id__": 269
  9297. },
  9298. {
  9299. "__id__": 259
  9300. }
  9301. ],
  9302. "_prefab": {
  9303. "__id__": 270
  9304. },
  9305. "_opacity": 255,
  9306. "_color": {
  9307. "__type__": "cc.Color",
  9308. "r": 255,
  9309. "g": 255,
  9310. "b": 255,
  9311. "a": 255
  9312. },
  9313. "_contentSize": {
  9314. "__type__": "cc.Size",
  9315. "width": 685,
  9316. "height": 632
  9317. },
  9318. "_anchorPoint": {
  9319. "__type__": "cc.Vec2",
  9320. "x": 0.5,
  9321. "y": 0.5
  9322. },
  9323. "_trs": {
  9324. "__type__": "TypedArray",
  9325. "ctor": "Float64Array",
  9326. "array": [
  9327. 0,
  9328. -83,
  9329. 0,
  9330. 0,
  9331. 0,
  9332. 0,
  9333. 1,
  9334. 1,
  9335. 1,
  9336. 1
  9337. ]
  9338. },
  9339. "_eulerAngles": {
  9340. "__type__": "cc.Vec3",
  9341. "x": 0,
  9342. "y": 0,
  9343. "z": 0
  9344. },
  9345. "_skewX": 0,
  9346. "_skewY": 0,
  9347. "_is3DNode": false,
  9348. "_groupIndex": 0,
  9349. "groupIndex": 0,
  9350. "_id": ""
  9351. },
  9352. {
  9353. "__type__": "cc.Node",
  9354. "_name": "scrollBar",
  9355. "_objFlags": 512,
  9356. "_parent": {
  9357. "__id__": 253
  9358. },
  9359. "_children": [
  9360. {
  9361. "__id__": 255
  9362. }
  9363. ],
  9364. "_active": false,
  9365. "_components": [
  9366. {
  9367. "__id__": 258
  9368. },
  9369. {
  9370. "__id__": 266
  9371. },
  9372. {
  9373. "__id__": 267
  9374. }
  9375. ],
  9376. "_prefab": {
  9377. "__id__": 268
  9378. },
  9379. "_opacity": 255,
  9380. "_color": {
  9381. "__type__": "cc.Color",
  9382. "r": 255,
  9383. "g": 255,
  9384. "b": 255,
  9385. "a": 255
  9386. },
  9387. "_contentSize": {
  9388. "__type__": "cc.Size",
  9389. "width": 12,
  9390. "height": 250
  9391. },
  9392. "_anchorPoint": {
  9393. "__type__": "cc.Vec2",
  9394. "x": 1,
  9395. "y": 0.5
  9396. },
  9397. "_trs": {
  9398. "__type__": "TypedArray",
  9399. "ctor": "Float64Array",
  9400. "array": [
  9401. 120,
  9402. 0,
  9403. 0,
  9404. 0,
  9405. 0,
  9406. 0,
  9407. 1,
  9408. 1,
  9409. 1,
  9410. 1
  9411. ]
  9412. },
  9413. "_eulerAngles": {
  9414. "__type__": "cc.Vec3",
  9415. "x": 0,
  9416. "y": 0,
  9417. "z": 0
  9418. },
  9419. "_skewX": 0,
  9420. "_skewY": 0,
  9421. "_is3DNode": false,
  9422. "_groupIndex": 0,
  9423. "groupIndex": 0,
  9424. "_id": ""
  9425. },
  9426. {
  9427. "__type__": "cc.Node",
  9428. "_name": "bar",
  9429. "_objFlags": 512,
  9430. "_parent": {
  9431. "__id__": 254
  9432. },
  9433. "_children": [],
  9434. "_active": true,
  9435. "_components": [
  9436. {
  9437. "__id__": 256
  9438. }
  9439. ],
  9440. "_prefab": {
  9441. "__id__": 257
  9442. },
  9443. "_opacity": 255,
  9444. "_color": {
  9445. "__type__": "cc.Color",
  9446. "r": 255,
  9447. "g": 255,
  9448. "b": 255,
  9449. "a": 255
  9450. },
  9451. "_contentSize": {
  9452. "__type__": "cc.Size",
  9453. "width": 10,
  9454. "height": 30
  9455. },
  9456. "_anchorPoint": {
  9457. "__type__": "cc.Vec2",
  9458. "x": 1,
  9459. "y": 0
  9460. },
  9461. "_trs": {
  9462. "__type__": "TypedArray",
  9463. "ctor": "Float64Array",
  9464. "array": [
  9465. -1,
  9466. 0,
  9467. 0,
  9468. 0,
  9469. 0,
  9470. 0,
  9471. 1,
  9472. 1,
  9473. 1,
  9474. 1
  9475. ]
  9476. },
  9477. "_eulerAngles": {
  9478. "__type__": "cc.Vec3",
  9479. "x": 0,
  9480. "y": 0,
  9481. "z": 0
  9482. },
  9483. "_skewX": 0,
  9484. "_skewY": 0,
  9485. "_is3DNode": false,
  9486. "_groupIndex": 0,
  9487. "groupIndex": 0,
  9488. "_id": ""
  9489. },
  9490. {
  9491. "__type__": "cc.Sprite",
  9492. "_name": "bar<Sprite>",
  9493. "_objFlags": 0,
  9494. "node": {
  9495. "__id__": 255
  9496. },
  9497. "_enabled": true,
  9498. "_materials": [
  9499. {
  9500. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9501. }
  9502. ],
  9503. "_srcBlendFactor": 770,
  9504. "_dstBlendFactor": 771,
  9505. "_spriteFrame": {
  9506. "__uuid__": "5c3bb932-6c3c-468f-88a9-c8c61d458641"
  9507. },
  9508. "_type": 1,
  9509. "_sizeMode": 0,
  9510. "_fillType": 0,
  9511. "_fillCenter": {
  9512. "__type__": "cc.Vec2",
  9513. "x": 0,
  9514. "y": 0
  9515. },
  9516. "_fillStart": 0,
  9517. "_fillRange": 0,
  9518. "_isTrimmedMode": true,
  9519. "_atlas": null,
  9520. "_id": ""
  9521. },
  9522. {
  9523. "__type__": "cc.PrefabInfo",
  9524. "root": {
  9525. "__id__": 1
  9526. },
  9527. "asset": {
  9528. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  9529. },
  9530. "fileId": "73a8xeWYdPD7GwUiED+lFl",
  9531. "sync": false
  9532. },
  9533. {
  9534. "__type__": "cc.Scrollbar",
  9535. "_name": "",
  9536. "_objFlags": 0,
  9537. "node": {
  9538. "__id__": 254
  9539. },
  9540. "_enabled": true,
  9541. "_scrollView": {
  9542. "__id__": 259
  9543. },
  9544. "_touching": false,
  9545. "_opacity": 255,
  9546. "enableAutoHide": true,
  9547. "autoHideTime": 1,
  9548. "_N$handle": {
  9549. "__id__": 256
  9550. },
  9551. "_N$direction": 1,
  9552. "_id": ""
  9553. },
  9554. {
  9555. "__type__": "cc.ScrollView",
  9556. "_name": "",
  9557. "_objFlags": 0,
  9558. "node": {
  9559. "__id__": 253
  9560. },
  9561. "_enabled": true,
  9562. "horizontal": false,
  9563. "vertical": true,
  9564. "inertia": true,
  9565. "brake": 0.75,
  9566. "elastic": true,
  9567. "bounceDuration": 0.23,
  9568. "scrollEvents": [],
  9569. "cancelInnerEvents": true,
  9570. "_N$content": {
  9571. "__id__": 260
  9572. },
  9573. "content": {
  9574. "__id__": 260
  9575. },
  9576. "_N$horizontalScrollBar": null,
  9577. "_N$verticalScrollBar": {
  9578. "__id__": 258
  9579. },
  9580. "_id": ""
  9581. },
  9582. {
  9583. "__type__": "cc.Node",
  9584. "_name": "content",
  9585. "_objFlags": 512,
  9586. "_parent": {
  9587. "__id__": 261
  9588. },
  9589. "_children": [],
  9590. "_active": true,
  9591. "_components": [
  9592. {
  9593. "__id__": 264
  9594. }
  9595. ],
  9596. "_prefab": {
  9597. "__id__": 265
  9598. },
  9599. "_opacity": 255,
  9600. "_color": {
  9601. "__type__": "cc.Color",
  9602. "r": 255,
  9603. "g": 255,
  9604. "b": 255,
  9605. "a": 255
  9606. },
  9607. "_contentSize": {
  9608. "__type__": "cc.Size",
  9609. "width": 685,
  9610. "height": 156
  9611. },
  9612. "_anchorPoint": {
  9613. "__type__": "cc.Vec2",
  9614. "x": 0.5,
  9615. "y": 1
  9616. },
  9617. "_trs": {
  9618. "__type__": "TypedArray",
  9619. "ctor": "Float64Array",
  9620. "array": [
  9621. 0,
  9622. 115.30999755859375,
  9623. 0,
  9624. 0,
  9625. 0,
  9626. 0,
  9627. 1,
  9628. 1,
  9629. 1,
  9630. 1
  9631. ]
  9632. },
  9633. "_eulerAngles": {
  9634. "__type__": "cc.Vec3",
  9635. "x": 0,
  9636. "y": 0,
  9637. "z": 0
  9638. },
  9639. "_skewX": 0,
  9640. "_skewY": 0,
  9641. "_is3DNode": false,
  9642. "_groupIndex": 0,
  9643. "groupIndex": 0,
  9644. "_id": ""
  9645. },
  9646. {
  9647. "__type__": "cc.Node",
  9648. "_name": "view",
  9649. "_objFlags": 512,
  9650. "_parent": {
  9651. "__id__": 253
  9652. },
  9653. "_children": [
  9654. {
  9655. "__id__": 260
  9656. }
  9657. ],
  9658. "_active": true,
  9659. "_components": [
  9660. {
  9661. "__id__": 262
  9662. }
  9663. ],
  9664. "_prefab": {
  9665. "__id__": 263
  9666. },
  9667. "_opacity": 255,
  9668. "_color": {
  9669. "__type__": "cc.Color",
  9670. "r": 255,
  9671. "g": 255,
  9672. "b": 255,
  9673. "a": 255
  9674. },
  9675. "_contentSize": {
  9676. "__type__": "cc.Size",
  9677. "width": 685,
  9678. "height": 632
  9679. },
  9680. "_anchorPoint": {
  9681. "__type__": "cc.Vec2",
  9682. "x": 0.5,
  9683. "y": 0.5
  9684. },
  9685. "_trs": {
  9686. "__type__": "TypedArray",
  9687. "ctor": "Float64Array",
  9688. "array": [
  9689. 0,
  9690. 0,
  9691. 0,
  9692. 0,
  9693. 0,
  9694. 0,
  9695. 1,
  9696. 1,
  9697. 1,
  9698. 1
  9699. ]
  9700. },
  9701. "_eulerAngles": {
  9702. "__type__": "cc.Vec3",
  9703. "x": 0,
  9704. "y": 0,
  9705. "z": 0
  9706. },
  9707. "_skewX": 0,
  9708. "_skewY": 0,
  9709. "_is3DNode": false,
  9710. "_groupIndex": 0,
  9711. "groupIndex": 0,
  9712. "_id": ""
  9713. },
  9714. {
  9715. "__type__": "cc.Mask",
  9716. "_name": "view<Mask>",
  9717. "_objFlags": 0,
  9718. "node": {
  9719. "__id__": 261
  9720. },
  9721. "_enabled": true,
  9722. "_materials": [
  9723. {
  9724. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9725. }
  9726. ],
  9727. "_spriteFrame": null,
  9728. "_type": 0,
  9729. "_segments": 64,
  9730. "_N$alphaThreshold": 0,
  9731. "_N$inverted": false,
  9732. "_id": ""
  9733. },
  9734. {
  9735. "__type__": "cc.PrefabInfo",
  9736. "root": {
  9737. "__id__": 1
  9738. },
  9739. "asset": {
  9740. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  9741. },
  9742. "fileId": "7f+vvQIV9KdIKU2amstMOo",
  9743. "sync": false
  9744. },
  9745. {
  9746. "__type__": "cc.Layout",
  9747. "_name": "",
  9748. "_objFlags": 0,
  9749. "node": {
  9750. "__id__": 260
  9751. },
  9752. "_enabled": true,
  9753. "_layoutSize": {
  9754. "__type__": "cc.Size",
  9755. "width": 685,
  9756. "height": 156
  9757. },
  9758. "_resize": 1,
  9759. "_N$layoutType": 2,
  9760. "_N$cellSize": {
  9761. "__type__": "cc.Size",
  9762. "width": 40,
  9763. "height": 40
  9764. },
  9765. "_N$startAxis": 0,
  9766. "_N$paddingLeft": 0,
  9767. "_N$paddingRight": 0,
  9768. "_N$paddingTop": 0,
  9769. "_N$paddingBottom": 0,
  9770. "_N$spacingX": 0,
  9771. "_N$spacingY": 8,
  9772. "_N$verticalDirection": 1,
  9773. "_N$horizontalDirection": 0,
  9774. "_N$affectedByScale": false,
  9775. "_id": ""
  9776. },
  9777. {
  9778. "__type__": "cc.PrefabInfo",
  9779. "root": {
  9780. "__id__": 1
  9781. },
  9782. "asset": {
  9783. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  9784. },
  9785. "fileId": "82B+jUhdJMXKFXv4XtzvxH",
  9786. "sync": false
  9787. },
  9788. {
  9789. "__type__": "cc.Widget",
  9790. "_name": "",
  9791. "_objFlags": 0,
  9792. "node": {
  9793. "__id__": 254
  9794. },
  9795. "_enabled": true,
  9796. "alignMode": 0,
  9797. "_target": null,
  9798. "_alignFlags": 37,
  9799. "_left": 350.07654921020657,
  9800. "_right": 0,
  9801. "_top": 0,
  9802. "_bottom": 0,
  9803. "_verticalCenter": 0,
  9804. "_horizontalCenter": 0,
  9805. "_isAbsLeft": true,
  9806. "_isAbsRight": true,
  9807. "_isAbsTop": true,
  9808. "_isAbsBottom": true,
  9809. "_isAbsHorizontalCenter": true,
  9810. "_isAbsVerticalCenter": true,
  9811. "_originalWidth": 0,
  9812. "_originalHeight": 237,
  9813. "_id": ""
  9814. },
  9815. {
  9816. "__type__": "cc.Sprite",
  9817. "_name": "scrollBar<Sprite>",
  9818. "_objFlags": 0,
  9819. "node": {
  9820. "__id__": 254
  9821. },
  9822. "_enabled": true,
  9823. "_materials": [
  9824. {
  9825. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9826. }
  9827. ],
  9828. "_srcBlendFactor": 770,
  9829. "_dstBlendFactor": 771,
  9830. "_spriteFrame": {
  9831. "__uuid__": "5fe5dcaa-b513-4dc5-a166-573627b3a159"
  9832. },
  9833. "_type": 1,
  9834. "_sizeMode": 0,
  9835. "_fillType": 0,
  9836. "_fillCenter": {
  9837. "__type__": "cc.Vec2",
  9838. "x": 0,
  9839. "y": 0
  9840. },
  9841. "_fillStart": 0,
  9842. "_fillRange": 0,
  9843. "_isTrimmedMode": true,
  9844. "_atlas": null,
  9845. "_id": ""
  9846. },
  9847. {
  9848. "__type__": "cc.PrefabInfo",
  9849. "root": {
  9850. "__id__": 1
  9851. },
  9852. "asset": {
  9853. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  9854. },
  9855. "fileId": "c1ab4VbbhNsJ2SyDLdhnIh",
  9856. "sync": false
  9857. },
  9858. {
  9859. "__type__": "cc.Sprite",
  9860. "_name": "rSc<Sprite>",
  9861. "_objFlags": 0,
  9862. "node": {
  9863. "__id__": 253
  9864. },
  9865. "_enabled": true,
  9866. "_materials": [
  9867. {
  9868. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9869. }
  9870. ],
  9871. "_srcBlendFactor": 770,
  9872. "_dstBlendFactor": 771,
  9873. "_spriteFrame": null,
  9874. "_type": 1,
  9875. "_sizeMode": 0,
  9876. "_fillType": 0,
  9877. "_fillCenter": {
  9878. "__type__": "cc.Vec2",
  9879. "x": 0,
  9880. "y": 0
  9881. },
  9882. "_fillStart": 0,
  9883. "_fillRange": 0,
  9884. "_isTrimmedMode": true,
  9885. "_atlas": null,
  9886. "_id": ""
  9887. },
  9888. {
  9889. "__type__": "cc.PrefabInfo",
  9890. "root": {
  9891. "__id__": 1
  9892. },
  9893. "asset": {
  9894. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  9895. },
  9896. "fileId": "d86hAbHdJGYbd/ihSPegG8",
  9897. "sync": false
  9898. },
  9899. {
  9900. "__type__": "c303cMObORMP73Of1/g1ZVg",
  9901. "_name": "",
  9902. "_objFlags": 0,
  9903. "node": {
  9904. "__id__": 231
  9905. },
  9906. "_enabled": true,
  9907. "panelType": 0,
  9908. "_id": ""
  9909. },
  9910. {
  9911. "__type__": "cc.PrefabInfo",
  9912. "root": {
  9913. "__id__": 1
  9914. },
  9915. "asset": {
  9916. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  9917. },
  9918. "fileId": "b9uEP5aWJGjIh5wydHcVOU",
  9919. "sync": false
  9920. },
  9921. {
  9922. "__type__": "cc.PrefabInfo",
  9923. "root": {
  9924. "__id__": 1
  9925. },
  9926. "asset": {
  9927. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  9928. },
  9929. "fileId": "39Ie9oTzNKkJ4BO7d295iY",
  9930. "sync": false
  9931. },
  9932. {
  9933. "__type__": "cc.Node",
  9934. "_name": "helpPart",
  9935. "_objFlags": 0,
  9936. "_parent": {
  9937. "__id__": 1
  9938. },
  9939. "_children": [
  9940. {
  9941. "__id__": 275
  9942. },
  9943. {
  9944. "__id__": 279
  9945. }
  9946. ],
  9947. "_active": false,
  9948. "_components": [],
  9949. "_prefab": {
  9950. "__id__": 321
  9951. },
  9952. "_opacity": 255,
  9953. "_color": {
  9954. "__type__": "cc.Color",
  9955. "r": 255,
  9956. "g": 255,
  9957. "b": 255,
  9958. "a": 255
  9959. },
  9960. "_contentSize": {
  9961. "__type__": "cc.Size",
  9962. "width": 0,
  9963. "height": 0
  9964. },
  9965. "_anchorPoint": {
  9966. "__type__": "cc.Vec2",
  9967. "x": 0.5,
  9968. "y": 0.5
  9969. },
  9970. "_trs": {
  9971. "__type__": "TypedArray",
  9972. "ctor": "Float64Array",
  9973. "array": [
  9974. 0,
  9975. 0,
  9976. 0,
  9977. 0,
  9978. 0,
  9979. 0,
  9980. 1,
  9981. 1,
  9982. 1,
  9983. 1
  9984. ]
  9985. },
  9986. "_eulerAngles": {
  9987. "__type__": "cc.Vec3",
  9988. "x": 0,
  9989. "y": 0,
  9990. "z": 0
  9991. },
  9992. "_skewX": 0,
  9993. "_skewY": 0,
  9994. "_is3DNode": false,
  9995. "_groupIndex": 0,
  9996. "groupIndex": 0,
  9997. "_id": ""
  9998. },
  9999. {
  10000. "__type__": "cc.Node",
  10001. "_name": "New Sprite(Splash)",
  10002. "_objFlags": 0,
  10003. "_parent": {
  10004. "__id__": 274
  10005. },
  10006. "_children": [],
  10007. "_active": true,
  10008. "_components": [
  10009. {
  10010. "__id__": 276
  10011. },
  10012. {
  10013. "__id__": 277
  10014. }
  10015. ],
  10016. "_prefab": {
  10017. "__id__": 278
  10018. },
  10019. "_opacity": 178,
  10020. "_color": {
  10021. "__type__": "cc.Color",
  10022. "r": 0,
  10023. "g": 0,
  10024. "b": 0,
  10025. "a": 255
  10026. },
  10027. "_contentSize": {
  10028. "__type__": "cc.Size",
  10029. "width": 750,
  10030. "height": 2000
  10031. },
  10032. "_anchorPoint": {
  10033. "__type__": "cc.Vec2",
  10034. "x": 0.5,
  10035. "y": 0.5
  10036. },
  10037. "_trs": {
  10038. "__type__": "TypedArray",
  10039. "ctor": "Float64Array",
  10040. "array": [
  10041. 0,
  10042. 0,
  10043. 0,
  10044. 0,
  10045. 0,
  10046. 0,
  10047. 1,
  10048. 1,
  10049. 1,
  10050. 1
  10051. ]
  10052. },
  10053. "_eulerAngles": {
  10054. "__type__": "cc.Vec3",
  10055. "x": 0,
  10056. "y": 0,
  10057. "z": 0
  10058. },
  10059. "_skewX": 0,
  10060. "_skewY": 0,
  10061. "_is3DNode": false,
  10062. "_groupIndex": 0,
  10063. "groupIndex": 0,
  10064. "_id": ""
  10065. },
  10066. {
  10067. "__type__": "cc.Sprite",
  10068. "_name": "New Sprite(Splash)<Sprite>",
  10069. "_objFlags": 0,
  10070. "node": {
  10071. "__id__": 275
  10072. },
  10073. "_enabled": true,
  10074. "_materials": [
  10075. {
  10076. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10077. }
  10078. ],
  10079. "_srcBlendFactor": 770,
  10080. "_dstBlendFactor": 771,
  10081. "_spriteFrame": {
  10082. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  10083. },
  10084. "_type": 0,
  10085. "_sizeMode": 0,
  10086. "_fillType": 0,
  10087. "_fillCenter": {
  10088. "__type__": "cc.Vec2",
  10089. "x": 0,
  10090. "y": 0
  10091. },
  10092. "_fillStart": 0,
  10093. "_fillRange": 0,
  10094. "_isTrimmedMode": true,
  10095. "_atlas": null,
  10096. "_id": ""
  10097. },
  10098. {
  10099. "__type__": "cc.BlockInputEvents",
  10100. "_name": "",
  10101. "_objFlags": 0,
  10102. "node": {
  10103. "__id__": 275
  10104. },
  10105. "_enabled": true,
  10106. "_id": ""
  10107. },
  10108. {
  10109. "__type__": "cc.PrefabInfo",
  10110. "root": {
  10111. "__id__": 1
  10112. },
  10113. "asset": {
  10114. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  10115. },
  10116. "fileId": "57mJ9Cpd9LLIMXhJgWv1ZY",
  10117. "sync": false
  10118. },
  10119. {
  10120. "__type__": "cc.Node",
  10121. "_name": "par",
  10122. "_objFlags": 0,
  10123. "_parent": {
  10124. "__id__": 274
  10125. },
  10126. "_children": [
  10127. {
  10128. "__id__": 280
  10129. },
  10130. {
  10131. "__id__": 283
  10132. },
  10133. {
  10134. "__id__": 286
  10135. },
  10136. {
  10137. "__id__": 289
  10138. },
  10139. {
  10140. "__id__": 292
  10141. },
  10142. {
  10143. "__id__": 311
  10144. }
  10145. ],
  10146. "_active": true,
  10147. "_components": [
  10148. {
  10149. "__id__": 319
  10150. }
  10151. ],
  10152. "_prefab": {
  10153. "__id__": 320
  10154. },
  10155. "_opacity": 255,
  10156. "_color": {
  10157. "__type__": "cc.Color",
  10158. "r": 255,
  10159. "g": 255,
  10160. "b": 255,
  10161. "a": 255
  10162. },
  10163. "_contentSize": {
  10164. "__type__": "cc.Size",
  10165. "width": 0,
  10166. "height": 0
  10167. },
  10168. "_anchorPoint": {
  10169. "__type__": "cc.Vec2",
  10170. "x": 0.5,
  10171. "y": 0.5
  10172. },
  10173. "_trs": {
  10174. "__type__": "TypedArray",
  10175. "ctor": "Float64Array",
  10176. "array": [
  10177. 0,
  10178. 0,
  10179. 0,
  10180. 0,
  10181. 0,
  10182. 0,
  10183. 1,
  10184. 1,
  10185. 1,
  10186. 1
  10187. ]
  10188. },
  10189. "_eulerAngles": {
  10190. "__type__": "cc.Vec3",
  10191. "x": 0,
  10192. "y": 0,
  10193. "z": 0
  10194. },
  10195. "_skewX": 0,
  10196. "_skewY": 0,
  10197. "_is3DNode": false,
  10198. "_groupIndex": 0,
  10199. "groupIndex": 0,
  10200. "_id": ""
  10201. },
  10202. {
  10203. "__type__": "cc.Node",
  10204. "_name": "tc_bg",
  10205. "_objFlags": 0,
  10206. "_parent": {
  10207. "__id__": 279
  10208. },
  10209. "_children": [],
  10210. "_active": true,
  10211. "_components": [
  10212. {
  10213. "__id__": 281
  10214. }
  10215. ],
  10216. "_prefab": {
  10217. "__id__": 282
  10218. },
  10219. "_opacity": 255,
  10220. "_color": {
  10221. "__type__": "cc.Color",
  10222. "r": 255,
  10223. "g": 255,
  10224. "b": 255,
  10225. "a": 255
  10226. },
  10227. "_contentSize": {
  10228. "__type__": "cc.Size",
  10229. "width": 700,
  10230. "height": 931
  10231. },
  10232. "_anchorPoint": {
  10233. "__type__": "cc.Vec2",
  10234. "x": 0.5,
  10235. "y": 1
  10236. },
  10237. "_trs": {
  10238. "__type__": "TypedArray",
  10239. "ctor": "Float64Array",
  10240. "array": [
  10241. 0,
  10242. 419.434,
  10243. 0,
  10244. 0,
  10245. 0,
  10246. 0,
  10247. 1,
  10248. 1,
  10249. 1,
  10250. 1
  10251. ]
  10252. },
  10253. "_eulerAngles": {
  10254. "__type__": "cc.Vec3",
  10255. "x": 0,
  10256. "y": 0,
  10257. "z": 0
  10258. },
  10259. "_skewX": 0,
  10260. "_skewY": 0,
  10261. "_is3DNode": false,
  10262. "_groupIndex": 0,
  10263. "groupIndex": 0,
  10264. "_id": ""
  10265. },
  10266. {
  10267. "__type__": "cc.Sprite",
  10268. "_name": "tc_bg<Sprite>",
  10269. "_objFlags": 0,
  10270. "node": {
  10271. "__id__": 280
  10272. },
  10273. "_enabled": true,
  10274. "_materials": [
  10275. {
  10276. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10277. }
  10278. ],
  10279. "_srcBlendFactor": 770,
  10280. "_dstBlendFactor": 771,
  10281. "_spriteFrame": {
  10282. "__uuid__": "c3764b6f-ea22-4c3a-a9b1-fb0c25494170"
  10283. },
  10284. "_type": 0,
  10285. "_sizeMode": 2,
  10286. "_fillType": 0,
  10287. "_fillCenter": {
  10288. "__type__": "cc.Vec2",
  10289. "x": 0,
  10290. "y": 0
  10291. },
  10292. "_fillStart": 0,
  10293. "_fillRange": 0,
  10294. "_isTrimmedMode": true,
  10295. "_atlas": null,
  10296. "_id": ""
  10297. },
  10298. {
  10299. "__type__": "cc.PrefabInfo",
  10300. "root": {
  10301. "__id__": 1
  10302. },
  10303. "asset": {
  10304. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  10305. },
  10306. "fileId": "36K+C/JjFBoqUiLErLHbZ3",
  10307. "sync": false
  10308. },
  10309. {
  10310. "__type__": "cc.Node",
  10311. "_name": "common_bg_bgtitle2",
  10312. "_objFlags": 0,
  10313. "_parent": {
  10314. "__id__": 279
  10315. },
  10316. "_children": [],
  10317. "_active": true,
  10318. "_components": [
  10319. {
  10320. "__id__": 284
  10321. }
  10322. ],
  10323. "_prefab": {
  10324. "__id__": 285
  10325. },
  10326. "_opacity": 255,
  10327. "_color": {
  10328. "__type__": "cc.Color",
  10329. "r": 255,
  10330. "g": 255,
  10331. "b": 255,
  10332. "a": 255
  10333. },
  10334. "_contentSize": {
  10335. "__type__": "cc.Size",
  10336. "width": 315,
  10337. "height": 72
  10338. },
  10339. "_anchorPoint": {
  10340. "__type__": "cc.Vec2",
  10341. "x": 0.5,
  10342. "y": 0.5
  10343. },
  10344. "_trs": {
  10345. "__type__": "TypedArray",
  10346. "ctor": "Float64Array",
  10347. "array": [
  10348. 0,
  10349. 345,
  10350. 0,
  10351. 0,
  10352. 0,
  10353. 0,
  10354. 1,
  10355. 1,
  10356. 1,
  10357. 1
  10358. ]
  10359. },
  10360. "_eulerAngles": {
  10361. "__type__": "cc.Vec3",
  10362. "x": 0,
  10363. "y": 0,
  10364. "z": 0
  10365. },
  10366. "_skewX": 0,
  10367. "_skewY": 0,
  10368. "_is3DNode": false,
  10369. "_groupIndex": 0,
  10370. "groupIndex": 0,
  10371. "_id": ""
  10372. },
  10373. {
  10374. "__type__": "cc.Sprite",
  10375. "_name": "",
  10376. "_objFlags": 0,
  10377. "node": {
  10378. "__id__": 283
  10379. },
  10380. "_enabled": true,
  10381. "_materials": [
  10382. {
  10383. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10384. }
  10385. ],
  10386. "_srcBlendFactor": 770,
  10387. "_dstBlendFactor": 771,
  10388. "_spriteFrame": {
  10389. "__uuid__": "dede1346-15f0-4cb7-b377-3cfacf46b330"
  10390. },
  10391. "_type": 0,
  10392. "_sizeMode": 1,
  10393. "_fillType": 0,
  10394. "_fillCenter": {
  10395. "__type__": "cc.Vec2",
  10396. "x": 0,
  10397. "y": 0
  10398. },
  10399. "_fillStart": 0,
  10400. "_fillRange": 0,
  10401. "_isTrimmedMode": true,
  10402. "_atlas": null,
  10403. "_id": ""
  10404. },
  10405. {
  10406. "__type__": "cc.PrefabInfo",
  10407. "root": {
  10408. "__id__": 1
  10409. },
  10410. "asset": {
  10411. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  10412. },
  10413. "fileId": "06jWCJSYBCb4d0QEJCPQyN",
  10414. "sync": false
  10415. },
  10416. {
  10417. "__type__": "cc.Node",
  10418. "_name": "safeDepositBox_txt_ts",
  10419. "_objFlags": 0,
  10420. "_parent": {
  10421. "__id__": 279
  10422. },
  10423. "_children": [],
  10424. "_active": true,
  10425. "_components": [
  10426. {
  10427. "__id__": 287
  10428. }
  10429. ],
  10430. "_prefab": {
  10431. "__id__": 288
  10432. },
  10433. "_opacity": 255,
  10434. "_color": {
  10435. "__type__": "cc.Color",
  10436. "r": 255,
  10437. "g": 255,
  10438. "b": 255,
  10439. "a": 255
  10440. },
  10441. "_contentSize": {
  10442. "__type__": "cc.Size",
  10443. "width": 88,
  10444. "height": 34
  10445. },
  10446. "_anchorPoint": {
  10447. "__type__": "cc.Vec2",
  10448. "x": 0.5,
  10449. "y": 0.5
  10450. },
  10451. "_trs": {
  10452. "__type__": "TypedArray",
  10453. "ctor": "Float64Array",
  10454. "array": [
  10455. 0,
  10456. 348,
  10457. 0,
  10458. 0,
  10459. 0,
  10460. 0,
  10461. 1,
  10462. 1,
  10463. 1,
  10464. 1
  10465. ]
  10466. },
  10467. "_eulerAngles": {
  10468. "__type__": "cc.Vec3",
  10469. "x": 0,
  10470. "y": 0,
  10471. "z": 0
  10472. },
  10473. "_skewX": 0,
  10474. "_skewY": 0,
  10475. "_is3DNode": false,
  10476. "_groupIndex": 0,
  10477. "groupIndex": 0,
  10478. "_id": ""
  10479. },
  10480. {
  10481. "__type__": "cc.Sprite",
  10482. "_name": "",
  10483. "_objFlags": 0,
  10484. "node": {
  10485. "__id__": 286
  10486. },
  10487. "_enabled": true,
  10488. "_materials": [
  10489. {
  10490. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10491. }
  10492. ],
  10493. "_srcBlendFactor": 770,
  10494. "_dstBlendFactor": 771,
  10495. "_spriteFrame": {
  10496. "__uuid__": "6661a305-e9cb-45ab-85fb-4251ba389c20"
  10497. },
  10498. "_type": 0,
  10499. "_sizeMode": 1,
  10500. "_fillType": 0,
  10501. "_fillCenter": {
  10502. "__type__": "cc.Vec2",
  10503. "x": 0,
  10504. "y": 0
  10505. },
  10506. "_fillStart": 0,
  10507. "_fillRange": 0,
  10508. "_isTrimmedMode": true,
  10509. "_atlas": null,
  10510. "_id": ""
  10511. },
  10512. {
  10513. "__type__": "cc.PrefabInfo",
  10514. "root": {
  10515. "__id__": 1
  10516. },
  10517. "asset": {
  10518. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  10519. },
  10520. "fileId": "12Xi3U9rJFiJYgzbyHEeVn",
  10521. "sync": false
  10522. },
  10523. {
  10524. "__type__": "cc.Node",
  10525. "_name": "labDes",
  10526. "_objFlags": 0,
  10527. "_parent": {
  10528. "__id__": 279
  10529. },
  10530. "_children": [],
  10531. "_active": true,
  10532. "_components": [
  10533. {
  10534. "__id__": 290
  10535. }
  10536. ],
  10537. "_prefab": {
  10538. "__id__": 291
  10539. },
  10540. "_opacity": 255,
  10541. "_color": {
  10542. "__type__": "cc.Color",
  10543. "r": 177,
  10544. "g": 26,
  10545. "b": 14,
  10546. "a": 255
  10547. },
  10548. "_contentSize": {
  10549. "__type__": "cc.Size",
  10550. "width": 151.66,
  10551. "height": 55.44
  10552. },
  10553. "_anchorPoint": {
  10554. "__type__": "cc.Vec2",
  10555. "x": 0,
  10556. "y": 0.5
  10557. },
  10558. "_trs": {
  10559. "__type__": "TypedArray",
  10560. "ctor": "Float64Array",
  10561. "array": [
  10562. -276.979,
  10563. 249.519,
  10564. 0,
  10565. 0,
  10566. 0,
  10567. 0,
  10568. 1,
  10569. 1,
  10570. 1,
  10571. 1
  10572. ]
  10573. },
  10574. "_eulerAngles": {
  10575. "__type__": "cc.Vec3",
  10576. "x": 0,
  10577. "y": 0,
  10578. "z": 0
  10579. },
  10580. "_skewX": 0,
  10581. "_skewY": 0,
  10582. "_is3DNode": false,
  10583. "_groupIndex": 0,
  10584. "groupIndex": 0,
  10585. "_id": ""
  10586. },
  10587. {
  10588. "__type__": "cc.Label",
  10589. "_name": "labDes<Label>",
  10590. "_objFlags": 0,
  10591. "node": {
  10592. "__id__": 289
  10593. },
  10594. "_enabled": true,
  10595. "_materials": [
  10596. {
  10597. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10598. }
  10599. ],
  10600. "_useOriginalSize": false,
  10601. "_string": "提现说明:",
  10602. "_N$string": "提现说明:",
  10603. "_fontSize": 35,
  10604. "_lineHeight": 44,
  10605. "_enableWrapText": true,
  10606. "_N$file": null,
  10607. "_isSystemFontUsed": true,
  10608. "_spacingX": 0,
  10609. "_batchAsBitmap": false,
  10610. "_styleFlags": 1,
  10611. "_underlineHeight": 0,
  10612. "_N$horizontalAlign": 1,
  10613. "_N$verticalAlign": 1,
  10614. "_N$fontFamily": "Arial",
  10615. "_N$overflow": 0,
  10616. "_N$cacheMode": 0,
  10617. "_id": ""
  10618. },
  10619. {
  10620. "__type__": "cc.PrefabInfo",
  10621. "root": {
  10622. "__id__": 1
  10623. },
  10624. "asset": {
  10625. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  10626. },
  10627. "fileId": "79X/RYlOBGBYn/0XzvIGZT",
  10628. "sync": false
  10629. },
  10630. {
  10631. "__type__": "cc.Node",
  10632. "_name": "New Layout",
  10633. "_objFlags": 0,
  10634. "_parent": {
  10635. "__id__": 279
  10636. },
  10637. "_children": [
  10638. {
  10639. "__id__": 293
  10640. },
  10641. {
  10642. "__id__": 296
  10643. },
  10644. {
  10645. "__id__": 299
  10646. },
  10647. {
  10648. "__id__": 302
  10649. },
  10650. {
  10651. "__id__": 305
  10652. }
  10653. ],
  10654. "_active": true,
  10655. "_components": [
  10656. {
  10657. "__id__": 308
  10658. },
  10659. {
  10660. "__id__": 309
  10661. }
  10662. ],
  10663. "_prefab": {
  10664. "__id__": 310
  10665. },
  10666. "_opacity": 255,
  10667. "_color": {
  10668. "__type__": "cc.Color",
  10669. "r": 255,
  10670. "g": 255,
  10671. "b": 255,
  10672. "a": 255
  10673. },
  10674. "_contentSize": {
  10675. "__type__": "cc.Size",
  10676. "width": 676,
  10677. "height": 260.5
  10678. },
  10679. "_anchorPoint": {
  10680. "__type__": "cc.Vec2",
  10681. "x": 0.5,
  10682. "y": 1
  10683. },
  10684. "_trs": {
  10685. "__type__": "TypedArray",
  10686. "ctor": "Float64Array",
  10687. "array": [
  10688. 11.402,
  10689. 207.346,
  10690. 0,
  10691. 0,
  10692. 0,
  10693. 0,
  10694. 1,
  10695. 1,
  10696. 1,
  10697. 1
  10698. ]
  10699. },
  10700. "_eulerAngles": {
  10701. "__type__": "cc.Vec3",
  10702. "x": 0,
  10703. "y": 0,
  10704. "z": 0
  10705. },
  10706. "_skewX": 0,
  10707. "_skewY": 0,
  10708. "_is3DNode": false,
  10709. "_groupIndex": 0,
  10710. "groupIndex": 0,
  10711. "_id": ""
  10712. },
  10713. {
  10714. "__type__": "cc.Node",
  10715. "_name": "labDes",
  10716. "_objFlags": 0,
  10717. "_parent": {
  10718. "__id__": 292
  10719. },
  10720. "_children": [],
  10721. "_active": true,
  10722. "_components": [
  10723. {
  10724. "__id__": 294
  10725. }
  10726. ],
  10727. "_prefab": {
  10728. "__id__": 295
  10729. },
  10730. "_opacity": 255,
  10731. "_color": {
  10732. "__type__": "cc.Color",
  10733. "r": 149,
  10734. "g": 105,
  10735. "b": 57,
  10736. "a": 255
  10737. },
  10738. "_contentSize": {
  10739. "__type__": "cc.Size",
  10740. "width": 600,
  10741. "height": 44.1
  10742. },
  10743. "_anchorPoint": {
  10744. "__type__": "cc.Vec2",
  10745. "x": 0,
  10746. "y": 0.5
  10747. },
  10748. "_trs": {
  10749. "__type__": "TypedArray",
  10750. "ctor": "Float64Array",
  10751. "array": [
  10752. -292.505,
  10753. -22.05,
  10754. 0,
  10755. 0,
  10756. 0,
  10757. 0,
  10758. 1,
  10759. 1,
  10760. 1,
  10761. 1
  10762. ]
  10763. },
  10764. "_eulerAngles": {
  10765. "__type__": "cc.Vec3",
  10766. "x": 0,
  10767. "y": 0,
  10768. "z": 0
  10769. },
  10770. "_skewX": 0,
  10771. "_skewY": 0,
  10772. "_is3DNode": false,
  10773. "_groupIndex": 0,
  10774. "groupIndex": 0,
  10775. "_id": ""
  10776. },
  10777. {
  10778. "__type__": "cc.Label",
  10779. "_name": "labDes<Label>",
  10780. "_objFlags": 0,
  10781. "node": {
  10782. "__id__": 293
  10783. },
  10784. "_enabled": true,
  10785. "_materials": [
  10786. {
  10787. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10788. }
  10789. ],
  10790. "_useOriginalSize": false,
  10791. "_string": "1、在现金夺宝中看一次视频获得1张夺宝券",
  10792. "_N$string": "1、在现金夺宝中看一次视频获得1张夺宝券",
  10793. "_fontSize": 28,
  10794. "_lineHeight": 35,
  10795. "_enableWrapText": true,
  10796. "_N$file": null,
  10797. "_isSystemFontUsed": true,
  10798. "_spacingX": 0,
  10799. "_batchAsBitmap": false,
  10800. "_styleFlags": 1,
  10801. "_underlineHeight": 0,
  10802. "_N$horizontalAlign": 0,
  10803. "_N$verticalAlign": 1,
  10804. "_N$fontFamily": "Arial",
  10805. "_N$overflow": 3,
  10806. "_N$cacheMode": 0,
  10807. "_id": ""
  10808. },
  10809. {
  10810. "__type__": "cc.PrefabInfo",
  10811. "root": {
  10812. "__id__": 1
  10813. },
  10814. "asset": {
  10815. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  10816. },
  10817. "fileId": "0aSh6o6g5Cf6ajYpnmQjfR",
  10818. "sync": false
  10819. },
  10820. {
  10821. "__type__": "cc.Node",
  10822. "_name": "labDes",
  10823. "_objFlags": 0,
  10824. "_parent": {
  10825. "__id__": 292
  10826. },
  10827. "_children": [],
  10828. "_active": true,
  10829. "_components": [
  10830. {
  10831. "__id__": 297
  10832. }
  10833. ],
  10834. "_prefab": {
  10835. "__id__": 298
  10836. },
  10837. "_opacity": 255,
  10838. "_color": {
  10839. "__type__": "cc.Color",
  10840. "r": 149,
  10841. "g": 105,
  10842. "b": 57,
  10843. "a": 255
  10844. },
  10845. "_contentSize": {
  10846. "__type__": "cc.Size",
  10847. "width": 600,
  10848. "height": 44.1
  10849. },
  10850. "_anchorPoint": {
  10851. "__type__": "cc.Vec2",
  10852. "x": 0,
  10853. "y": 0.5
  10854. },
  10855. "_trs": {
  10856. "__type__": "TypedArray",
  10857. "ctor": "Float64Array",
  10858. "array": [
  10859. -292.505,
  10860. -76.15,
  10861. 0,
  10862. 0,
  10863. 0,
  10864. 0,
  10865. 1,
  10866. 1,
  10867. 1,
  10868. 1
  10869. ]
  10870. },
  10871. "_eulerAngles": {
  10872. "__type__": "cc.Vec3",
  10873. "x": 0,
  10874. "y": 0,
  10875. "z": 0
  10876. },
  10877. "_skewX": 0,
  10878. "_skewY": 0,
  10879. "_is3DNode": false,
  10880. "_groupIndex": 0,
  10881. "groupIndex": 0,
  10882. "_id": ""
  10883. },
  10884. {
  10885. "__type__": "cc.Label",
  10886. "_name": "labDes<Label>",
  10887. "_objFlags": 0,
  10888. "node": {
  10889. "__id__": 296
  10890. },
  10891. "_enabled": true,
  10892. "_materials": [
  10893. {
  10894. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10895. }
  10896. ],
  10897. "_useOriginalSize": false,
  10898. "_string": "2、参与一次现金夺宝消耗一张夺宝券",
  10899. "_N$string": "2、参与一次现金夺宝消耗一张夺宝券",
  10900. "_fontSize": 28,
  10901. "_lineHeight": 35,
  10902. "_enableWrapText": true,
  10903. "_N$file": null,
  10904. "_isSystemFontUsed": true,
  10905. "_spacingX": 0,
  10906. "_batchAsBitmap": false,
  10907. "_styleFlags": 1,
  10908. "_underlineHeight": 0,
  10909. "_N$horizontalAlign": 0,
  10910. "_N$verticalAlign": 1,
  10911. "_N$fontFamily": "Arial",
  10912. "_N$overflow": 3,
  10913. "_N$cacheMode": 0,
  10914. "_id": ""
  10915. },
  10916. {
  10917. "__type__": "cc.PrefabInfo",
  10918. "root": {
  10919. "__id__": 1
  10920. },
  10921. "asset": {
  10922. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  10923. },
  10924. "fileId": "c4+LCt4XFO8a//NPg6o9Jq",
  10925. "sync": false
  10926. },
  10927. {
  10928. "__type__": "cc.Node",
  10929. "_name": "labDes",
  10930. "_objFlags": 0,
  10931. "_parent": {
  10932. "__id__": 292
  10933. },
  10934. "_children": [],
  10935. "_active": true,
  10936. "_components": [
  10937. {
  10938. "__id__": 300
  10939. }
  10940. ],
  10941. "_prefab": {
  10942. "__id__": 301
  10943. },
  10944. "_opacity": 255,
  10945. "_color": {
  10946. "__type__": "cc.Color",
  10947. "r": 149,
  10948. "g": 105,
  10949. "b": 57,
  10950. "a": 255
  10951. },
  10952. "_contentSize": {
  10953. "__type__": "cc.Size",
  10954. "width": 600,
  10955. "height": 44.1
  10956. },
  10957. "_anchorPoint": {
  10958. "__type__": "cc.Vec2",
  10959. "x": 0,
  10960. "y": 0.5
  10961. },
  10962. "_trs": {
  10963. "__type__": "TypedArray",
  10964. "ctor": "Float64Array",
  10965. "array": [
  10966. -292.505,
  10967. -130.25,
  10968. 0,
  10969. 0,
  10970. 0,
  10971. 0,
  10972. 1,
  10973. 1,
  10974. 1,
  10975. 1
  10976. ]
  10977. },
  10978. "_eulerAngles": {
  10979. "__type__": "cc.Vec3",
  10980. "x": 0,
  10981. "y": 0,
  10982. "z": 0
  10983. },
  10984. "_skewX": 0,
  10985. "_skewY": 0,
  10986. "_is3DNode": false,
  10987. "_groupIndex": 0,
  10988. "groupIndex": 0,
  10989. "_id": ""
  10990. },
  10991. {
  10992. "__type__": "cc.Label",
  10993. "_name": "labDes<Label>",
  10994. "_objFlags": 0,
  10995. "node": {
  10996. "__id__": 299
  10997. },
  10998. "_enabled": true,
  10999. "_materials": [
  11000. {
  11001. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11002. }
  11003. ],
  11004. "_useOriginalSize": false,
  11005. "_string": "3、观看视频可以提升中奖几率",
  11006. "_N$string": "3、观看视频可以提升中奖几率",
  11007. "_fontSize": 28,
  11008. "_lineHeight": 35,
  11009. "_enableWrapText": true,
  11010. "_N$file": null,
  11011. "_isSystemFontUsed": true,
  11012. "_spacingX": 0,
  11013. "_batchAsBitmap": false,
  11014. "_styleFlags": 1,
  11015. "_underlineHeight": 0,
  11016. "_N$horizontalAlign": 0,
  11017. "_N$verticalAlign": 1,
  11018. "_N$fontFamily": "Arial",
  11019. "_N$overflow": 3,
  11020. "_N$cacheMode": 0,
  11021. "_id": ""
  11022. },
  11023. {
  11024. "__type__": "cc.PrefabInfo",
  11025. "root": {
  11026. "__id__": 1
  11027. },
  11028. "asset": {
  11029. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  11030. },
  11031. "fileId": "22P6Jz5AZH35R50uxHwzW/",
  11032. "sync": false
  11033. },
  11034. {
  11035. "__type__": "cc.Node",
  11036. "_name": "labDes",
  11037. "_objFlags": 0,
  11038. "_parent": {
  11039. "__id__": 292
  11040. },
  11041. "_children": [],
  11042. "_active": true,
  11043. "_components": [
  11044. {
  11045. "__id__": 303
  11046. }
  11047. ],
  11048. "_prefab": {
  11049. "__id__": 304
  11050. },
  11051. "_opacity": 255,
  11052. "_color": {
  11053. "__type__": "cc.Color",
  11054. "r": 149,
  11055. "g": 105,
  11056. "b": 57,
  11057. "a": 255
  11058. },
  11059. "_contentSize": {
  11060. "__type__": "cc.Size",
  11061. "width": 600,
  11062. "height": 44.1
  11063. },
  11064. "_anchorPoint": {
  11065. "__type__": "cc.Vec2",
  11066. "x": 0,
  11067. "y": 0.5
  11068. },
  11069. "_trs": {
  11070. "__type__": "TypedArray",
  11071. "ctor": "Float64Array",
  11072. "array": [
  11073. -292.505,
  11074. -184.35000000000002,
  11075. 0,
  11076. 0,
  11077. 0,
  11078. 0,
  11079. 1,
  11080. 1,
  11081. 1,
  11082. 1
  11083. ]
  11084. },
  11085. "_eulerAngles": {
  11086. "__type__": "cc.Vec3",
  11087. "x": 0,
  11088. "y": 0,
  11089. "z": 0
  11090. },
  11091. "_skewX": 0,
  11092. "_skewY": 0,
  11093. "_is3DNode": false,
  11094. "_groupIndex": 0,
  11095. "groupIndex": 0,
  11096. "_id": ""
  11097. },
  11098. {
  11099. "__type__": "cc.Label",
  11100. "_name": "labDes<Label>",
  11101. "_objFlags": 0,
  11102. "node": {
  11103. "__id__": 302
  11104. },
  11105. "_enabled": true,
  11106. "_materials": [
  11107. {
  11108. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11109. }
  11110. ],
  11111. "_useOriginalSize": false,
  11112. "_string": "4、参与夺宝增加开奖进度,进度满立即开奖",
  11113. "_N$string": "4、参与夺宝增加开奖进度,进度满立即开奖",
  11114. "_fontSize": 28,
  11115. "_lineHeight": 35,
  11116. "_enableWrapText": true,
  11117. "_N$file": null,
  11118. "_isSystemFontUsed": true,
  11119. "_spacingX": 0,
  11120. "_batchAsBitmap": false,
  11121. "_styleFlags": 1,
  11122. "_underlineHeight": 0,
  11123. "_N$horizontalAlign": 0,
  11124. "_N$verticalAlign": 1,
  11125. "_N$fontFamily": "Arial",
  11126. "_N$overflow": 3,
  11127. "_N$cacheMode": 0,
  11128. "_id": ""
  11129. },
  11130. {
  11131. "__type__": "cc.PrefabInfo",
  11132. "root": {
  11133. "__id__": 1
  11134. },
  11135. "asset": {
  11136. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  11137. },
  11138. "fileId": "8fV4V0W6tBiJnooKvzb36q",
  11139. "sync": false
  11140. },
  11141. {
  11142. "__type__": "cc.Node",
  11143. "_name": "labTimes",
  11144. "_objFlags": 0,
  11145. "_parent": {
  11146. "__id__": 292
  11147. },
  11148. "_children": [],
  11149. "_active": true,
  11150. "_components": [
  11151. {
  11152. "__id__": 306
  11153. }
  11154. ],
  11155. "_prefab": {
  11156. "__id__": 307
  11157. },
  11158. "_opacity": 255,
  11159. "_color": {
  11160. "__type__": "cc.Color",
  11161. "r": 149,
  11162. "g": 105,
  11163. "b": 57,
  11164. "a": 255
  11165. },
  11166. "_contentSize": {
  11167. "__type__": "cc.Size",
  11168. "width": 600,
  11169. "height": 44.1
  11170. },
  11171. "_anchorPoint": {
  11172. "__type__": "cc.Vec2",
  11173. "x": 0,
  11174. "y": 0.5
  11175. },
  11176. "_trs": {
  11177. "__type__": "TypedArray",
  11178. "ctor": "Float64Array",
  11179. "array": [
  11180. -292.505,
  11181. -238.45000000000005,
  11182. 0,
  11183. 0,
  11184. 0,
  11185. 0,
  11186. 1,
  11187. 1,
  11188. 1,
  11189. 1
  11190. ]
  11191. },
  11192. "_eulerAngles": {
  11193. "__type__": "cc.Vec3",
  11194. "x": 0,
  11195. "y": 0,
  11196. "z": 0
  11197. },
  11198. "_skewX": 0,
  11199. "_skewY": 0,
  11200. "_is3DNode": false,
  11201. "_groupIndex": 0,
  11202. "groupIndex": 0,
  11203. "_id": ""
  11204. },
  11205. {
  11206. "__type__": "cc.Label",
  11207. "_name": "labDes<Label>",
  11208. "_objFlags": 0,
  11209. "node": {
  11210. "__id__": 305
  11211. },
  11212. "_enabled": true,
  11213. "_materials": [
  11214. {
  11215. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11216. }
  11217. ],
  11218. "_useOriginalSize": true,
  11219. "_string": "5、每人每天最多只能参加10次现金夺宝",
  11220. "_N$string": "5、每人每天最多只能参加10次现金夺宝",
  11221. "_fontSize": 28,
  11222. "_lineHeight": 35,
  11223. "_enableWrapText": true,
  11224. "_N$file": null,
  11225. "_isSystemFontUsed": true,
  11226. "_spacingX": 0,
  11227. "_batchAsBitmap": false,
  11228. "_styleFlags": 1,
  11229. "_underlineHeight": 0,
  11230. "_N$horizontalAlign": 0,
  11231. "_N$verticalAlign": 1,
  11232. "_N$fontFamily": "Arial",
  11233. "_N$overflow": 3,
  11234. "_N$cacheMode": 0,
  11235. "_id": ""
  11236. },
  11237. {
  11238. "__type__": "cc.PrefabInfo",
  11239. "root": {
  11240. "__id__": 1
  11241. },
  11242. "asset": {
  11243. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  11244. },
  11245. "fileId": "3c4DweJNlMrIRZgHMqbBGQ",
  11246. "sync": false
  11247. },
  11248. {
  11249. "__type__": "cc.Sprite",
  11250. "_name": "New Layout<Sprite>",
  11251. "_objFlags": 0,
  11252. "node": {
  11253. "__id__": 292
  11254. },
  11255. "_enabled": true,
  11256. "_materials": [
  11257. {
  11258. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11259. }
  11260. ],
  11261. "_srcBlendFactor": 770,
  11262. "_dstBlendFactor": 771,
  11263. "_spriteFrame": null,
  11264. "_type": 1,
  11265. "_sizeMode": 0,
  11266. "_fillType": 0,
  11267. "_fillCenter": {
  11268. "__type__": "cc.Vec2",
  11269. "x": 0,
  11270. "y": 0
  11271. },
  11272. "_fillStart": 0,
  11273. "_fillRange": 0,
  11274. "_isTrimmedMode": true,
  11275. "_atlas": null,
  11276. "_id": ""
  11277. },
  11278. {
  11279. "__type__": "cc.Layout",
  11280. "_name": "",
  11281. "_objFlags": 0,
  11282. "node": {
  11283. "__id__": 292
  11284. },
  11285. "_enabled": true,
  11286. "_layoutSize": {
  11287. "__type__": "cc.Size",
  11288. "width": 676,
  11289. "height": 260.5
  11290. },
  11291. "_resize": 1,
  11292. "_N$layoutType": 2,
  11293. "_N$cellSize": {
  11294. "__type__": "cc.Size",
  11295. "width": 40,
  11296. "height": 40
  11297. },
  11298. "_N$startAxis": 0,
  11299. "_N$paddingLeft": 0,
  11300. "_N$paddingRight": 0,
  11301. "_N$paddingTop": 0,
  11302. "_N$paddingBottom": 0,
  11303. "_N$spacingX": 0,
  11304. "_N$spacingY": 10,
  11305. "_N$verticalDirection": 1,
  11306. "_N$horizontalDirection": 0,
  11307. "_N$affectedByScale": false,
  11308. "_id": ""
  11309. },
  11310. {
  11311. "__type__": "cc.PrefabInfo",
  11312. "root": {
  11313. "__id__": 1
  11314. },
  11315. "asset": {
  11316. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  11317. },
  11318. "fileId": "f4HFE8BnFPz6d0Vog4ZUsM",
  11319. "sync": false
  11320. },
  11321. {
  11322. "__type__": "cc.Node",
  11323. "_name": "btnHClose",
  11324. "_objFlags": 0,
  11325. "_parent": {
  11326. "__id__": 279
  11327. },
  11328. "_children": [
  11329. {
  11330. "__id__": 312
  11331. }
  11332. ],
  11333. "_active": true,
  11334. "_components": [
  11335. {
  11336. "__id__": 316
  11337. }
  11338. ],
  11339. "_prefab": {
  11340. "__id__": 318
  11341. },
  11342. "_opacity": 255,
  11343. "_color": {
  11344. "__type__": "cc.Color",
  11345. "r": 255,
  11346. "g": 255,
  11347. "b": 255,
  11348. "a": 255
  11349. },
  11350. "_contentSize": {
  11351. "__type__": "cc.Size",
  11352. "width": 70,
  11353. "height": 80
  11354. },
  11355. "_anchorPoint": {
  11356. "__type__": "cc.Vec2",
  11357. "x": 0.5,
  11358. "y": 0.5
  11359. },
  11360. "_trs": {
  11361. "__type__": "TypedArray",
  11362. "ctor": "Float64Array",
  11363. "array": [
  11364. 289.006,
  11365. 377.183,
  11366. 0,
  11367. 0,
  11368. 0,
  11369. 0,
  11370. 1,
  11371. 1,
  11372. 1,
  11373. 1
  11374. ]
  11375. },
  11376. "_eulerAngles": {
  11377. "__type__": "cc.Vec3",
  11378. "x": 0,
  11379. "y": 0,
  11380. "z": 0
  11381. },
  11382. "_skewX": 0,
  11383. "_skewY": 0,
  11384. "_is3DNode": false,
  11385. "_groupIndex": 0,
  11386. "groupIndex": 0,
  11387. "_id": ""
  11388. },
  11389. {
  11390. "__type__": "cc.Node",
  11391. "_name": "Background",
  11392. "_objFlags": 512,
  11393. "_parent": {
  11394. "__id__": 311
  11395. },
  11396. "_children": [],
  11397. "_active": true,
  11398. "_components": [
  11399. {
  11400. "__id__": 313
  11401. },
  11402. {
  11403. "__id__": 314
  11404. }
  11405. ],
  11406. "_prefab": {
  11407. "__id__": 315
  11408. },
  11409. "_opacity": 255,
  11410. "_color": {
  11411. "__type__": "cc.Color",
  11412. "r": 255,
  11413. "g": 255,
  11414. "b": 255,
  11415. "a": 255
  11416. },
  11417. "_contentSize": {
  11418. "__type__": "cc.Size",
  11419. "width": 84,
  11420. "height": 86
  11421. },
  11422. "_anchorPoint": {
  11423. "__type__": "cc.Vec2",
  11424. "x": 0.5,
  11425. "y": 0.5
  11426. },
  11427. "_trs": {
  11428. "__type__": "TypedArray",
  11429. "ctor": "Float64Array",
  11430. "array": [
  11431. 0,
  11432. 6.5,
  11433. 0,
  11434. 0,
  11435. 0,
  11436. 0,
  11437. 1,
  11438. 1,
  11439. 1,
  11440. 1
  11441. ]
  11442. },
  11443. "_eulerAngles": {
  11444. "__type__": "cc.Vec3",
  11445. "x": 0,
  11446. "y": 0,
  11447. "z": 0
  11448. },
  11449. "_skewX": 0,
  11450. "_skewY": 0,
  11451. "_is3DNode": false,
  11452. "_groupIndex": 0,
  11453. "groupIndex": 0,
  11454. "_id": ""
  11455. },
  11456. {
  11457. "__type__": "cc.Sprite",
  11458. "_name": "Background<Sprite>",
  11459. "_objFlags": 0,
  11460. "node": {
  11461. "__id__": 312
  11462. },
  11463. "_enabled": true,
  11464. "_materials": [
  11465. {
  11466. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11467. }
  11468. ],
  11469. "_srcBlendFactor": 770,
  11470. "_dstBlendFactor": 771,
  11471. "_spriteFrame": {
  11472. "__uuid__": "603da3f4-4b72-4b37-9bc0-18b82301d5b8"
  11473. },
  11474. "_type": 0,
  11475. "_sizeMode": 2,
  11476. "_fillType": 0,
  11477. "_fillCenter": {
  11478. "__type__": "cc.Vec2",
  11479. "x": 0,
  11480. "y": 0
  11481. },
  11482. "_fillStart": 0,
  11483. "_fillRange": 0,
  11484. "_isTrimmedMode": true,
  11485. "_atlas": null,
  11486. "_id": ""
  11487. },
  11488. {
  11489. "__type__": "cc.Widget",
  11490. "_name": "",
  11491. "_objFlags": 0,
  11492. "node": {
  11493. "__id__": 312
  11494. },
  11495. "_enabled": true,
  11496. "alignMode": 0,
  11497. "_target": null,
  11498. "_alignFlags": 1,
  11499. "_left": 0,
  11500. "_right": 0,
  11501. "_top": -9.5,
  11502. "_bottom": 30,
  11503. "_verticalCenter": 0,
  11504. "_horizontalCenter": 0,
  11505. "_isAbsLeft": true,
  11506. "_isAbsRight": true,
  11507. "_isAbsTop": true,
  11508. "_isAbsBottom": true,
  11509. "_isAbsHorizontalCenter": true,
  11510. "_isAbsVerticalCenter": true,
  11511. "_originalWidth": 100,
  11512. "_originalHeight": 40,
  11513. "_id": ""
  11514. },
  11515. {
  11516. "__type__": "cc.PrefabInfo",
  11517. "root": {
  11518. "__id__": 1
  11519. },
  11520. "asset": {
  11521. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  11522. },
  11523. "fileId": "9845so6URONoFmFvoipGEZ",
  11524. "sync": false
  11525. },
  11526. {
  11527. "__type__": "cc.Button",
  11528. "_name": "",
  11529. "_objFlags": 0,
  11530. "node": {
  11531. "__id__": 311
  11532. },
  11533. "_enabled": true,
  11534. "_normalMaterial": {
  11535. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11536. },
  11537. "_grayMaterial": null,
  11538. "duration": 0.1,
  11539. "zoomScale": 0.8,
  11540. "clickEvents": [
  11541. {
  11542. "__id__": 317
  11543. }
  11544. ],
  11545. "_N$interactable": true,
  11546. "_N$enableAutoGrayEffect": false,
  11547. "_N$transition": 3,
  11548. "transition": 3,
  11549. "_N$normalColor": {
  11550. "__type__": "cc.Color",
  11551. "r": 230,
  11552. "g": 230,
  11553. "b": 230,
  11554. "a": 255
  11555. },
  11556. "_N$pressedColor": {
  11557. "__type__": "cc.Color",
  11558. "r": 200,
  11559. "g": 200,
  11560. "b": 200,
  11561. "a": 255
  11562. },
  11563. "pressedColor": {
  11564. "__type__": "cc.Color",
  11565. "r": 200,
  11566. "g": 200,
  11567. "b": 200,
  11568. "a": 255
  11569. },
  11570. "_N$hoverColor": {
  11571. "__type__": "cc.Color",
  11572. "r": 255,
  11573. "g": 255,
  11574. "b": 255,
  11575. "a": 255
  11576. },
  11577. "hoverColor": {
  11578. "__type__": "cc.Color",
  11579. "r": 255,
  11580. "g": 255,
  11581. "b": 255,
  11582. "a": 255
  11583. },
  11584. "_N$disabledColor": {
  11585. "__type__": "cc.Color",
  11586. "r": 120,
  11587. "g": 120,
  11588. "b": 120,
  11589. "a": 200
  11590. },
  11591. "_N$normalSprite": {
  11592. "__uuid__": "c532e90f-bf60-436c-9c3e-84d95d058a4f"
  11593. },
  11594. "_N$pressedSprite": {
  11595. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  11596. },
  11597. "pressedSprite": {
  11598. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  11599. },
  11600. "_N$hoverSprite": {
  11601. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  11602. },
  11603. "hoverSprite": {
  11604. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  11605. },
  11606. "_N$disabledSprite": {
  11607. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  11608. },
  11609. "_N$target": {
  11610. "__id__": 311
  11611. },
  11612. "_id": ""
  11613. },
  11614. {
  11615. "__type__": "cc.ClickEvent",
  11616. "target": {
  11617. "__id__": 1
  11618. },
  11619. "component": "",
  11620. "_componentId": "b150700q4JFCaxD1R8c6DRF",
  11621. "handler": "clickCloseHelp",
  11622. "customEventData": ""
  11623. },
  11624. {
  11625. "__type__": "cc.PrefabInfo",
  11626. "root": {
  11627. "__id__": 1
  11628. },
  11629. "asset": {
  11630. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  11631. },
  11632. "fileId": "251D258rxOJauD7c7cPqyy",
  11633. "sync": false
  11634. },
  11635. {
  11636. "__type__": "c303cMObORMP73Of1/g1ZVg",
  11637. "_name": "",
  11638. "_objFlags": 0,
  11639. "node": {
  11640. "__id__": 279
  11641. },
  11642. "_enabled": true,
  11643. "panelType": 0,
  11644. "_id": ""
  11645. },
  11646. {
  11647. "__type__": "cc.PrefabInfo",
  11648. "root": {
  11649. "__id__": 1
  11650. },
  11651. "asset": {
  11652. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  11653. },
  11654. "fileId": "bdDlJ/VbhPRJA9mh2yzy8J",
  11655. "sync": false
  11656. },
  11657. {
  11658. "__type__": "cc.PrefabInfo",
  11659. "root": {
  11660. "__id__": 1
  11661. },
  11662. "asset": {
  11663. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  11664. },
  11665. "fileId": "e8w+XqOiJKQKkym/4RKZiH",
  11666. "sync": false
  11667. },
  11668. {
  11669. "__type__": "cc.Node",
  11670. "_name": "loadPart",
  11671. "_objFlags": 0,
  11672. "_parent": {
  11673. "__id__": 1
  11674. },
  11675. "_children": [
  11676. {
  11677. "__id__": 323
  11678. },
  11679. {
  11680. "__id__": 327
  11681. },
  11682. {
  11683. "__id__": 330
  11684. },
  11685. {
  11686. "__id__": 333
  11687. },
  11688. {
  11689. "__id__": 336
  11690. },
  11691. {
  11692. "__id__": 339
  11693. },
  11694. {
  11695. "__id__": 342
  11696. }
  11697. ],
  11698. "_active": false,
  11699. "_components": [],
  11700. "_prefab": {
  11701. "__id__": 346
  11702. },
  11703. "_opacity": 255,
  11704. "_color": {
  11705. "__type__": "cc.Color",
  11706. "r": 255,
  11707. "g": 255,
  11708. "b": 255,
  11709. "a": 255
  11710. },
  11711. "_contentSize": {
  11712. "__type__": "cc.Size",
  11713. "width": 0,
  11714. "height": 0
  11715. },
  11716. "_anchorPoint": {
  11717. "__type__": "cc.Vec2",
  11718. "x": 0.5,
  11719. "y": 0.5
  11720. },
  11721. "_trs": {
  11722. "__type__": "TypedArray",
  11723. "ctor": "Float64Array",
  11724. "array": [
  11725. 0,
  11726. 0,
  11727. 0,
  11728. 0,
  11729. 0,
  11730. 0,
  11731. 1,
  11732. 1,
  11733. 1,
  11734. 1
  11735. ]
  11736. },
  11737. "_eulerAngles": {
  11738. "__type__": "cc.Vec3",
  11739. "x": 0,
  11740. "y": 0,
  11741. "z": 0
  11742. },
  11743. "_skewX": 0,
  11744. "_skewY": 0,
  11745. "_is3DNode": false,
  11746. "_groupIndex": 0,
  11747. "groupIndex": 0,
  11748. "_id": ""
  11749. },
  11750. {
  11751. "__type__": "cc.Node",
  11752. "_name": "New Sprite(Splash) copy",
  11753. "_objFlags": 0,
  11754. "_parent": {
  11755. "__id__": 322
  11756. },
  11757. "_children": [],
  11758. "_active": true,
  11759. "_components": [
  11760. {
  11761. "__id__": 324
  11762. },
  11763. {
  11764. "__id__": 325
  11765. }
  11766. ],
  11767. "_prefab": {
  11768. "__id__": 326
  11769. },
  11770. "_opacity": 0,
  11771. "_color": {
  11772. "__type__": "cc.Color",
  11773. "r": 255,
  11774. "g": 255,
  11775. "b": 255,
  11776. "a": 255
  11777. },
  11778. "_contentSize": {
  11779. "__type__": "cc.Size",
  11780. "width": 750,
  11781. "height": 2000
  11782. },
  11783. "_anchorPoint": {
  11784. "__type__": "cc.Vec2",
  11785. "x": 0.5,
  11786. "y": 0.5
  11787. },
  11788. "_trs": {
  11789. "__type__": "TypedArray",
  11790. "ctor": "Float64Array",
  11791. "array": [
  11792. 0,
  11793. 0,
  11794. 0,
  11795. 0,
  11796. 0,
  11797. 0,
  11798. 1,
  11799. 1,
  11800. 1,
  11801. 1
  11802. ]
  11803. },
  11804. "_eulerAngles": {
  11805. "__type__": "cc.Vec3",
  11806. "x": 0,
  11807. "y": 0,
  11808. "z": 0
  11809. },
  11810. "_skewX": 0,
  11811. "_skewY": 0,
  11812. "_is3DNode": false,
  11813. "_groupIndex": 0,
  11814. "groupIndex": 0,
  11815. "_id": ""
  11816. },
  11817. {
  11818. "__type__": "cc.Sprite",
  11819. "_name": "",
  11820. "_objFlags": 0,
  11821. "node": {
  11822. "__id__": 323
  11823. },
  11824. "_enabled": true,
  11825. "_materials": [
  11826. {
  11827. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11828. }
  11829. ],
  11830. "_srcBlendFactor": 770,
  11831. "_dstBlendFactor": 771,
  11832. "_spriteFrame": {
  11833. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  11834. },
  11835. "_type": 0,
  11836. "_sizeMode": 0,
  11837. "_fillType": 0,
  11838. "_fillCenter": {
  11839. "__type__": "cc.Vec2",
  11840. "x": 0,
  11841. "y": 0
  11842. },
  11843. "_fillStart": 0,
  11844. "_fillRange": 0,
  11845. "_isTrimmedMode": true,
  11846. "_atlas": null,
  11847. "_id": ""
  11848. },
  11849. {
  11850. "__type__": "cc.BlockInputEvents",
  11851. "_name": "",
  11852. "_objFlags": 0,
  11853. "node": {
  11854. "__id__": 323
  11855. },
  11856. "_enabled": true,
  11857. "_id": ""
  11858. },
  11859. {
  11860. "__type__": "cc.PrefabInfo",
  11861. "root": {
  11862. "__id__": 1
  11863. },
  11864. "asset": {
  11865. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  11866. },
  11867. "fileId": "a0HxXJNjtC1ZeiEyPXw4ku",
  11868. "sync": false
  11869. },
  11870. {
  11871. "__type__": "cc.Node",
  11872. "_name": "loading_tisp_bg",
  11873. "_objFlags": 0,
  11874. "_parent": {
  11875. "__id__": 322
  11876. },
  11877. "_children": [],
  11878. "_active": true,
  11879. "_components": [
  11880. {
  11881. "__id__": 328
  11882. }
  11883. ],
  11884. "_prefab": {
  11885. "__id__": 329
  11886. },
  11887. "_opacity": 255,
  11888. "_color": {
  11889. "__type__": "cc.Color",
  11890. "r": 255,
  11891. "g": 255,
  11892. "b": 255,
  11893. "a": 255
  11894. },
  11895. "_contentSize": {
  11896. "__type__": "cc.Size",
  11897. "width": 263,
  11898. "height": 239
  11899. },
  11900. "_anchorPoint": {
  11901. "__type__": "cc.Vec2",
  11902. "x": 0.5,
  11903. "y": 0.5
  11904. },
  11905. "_trs": {
  11906. "__type__": "TypedArray",
  11907. "ctor": "Float64Array",
  11908. "array": [
  11909. 0,
  11910. 0,
  11911. 0,
  11912. 0,
  11913. 0,
  11914. 0,
  11915. 1,
  11916. 1,
  11917. 1,
  11918. 1
  11919. ]
  11920. },
  11921. "_eulerAngles": {
  11922. "__type__": "cc.Vec3",
  11923. "x": 0,
  11924. "y": 0,
  11925. "z": 0
  11926. },
  11927. "_skewX": 0,
  11928. "_skewY": 0,
  11929. "_is3DNode": false,
  11930. "_groupIndex": 0,
  11931. "groupIndex": 0,
  11932. "_id": ""
  11933. },
  11934. {
  11935. "__type__": "cc.Sprite",
  11936. "_name": "",
  11937. "_objFlags": 0,
  11938. "node": {
  11939. "__id__": 327
  11940. },
  11941. "_enabled": true,
  11942. "_materials": [
  11943. {
  11944. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11945. }
  11946. ],
  11947. "_srcBlendFactor": 770,
  11948. "_dstBlendFactor": 771,
  11949. "_spriteFrame": {
  11950. "__uuid__": "4ea4675b-2719-406a-a0ba-34e968abc0b6"
  11951. },
  11952. "_type": 0,
  11953. "_sizeMode": 1,
  11954. "_fillType": 0,
  11955. "_fillCenter": {
  11956. "__type__": "cc.Vec2",
  11957. "x": 0,
  11958. "y": 0
  11959. },
  11960. "_fillStart": 0,
  11961. "_fillRange": 0,
  11962. "_isTrimmedMode": true,
  11963. "_atlas": null,
  11964. "_id": ""
  11965. },
  11966. {
  11967. "__type__": "cc.PrefabInfo",
  11968. "root": {
  11969. "__id__": 1
  11970. },
  11971. "asset": {
  11972. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  11973. },
  11974. "fileId": "3fCbgW+JBHXrSnGZTowge7",
  11975. "sync": false
  11976. },
  11977. {
  11978. "__type__": "cc.Node",
  11979. "_name": "New Label",
  11980. "_objFlags": 0,
  11981. "_parent": {
  11982. "__id__": 322
  11983. },
  11984. "_children": [],
  11985. "_active": true,
  11986. "_components": [
  11987. {
  11988. "__id__": 331
  11989. }
  11990. ],
  11991. "_prefab": {
  11992. "__id__": 332
  11993. },
  11994. "_opacity": 255,
  11995. "_color": {
  11996. "__type__": "cc.Color",
  11997. "r": 255,
  11998. "g": 255,
  11999. "b": 255,
  12000. "a": 255
  12001. },
  12002. "_contentSize": {
  12003. "__type__": "cc.Size",
  12004. "width": 96,
  12005. "height": 50.4
  12006. },
  12007. "_anchorPoint": {
  12008. "__type__": "cc.Vec2",
  12009. "x": 0.5,
  12010. "y": 0.5
  12011. },
  12012. "_trs": {
  12013. "__type__": "TypedArray",
  12014. "ctor": "Float64Array",
  12015. "array": [
  12016. 0,
  12017. -25.111,
  12018. 0,
  12019. 0,
  12020. 0,
  12021. 0,
  12022. 1,
  12023. 1,
  12024. 1,
  12025. 1
  12026. ]
  12027. },
  12028. "_eulerAngles": {
  12029. "__type__": "cc.Vec3",
  12030. "x": 0,
  12031. "y": 0,
  12032. "z": 0
  12033. },
  12034. "_skewX": 0,
  12035. "_skewY": 0,
  12036. "_is3DNode": false,
  12037. "_groupIndex": 0,
  12038. "groupIndex": 0,
  12039. "_id": ""
  12040. },
  12041. {
  12042. "__type__": "cc.Label",
  12043. "_name": "",
  12044. "_objFlags": 0,
  12045. "node": {
  12046. "__id__": 330
  12047. },
  12048. "_enabled": true,
  12049. "_materials": [
  12050. {
  12051. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12052. }
  12053. ],
  12054. "_useOriginalSize": false,
  12055. "_string": "处理中",
  12056. "_N$string": "处理中",
  12057. "_fontSize": 32,
  12058. "_lineHeight": 40,
  12059. "_enableWrapText": true,
  12060. "_N$file": null,
  12061. "_isSystemFontUsed": true,
  12062. "_spacingX": 0,
  12063. "_batchAsBitmap": false,
  12064. "_styleFlags": 0,
  12065. "_underlineHeight": 0,
  12066. "_N$horizontalAlign": 1,
  12067. "_N$verticalAlign": 1,
  12068. "_N$fontFamily": "Arial",
  12069. "_N$overflow": 0,
  12070. "_N$cacheMode": 0,
  12071. "_id": ""
  12072. },
  12073. {
  12074. "__type__": "cc.PrefabInfo",
  12075. "root": {
  12076. "__id__": 1
  12077. },
  12078. "asset": {
  12079. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  12080. },
  12081. "fileId": "94rQ1cxFVB5IKWFOidK5lw",
  12082. "sync": false
  12083. },
  12084. {
  12085. "__type__": "cc.Node",
  12086. "_name": "spot_2",
  12087. "_objFlags": 0,
  12088. "_parent": {
  12089. "__id__": 322
  12090. },
  12091. "_children": [],
  12092. "_active": true,
  12093. "_components": [
  12094. {
  12095. "__id__": 334
  12096. }
  12097. ],
  12098. "_prefab": {
  12099. "__id__": 335
  12100. },
  12101. "_opacity": 255,
  12102. "_color": {
  12103. "__type__": "cc.Color",
  12104. "r": 255,
  12105. "g": 255,
  12106. "b": 255,
  12107. "a": 255
  12108. },
  12109. "_contentSize": {
  12110. "__type__": "cc.Size",
  12111. "width": 11,
  12112. "height": 11
  12113. },
  12114. "_anchorPoint": {
  12115. "__type__": "cc.Vec2",
  12116. "x": 0.5,
  12117. "y": 0.5
  12118. },
  12119. "_trs": {
  12120. "__type__": "TypedArray",
  12121. "ctor": "Float64Array",
  12122. "array": [
  12123. -20,
  12124. -80.224,
  12125. 0,
  12126. 0,
  12127. 0,
  12128. 0,
  12129. 1,
  12130. 1,
  12131. 1,
  12132. 1
  12133. ]
  12134. },
  12135. "_eulerAngles": {
  12136. "__type__": "cc.Vec3",
  12137. "x": 0,
  12138. "y": 0,
  12139. "z": 0
  12140. },
  12141. "_skewX": 0,
  12142. "_skewY": 0,
  12143. "_is3DNode": false,
  12144. "_groupIndex": 0,
  12145. "groupIndex": 0,
  12146. "_id": ""
  12147. },
  12148. {
  12149. "__type__": "cc.Sprite",
  12150. "_name": "",
  12151. "_objFlags": 0,
  12152. "node": {
  12153. "__id__": 333
  12154. },
  12155. "_enabled": true,
  12156. "_materials": [
  12157. {
  12158. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12159. }
  12160. ],
  12161. "_srcBlendFactor": 770,
  12162. "_dstBlendFactor": 771,
  12163. "_spriteFrame": {
  12164. "__uuid__": "99998f57-30bb-44a9-ab48-0ca9532d6678"
  12165. },
  12166. "_type": 0,
  12167. "_sizeMode": 1,
  12168. "_fillType": 0,
  12169. "_fillCenter": {
  12170. "__type__": "cc.Vec2",
  12171. "x": 0,
  12172. "y": 0
  12173. },
  12174. "_fillStart": 0,
  12175. "_fillRange": 0,
  12176. "_isTrimmedMode": true,
  12177. "_atlas": null,
  12178. "_id": ""
  12179. },
  12180. {
  12181. "__type__": "cc.PrefabInfo",
  12182. "root": {
  12183. "__id__": 1
  12184. },
  12185. "asset": {
  12186. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  12187. },
  12188. "fileId": "f1rJgSK9NEOrCLjFSseRFR",
  12189. "sync": false
  12190. },
  12191. {
  12192. "__type__": "cc.Node",
  12193. "_name": "spot_2",
  12194. "_objFlags": 0,
  12195. "_parent": {
  12196. "__id__": 322
  12197. },
  12198. "_children": [],
  12199. "_active": true,
  12200. "_components": [
  12201. {
  12202. "__id__": 337
  12203. }
  12204. ],
  12205. "_prefab": {
  12206. "__id__": 338
  12207. },
  12208. "_opacity": 255,
  12209. "_color": {
  12210. "__type__": "cc.Color",
  12211. "r": 255,
  12212. "g": 255,
  12213. "b": 255,
  12214. "a": 255
  12215. },
  12216. "_contentSize": {
  12217. "__type__": "cc.Size",
  12218. "width": 11,
  12219. "height": 11
  12220. },
  12221. "_anchorPoint": {
  12222. "__type__": "cc.Vec2",
  12223. "x": 0.5,
  12224. "y": 0.5
  12225. },
  12226. "_trs": {
  12227. "__type__": "TypedArray",
  12228. "ctor": "Float64Array",
  12229. "array": [
  12230. 0,
  12231. -80.224,
  12232. 0,
  12233. 0,
  12234. 0,
  12235. 0,
  12236. 1,
  12237. 1,
  12238. 1,
  12239. 1
  12240. ]
  12241. },
  12242. "_eulerAngles": {
  12243. "__type__": "cc.Vec3",
  12244. "x": 0,
  12245. "y": 0,
  12246. "z": 0
  12247. },
  12248. "_skewX": 0,
  12249. "_skewY": 0,
  12250. "_is3DNode": false,
  12251. "_groupIndex": 0,
  12252. "groupIndex": 0,
  12253. "_id": ""
  12254. },
  12255. {
  12256. "__type__": "cc.Sprite",
  12257. "_name": "",
  12258. "_objFlags": 0,
  12259. "node": {
  12260. "__id__": 336
  12261. },
  12262. "_enabled": true,
  12263. "_materials": [
  12264. {
  12265. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12266. }
  12267. ],
  12268. "_srcBlendFactor": 770,
  12269. "_dstBlendFactor": 771,
  12270. "_spriteFrame": {
  12271. "__uuid__": "99998f57-30bb-44a9-ab48-0ca9532d6678"
  12272. },
  12273. "_type": 0,
  12274. "_sizeMode": 1,
  12275. "_fillType": 0,
  12276. "_fillCenter": {
  12277. "__type__": "cc.Vec2",
  12278. "x": 0,
  12279. "y": 0
  12280. },
  12281. "_fillStart": 0,
  12282. "_fillRange": 0,
  12283. "_isTrimmedMode": true,
  12284. "_atlas": null,
  12285. "_id": ""
  12286. },
  12287. {
  12288. "__type__": "cc.PrefabInfo",
  12289. "root": {
  12290. "__id__": 1
  12291. },
  12292. "asset": {
  12293. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  12294. },
  12295. "fileId": "16iLgksLVL9a1pg7D8xHv7",
  12296. "sync": false
  12297. },
  12298. {
  12299. "__type__": "cc.Node",
  12300. "_name": "spot_2",
  12301. "_objFlags": 0,
  12302. "_parent": {
  12303. "__id__": 322
  12304. },
  12305. "_children": [],
  12306. "_active": true,
  12307. "_components": [
  12308. {
  12309. "__id__": 340
  12310. }
  12311. ],
  12312. "_prefab": {
  12313. "__id__": 341
  12314. },
  12315. "_opacity": 255,
  12316. "_color": {
  12317. "__type__": "cc.Color",
  12318. "r": 255,
  12319. "g": 255,
  12320. "b": 255,
  12321. "a": 255
  12322. },
  12323. "_contentSize": {
  12324. "__type__": "cc.Size",
  12325. "width": 11,
  12326. "height": 11
  12327. },
  12328. "_anchorPoint": {
  12329. "__type__": "cc.Vec2",
  12330. "x": 0.5,
  12331. "y": 0.5
  12332. },
  12333. "_trs": {
  12334. "__type__": "TypedArray",
  12335. "ctor": "Float64Array",
  12336. "array": [
  12337. 20,
  12338. -80.224,
  12339. 0,
  12340. 0,
  12341. 0,
  12342. 0,
  12343. 1,
  12344. 1,
  12345. 1,
  12346. 1
  12347. ]
  12348. },
  12349. "_eulerAngles": {
  12350. "__type__": "cc.Vec3",
  12351. "x": 0,
  12352. "y": 0,
  12353. "z": 0
  12354. },
  12355. "_skewX": 0,
  12356. "_skewY": 0,
  12357. "_is3DNode": false,
  12358. "_groupIndex": 0,
  12359. "groupIndex": 0,
  12360. "_id": ""
  12361. },
  12362. {
  12363. "__type__": "cc.Sprite",
  12364. "_name": "",
  12365. "_objFlags": 0,
  12366. "node": {
  12367. "__id__": 339
  12368. },
  12369. "_enabled": true,
  12370. "_materials": [
  12371. {
  12372. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12373. }
  12374. ],
  12375. "_srcBlendFactor": 770,
  12376. "_dstBlendFactor": 771,
  12377. "_spriteFrame": {
  12378. "__uuid__": "99998f57-30bb-44a9-ab48-0ca9532d6678"
  12379. },
  12380. "_type": 0,
  12381. "_sizeMode": 1,
  12382. "_fillType": 0,
  12383. "_fillCenter": {
  12384. "__type__": "cc.Vec2",
  12385. "x": 0,
  12386. "y": 0
  12387. },
  12388. "_fillStart": 0,
  12389. "_fillRange": 0,
  12390. "_isTrimmedMode": true,
  12391. "_atlas": null,
  12392. "_id": ""
  12393. },
  12394. {
  12395. "__type__": "cc.PrefabInfo",
  12396. "root": {
  12397. "__id__": 1
  12398. },
  12399. "asset": {
  12400. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  12401. },
  12402. "fileId": "4dJxxPBVJOSITUGbDzItqS",
  12403. "sync": false
  12404. },
  12405. {
  12406. "__type__": "cc.Node",
  12407. "_name": "spot_1",
  12408. "_objFlags": 0,
  12409. "_parent": {
  12410. "__id__": 322
  12411. },
  12412. "_children": [],
  12413. "_active": true,
  12414. "_components": [
  12415. {
  12416. "__id__": 343
  12417. },
  12418. {
  12419. "__id__": 344
  12420. }
  12421. ],
  12422. "_prefab": {
  12423. "__id__": 345
  12424. },
  12425. "_opacity": 255,
  12426. "_color": {
  12427. "__type__": "cc.Color",
  12428. "r": 255,
  12429. "g": 255,
  12430. "b": 255,
  12431. "a": 255
  12432. },
  12433. "_contentSize": {
  12434. "__type__": "cc.Size",
  12435. "width": 11,
  12436. "height": 11
  12437. },
  12438. "_anchorPoint": {
  12439. "__type__": "cc.Vec2",
  12440. "x": 0.5,
  12441. "y": 0.5
  12442. },
  12443. "_trs": {
  12444. "__type__": "TypedArray",
  12445. "ctor": "Float64Array",
  12446. "array": [
  12447. -20,
  12448. -80.224,
  12449. 0,
  12450. 0,
  12451. 0,
  12452. 0,
  12453. 1,
  12454. 1,
  12455. 1,
  12456. 1
  12457. ]
  12458. },
  12459. "_eulerAngles": {
  12460. "__type__": "cc.Vec3",
  12461. "x": 0,
  12462. "y": 0,
  12463. "z": 0
  12464. },
  12465. "_skewX": 0,
  12466. "_skewY": 0,
  12467. "_is3DNode": false,
  12468. "_groupIndex": 0,
  12469. "groupIndex": 0,
  12470. "_id": ""
  12471. },
  12472. {
  12473. "__type__": "cc.Sprite",
  12474. "_name": "",
  12475. "_objFlags": 0,
  12476. "node": {
  12477. "__id__": 342
  12478. },
  12479. "_enabled": true,
  12480. "_materials": [
  12481. {
  12482. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12483. }
  12484. ],
  12485. "_srcBlendFactor": 770,
  12486. "_dstBlendFactor": 771,
  12487. "_spriteFrame": {
  12488. "__uuid__": "e4f91a10-c00c-4f42-b6c4-470c4465d9a5"
  12489. },
  12490. "_type": 0,
  12491. "_sizeMode": 1,
  12492. "_fillType": 0,
  12493. "_fillCenter": {
  12494. "__type__": "cc.Vec2",
  12495. "x": 0,
  12496. "y": 0
  12497. },
  12498. "_fillStart": 0,
  12499. "_fillRange": 0,
  12500. "_isTrimmedMode": true,
  12501. "_atlas": null,
  12502. "_id": ""
  12503. },
  12504. {
  12505. "__type__": "cc.Animation",
  12506. "_name": "",
  12507. "_objFlags": 0,
  12508. "node": {
  12509. "__id__": 342
  12510. },
  12511. "_enabled": true,
  12512. "_defaultClip": {
  12513. "__uuid__": "6cac5c10-7673-4e56-a48d-6f2c00844a14"
  12514. },
  12515. "_clips": [
  12516. {
  12517. "__uuid__": "6cac5c10-7673-4e56-a48d-6f2c00844a14"
  12518. }
  12519. ],
  12520. "playOnLoad": false,
  12521. "_id": ""
  12522. },
  12523. {
  12524. "__type__": "cc.PrefabInfo",
  12525. "root": {
  12526. "__id__": 1
  12527. },
  12528. "asset": {
  12529. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  12530. },
  12531. "fileId": "fbQjk42DxEBYQITNy5dKY7",
  12532. "sync": false
  12533. },
  12534. {
  12535. "__type__": "cc.PrefabInfo",
  12536. "root": {
  12537. "__id__": 1
  12538. },
  12539. "asset": {
  12540. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  12541. },
  12542. "fileId": "bfF4WiaqNDypvC6avlRygz",
  12543. "sync": false
  12544. },
  12545. {
  12546. "__type__": "cc.Node",
  12547. "_name": "cashPro",
  12548. "_objFlags": 0,
  12549. "_parent": {
  12550. "__id__": 1
  12551. },
  12552. "_children": [
  12553. {
  12554. "__id__": 348
  12555. },
  12556. {
  12557. "__id__": 352
  12558. },
  12559. {
  12560. "__id__": 365
  12561. },
  12562. {
  12563. "__id__": 368
  12564. },
  12565. {
  12566. "__id__": 371
  12567. },
  12568. {
  12569. "__id__": 374
  12570. },
  12571. {
  12572. "__id__": 377
  12573. },
  12574. {
  12575. "__id__": 380
  12576. },
  12577. {
  12578. "__id__": 383
  12579. },
  12580. {
  12581. "__id__": 386
  12582. },
  12583. {
  12584. "__id__": 389
  12585. },
  12586. {
  12587. "__id__": 392
  12588. },
  12589. {
  12590. "__id__": 395
  12591. },
  12592. {
  12593. "__id__": 398
  12594. },
  12595. {
  12596. "__id__": 401
  12597. },
  12598. {
  12599. "__id__": 404
  12600. }
  12601. ],
  12602. "_active": false,
  12603. "_components": [],
  12604. "_prefab": {
  12605. "__id__": 415
  12606. },
  12607. "_opacity": 255,
  12608. "_color": {
  12609. "__type__": "cc.Color",
  12610. "r": 255,
  12611. "g": 255,
  12612. "b": 255,
  12613. "a": 255
  12614. },
  12615. "_contentSize": {
  12616. "__type__": "cc.Size",
  12617. "width": 750,
  12618. "height": 1334
  12619. },
  12620. "_anchorPoint": {
  12621. "__type__": "cc.Vec2",
  12622. "x": 0.5,
  12623. "y": 0.5
  12624. },
  12625. "_trs": {
  12626. "__type__": "TypedArray",
  12627. "ctor": "Float64Array",
  12628. "array": [
  12629. 0,
  12630. 0,
  12631. 0,
  12632. 0,
  12633. 0,
  12634. 0,
  12635. 1,
  12636. 1,
  12637. 1,
  12638. 1
  12639. ]
  12640. },
  12641. "_eulerAngles": {
  12642. "__type__": "cc.Vec3",
  12643. "x": 0,
  12644. "y": 0,
  12645. "z": 0
  12646. },
  12647. "_skewX": 0,
  12648. "_skewY": 0,
  12649. "_is3DNode": false,
  12650. "_groupIndex": 0,
  12651. "groupIndex": 0,
  12652. "_id": ""
  12653. },
  12654. {
  12655. "__type__": "cc.Node",
  12656. "_name": "New Sprite(Splash) copy",
  12657. "_objFlags": 0,
  12658. "_parent": {
  12659. "__id__": 347
  12660. },
  12661. "_children": [],
  12662. "_active": true,
  12663. "_components": [
  12664. {
  12665. "__id__": 349
  12666. },
  12667. {
  12668. "__id__": 350
  12669. }
  12670. ],
  12671. "_prefab": {
  12672. "__id__": 351
  12673. },
  12674. "_opacity": 255,
  12675. "_color": {
  12676. "__type__": "cc.Color",
  12677. "r": 255,
  12678. "g": 255,
  12679. "b": 255,
  12680. "a": 255
  12681. },
  12682. "_contentSize": {
  12683. "__type__": "cc.Size",
  12684. "width": 750,
  12685. "height": 2000
  12686. },
  12687. "_anchorPoint": {
  12688. "__type__": "cc.Vec2",
  12689. "x": 0.5,
  12690. "y": 0.5
  12691. },
  12692. "_trs": {
  12693. "__type__": "TypedArray",
  12694. "ctor": "Float64Array",
  12695. "array": [
  12696. 0,
  12697. 0,
  12698. 0,
  12699. 0,
  12700. 0,
  12701. 0,
  12702. 1,
  12703. 1,
  12704. 1,
  12705. 1
  12706. ]
  12707. },
  12708. "_eulerAngles": {
  12709. "__type__": "cc.Vec3",
  12710. "x": 0,
  12711. "y": 0,
  12712. "z": 0
  12713. },
  12714. "_skewX": 0,
  12715. "_skewY": 0,
  12716. "_is3DNode": false,
  12717. "_groupIndex": 0,
  12718. "groupIndex": 0,
  12719. "_id": ""
  12720. },
  12721. {
  12722. "__type__": "cc.Sprite",
  12723. "_name": "",
  12724. "_objFlags": 0,
  12725. "node": {
  12726. "__id__": 348
  12727. },
  12728. "_enabled": true,
  12729. "_materials": [
  12730. {
  12731. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12732. }
  12733. ],
  12734. "_srcBlendFactor": 770,
  12735. "_dstBlendFactor": 771,
  12736. "_spriteFrame": {
  12737. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  12738. },
  12739. "_type": 0,
  12740. "_sizeMode": 0,
  12741. "_fillType": 0,
  12742. "_fillCenter": {
  12743. "__type__": "cc.Vec2",
  12744. "x": 0,
  12745. "y": 0
  12746. },
  12747. "_fillStart": 0,
  12748. "_fillRange": 0,
  12749. "_isTrimmedMode": true,
  12750. "_atlas": null,
  12751. "_id": ""
  12752. },
  12753. {
  12754. "__type__": "cc.BlockInputEvents",
  12755. "_name": "",
  12756. "_objFlags": 0,
  12757. "node": {
  12758. "__id__": 348
  12759. },
  12760. "_enabled": true,
  12761. "_id": ""
  12762. },
  12763. {
  12764. "__type__": "cc.PrefabInfo",
  12765. "root": {
  12766. "__id__": 1
  12767. },
  12768. "asset": {
  12769. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  12770. },
  12771. "fileId": "2aUg4B/VRPQo/Uq2b+O9HQ",
  12772. "sync": false
  12773. },
  12774. {
  12775. "__type__": "cc.Node",
  12776. "_name": "top",
  12777. "_objFlags": 0,
  12778. "_parent": {
  12779. "__id__": 347
  12780. },
  12781. "_children": [
  12782. {
  12783. "__id__": 353
  12784. },
  12785. {
  12786. "__id__": 360
  12787. }
  12788. ],
  12789. "_active": true,
  12790. "_components": [
  12791. {
  12792. "__id__": 363
  12793. }
  12794. ],
  12795. "_prefab": {
  12796. "__id__": 364
  12797. },
  12798. "_opacity": 255,
  12799. "_color": {
  12800. "__type__": "cc.Color",
  12801. "r": 255,
  12802. "g": 255,
  12803. "b": 255,
  12804. "a": 255
  12805. },
  12806. "_contentSize": {
  12807. "__type__": "cc.Size",
  12808. "width": 0,
  12809. "height": 0
  12810. },
  12811. "_anchorPoint": {
  12812. "__type__": "cc.Vec2",
  12813. "x": 0.5,
  12814. "y": 0.5
  12815. },
  12816. "_trs": {
  12817. "__type__": "TypedArray",
  12818. "ctor": "Float64Array",
  12819. "array": [
  12820. 0,
  12821. 0,
  12822. 0,
  12823. 0,
  12824. 0,
  12825. 0,
  12826. 1,
  12827. 1,
  12828. 1,
  12829. 1
  12830. ]
  12831. },
  12832. "_eulerAngles": {
  12833. "__type__": "cc.Vec3",
  12834. "x": 0,
  12835. "y": 0,
  12836. "z": 0
  12837. },
  12838. "_skewX": 0,
  12839. "_skewY": 0,
  12840. "_is3DNode": false,
  12841. "_groupIndex": 0,
  12842. "groupIndex": 0,
  12843. "_id": ""
  12844. },
  12845. {
  12846. "__type__": "cc.Node",
  12847. "_name": "currency_back",
  12848. "_objFlags": 0,
  12849. "_parent": {
  12850. "__id__": 352
  12851. },
  12852. "_children": [
  12853. {
  12854. "__id__": 354
  12855. }
  12856. ],
  12857. "_active": true,
  12858. "_components": [
  12859. {
  12860. "__id__": 357
  12861. }
  12862. ],
  12863. "_prefab": {
  12864. "__id__": 359
  12865. },
  12866. "_opacity": 255,
  12867. "_color": {
  12868. "__type__": "cc.Color",
  12869. "r": 255,
  12870. "g": 255,
  12871. "b": 255,
  12872. "a": 255
  12873. },
  12874. "_contentSize": {
  12875. "__type__": "cc.Size",
  12876. "width": 80,
  12877. "height": 100
  12878. },
  12879. "_anchorPoint": {
  12880. "__type__": "cc.Vec2",
  12881. "x": 0.5,
  12882. "y": 0.5
  12883. },
  12884. "_trs": {
  12885. "__type__": "TypedArray",
  12886. "ctor": "Float64Array",
  12887. "array": [
  12888. -337,
  12889. 566,
  12890. 0,
  12891. 0,
  12892. 0,
  12893. 0,
  12894. 1,
  12895. 1,
  12896. 1,
  12897. 1
  12898. ]
  12899. },
  12900. "_eulerAngles": {
  12901. "__type__": "cc.Vec3",
  12902. "x": 0,
  12903. "y": 0,
  12904. "z": 0
  12905. },
  12906. "_skewX": 0,
  12907. "_skewY": 0,
  12908. "_is3DNode": false,
  12909. "_groupIndex": 0,
  12910. "groupIndex": 0,
  12911. "_id": ""
  12912. },
  12913. {
  12914. "__type__": "cc.Node",
  12915. "_name": "New Sprite",
  12916. "_objFlags": 0,
  12917. "_parent": {
  12918. "__id__": 353
  12919. },
  12920. "_children": [],
  12921. "_active": true,
  12922. "_components": [
  12923. {
  12924. "__id__": 355
  12925. }
  12926. ],
  12927. "_prefab": {
  12928. "__id__": 356
  12929. },
  12930. "_opacity": 255,
  12931. "_color": {
  12932. "__type__": "cc.Color",
  12933. "r": 255,
  12934. "g": 255,
  12935. "b": 255,
  12936. "a": 255
  12937. },
  12938. "_contentSize": {
  12939. "__type__": "cc.Size",
  12940. "width": 18,
  12941. "height": 32
  12942. },
  12943. "_anchorPoint": {
  12944. "__type__": "cc.Vec2",
  12945. "x": 0.5,
  12946. "y": 0.5
  12947. },
  12948. "_trs": {
  12949. "__type__": "TypedArray",
  12950. "ctor": "Float64Array",
  12951. "array": [
  12952. 0,
  12953. 0,
  12954. 0,
  12955. 0,
  12956. 0,
  12957. 0,
  12958. 1,
  12959. 1,
  12960. 1,
  12961. 1
  12962. ]
  12963. },
  12964. "_eulerAngles": {
  12965. "__type__": "cc.Vec3",
  12966. "x": 0,
  12967. "y": 0,
  12968. "z": 0
  12969. },
  12970. "_skewX": 0,
  12971. "_skewY": 0,
  12972. "_is3DNode": false,
  12973. "_groupIndex": 0,
  12974. "groupIndex": 0,
  12975. "_id": ""
  12976. },
  12977. {
  12978. "__type__": "cc.Sprite",
  12979. "_name": "",
  12980. "_objFlags": 0,
  12981. "node": {
  12982. "__id__": 354
  12983. },
  12984. "_enabled": true,
  12985. "_materials": [
  12986. {
  12987. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12988. }
  12989. ],
  12990. "_srcBlendFactor": 770,
  12991. "_dstBlendFactor": 771,
  12992. "_spriteFrame": {
  12993. "__uuid__": "29b64df9-5722-41ac-b3fa-28d28054957e"
  12994. },
  12995. "_type": 0,
  12996. "_sizeMode": 1,
  12997. "_fillType": 0,
  12998. "_fillCenter": {
  12999. "__type__": "cc.Vec2",
  13000. "x": 0,
  13001. "y": 0
  13002. },
  13003. "_fillStart": 0,
  13004. "_fillRange": 0,
  13005. "_isTrimmedMode": true,
  13006. "_atlas": null,
  13007. "_id": ""
  13008. },
  13009. {
  13010. "__type__": "cc.PrefabInfo",
  13011. "root": {
  13012. "__id__": 1
  13013. },
  13014. "asset": {
  13015. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  13016. },
  13017. "fileId": "c7N9PdwohKJqE1tO5NGVb+",
  13018. "sync": false
  13019. },
  13020. {
  13021. "__type__": "cc.Button",
  13022. "_name": "",
  13023. "_objFlags": 0,
  13024. "node": {
  13025. "__id__": 353
  13026. },
  13027. "_enabled": true,
  13028. "_normalMaterial": null,
  13029. "_grayMaterial": null,
  13030. "duration": 0.1,
  13031. "zoomScale": 0.8,
  13032. "clickEvents": [
  13033. {
  13034. "__id__": 358
  13035. }
  13036. ],
  13037. "_N$interactable": true,
  13038. "_N$enableAutoGrayEffect": false,
  13039. "_N$transition": 3,
  13040. "transition": 3,
  13041. "_N$normalColor": {
  13042. "__type__": "cc.Color",
  13043. "r": 255,
  13044. "g": 255,
  13045. "b": 255,
  13046. "a": 255
  13047. },
  13048. "_N$pressedColor": {
  13049. "__type__": "cc.Color",
  13050. "r": 211,
  13051. "g": 211,
  13052. "b": 211,
  13053. "a": 255
  13054. },
  13055. "pressedColor": {
  13056. "__type__": "cc.Color",
  13057. "r": 211,
  13058. "g": 211,
  13059. "b": 211,
  13060. "a": 255
  13061. },
  13062. "_N$hoverColor": {
  13063. "__type__": "cc.Color",
  13064. "r": 255,
  13065. "g": 255,
  13066. "b": 255,
  13067. "a": 255
  13068. },
  13069. "hoverColor": {
  13070. "__type__": "cc.Color",
  13071. "r": 255,
  13072. "g": 255,
  13073. "b": 255,
  13074. "a": 255
  13075. },
  13076. "_N$disabledColor": {
  13077. "__type__": "cc.Color",
  13078. "r": 124,
  13079. "g": 124,
  13080. "b": 124,
  13081. "a": 255
  13082. },
  13083. "_N$normalSprite": null,
  13084. "_N$pressedSprite": null,
  13085. "pressedSprite": null,
  13086. "_N$hoverSprite": null,
  13087. "hoverSprite": null,
  13088. "_N$disabledSprite": null,
  13089. "_N$target": {
  13090. "__id__": 353
  13091. },
  13092. "_id": ""
  13093. },
  13094. {
  13095. "__type__": "cc.ClickEvent",
  13096. "target": {
  13097. "__id__": 1
  13098. },
  13099. "component": "",
  13100. "_componentId": "b150700q4JFCaxD1R8c6DRF",
  13101. "handler": "clickClosePro",
  13102. "customEventData": ""
  13103. },
  13104. {
  13105. "__type__": "cc.PrefabInfo",
  13106. "root": {
  13107. "__id__": 1
  13108. },
  13109. "asset": {
  13110. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  13111. },
  13112. "fileId": "bepaZ2RetCPoC5Msi2+dzR",
  13113. "sync": false
  13114. },
  13115. {
  13116. "__type__": "cc.Node",
  13117. "_name": "New Label",
  13118. "_objFlags": 0,
  13119. "_parent": {
  13120. "__id__": 352
  13121. },
  13122. "_children": [],
  13123. "_active": true,
  13124. "_components": [
  13125. {
  13126. "__id__": 361
  13127. }
  13128. ],
  13129. "_prefab": {
  13130. "__id__": 362
  13131. },
  13132. "_opacity": 255,
  13133. "_color": {
  13134. "__type__": "cc.Color",
  13135. "r": 30,
  13136. "g": 30,
  13137. "b": 30,
  13138. "a": 255
  13139. },
  13140. "_contentSize": {
  13141. "__type__": "cc.Size",
  13142. "width": 136,
  13143. "height": 50.4
  13144. },
  13145. "_anchorPoint": {
  13146. "__type__": "cc.Vec2",
  13147. "x": 0.5,
  13148. "y": 0.5
  13149. },
  13150. "_trs": {
  13151. "__type__": "TypedArray",
  13152. "ctor": "Float64Array",
  13153. "array": [
  13154. 0,
  13155. 566,
  13156. 0,
  13157. 0,
  13158. 0,
  13159. 0,
  13160. 1,
  13161. 1,
  13162. 1,
  13163. 1
  13164. ]
  13165. },
  13166. "_eulerAngles": {
  13167. "__type__": "cc.Vec3",
  13168. "x": 0,
  13169. "y": 0,
  13170. "z": 0
  13171. },
  13172. "_skewX": 0,
  13173. "_skewY": 0,
  13174. "_is3DNode": false,
  13175. "_groupIndex": 0,
  13176. "groupIndex": 0,
  13177. "_id": ""
  13178. },
  13179. {
  13180. "__type__": "cc.Label",
  13181. "_name": "",
  13182. "_objFlags": 0,
  13183. "node": {
  13184. "__id__": 360
  13185. },
  13186. "_enabled": true,
  13187. "_materials": [
  13188. {
  13189. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13190. }
  13191. ],
  13192. "_useOriginalSize": false,
  13193. "_string": "零钱提现",
  13194. "_N$string": "零钱提现",
  13195. "_fontSize": 34,
  13196. "_lineHeight": 40,
  13197. "_enableWrapText": true,
  13198. "_N$file": null,
  13199. "_isSystemFontUsed": true,
  13200. "_spacingX": 0,
  13201. "_batchAsBitmap": false,
  13202. "_styleFlags": 1,
  13203. "_underlineHeight": 0,
  13204. "_N$horizontalAlign": 1,
  13205. "_N$verticalAlign": 1,
  13206. "_N$fontFamily": "Arial",
  13207. "_N$overflow": 0,
  13208. "_N$cacheMode": 0,
  13209. "_id": ""
  13210. },
  13211. {
  13212. "__type__": "cc.PrefabInfo",
  13213. "root": {
  13214. "__id__": 1
  13215. },
  13216. "asset": {
  13217. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  13218. },
  13219. "fileId": "94aP6wDNNDR6YnFszuTzQo",
  13220. "sync": false
  13221. },
  13222. {
  13223. "__type__": "cc.Widget",
  13224. "_name": "",
  13225. "_objFlags": 0,
  13226. "node": {
  13227. "__id__": 352
  13228. },
  13229. "_enabled": true,
  13230. "alignMode": 1,
  13231. "_target": null,
  13232. "_alignFlags": 1,
  13233. "_left": 0,
  13234. "_right": 0,
  13235. "_top": 667,
  13236. "_bottom": 0,
  13237. "_verticalCenter": 0,
  13238. "_horizontalCenter": 0,
  13239. "_isAbsLeft": true,
  13240. "_isAbsRight": true,
  13241. "_isAbsTop": true,
  13242. "_isAbsBottom": true,
  13243. "_isAbsHorizontalCenter": true,
  13244. "_isAbsVerticalCenter": true,
  13245. "_originalWidth": 0,
  13246. "_originalHeight": 0,
  13247. "_id": ""
  13248. },
  13249. {
  13250. "__type__": "cc.PrefabInfo",
  13251. "root": {
  13252. "__id__": 1
  13253. },
  13254. "asset": {
  13255. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  13256. },
  13257. "fileId": "4drfJ8GwpBqZ82oXASdT8l",
  13258. "sync": false
  13259. },
  13260. {
  13261. "__type__": "cc.Node",
  13262. "_name": "sp",
  13263. "_objFlags": 0,
  13264. "_parent": {
  13265. "__id__": 347
  13266. },
  13267. "_children": [],
  13268. "_active": true,
  13269. "_components": [
  13270. {
  13271. "__id__": 366
  13272. }
  13273. ],
  13274. "_prefab": {
  13275. "__id__": 367
  13276. },
  13277. "_opacity": 255,
  13278. "_color": {
  13279. "__type__": "cc.Color",
  13280. "r": 255,
  13281. "g": 255,
  13282. "b": 255,
  13283. "a": 255
  13284. },
  13285. "_contentSize": {
  13286. "__type__": "cc.Size",
  13287. "width": 19,
  13288. "height": 251
  13289. },
  13290. "_anchorPoint": {
  13291. "__type__": "cc.Vec2",
  13292. "x": 0.5,
  13293. "y": 0.5
  13294. },
  13295. "_trs": {
  13296. "__type__": "TypedArray",
  13297. "ctor": "Float64Array",
  13298. "array": [
  13299. -300.394,
  13300. 281.961,
  13301. 0,
  13302. 0,
  13303. 0,
  13304. 0,
  13305. 1,
  13306. 1.2,
  13307. 1.2,
  13308. 1
  13309. ]
  13310. },
  13311. "_eulerAngles": {
  13312. "__type__": "cc.Vec3",
  13313. "x": 0,
  13314. "y": 0,
  13315. "z": 0
  13316. },
  13317. "_skewX": 0,
  13318. "_skewY": 0,
  13319. "_is3DNode": false,
  13320. "_groupIndex": 0,
  13321. "groupIndex": 0,
  13322. "_id": ""
  13323. },
  13324. {
  13325. "__type__": "cc.Sprite",
  13326. "_name": "",
  13327. "_objFlags": 0,
  13328. "node": {
  13329. "__id__": 365
  13330. },
  13331. "_enabled": true,
  13332. "_materials": [
  13333. {
  13334. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13335. }
  13336. ],
  13337. "_srcBlendFactor": 770,
  13338. "_dstBlendFactor": 771,
  13339. "_spriteFrame": {
  13340. "__uuid__": "455b438f-fb45-4a11-a101-9eb819d39f33"
  13341. },
  13342. "_type": 0,
  13343. "_sizeMode": 1,
  13344. "_fillType": 0,
  13345. "_fillCenter": {
  13346. "__type__": "cc.Vec2",
  13347. "x": 0,
  13348. "y": 0
  13349. },
  13350. "_fillStart": 0,
  13351. "_fillRange": 0,
  13352. "_isTrimmedMode": true,
  13353. "_atlas": null,
  13354. "_id": ""
  13355. },
  13356. {
  13357. "__type__": "cc.PrefabInfo",
  13358. "root": {
  13359. "__id__": 1
  13360. },
  13361. "asset": {
  13362. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  13363. },
  13364. "fileId": "10exmq9OdEVbaM1vK+gyWR",
  13365. "sync": false
  13366. },
  13367. {
  13368. "__type__": "cc.Node",
  13369. "_name": "icon_xitong",
  13370. "_objFlags": 0,
  13371. "_parent": {
  13372. "__id__": 347
  13373. },
  13374. "_children": [],
  13375. "_active": true,
  13376. "_components": [
  13377. {
  13378. "__id__": 369
  13379. }
  13380. ],
  13381. "_prefab": {
  13382. "__id__": 370
  13383. },
  13384. "_opacity": 255,
  13385. "_color": {
  13386. "__type__": "cc.Color",
  13387. "r": 255,
  13388. "g": 255,
  13389. "b": 255,
  13390. "a": 255
  13391. },
  13392. "_contentSize": {
  13393. "__type__": "cc.Size",
  13394. "width": 66,
  13395. "height": 66
  13396. },
  13397. "_anchorPoint": {
  13398. "__type__": "cc.Vec2",
  13399. "x": 0.5,
  13400. "y": 0.5
  13401. },
  13402. "_trs": {
  13403. "__type__": "TypedArray",
  13404. "ctor": "Float64Array",
  13405. "array": [
  13406. -299.365,
  13407. 275.269,
  13408. 0,
  13409. 0,
  13410. 0,
  13411. 0,
  13412. 1,
  13413. 1,
  13414. 1,
  13415. 1
  13416. ]
  13417. },
  13418. "_eulerAngles": {
  13419. "__type__": "cc.Vec3",
  13420. "x": 0,
  13421. "y": 0,
  13422. "z": 0
  13423. },
  13424. "_skewX": 0,
  13425. "_skewY": 0,
  13426. "_is3DNode": false,
  13427. "_groupIndex": 0,
  13428. "groupIndex": 0,
  13429. "_id": ""
  13430. },
  13431. {
  13432. "__type__": "cc.Sprite",
  13433. "_name": "",
  13434. "_objFlags": 0,
  13435. "node": {
  13436. "__id__": 368
  13437. },
  13438. "_enabled": true,
  13439. "_materials": [
  13440. {
  13441. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13442. }
  13443. ],
  13444. "_srcBlendFactor": 770,
  13445. "_dstBlendFactor": 771,
  13446. "_spriteFrame": {
  13447. "__uuid__": "c51aebe5-b749-4742-9293-fbc16ce12611"
  13448. },
  13449. "_type": 0,
  13450. "_sizeMode": 1,
  13451. "_fillType": 0,
  13452. "_fillCenter": {
  13453. "__type__": "cc.Vec2",
  13454. "x": 0,
  13455. "y": 0
  13456. },
  13457. "_fillStart": 0,
  13458. "_fillRange": 0,
  13459. "_isTrimmedMode": true,
  13460. "_atlas": null,
  13461. "_id": ""
  13462. },
  13463. {
  13464. "__type__": "cc.PrefabInfo",
  13465. "root": {
  13466. "__id__": 1
  13467. },
  13468. "asset": {
  13469. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  13470. },
  13471. "fileId": "48jacwkT5JD5xkMwzeke4Q",
  13472. "sync": false
  13473. },
  13474. {
  13475. "__type__": "cc.Node",
  13476. "_name": "New Label",
  13477. "_objFlags": 0,
  13478. "_parent": {
  13479. "__id__": 347
  13480. },
  13481. "_children": [],
  13482. "_active": true,
  13483. "_components": [
  13484. {
  13485. "__id__": 372
  13486. }
  13487. ],
  13488. "_prefab": {
  13489. "__id__": 373
  13490. },
  13491. "_opacity": 255,
  13492. "_color": {
  13493. "__type__": "cc.Color",
  13494. "r": 153,
  13495. "g": 153,
  13496. "b": 153,
  13497. "a": 255
  13498. },
  13499. "_contentSize": {
  13500. "__type__": "cc.Size",
  13501. "width": 192,
  13502. "height": 50.4
  13503. },
  13504. "_anchorPoint": {
  13505. "__type__": "cc.Vec2",
  13506. "x": 0.5,
  13507. "y": 0.5
  13508. },
  13509. "_trs": {
  13510. "__type__": "TypedArray",
  13511. "ctor": "Float64Array",
  13512. "array": [
  13513. -130.077,
  13514. 421.086,
  13515. 0,
  13516. 0,
  13517. 0,
  13518. 0,
  13519. 1,
  13520. 1,
  13521. 1,
  13522. 1
  13523. ]
  13524. },
  13525. "_eulerAngles": {
  13526. "__type__": "cc.Vec3",
  13527. "x": 0,
  13528. "y": 0,
  13529. "z": 0
  13530. },
  13531. "_skewX": 0,
  13532. "_skewY": 0,
  13533. "_is3DNode": false,
  13534. "_groupIndex": 0,
  13535. "groupIndex": 0,
  13536. "_id": ""
  13537. },
  13538. {
  13539. "__type__": "cc.Label",
  13540. "_name": "",
  13541. "_objFlags": 0,
  13542. "node": {
  13543. "__id__": 371
  13544. },
  13545. "_enabled": true,
  13546. "_materials": [
  13547. {
  13548. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13549. }
  13550. ],
  13551. "_useOriginalSize": false,
  13552. "_string": "发起提现申请",
  13553. "_N$string": "发起提现申请",
  13554. "_fontSize": 32,
  13555. "_lineHeight": 40,
  13556. "_enableWrapText": true,
  13557. "_N$file": null,
  13558. "_isSystemFontUsed": true,
  13559. "_spacingX": 0,
  13560. "_batchAsBitmap": false,
  13561. "_styleFlags": 0,
  13562. "_underlineHeight": 0,
  13563. "_N$horizontalAlign": 1,
  13564. "_N$verticalAlign": 1,
  13565. "_N$fontFamily": "Arial",
  13566. "_N$overflow": 0,
  13567. "_N$cacheMode": 0,
  13568. "_id": ""
  13569. },
  13570. {
  13571. "__type__": "cc.PrefabInfo",
  13572. "root": {
  13573. "__id__": 1
  13574. },
  13575. "asset": {
  13576. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  13577. },
  13578. "fileId": "d4kDrTf49HCYwm4gtxW9Qf",
  13579. "sync": false
  13580. },
  13581. {
  13582. "__type__": "cc.Node",
  13583. "_name": "New Label",
  13584. "_objFlags": 0,
  13585. "_parent": {
  13586. "__id__": 347
  13587. },
  13588. "_children": [],
  13589. "_active": true,
  13590. "_components": [
  13591. {
  13592. "__id__": 375
  13593. }
  13594. ],
  13595. "_prefab": {
  13596. "__id__": 376
  13597. },
  13598. "_opacity": 255,
  13599. "_color": {
  13600. "__type__": "cc.Color",
  13601. "r": 9,
  13602. "g": 9,
  13603. "b": 9,
  13604. "a": 255
  13605. },
  13606. "_contentSize": {
  13607. "__type__": "cc.Size",
  13608. "width": 160,
  13609. "height": 50.4
  13610. },
  13611. "_anchorPoint": {
  13612. "__type__": "cc.Vec2",
  13613. "x": 0.5,
  13614. "y": 0.5
  13615. },
  13616. "_trs": {
  13617. "__type__": "TypedArray",
  13618. "ctor": "Float64Array",
  13619. "array": [
  13620. -145.077,
  13621. 292.84,
  13622. 0,
  13623. 0,
  13624. 0,
  13625. 0,
  13626. 1,
  13627. 1,
  13628. 1,
  13629. 1
  13630. ]
  13631. },
  13632. "_eulerAngles": {
  13633. "__type__": "cc.Vec3",
  13634. "x": 0,
  13635. "y": 0,
  13636. "z": 0
  13637. },
  13638. "_skewX": 0,
  13639. "_skewY": 0,
  13640. "_is3DNode": false,
  13641. "_groupIndex": 0,
  13642. "groupIndex": 0,
  13643. "_id": ""
  13644. },
  13645. {
  13646. "__type__": "cc.Label",
  13647. "_name": "",
  13648. "_objFlags": 0,
  13649. "node": {
  13650. "__id__": 374
  13651. },
  13652. "_enabled": true,
  13653. "_materials": [
  13654. {
  13655. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13656. }
  13657. ],
  13658. "_useOriginalSize": false,
  13659. "_string": "系统处理中",
  13660. "_N$string": "系统处理中",
  13661. "_fontSize": 32,
  13662. "_lineHeight": 40,
  13663. "_enableWrapText": true,
  13664. "_N$file": null,
  13665. "_isSystemFontUsed": true,
  13666. "_spacingX": 0,
  13667. "_batchAsBitmap": false,
  13668. "_styleFlags": 0,
  13669. "_underlineHeight": 0,
  13670. "_N$horizontalAlign": 1,
  13671. "_N$verticalAlign": 1,
  13672. "_N$fontFamily": "Arial",
  13673. "_N$overflow": 0,
  13674. "_N$cacheMode": 0,
  13675. "_id": ""
  13676. },
  13677. {
  13678. "__type__": "cc.PrefabInfo",
  13679. "root": {
  13680. "__id__": 1
  13681. },
  13682. "asset": {
  13683. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  13684. },
  13685. "fileId": "02NeNDljpNPbrTCYEi/fFq",
  13686. "sync": false
  13687. },
  13688. {
  13689. "__type__": "cc.Node",
  13690. "_name": "New Label",
  13691. "_objFlags": 0,
  13692. "_parent": {
  13693. "__id__": 347
  13694. },
  13695. "_children": [],
  13696. "_active": true,
  13697. "_components": [
  13698. {
  13699. "__id__": 378
  13700. }
  13701. ],
  13702. "_prefab": {
  13703. "__id__": 379
  13704. },
  13705. "_opacity": 255,
  13706. "_color": {
  13707. "__type__": "cc.Color",
  13708. "r": 153,
  13709. "g": 153,
  13710. "b": 153,
  13711. "a": 255
  13712. },
  13713. "_contentSize": {
  13714. "__type__": "cc.Size",
  13715. "width": 128,
  13716. "height": 50.4
  13717. },
  13718. "_anchorPoint": {
  13719. "__type__": "cc.Vec2",
  13720. "x": 0.5,
  13721. "y": 0.5
  13722. },
  13723. "_trs": {
  13724. "__type__": "TypedArray",
  13725. "ctor": "Float64Array",
  13726. "array": [
  13727. -162.634,
  13728. 148.181,
  13729. 0,
  13730. 0,
  13731. 0,
  13732. 0,
  13733. 1,
  13734. 1,
  13735. 1,
  13736. 1
  13737. ]
  13738. },
  13739. "_eulerAngles": {
  13740. "__type__": "cc.Vec3",
  13741. "x": 0,
  13742. "y": 0,
  13743. "z": 0
  13744. },
  13745. "_skewX": 0,
  13746. "_skewY": 0,
  13747. "_is3DNode": false,
  13748. "_groupIndex": 0,
  13749. "groupIndex": 0,
  13750. "_id": ""
  13751. },
  13752. {
  13753. "__type__": "cc.Label",
  13754. "_name": "",
  13755. "_objFlags": 0,
  13756. "node": {
  13757. "__id__": 377
  13758. },
  13759. "_enabled": true,
  13760. "_materials": [
  13761. {
  13762. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13763. }
  13764. ],
  13765. "_useOriginalSize": false,
  13766. "_string": "到账成功",
  13767. "_N$string": "到账成功",
  13768. "_fontSize": 32,
  13769. "_lineHeight": 40,
  13770. "_enableWrapText": true,
  13771. "_N$file": null,
  13772. "_isSystemFontUsed": true,
  13773. "_spacingX": 0,
  13774. "_batchAsBitmap": false,
  13775. "_styleFlags": 0,
  13776. "_underlineHeight": 0,
  13777. "_N$horizontalAlign": 1,
  13778. "_N$verticalAlign": 1,
  13779. "_N$fontFamily": "Arial",
  13780. "_N$overflow": 0,
  13781. "_N$cacheMode": 0,
  13782. "_id": ""
  13783. },
  13784. {
  13785. "__type__": "cc.PrefabInfo",
  13786. "root": {
  13787. "__id__": 1
  13788. },
  13789. "asset": {
  13790. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  13791. },
  13792. "fileId": "53S7wVvVJNGIVWmLDbMmuu",
  13793. "sync": false
  13794. },
  13795. {
  13796. "__type__": "cc.Node",
  13797. "_name": "labTime",
  13798. "_objFlags": 0,
  13799. "_parent": {
  13800. "__id__": 347
  13801. },
  13802. "_children": [],
  13803. "_active": true,
  13804. "_components": [
  13805. {
  13806. "__id__": 381
  13807. }
  13808. ],
  13809. "_prefab": {
  13810. "__id__": 382
  13811. },
  13812. "_opacity": 255,
  13813. "_color": {
  13814. "__type__": "cc.Color",
  13815. "r": 247,
  13816. "g": 47,
  13817. "b": 32,
  13818. "a": 255
  13819. },
  13820. "_contentSize": {
  13821. "__type__": "cc.Size",
  13822. "width": 193.58,
  13823. "height": 50.4
  13824. },
  13825. "_anchorPoint": {
  13826. "__type__": "cc.Vec2",
  13827. "x": 0,
  13828. "y": 0.5
  13829. },
  13830. "_trs": {
  13831. "__type__": "TypedArray",
  13832. "ctor": "Float64Array",
  13833. "array": [
  13834. -227.994,
  13835. 246.685,
  13836. 0,
  13837. 0,
  13838. 0,
  13839. 0,
  13840. 1,
  13841. 1,
  13842. 1,
  13843. 1
  13844. ]
  13845. },
  13846. "_eulerAngles": {
  13847. "__type__": "cc.Vec3",
  13848. "x": 0,
  13849. "y": 0,
  13850. "z": 0
  13851. },
  13852. "_skewX": 0,
  13853. "_skewY": 0,
  13854. "_is3DNode": false,
  13855. "_groupIndex": 0,
  13856. "groupIndex": 0,
  13857. "_id": ""
  13858. },
  13859. {
  13860. "__type__": "cc.Label",
  13861. "_name": "",
  13862. "_objFlags": 0,
  13863. "node": {
  13864. "__id__": 380
  13865. },
  13866. "_enabled": true,
  13867. "_materials": [
  13868. {
  13869. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13870. }
  13871. ],
  13872. "_useOriginalSize": false,
  13873. "_string": "1-5个工作日到账",
  13874. "_N$string": "1-5个工作日到账",
  13875. "_fontSize": 26,
  13876. "_lineHeight": 40,
  13877. "_enableWrapText": true,
  13878. "_N$file": null,
  13879. "_isSystemFontUsed": true,
  13880. "_spacingX": 0,
  13881. "_batchAsBitmap": false,
  13882. "_styleFlags": 0,
  13883. "_underlineHeight": 0,
  13884. "_N$horizontalAlign": 1,
  13885. "_N$verticalAlign": 1,
  13886. "_N$fontFamily": "Arial",
  13887. "_N$overflow": 0,
  13888. "_N$cacheMode": 0,
  13889. "_id": ""
  13890. },
  13891. {
  13892. "__type__": "cc.PrefabInfo",
  13893. "root": {
  13894. "__id__": 1
  13895. },
  13896. "asset": {
  13897. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  13898. },
  13899. "fileId": "861JzJ7EJHorzbJzqI2/3M",
  13900. "sync": false
  13901. },
  13902. {
  13903. "__type__": "cc.Node",
  13904. "_name": "xian",
  13905. "_objFlags": 0,
  13906. "_parent": {
  13907. "__id__": 347
  13908. },
  13909. "_children": [],
  13910. "_active": true,
  13911. "_components": [
  13912. {
  13913. "__id__": 384
  13914. }
  13915. ],
  13916. "_prefab": {
  13917. "__id__": 385
  13918. },
  13919. "_opacity": 255,
  13920. "_color": {
  13921. "__type__": "cc.Color",
  13922. "r": 237,
  13923. "g": 237,
  13924. "b": 237,
  13925. "a": 255
  13926. },
  13927. "_contentSize": {
  13928. "__type__": "cc.Size",
  13929. "width": 676,
  13930. "height": 50.4
  13931. },
  13932. "_anchorPoint": {
  13933. "__type__": "cc.Vec2",
  13934. "x": 0.5,
  13935. "y": 0.5
  13936. },
  13937. "_trs": {
  13938. "__type__": "TypedArray",
  13939. "ctor": "Float64Array",
  13940. "array": [
  13941. 0,
  13942. 44.917,
  13943. 0,
  13944. 0,
  13945. 0,
  13946. 0,
  13947. 1,
  13948. 1,
  13949. 1,
  13950. 1
  13951. ]
  13952. },
  13953. "_eulerAngles": {
  13954. "__type__": "cc.Vec3",
  13955. "x": 0,
  13956. "y": 0,
  13957. "z": 0
  13958. },
  13959. "_skewX": 0,
  13960. "_skewY": 0,
  13961. "_is3DNode": false,
  13962. "_groupIndex": 0,
  13963. "groupIndex": 0,
  13964. "_id": ""
  13965. },
  13966. {
  13967. "__type__": "cc.Label",
  13968. "_name": "",
  13969. "_objFlags": 0,
  13970. "node": {
  13971. "__id__": 383
  13972. },
  13973. "_enabled": true,
  13974. "_materials": [
  13975. {
  13976. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13977. }
  13978. ],
  13979. "_useOriginalSize": false,
  13980. "_string": "——————————————————————————",
  13981. "_N$string": "——————————————————————————",
  13982. "_fontSize": 26,
  13983. "_lineHeight": 40,
  13984. "_enableWrapText": true,
  13985. "_N$file": null,
  13986. "_isSystemFontUsed": true,
  13987. "_spacingX": 0,
  13988. "_batchAsBitmap": false,
  13989. "_styleFlags": 0,
  13990. "_underlineHeight": 0,
  13991. "_N$horizontalAlign": 1,
  13992. "_N$verticalAlign": 1,
  13993. "_N$fontFamily": "Arial",
  13994. "_N$overflow": 0,
  13995. "_N$cacheMode": 0,
  13996. "_id": ""
  13997. },
  13998. {
  13999. "__type__": "cc.PrefabInfo",
  14000. "root": {
  14001. "__id__": 1
  14002. },
  14003. "asset": {
  14004. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  14005. },
  14006. "fileId": "b7Kp7Hco1LzrjOV/jTTQnE",
  14007. "sync": false
  14008. },
  14009. {
  14010. "__type__": "cc.Node",
  14011. "_name": "New Label",
  14012. "_objFlags": 0,
  14013. "_parent": {
  14014. "__id__": 347
  14015. },
  14016. "_children": [],
  14017. "_active": true,
  14018. "_components": [
  14019. {
  14020. "__id__": 387
  14021. }
  14022. ],
  14023. "_prefab": {
  14024. "__id__": 388
  14025. },
  14026. "_opacity": 255,
  14027. "_color": {
  14028. "__type__": "cc.Color",
  14029. "r": 153,
  14030. "g": 153,
  14031. "b": 153,
  14032. "a": 255
  14033. },
  14034. "_contentSize": {
  14035. "__type__": "cc.Size",
  14036. "width": 112,
  14037. "height": 50.4
  14038. },
  14039. "_anchorPoint": {
  14040. "__type__": "cc.Vec2",
  14041. "x": 0,
  14042. "y": 0.5
  14043. },
  14044. "_trs": {
  14045. "__type__": "TypedArray",
  14046. "ctor": "Float64Array",
  14047. "array": [
  14048. -330,
  14049. 0,
  14050. 0,
  14051. 0,
  14052. 0,
  14053. 0,
  14054. 1,
  14055. 1,
  14056. 1,
  14057. 1
  14058. ]
  14059. },
  14060. "_eulerAngles": {
  14061. "__type__": "cc.Vec3",
  14062. "x": 0,
  14063. "y": 0,
  14064. "z": 0
  14065. },
  14066. "_skewX": 0,
  14067. "_skewY": 0,
  14068. "_is3DNode": false,
  14069. "_groupIndex": 0,
  14070. "groupIndex": 0,
  14071. "_id": ""
  14072. },
  14073. {
  14074. "__type__": "cc.Label",
  14075. "_name": "",
  14076. "_objFlags": 0,
  14077. "node": {
  14078. "__id__": 386
  14079. },
  14080. "_enabled": true,
  14081. "_materials": [
  14082. {
  14083. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14084. }
  14085. ],
  14086. "_useOriginalSize": false,
  14087. "_string": "提现金额",
  14088. "_N$string": "提现金额",
  14089. "_fontSize": 28,
  14090. "_lineHeight": 40,
  14091. "_enableWrapText": true,
  14092. "_N$file": null,
  14093. "_isSystemFontUsed": true,
  14094. "_spacingX": 0,
  14095. "_batchAsBitmap": false,
  14096. "_styleFlags": 0,
  14097. "_underlineHeight": 0,
  14098. "_N$horizontalAlign": 1,
  14099. "_N$verticalAlign": 1,
  14100. "_N$fontFamily": "Arial",
  14101. "_N$overflow": 0,
  14102. "_N$cacheMode": 0,
  14103. "_id": ""
  14104. },
  14105. {
  14106. "__type__": "cc.PrefabInfo",
  14107. "root": {
  14108. "__id__": 1
  14109. },
  14110. "asset": {
  14111. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  14112. },
  14113. "fileId": "c2A0RDr49APbPeRJ5fF+p0",
  14114. "sync": false
  14115. },
  14116. {
  14117. "__type__": "cc.Node",
  14118. "_name": "New Label",
  14119. "_objFlags": 0,
  14120. "_parent": {
  14121. "__id__": 347
  14122. },
  14123. "_children": [],
  14124. "_active": true,
  14125. "_components": [
  14126. {
  14127. "__id__": 390
  14128. }
  14129. ],
  14130. "_prefab": {
  14131. "__id__": 391
  14132. },
  14133. "_opacity": 255,
  14134. "_color": {
  14135. "__type__": "cc.Color",
  14136. "r": 153,
  14137. "g": 153,
  14138. "b": 153,
  14139. "a": 255
  14140. },
  14141. "_contentSize": {
  14142. "__type__": "cc.Size",
  14143. "width": 112,
  14144. "height": 50.4
  14145. },
  14146. "_anchorPoint": {
  14147. "__type__": "cc.Vec2",
  14148. "x": 0,
  14149. "y": 0.5
  14150. },
  14151. "_trs": {
  14152. "__type__": "TypedArray",
  14153. "ctor": "Float64Array",
  14154. "array": [
  14155. -330,
  14156. -63,
  14157. 0,
  14158. 0,
  14159. 0,
  14160. 0,
  14161. 1,
  14162. 1,
  14163. 1,
  14164. 1
  14165. ]
  14166. },
  14167. "_eulerAngles": {
  14168. "__type__": "cc.Vec3",
  14169. "x": 0,
  14170. "y": 0,
  14171. "z": 0
  14172. },
  14173. "_skewX": 0,
  14174. "_skewY": 0,
  14175. "_is3DNode": false,
  14176. "_groupIndex": 0,
  14177. "groupIndex": 0,
  14178. "_id": ""
  14179. },
  14180. {
  14181. "__type__": "cc.Label",
  14182. "_name": "",
  14183. "_objFlags": 0,
  14184. "node": {
  14185. "__id__": 389
  14186. },
  14187. "_enabled": true,
  14188. "_materials": [
  14189. {
  14190. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14191. }
  14192. ],
  14193. "_useOriginalSize": false,
  14194. "_string": "到账方式",
  14195. "_N$string": "到账方式",
  14196. "_fontSize": 28,
  14197. "_lineHeight": 40,
  14198. "_enableWrapText": true,
  14199. "_N$file": null,
  14200. "_isSystemFontUsed": true,
  14201. "_spacingX": 0,
  14202. "_batchAsBitmap": false,
  14203. "_styleFlags": 0,
  14204. "_underlineHeight": 0,
  14205. "_N$horizontalAlign": 1,
  14206. "_N$verticalAlign": 1,
  14207. "_N$fontFamily": "Arial",
  14208. "_N$overflow": 0,
  14209. "_N$cacheMode": 0,
  14210. "_id": ""
  14211. },
  14212. {
  14213. "__type__": "cc.PrefabInfo",
  14214. "root": {
  14215. "__id__": 1
  14216. },
  14217. "asset": {
  14218. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  14219. },
  14220. "fileId": "29MmLcWVRD472cZ+JE0zkS",
  14221. "sync": false
  14222. },
  14223. {
  14224. "__type__": "cc.Node",
  14225. "_name": "New Label",
  14226. "_objFlags": 0,
  14227. "_parent": {
  14228. "__id__": 347
  14229. },
  14230. "_children": [],
  14231. "_active": true,
  14232. "_components": [
  14233. {
  14234. "__id__": 393
  14235. }
  14236. ],
  14237. "_prefab": {
  14238. "__id__": 394
  14239. },
  14240. "_opacity": 255,
  14241. "_color": {
  14242. "__type__": "cc.Color",
  14243. "r": 153,
  14244. "g": 153,
  14245. "b": 153,
  14246. "a": 255
  14247. },
  14248. "_contentSize": {
  14249. "__type__": "cc.Size",
  14250. "width": 84,
  14251. "height": 50.4
  14252. },
  14253. "_anchorPoint": {
  14254. "__type__": "cc.Vec2",
  14255. "x": 0,
  14256. "y": 0.5
  14257. },
  14258. "_trs": {
  14259. "__type__": "TypedArray",
  14260. "ctor": "Float64Array",
  14261. "array": [
  14262. -330,
  14263. -126,
  14264. 0,
  14265. 0,
  14266. 0,
  14267. 0,
  14268. 1,
  14269. 1,
  14270. 1,
  14271. 1
  14272. ]
  14273. },
  14274. "_eulerAngles": {
  14275. "__type__": "cc.Vec3",
  14276. "x": 0,
  14277. "y": 0,
  14278. "z": 0
  14279. },
  14280. "_skewX": 0,
  14281. "_skewY": 0,
  14282. "_is3DNode": false,
  14283. "_groupIndex": 0,
  14284. "groupIndex": 0,
  14285. "_id": ""
  14286. },
  14287. {
  14288. "__type__": "cc.Label",
  14289. "_name": "",
  14290. "_objFlags": 0,
  14291. "node": {
  14292. "__id__": 392
  14293. },
  14294. "_enabled": true,
  14295. "_materials": [
  14296. {
  14297. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14298. }
  14299. ],
  14300. "_useOriginalSize": false,
  14301. "_string": "服务费",
  14302. "_N$string": "服务费",
  14303. "_fontSize": 28,
  14304. "_lineHeight": 40,
  14305. "_enableWrapText": true,
  14306. "_N$file": null,
  14307. "_isSystemFontUsed": true,
  14308. "_spacingX": 0,
  14309. "_batchAsBitmap": false,
  14310. "_styleFlags": 0,
  14311. "_underlineHeight": 0,
  14312. "_N$horizontalAlign": 1,
  14313. "_N$verticalAlign": 1,
  14314. "_N$fontFamily": "Arial",
  14315. "_N$overflow": 0,
  14316. "_N$cacheMode": 0,
  14317. "_id": ""
  14318. },
  14319. {
  14320. "__type__": "cc.PrefabInfo",
  14321. "root": {
  14322. "__id__": 1
  14323. },
  14324. "asset": {
  14325. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  14326. },
  14327. "fileId": "b7vae5UQFBbaOz4Jt7eer9",
  14328. "sync": false
  14329. },
  14330. {
  14331. "__type__": "cc.Node",
  14332. "_name": "labMoeny",
  14333. "_objFlags": 0,
  14334. "_parent": {
  14335. "__id__": 347
  14336. },
  14337. "_children": [],
  14338. "_active": true,
  14339. "_components": [
  14340. {
  14341. "__id__": 396
  14342. }
  14343. ],
  14344. "_prefab": {
  14345. "__id__": 397
  14346. },
  14347. "_opacity": 255,
  14348. "_color": {
  14349. "__type__": "cc.Color",
  14350. "r": 13,
  14351. "g": 13,
  14352. "b": 13,
  14353. "a": 255
  14354. },
  14355. "_contentSize": {
  14356. "__type__": "cc.Size",
  14357. "width": 66.92,
  14358. "height": 50.4
  14359. },
  14360. "_anchorPoint": {
  14361. "__type__": "cc.Vec2",
  14362. "x": 1,
  14363. "y": 0.5
  14364. },
  14365. "_trs": {
  14366. "__type__": "TypedArray",
  14367. "ctor": "Float64Array",
  14368. "array": [
  14369. 325.229,
  14370. 0,
  14371. 0,
  14372. 0,
  14373. 0,
  14374. 0,
  14375. 1,
  14376. 1,
  14377. 1,
  14378. 1
  14379. ]
  14380. },
  14381. "_eulerAngles": {
  14382. "__type__": "cc.Vec3",
  14383. "x": 0,
  14384. "y": 0,
  14385. "z": 0
  14386. },
  14387. "_skewX": 0,
  14388. "_skewY": 0,
  14389. "_is3DNode": false,
  14390. "_groupIndex": 0,
  14391. "groupIndex": 0,
  14392. "_id": ""
  14393. },
  14394. {
  14395. "__type__": "cc.Label",
  14396. "_name": "",
  14397. "_objFlags": 0,
  14398. "node": {
  14399. "__id__": 395
  14400. },
  14401. "_enabled": true,
  14402. "_materials": [
  14403. {
  14404. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14405. }
  14406. ],
  14407. "_useOriginalSize": false,
  14408. "_string": "¥0.3",
  14409. "_N$string": "¥0.3",
  14410. "_fontSize": 28,
  14411. "_lineHeight": 40,
  14412. "_enableWrapText": true,
  14413. "_N$file": null,
  14414. "_isSystemFontUsed": true,
  14415. "_spacingX": 0,
  14416. "_batchAsBitmap": false,
  14417. "_styleFlags": 1,
  14418. "_underlineHeight": 0,
  14419. "_N$horizontalAlign": 1,
  14420. "_N$verticalAlign": 1,
  14421. "_N$fontFamily": "Arial",
  14422. "_N$overflow": 0,
  14423. "_N$cacheMode": 0,
  14424. "_id": ""
  14425. },
  14426. {
  14427. "__type__": "cc.PrefabInfo",
  14428. "root": {
  14429. "__id__": 1
  14430. },
  14431. "asset": {
  14432. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  14433. },
  14434. "fileId": "06MDu7e85CxKlbVlcDmX5u",
  14435. "sync": false
  14436. },
  14437. {
  14438. "__type__": "cc.Node",
  14439. "_name": "New Label",
  14440. "_objFlags": 0,
  14441. "_parent": {
  14442. "__id__": 347
  14443. },
  14444. "_children": [],
  14445. "_active": true,
  14446. "_components": [
  14447. {
  14448. "__id__": 399
  14449. }
  14450. ],
  14451. "_prefab": {
  14452. "__id__": 400
  14453. },
  14454. "_opacity": 255,
  14455. "_color": {
  14456. "__type__": "cc.Color",
  14457. "r": 13,
  14458. "g": 13,
  14459. "b": 13,
  14460. "a": 255
  14461. },
  14462. "_contentSize": {
  14463. "__type__": "cc.Size",
  14464. "width": 56,
  14465. "height": 50.4
  14466. },
  14467. "_anchorPoint": {
  14468. "__type__": "cc.Vec2",
  14469. "x": 1,
  14470. "y": 0.5
  14471. },
  14472. "_trs": {
  14473. "__type__": "TypedArray",
  14474. "ctor": "Float64Array",
  14475. "array": [
  14476. 325.229,
  14477. -63,
  14478. 0,
  14479. 0,
  14480. 0,
  14481. 0,
  14482. 1,
  14483. 1,
  14484. 1,
  14485. 1
  14486. ]
  14487. },
  14488. "_eulerAngles": {
  14489. "__type__": "cc.Vec3",
  14490. "x": 0,
  14491. "y": 0,
  14492. "z": 0
  14493. },
  14494. "_skewX": 0,
  14495. "_skewY": 0,
  14496. "_is3DNode": false,
  14497. "_groupIndex": 0,
  14498. "groupIndex": 0,
  14499. "_id": ""
  14500. },
  14501. {
  14502. "__type__": "cc.Label",
  14503. "_name": "",
  14504. "_objFlags": 0,
  14505. "node": {
  14506. "__id__": 398
  14507. },
  14508. "_enabled": true,
  14509. "_materials": [
  14510. {
  14511. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14512. }
  14513. ],
  14514. "_useOriginalSize": false,
  14515. "_string": "微信",
  14516. "_N$string": "微信",
  14517. "_fontSize": 28,
  14518. "_lineHeight": 40,
  14519. "_enableWrapText": true,
  14520. "_N$file": null,
  14521. "_isSystemFontUsed": true,
  14522. "_spacingX": 0,
  14523. "_batchAsBitmap": false,
  14524. "_styleFlags": 1,
  14525. "_underlineHeight": 0,
  14526. "_N$horizontalAlign": 1,
  14527. "_N$verticalAlign": 1,
  14528. "_N$fontFamily": "Arial",
  14529. "_N$overflow": 0,
  14530. "_N$cacheMode": 0,
  14531. "_id": ""
  14532. },
  14533. {
  14534. "__type__": "cc.PrefabInfo",
  14535. "root": {
  14536. "__id__": 1
  14537. },
  14538. "asset": {
  14539. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  14540. },
  14541. "fileId": "61RI7TjvlGYaCwxLSqPnm+",
  14542. "sync": false
  14543. },
  14544. {
  14545. "__type__": "cc.Node",
  14546. "_name": "New Label",
  14547. "_objFlags": 0,
  14548. "_parent": {
  14549. "__id__": 347
  14550. },
  14551. "_children": [],
  14552. "_active": true,
  14553. "_components": [
  14554. {
  14555. "__id__": 402
  14556. }
  14557. ],
  14558. "_prefab": {
  14559. "__id__": 403
  14560. },
  14561. "_opacity": 255,
  14562. "_color": {
  14563. "__type__": "cc.Color",
  14564. "r": 13,
  14565. "g": 13,
  14566. "b": 13,
  14567. "a": 255
  14568. },
  14569. "_contentSize": {
  14570. "__type__": "cc.Size",
  14571. "width": 56,
  14572. "height": 50.4
  14573. },
  14574. "_anchorPoint": {
  14575. "__type__": "cc.Vec2",
  14576. "x": 1,
  14577. "y": 0.5
  14578. },
  14579. "_trs": {
  14580. "__type__": "TypedArray",
  14581. "ctor": "Float64Array",
  14582. "array": [
  14583. 325.229,
  14584. -126,
  14585. 0,
  14586. 0,
  14587. 0,
  14588. 0,
  14589. 1,
  14590. 1,
  14591. 1,
  14592. 1
  14593. ]
  14594. },
  14595. "_eulerAngles": {
  14596. "__type__": "cc.Vec3",
  14597. "x": 0,
  14598. "y": 0,
  14599. "z": 0
  14600. },
  14601. "_skewX": 0,
  14602. "_skewY": 0,
  14603. "_is3DNode": false,
  14604. "_groupIndex": 0,
  14605. "groupIndex": 0,
  14606. "_id": ""
  14607. },
  14608. {
  14609. "__type__": "cc.Label",
  14610. "_name": "",
  14611. "_objFlags": 0,
  14612. "node": {
  14613. "__id__": 401
  14614. },
  14615. "_enabled": true,
  14616. "_materials": [
  14617. {
  14618. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14619. }
  14620. ],
  14621. "_useOriginalSize": false,
  14622. "_string": "免费",
  14623. "_N$string": "免费",
  14624. "_fontSize": 28,
  14625. "_lineHeight": 40,
  14626. "_enableWrapText": true,
  14627. "_N$file": null,
  14628. "_isSystemFontUsed": true,
  14629. "_spacingX": 0,
  14630. "_batchAsBitmap": false,
  14631. "_styleFlags": 1,
  14632. "_underlineHeight": 0,
  14633. "_N$horizontalAlign": 1,
  14634. "_N$verticalAlign": 1,
  14635. "_N$fontFamily": "Arial",
  14636. "_N$overflow": 0,
  14637. "_N$cacheMode": 0,
  14638. "_id": ""
  14639. },
  14640. {
  14641. "__type__": "cc.PrefabInfo",
  14642. "root": {
  14643. "__id__": 1
  14644. },
  14645. "asset": {
  14646. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  14647. },
  14648. "fileId": "5cAC9fI/tGjKxWT0VaSv1f",
  14649. "sync": false
  14650. },
  14651. {
  14652. "__type__": "cc.Node",
  14653. "_name": "btn_8",
  14654. "_objFlags": 0,
  14655. "_parent": {
  14656. "__id__": 347
  14657. },
  14658. "_children": [
  14659. {
  14660. "__id__": 405
  14661. },
  14662. {
  14663. "__id__": 408
  14664. }
  14665. ],
  14666. "_active": true,
  14667. "_components": [
  14668. {
  14669. "__id__": 411
  14670. },
  14671. {
  14672. "__id__": 412
  14673. }
  14674. ],
  14675. "_prefab": {
  14676. "__id__": 414
  14677. },
  14678. "_opacity": 255,
  14679. "_color": {
  14680. "__type__": "cc.Color",
  14681. "r": 255,
  14682. "g": 255,
  14683. "b": 255,
  14684. "a": 255
  14685. },
  14686. "_contentSize": {
  14687. "__type__": "cc.Size",
  14688. "width": 330,
  14689. "height": 70
  14690. },
  14691. "_anchorPoint": {
  14692. "__type__": "cc.Vec2",
  14693. "x": 0.5,
  14694. "y": 0.5
  14695. },
  14696. "_trs": {
  14697. "__type__": "TypedArray",
  14698. "ctor": "Float64Array",
  14699. "array": [
  14700. 0,
  14701. -462.014,
  14702. 0,
  14703. 0,
  14704. 0,
  14705. 0,
  14706. 1,
  14707. 1,
  14708. 1,
  14709. 1
  14710. ]
  14711. },
  14712. "_eulerAngles": {
  14713. "__type__": "cc.Vec3",
  14714. "x": 0,
  14715. "y": 0,
  14716. "z": 0
  14717. },
  14718. "_skewX": 0,
  14719. "_skewY": 0,
  14720. "_is3DNode": false,
  14721. "_groupIndex": 0,
  14722. "groupIndex": 0,
  14723. "_id": ""
  14724. },
  14725. {
  14726. "__type__": "cc.Node",
  14727. "_name": "New Label",
  14728. "_objFlags": 0,
  14729. "_parent": {
  14730. "__id__": 404
  14731. },
  14732. "_children": [],
  14733. "_active": true,
  14734. "_components": [
  14735. {
  14736. "__id__": 406
  14737. }
  14738. ],
  14739. "_prefab": {
  14740. "__id__": 407
  14741. },
  14742. "_opacity": 255,
  14743. "_color": {
  14744. "__type__": "cc.Color",
  14745. "r": 2,
  14746. "g": 196,
  14747. "b": 92,
  14748. "a": 255
  14749. },
  14750. "_contentSize": {
  14751. "__type__": "cc.Size",
  14752. "width": 32,
  14753. "height": 50.4
  14754. },
  14755. "_anchorPoint": {
  14756. "__type__": "cc.Vec2",
  14757. "x": 0.5,
  14758. "y": 0.5
  14759. },
  14760. "_trs": {
  14761. "__type__": "TypedArray",
  14762. "ctor": "Float64Array",
  14763. "array": [
  14764. -18,
  14765. 0,
  14766. 0,
  14767. 0,
  14768. 0,
  14769. 0,
  14770. 1,
  14771. 1,
  14772. 1,
  14773. 1
  14774. ]
  14775. },
  14776. "_eulerAngles": {
  14777. "__type__": "cc.Vec3",
  14778. "x": 0,
  14779. "y": 0,
  14780. "z": 0
  14781. },
  14782. "_skewX": 0,
  14783. "_skewY": 0,
  14784. "_is3DNode": false,
  14785. "_groupIndex": 0,
  14786. "groupIndex": 0,
  14787. "_id": ""
  14788. },
  14789. {
  14790. "__type__": "cc.Label",
  14791. "_name": "",
  14792. "_objFlags": 0,
  14793. "node": {
  14794. "__id__": 405
  14795. },
  14796. "_enabled": true,
  14797. "_materials": [
  14798. {
  14799. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14800. }
  14801. ],
  14802. "_useOriginalSize": false,
  14803. "_string": "完",
  14804. "_N$string": "完",
  14805. "_fontSize": 32,
  14806. "_lineHeight": 40,
  14807. "_enableWrapText": true,
  14808. "_N$file": null,
  14809. "_isSystemFontUsed": true,
  14810. "_spacingX": 0,
  14811. "_batchAsBitmap": false,
  14812. "_styleFlags": 0,
  14813. "_underlineHeight": 0,
  14814. "_N$horizontalAlign": 1,
  14815. "_N$verticalAlign": 1,
  14816. "_N$fontFamily": "Arial",
  14817. "_N$overflow": 0,
  14818. "_N$cacheMode": 0,
  14819. "_id": ""
  14820. },
  14821. {
  14822. "__type__": "cc.PrefabInfo",
  14823. "root": {
  14824. "__id__": 1
  14825. },
  14826. "asset": {
  14827. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  14828. },
  14829. "fileId": "d9XMQ206xE16tsiQMgRFmG",
  14830. "sync": false
  14831. },
  14832. {
  14833. "__type__": "cc.Node",
  14834. "_name": "New Label",
  14835. "_objFlags": 0,
  14836. "_parent": {
  14837. "__id__": 404
  14838. },
  14839. "_children": [],
  14840. "_active": true,
  14841. "_components": [
  14842. {
  14843. "__id__": 409
  14844. }
  14845. ],
  14846. "_prefab": {
  14847. "__id__": 410
  14848. },
  14849. "_opacity": 255,
  14850. "_color": {
  14851. "__type__": "cc.Color",
  14852. "r": 2,
  14853. "g": 196,
  14854. "b": 92,
  14855. "a": 255
  14856. },
  14857. "_contentSize": {
  14858. "__type__": "cc.Size",
  14859. "width": 32,
  14860. "height": 50.4
  14861. },
  14862. "_anchorPoint": {
  14863. "__type__": "cc.Vec2",
  14864. "x": 0.5,
  14865. "y": 0.5
  14866. },
  14867. "_trs": {
  14868. "__type__": "TypedArray",
  14869. "ctor": "Float64Array",
  14870. "array": [
  14871. 18,
  14872. 0,
  14873. 0,
  14874. 0,
  14875. 0,
  14876. 0,
  14877. 1,
  14878. 1,
  14879. 1,
  14880. 1
  14881. ]
  14882. },
  14883. "_eulerAngles": {
  14884. "__type__": "cc.Vec3",
  14885. "x": 0,
  14886. "y": 0,
  14887. "z": 0
  14888. },
  14889. "_skewX": 0,
  14890. "_skewY": 0,
  14891. "_is3DNode": false,
  14892. "_groupIndex": 0,
  14893. "groupIndex": 0,
  14894. "_id": ""
  14895. },
  14896. {
  14897. "__type__": "cc.Label",
  14898. "_name": "",
  14899. "_objFlags": 0,
  14900. "node": {
  14901. "__id__": 408
  14902. },
  14903. "_enabled": true,
  14904. "_materials": [
  14905. {
  14906. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14907. }
  14908. ],
  14909. "_useOriginalSize": false,
  14910. "_string": "成",
  14911. "_N$string": "成",
  14912. "_fontSize": 32,
  14913. "_lineHeight": 40,
  14914. "_enableWrapText": true,
  14915. "_N$file": null,
  14916. "_isSystemFontUsed": true,
  14917. "_spacingX": 0,
  14918. "_batchAsBitmap": false,
  14919. "_styleFlags": 0,
  14920. "_underlineHeight": 0,
  14921. "_N$horizontalAlign": 1,
  14922. "_N$verticalAlign": 1,
  14923. "_N$fontFamily": "Arial",
  14924. "_N$overflow": 0,
  14925. "_N$cacheMode": 0,
  14926. "_id": ""
  14927. },
  14928. {
  14929. "__type__": "cc.PrefabInfo",
  14930. "root": {
  14931. "__id__": 1
  14932. },
  14933. "asset": {
  14934. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  14935. },
  14936. "fileId": "97o8TGE11Libjy0Ww/euA3",
  14937. "sync": false
  14938. },
  14939. {
  14940. "__type__": "cc.Sprite",
  14941. "_name": "",
  14942. "_objFlags": 0,
  14943. "node": {
  14944. "__id__": 404
  14945. },
  14946. "_enabled": true,
  14947. "_materials": [
  14948. {
  14949. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14950. }
  14951. ],
  14952. "_srcBlendFactor": 770,
  14953. "_dstBlendFactor": 771,
  14954. "_spriteFrame": {
  14955. "__uuid__": "e22f795f-ebd2-42d2-aac7-ae05de03d348"
  14956. },
  14957. "_type": 0,
  14958. "_sizeMode": 1,
  14959. "_fillType": 0,
  14960. "_fillCenter": {
  14961. "__type__": "cc.Vec2",
  14962. "x": 0,
  14963. "y": 0
  14964. },
  14965. "_fillStart": 0,
  14966. "_fillRange": 0,
  14967. "_isTrimmedMode": true,
  14968. "_atlas": null,
  14969. "_id": ""
  14970. },
  14971. {
  14972. "__type__": "cc.Button",
  14973. "_name": "",
  14974. "_objFlags": 0,
  14975. "node": {
  14976. "__id__": 404
  14977. },
  14978. "_enabled": true,
  14979. "_normalMaterial": {
  14980. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14981. },
  14982. "_grayMaterial": null,
  14983. "duration": 0.1,
  14984. "zoomScale": 0.8,
  14985. "clickEvents": [
  14986. {
  14987. "__id__": 413
  14988. }
  14989. ],
  14990. "_N$interactable": true,
  14991. "_N$enableAutoGrayEffect": false,
  14992. "_N$transition": 3,
  14993. "transition": 3,
  14994. "_N$normalColor": {
  14995. "__type__": "cc.Color",
  14996. "r": 255,
  14997. "g": 255,
  14998. "b": 255,
  14999. "a": 255
  15000. },
  15001. "_N$pressedColor": {
  15002. "__type__": "cc.Color",
  15003. "r": 211,
  15004. "g": 211,
  15005. "b": 211,
  15006. "a": 255
  15007. },
  15008. "pressedColor": {
  15009. "__type__": "cc.Color",
  15010. "r": 211,
  15011. "g": 211,
  15012. "b": 211,
  15013. "a": 255
  15014. },
  15015. "_N$hoverColor": {
  15016. "__type__": "cc.Color",
  15017. "r": 255,
  15018. "g": 255,
  15019. "b": 255,
  15020. "a": 255
  15021. },
  15022. "hoverColor": {
  15023. "__type__": "cc.Color",
  15024. "r": 255,
  15025. "g": 255,
  15026. "b": 255,
  15027. "a": 255
  15028. },
  15029. "_N$disabledColor": {
  15030. "__type__": "cc.Color",
  15031. "r": 124,
  15032. "g": 124,
  15033. "b": 124,
  15034. "a": 255
  15035. },
  15036. "_N$normalSprite": null,
  15037. "_N$pressedSprite": null,
  15038. "pressedSprite": null,
  15039. "_N$hoverSprite": null,
  15040. "hoverSprite": null,
  15041. "_N$disabledSprite": null,
  15042. "_N$target": {
  15043. "__id__": 404
  15044. },
  15045. "_id": ""
  15046. },
  15047. {
  15048. "__type__": "cc.ClickEvent",
  15049. "target": {
  15050. "__id__": 1
  15051. },
  15052. "component": "",
  15053. "_componentId": "b150700q4JFCaxD1R8c6DRF",
  15054. "handler": "clickClosePro",
  15055. "customEventData": ""
  15056. },
  15057. {
  15058. "__type__": "cc.PrefabInfo",
  15059. "root": {
  15060. "__id__": 1
  15061. },
  15062. "asset": {
  15063. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  15064. },
  15065. "fileId": "deahRHyzFHZoakouKDx5LI",
  15066. "sync": false
  15067. },
  15068. {
  15069. "__type__": "cc.PrefabInfo",
  15070. "root": {
  15071. "__id__": 1
  15072. },
  15073. "asset": {
  15074. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  15075. },
  15076. "fileId": "fee2SvKfhBI6JhRoTD6aQy",
  15077. "sync": false
  15078. },
  15079. {
  15080. "__type__": "b602dq9TztDIJy8rOnH/gD5",
  15081. "_name": "",
  15082. "_objFlags": 0,
  15083. "node": {
  15084. "__id__": 1
  15085. },
  15086. "_enabled": true,
  15087. "_id": ""
  15088. },
  15089. {
  15090. "__type__": "b150700q4JFCaxD1R8c6DRF",
  15091. "_name": "",
  15092. "_objFlags": 0,
  15093. "node": {
  15094. "__id__": 1
  15095. },
  15096. "_enabled": true,
  15097. "labGetGold": {
  15098. "__id__": 77
  15099. },
  15100. "labTicket": {
  15101. "__id__": 51
  15102. },
  15103. "labLeftTimes": {
  15104. "__id__": 55
  15105. },
  15106. "scNode": {
  15107. "__id__": 112
  15108. },
  15109. "viewNode": {
  15110. "__id__": 120
  15111. },
  15112. "content": {
  15113. "__id__": 119
  15114. },
  15115. "resultPart": {
  15116. "__id__": 152
  15117. },
  15118. "labIssue": {
  15119. "__id__": 203
  15120. },
  15121. "labAwardMoney": {
  15122. "__id__": 206
  15123. },
  15124. "labNickName": {
  15125. "__id__": 213
  15126. },
  15127. "btnState": {
  15128. "__id__": 194
  15129. },
  15130. "labState": {
  15131. "__id__": 196
  15132. },
  15133. "spHead": {
  15134. "__id__": 186
  15135. },
  15136. "spFail": {
  15137. "__id__": 167
  15138. },
  15139. "spSuccess": {
  15140. "__id__": 170
  15141. },
  15142. "loadPart": {
  15143. "__id__": 322
  15144. },
  15145. "loadAni": {
  15146. "__id__": 344
  15147. },
  15148. "cashPro": {
  15149. "__id__": 347
  15150. },
  15151. "labMoney1": {
  15152. "__id__": 396
  15153. },
  15154. "labRTitle": {
  15155. "__id__": 239
  15156. },
  15157. "recordPart": {
  15158. "__id__": 224
  15159. },
  15160. "recordContent": {
  15161. "__id__": 260
  15162. },
  15163. "helpPart": {
  15164. "__id__": 274
  15165. },
  15166. "labTimes": {
  15167. "__id__": 306
  15168. },
  15169. "LabScroll": {
  15170. "__id__": 108
  15171. },
  15172. "qipaoOne": {
  15173. "__id__": 130
  15174. },
  15175. "qipaoSec": {
  15176. "__id__": 136
  15177. },
  15178. "rewardBgNode": {
  15179. "__id__": 171
  15180. },
  15181. "guideRect1": {
  15182. "__id__": 142
  15183. },
  15184. "_id": ""
  15185. },
  15186. {
  15187. "__type__": "cc.PrefabInfo",
  15188. "root": {
  15189. "__id__": 1
  15190. },
  15191. "asset": {
  15192. "__uuid__": "802fb6f8-fd70-4318-b19a-7f7658106e2f"
  15193. },
  15194. "fileId": "863r86qV5Hho2FjbYIPoHg",
  15195. "sync": false
  15196. }
  15197. ]