start.fire 195 KB

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