start.fire 206 KB

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