start.fire 195 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916
  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.3812131597031373,
  48. "y": 0.3812131597031373,
  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": 3,
  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": 3,
  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__": "5aac5ecd-ecd7-457d-baa6-4b841e98b835"
  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": {
  3749. "__uuid__": "b9c0be93-f2c4-4a99-af00-76900a4ee840"
  3750. },
  3751. "_srcBlendFactor": 770,
  3752. "_dstBlendFactor": 771,
  3753. "_id": "4dD+7FbY1ByrUbzj/u/100"
  3754. },
  3755. {
  3756. "__type__": "cc.Button",
  3757. "_name": "",
  3758. "_objFlags": 0,
  3759. "node": {
  3760. "__id__": 78
  3761. },
  3762. "_enabled": true,
  3763. "duration": 0.1,
  3764. "zoomScale": 1.2,
  3765. "clickEvents": [
  3766. {
  3767. "__id__": 81
  3768. }
  3769. ],
  3770. "_N$interactable": true,
  3771. "_N$enableAutoGrayEffect": false,
  3772. "_N$transition": 3,
  3773. "transition": 3,
  3774. "_N$normalColor": {
  3775. "__type__": "cc.Color",
  3776. "r": 214,
  3777. "g": 214,
  3778. "b": 214,
  3779. "a": 255
  3780. },
  3781. "_N$pressedColor": {
  3782. "__type__": "cc.Color",
  3783. "r": 211,
  3784. "g": 211,
  3785. "b": 211,
  3786. "a": 255
  3787. },
  3788. "pressedColor": {
  3789. "__type__": "cc.Color",
  3790. "r": 211,
  3791. "g": 211,
  3792. "b": 211,
  3793. "a": 255
  3794. },
  3795. "_N$hoverColor": {
  3796. "__type__": "cc.Color",
  3797. "r": 255,
  3798. "g": 255,
  3799. "b": 255,
  3800. "a": 255
  3801. },
  3802. "hoverColor": {
  3803. "__type__": "cc.Color",
  3804. "r": 255,
  3805. "g": 255,
  3806. "b": 255,
  3807. "a": 255
  3808. },
  3809. "_N$disabledColor": {
  3810. "__type__": "cc.Color",
  3811. "r": 124,
  3812. "g": 124,
  3813. "b": 124,
  3814. "a": 255
  3815. },
  3816. "_N$normalSprite": null,
  3817. "_N$pressedSprite": null,
  3818. "pressedSprite": null,
  3819. "_N$hoverSprite": null,
  3820. "hoverSprite": null,
  3821. "_N$disabledSprite": null,
  3822. "_N$target": {
  3823. "__id__": 78
  3824. },
  3825. "_id": "e10WyzDyRP/ZQdNDh+QKQy"
  3826. },
  3827. {
  3828. "__type__": "cc.ClickEvent",
  3829. "target": {
  3830. "__id__": 6
  3831. },
  3832. "component": "",
  3833. "_componentId": "db8e82XSZdNhr/M689y9PoA",
  3834. "handler": "clickZHLogin",
  3835. "customEventData": ""
  3836. },
  3837. {
  3838. "__type__": "cc.Widget",
  3839. "_name": "",
  3840. "_objFlags": 0,
  3841. "node": {
  3842. "__id__": 78
  3843. },
  3844. "_enabled": true,
  3845. "alignMode": 1,
  3846. "_target": null,
  3847. "_alignFlags": 8,
  3848. "_left": 400,
  3849. "_right": 0.9997183593750001,
  3850. "_top": 0,
  3851. "_bottom": 0,
  3852. "_verticalCenter": 0,
  3853. "_horizontalCenter": 0,
  3854. "_isAbsLeft": true,
  3855. "_isAbsRight": false,
  3856. "_isAbsTop": true,
  3857. "_isAbsBottom": true,
  3858. "_isAbsHorizontalCenter": true,
  3859. "_isAbsVerticalCenter": true,
  3860. "_originalWidth": 299,
  3861. "_originalHeight": 0,
  3862. "_id": "50lh6+62dKtomhAd2H5TVy"
  3863. },
  3864. {
  3865. "__type__": "cc.Node",
  3866. "_name": "ykLoginBtn",
  3867. "_objFlags": 0,
  3868. "_parent": {
  3869. "__id__": 73
  3870. },
  3871. "_children": [],
  3872. "_active": true,
  3873. "_level": 4,
  3874. "_components": [
  3875. {
  3876. "__id__": 84
  3877. },
  3878. {
  3879. "__id__": 85
  3880. },
  3881. {
  3882. "__id__": 87
  3883. }
  3884. ],
  3885. "_prefab": null,
  3886. "_opacity": 255,
  3887. "_color": {
  3888. "__type__": "cc.Color",
  3889. "r": 255,
  3890. "g": 255,
  3891. "b": 255,
  3892. "a": 255
  3893. },
  3894. "_contentSize": {
  3895. "__type__": "cc.Size",
  3896. "width": 256,
  3897. "height": 88
  3898. },
  3899. "_anchorPoint": {
  3900. "__type__": "cc.Vec2",
  3901. "x": 0.5,
  3902. "y": 0.5
  3903. },
  3904. "_position": {
  3905. "__type__": "cc.Vec3",
  3906. "x": 0,
  3907. "y": 0,
  3908. "z": 0
  3909. },
  3910. "_scale": {
  3911. "__type__": "cc.Vec3",
  3912. "x": 1,
  3913. "y": 1,
  3914. "z": 1
  3915. },
  3916. "_rotationX": 0,
  3917. "_rotationY": 0,
  3918. "_quat": {
  3919. "__type__": "cc.Quat",
  3920. "x": 0,
  3921. "y": 0,
  3922. "z": 0,
  3923. "w": 1
  3924. },
  3925. "_skewX": 0,
  3926. "_skewY": 0,
  3927. "groupIndex": 0,
  3928. "_id": "cb34H4yjVMaYTDMSKGxvFp"
  3929. },
  3930. {
  3931. "__type__": "cc.Sprite",
  3932. "_name": "",
  3933. "_objFlags": 0,
  3934. "node": {
  3935. "__id__": 83
  3936. },
  3937. "_enabled": true,
  3938. "_spriteFrame": {
  3939. "__uuid__": "1c478768-60eb-4596-bd71-2d666154008e"
  3940. },
  3941. "_type": 0,
  3942. "_sizeMode": 2,
  3943. "_fillType": 0,
  3944. "_fillCenter": {
  3945. "__type__": "cc.Vec2",
  3946. "x": 0,
  3947. "y": 0
  3948. },
  3949. "_fillStart": 0,
  3950. "_fillRange": 0,
  3951. "_isTrimmedMode": false,
  3952. "_state": 0,
  3953. "_atlas": {
  3954. "__uuid__": "b9c0be93-f2c4-4a99-af00-76900a4ee840"
  3955. },
  3956. "_srcBlendFactor": 770,
  3957. "_dstBlendFactor": 771,
  3958. "_id": "eaqi7sezZN+bSFzb10+5DK"
  3959. },
  3960. {
  3961. "__type__": "cc.Button",
  3962. "_name": "",
  3963. "_objFlags": 0,
  3964. "node": {
  3965. "__id__": 83
  3966. },
  3967. "_enabled": true,
  3968. "duration": 0.1,
  3969. "zoomScale": 1.2,
  3970. "clickEvents": [
  3971. {
  3972. "__id__": 86
  3973. }
  3974. ],
  3975. "_N$interactable": true,
  3976. "_N$enableAutoGrayEffect": false,
  3977. "_N$transition": 3,
  3978. "transition": 3,
  3979. "_N$normalColor": {
  3980. "__type__": "cc.Color",
  3981. "r": 214,
  3982. "g": 214,
  3983. "b": 214,
  3984. "a": 255
  3985. },
  3986. "_N$pressedColor": {
  3987. "__type__": "cc.Color",
  3988. "r": 211,
  3989. "g": 211,
  3990. "b": 211,
  3991. "a": 255
  3992. },
  3993. "pressedColor": {
  3994. "__type__": "cc.Color",
  3995. "r": 211,
  3996. "g": 211,
  3997. "b": 211,
  3998. "a": 255
  3999. },
  4000. "_N$hoverColor": {
  4001. "__type__": "cc.Color",
  4002. "r": 255,
  4003. "g": 255,
  4004. "b": 255,
  4005. "a": 255
  4006. },
  4007. "hoverColor": {
  4008. "__type__": "cc.Color",
  4009. "r": 255,
  4010. "g": 255,
  4011. "b": 255,
  4012. "a": 255
  4013. },
  4014. "_N$disabledColor": {
  4015. "__type__": "cc.Color",
  4016. "r": 124,
  4017. "g": 124,
  4018. "b": 124,
  4019. "a": 255
  4020. },
  4021. "_N$normalSprite": null,
  4022. "_N$pressedSprite": null,
  4023. "pressedSprite": null,
  4024. "_N$hoverSprite": null,
  4025. "hoverSprite": null,
  4026. "_N$disabledSprite": null,
  4027. "_N$target": {
  4028. "__id__": 83
  4029. },
  4030. "_id": "6eIDhW+RRMPo5KxWBb9YDZ"
  4031. },
  4032. {
  4033. "__type__": "cc.ClickEvent",
  4034. "target": {
  4035. "__id__": 6
  4036. },
  4037. "component": "",
  4038. "_componentId": "db8e82XSZdNhr/M689y9PoA",
  4039. "handler": "clickYKLogin",
  4040. "customEventData": ""
  4041. },
  4042. {
  4043. "__type__": "cc.Widget",
  4044. "_name": "",
  4045. "_objFlags": 0,
  4046. "node": {
  4047. "__id__": 83
  4048. },
  4049. "_enabled": true,
  4050. "alignMode": 1,
  4051. "_target": null,
  4052. "_alignFlags": 16,
  4053. "_left": 0.3879310344827586,
  4054. "_right": 0.3879310344827586,
  4055. "_top": 0,
  4056. "_bottom": 0,
  4057. "_verticalCenter": 0,
  4058. "_horizontalCenter": 0,
  4059. "_isAbsLeft": false,
  4060. "_isAbsRight": false,
  4061. "_isAbsTop": true,
  4062. "_isAbsBottom": true,
  4063. "_isAbsHorizontalCenter": true,
  4064. "_isAbsVerticalCenter": true,
  4065. "_originalWidth": 299,
  4066. "_originalHeight": 0,
  4067. "_id": "0fKYBnS99JIIdXhRt2+kxt"
  4068. },
  4069. {
  4070. "__type__": "cc.Node",
  4071. "_name": "yk2LoginBtn",
  4072. "_objFlags": 0,
  4073. "_parent": {
  4074. "__id__": 73
  4075. },
  4076. "_children": [],
  4077. "_active": false,
  4078. "_level": 4,
  4079. "_components": [
  4080. {
  4081. "__id__": 89
  4082. },
  4083. {
  4084. "__id__": 90
  4085. },
  4086. {
  4087. "__id__": 92
  4088. }
  4089. ],
  4090. "_prefab": null,
  4091. "_opacity": 255,
  4092. "_color": {
  4093. "__type__": "cc.Color",
  4094. "r": 255,
  4095. "g": 255,
  4096. "b": 255,
  4097. "a": 255
  4098. },
  4099. "_contentSize": {
  4100. "__type__": "cc.Size",
  4101. "width": 256,
  4102. "height": 88
  4103. },
  4104. "_anchorPoint": {
  4105. "__type__": "cc.Vec2",
  4106. "x": 0.5,
  4107. "y": 0.5
  4108. },
  4109. "_position": {
  4110. "__type__": "cc.Vec3",
  4111. "x": 400,
  4112. "y": 0,
  4113. "z": 0
  4114. },
  4115. "_scale": {
  4116. "__type__": "cc.Vec3",
  4117. "x": 1,
  4118. "y": 1,
  4119. "z": 1
  4120. },
  4121. "_rotationX": 0,
  4122. "_rotationY": 0,
  4123. "_quat": {
  4124. "__type__": "cc.Quat",
  4125. "x": 0,
  4126. "y": 0,
  4127. "z": 0,
  4128. "w": 1
  4129. },
  4130. "_skewX": 0,
  4131. "_skewY": 0,
  4132. "groupIndex": 0,
  4133. "_id": "d2C3fh2b9P06yx82bp5jnE"
  4134. },
  4135. {
  4136. "__type__": "cc.Sprite",
  4137. "_name": "",
  4138. "_objFlags": 0,
  4139. "node": {
  4140. "__id__": 88
  4141. },
  4142. "_enabled": true,
  4143. "_spriteFrame": {
  4144. "__uuid__": "1c478768-60eb-4596-bd71-2d666154008e"
  4145. },
  4146. "_type": 0,
  4147. "_sizeMode": 2,
  4148. "_fillType": 0,
  4149. "_fillCenter": {
  4150. "__type__": "cc.Vec2",
  4151. "x": 0,
  4152. "y": 0
  4153. },
  4154. "_fillStart": 0,
  4155. "_fillRange": 0,
  4156. "_isTrimmedMode": false,
  4157. "_state": 0,
  4158. "_atlas": {
  4159. "__uuid__": "b9c0be93-f2c4-4a99-af00-76900a4ee840"
  4160. },
  4161. "_srcBlendFactor": 770,
  4162. "_dstBlendFactor": 771,
  4163. "_id": "88AYz/CyZONZ7HCaPN/wwD"
  4164. },
  4165. {
  4166. "__type__": "cc.Button",
  4167. "_name": "",
  4168. "_objFlags": 0,
  4169. "node": {
  4170. "__id__": 88
  4171. },
  4172. "_enabled": true,
  4173. "duration": 0.1,
  4174. "zoomScale": 1.2,
  4175. "clickEvents": [
  4176. {
  4177. "__id__": 91
  4178. }
  4179. ],
  4180. "_N$interactable": true,
  4181. "_N$enableAutoGrayEffect": false,
  4182. "_N$transition": 3,
  4183. "transition": 3,
  4184. "_N$normalColor": {
  4185. "__type__": "cc.Color",
  4186. "r": 214,
  4187. "g": 214,
  4188. "b": 214,
  4189. "a": 255
  4190. },
  4191. "_N$pressedColor": {
  4192. "__type__": "cc.Color",
  4193. "r": 211,
  4194. "g": 211,
  4195. "b": 211,
  4196. "a": 255
  4197. },
  4198. "pressedColor": {
  4199. "__type__": "cc.Color",
  4200. "r": 211,
  4201. "g": 211,
  4202. "b": 211,
  4203. "a": 255
  4204. },
  4205. "_N$hoverColor": {
  4206. "__type__": "cc.Color",
  4207. "r": 255,
  4208. "g": 255,
  4209. "b": 255,
  4210. "a": 255
  4211. },
  4212. "hoverColor": {
  4213. "__type__": "cc.Color",
  4214. "r": 255,
  4215. "g": 255,
  4216. "b": 255,
  4217. "a": 255
  4218. },
  4219. "_N$disabledColor": {
  4220. "__type__": "cc.Color",
  4221. "r": 124,
  4222. "g": 124,
  4223. "b": 124,
  4224. "a": 255
  4225. },
  4226. "_N$normalSprite": null,
  4227. "_N$pressedSprite": null,
  4228. "pressedSprite": null,
  4229. "_N$hoverSprite": null,
  4230. "hoverSprite": null,
  4231. "_N$disabledSprite": null,
  4232. "_N$target": {
  4233. "__id__": 88
  4234. },
  4235. "_id": "4fJHXKoFNPmZfAFR4syCOt"
  4236. },
  4237. {
  4238. "__type__": "cc.ClickEvent",
  4239. "target": {
  4240. "__id__": 6
  4241. },
  4242. "component": "",
  4243. "_componentId": "db8e82XSZdNhr/M689y9PoA",
  4244. "handler": "clickYKLogin",
  4245. "customEventData": ""
  4246. },
  4247. {
  4248. "__type__": "cc.Widget",
  4249. "_name": "",
  4250. "_objFlags": 0,
  4251. "node": {
  4252. "__id__": 88
  4253. },
  4254. "_enabled": true,
  4255. "alignMode": 1,
  4256. "_target": null,
  4257. "_alignFlags": 8,
  4258. "_left": 400,
  4259. "_right": -1.6056515625000003,
  4260. "_top": 0,
  4261. "_bottom": 0,
  4262. "_verticalCenter": 0,
  4263. "_horizontalCenter": 0,
  4264. "_isAbsLeft": true,
  4265. "_isAbsRight": false,
  4266. "_isAbsTop": true,
  4267. "_isAbsBottom": true,
  4268. "_isAbsHorizontalCenter": true,
  4269. "_isAbsVerticalCenter": true,
  4270. "_originalWidth": 299,
  4271. "_originalHeight": 0,
  4272. "_id": "69uGImbplCP4jCglzgIzrc"
  4273. },
  4274. {
  4275. "__type__": "cc.Widget",
  4276. "_name": "",
  4277. "_objFlags": 0,
  4278. "node": {
  4279. "__id__": 73
  4280. },
  4281. "_enabled": true,
  4282. "alignMode": 1,
  4283. "_target": null,
  4284. "_alignFlags": 16,
  4285. "_left": 0.3879310344827586,
  4286. "_right": 0.3879310344827586,
  4287. "_top": 0,
  4288. "_bottom": 0,
  4289. "_verticalCenter": 0,
  4290. "_horizontalCenter": 0,
  4291. "_isAbsLeft": false,
  4292. "_isAbsRight": false,
  4293. "_isAbsTop": true,
  4294. "_isAbsBottom": true,
  4295. "_isAbsHorizontalCenter": true,
  4296. "_isAbsVerticalCenter": true,
  4297. "_originalWidth": 299,
  4298. "_originalHeight": 0,
  4299. "_id": "aep83u9p9OBKEPJurU8IqL"
  4300. },
  4301. {
  4302. "__type__": "cc.Node",
  4303. "_name": "ljLoginBtn",
  4304. "_objFlags": 0,
  4305. "_parent": {
  4306. "__id__": 72
  4307. },
  4308. "_children": [],
  4309. "_active": false,
  4310. "_level": 3,
  4311. "_components": [
  4312. {
  4313. "__id__": 95
  4314. },
  4315. {
  4316. "__id__": 96
  4317. },
  4318. {
  4319. "__id__": 98
  4320. }
  4321. ],
  4322. "_prefab": null,
  4323. "_opacity": 255,
  4324. "_color": {
  4325. "__type__": "cc.Color",
  4326. "r": 255,
  4327. "g": 255,
  4328. "b": 255,
  4329. "a": 255
  4330. },
  4331. "_contentSize": {
  4332. "__type__": "cc.Size",
  4333. "width": 283,
  4334. "height": 88
  4335. },
  4336. "_anchorPoint": {
  4337. "__type__": "cc.Vec2",
  4338. "x": 0.5,
  4339. "y": 0.5
  4340. },
  4341. "_position": {
  4342. "__type__": "cc.Vec3",
  4343. "x": 667,
  4344. "y": 141,
  4345. "z": 0
  4346. },
  4347. "_scale": {
  4348. "__type__": "cc.Vec3",
  4349. "x": 1,
  4350. "y": 1,
  4351. "z": 1
  4352. },
  4353. "_rotationX": 0,
  4354. "_rotationY": 0,
  4355. "_quat": {
  4356. "__type__": "cc.Quat",
  4357. "x": 0,
  4358. "y": 0,
  4359. "z": 0,
  4360. "w": 1
  4361. },
  4362. "_skewX": 0,
  4363. "_skewY": 0,
  4364. "groupIndex": 0,
  4365. "_id": "6c9xrzRe9ALLpPDI14frW6"
  4366. },
  4367. {
  4368. "__type__": "cc.Sprite",
  4369. "_name": "",
  4370. "_objFlags": 0,
  4371. "node": {
  4372. "__id__": 94
  4373. },
  4374. "_enabled": true,
  4375. "_spriteFrame": {
  4376. "__uuid__": "0f0f115d-16cc-4287-83b8-bd01c8b4b2c3"
  4377. },
  4378. "_type": 0,
  4379. "_sizeMode": 2,
  4380. "_fillType": 0,
  4381. "_fillCenter": {
  4382. "__type__": "cc.Vec2",
  4383. "x": 0,
  4384. "y": 0
  4385. },
  4386. "_fillStart": 0,
  4387. "_fillRange": 0,
  4388. "_isTrimmedMode": false,
  4389. "_state": 0,
  4390. "_atlas": {
  4391. "__uuid__": "b9c0be93-f2c4-4a99-af00-76900a4ee840"
  4392. },
  4393. "_srcBlendFactor": 770,
  4394. "_dstBlendFactor": 771,
  4395. "_id": "5b2TLCmMFKzaGO1EmqBnVx"
  4396. },
  4397. {
  4398. "__type__": "cc.Button",
  4399. "_name": "",
  4400. "_objFlags": 0,
  4401. "node": {
  4402. "__id__": 94
  4403. },
  4404. "_enabled": true,
  4405. "duration": 0.1,
  4406. "zoomScale": 1.2,
  4407. "clickEvents": [
  4408. {
  4409. "__id__": 97
  4410. }
  4411. ],
  4412. "_N$interactable": true,
  4413. "_N$enableAutoGrayEffect": false,
  4414. "_N$transition": 3,
  4415. "transition": 3,
  4416. "_N$normalColor": {
  4417. "__type__": "cc.Color",
  4418. "r": 214,
  4419. "g": 214,
  4420. "b": 214,
  4421. "a": 255
  4422. },
  4423. "_N$pressedColor": {
  4424. "__type__": "cc.Color",
  4425. "r": 211,
  4426. "g": 211,
  4427. "b": 211,
  4428. "a": 255
  4429. },
  4430. "pressedColor": {
  4431. "__type__": "cc.Color",
  4432. "r": 211,
  4433. "g": 211,
  4434. "b": 211,
  4435. "a": 255
  4436. },
  4437. "_N$hoverColor": {
  4438. "__type__": "cc.Color",
  4439. "r": 255,
  4440. "g": 255,
  4441. "b": 255,
  4442. "a": 255
  4443. },
  4444. "hoverColor": {
  4445. "__type__": "cc.Color",
  4446. "r": 255,
  4447. "g": 255,
  4448. "b": 255,
  4449. "a": 255
  4450. },
  4451. "_N$disabledColor": {
  4452. "__type__": "cc.Color",
  4453. "r": 124,
  4454. "g": 124,
  4455. "b": 124,
  4456. "a": 255
  4457. },
  4458. "_N$normalSprite": null,
  4459. "_N$pressedSprite": null,
  4460. "pressedSprite": null,
  4461. "_N$hoverSprite": null,
  4462. "hoverSprite": null,
  4463. "_N$disabledSprite": null,
  4464. "_N$target": {
  4465. "__id__": 94
  4466. },
  4467. "_id": "14IlIKW/BAf4yad8ypRZGP"
  4468. },
  4469. {
  4470. "__type__": "cc.ClickEvent",
  4471. "target": {
  4472. "__id__": 6
  4473. },
  4474. "component": "",
  4475. "_componentId": "db8e82XSZdNhr/M689y9PoA",
  4476. "handler": "onBtnLoginClicked",
  4477. "customEventData": ""
  4478. },
  4479. {
  4480. "__type__": "cc.Widget",
  4481. "_name": "",
  4482. "_objFlags": 0,
  4483. "node": {
  4484. "__id__": 94
  4485. },
  4486. "_enabled": true,
  4487. "alignMode": 1,
  4488. "_target": {
  4489. "__id__": 6
  4490. },
  4491. "_alignFlags": 16,
  4492. "_left": 0.3628,
  4493. "_right": 0.3628,
  4494. "_top": 0,
  4495. "_bottom": 0,
  4496. "_verticalCenter": 0,
  4497. "_horizontalCenter": 0,
  4498. "_isAbsLeft": false,
  4499. "_isAbsRight": false,
  4500. "_isAbsTop": true,
  4501. "_isAbsBottom": true,
  4502. "_isAbsHorizontalCenter": true,
  4503. "_isAbsVerticalCenter": true,
  4504. "_originalWidth": 366,
  4505. "_originalHeight": 0,
  4506. "_id": "77tnddnfBERKMc3IpywxIZ"
  4507. },
  4508. {
  4509. "__type__": "cc.Node",
  4510. "_name": "tip",
  4511. "_objFlags": 0,
  4512. "_parent": {
  4513. "__id__": 72
  4514. },
  4515. "_children": [
  4516. {
  4517. "__id__": 100
  4518. }
  4519. ],
  4520. "_active": true,
  4521. "_level": 3,
  4522. "_components": [
  4523. {
  4524. "__id__": 112
  4525. },
  4526. {
  4527. "__id__": 113
  4528. }
  4529. ],
  4530. "_prefab": null,
  4531. "_opacity": 255,
  4532. "_color": {
  4533. "__type__": "cc.Color",
  4534. "r": 255,
  4535. "g": 255,
  4536. "b": 255,
  4537. "a": 255
  4538. },
  4539. "_contentSize": {
  4540. "__type__": "cc.Size",
  4541. "width": 1334,
  4542. "height": 90
  4543. },
  4544. "_anchorPoint": {
  4545. "__type__": "cc.Vec2",
  4546. "x": 0.5,
  4547. "y": 0.5
  4548. },
  4549. "_position": {
  4550. "__type__": "cc.Vec3",
  4551. "x": 667,
  4552. "y": 45,
  4553. "z": 0
  4554. },
  4555. "_scale": {
  4556. "__type__": "cc.Vec3",
  4557. "x": 1,
  4558. "y": 1,
  4559. "z": 1
  4560. },
  4561. "_rotationX": 0,
  4562. "_rotationY": 0,
  4563. "_quat": {
  4564. "__type__": "cc.Quat",
  4565. "x": 0,
  4566. "y": 0,
  4567. "z": 0,
  4568. "w": 1
  4569. },
  4570. "_skewX": 0,
  4571. "_skewY": 0,
  4572. "groupIndex": 0,
  4573. "_id": "b6F0LHNDtAGJOZu5gdjlIn"
  4574. },
  4575. {
  4576. "__type__": "cc.Node",
  4577. "_name": "jzmm",
  4578. "_objFlags": 0,
  4579. "_parent": {
  4580. "__id__": 99
  4581. },
  4582. "_children": [
  4583. {
  4584. "__id__": 101
  4585. },
  4586. {
  4587. "__id__": 104
  4588. },
  4589. {
  4590. "__id__": 107
  4591. }
  4592. ],
  4593. "_active": true,
  4594. "_level": 4,
  4595. "_components": [
  4596. {
  4597. "__id__": 110
  4598. },
  4599. {
  4600. "__id__": 111
  4601. }
  4602. ],
  4603. "_prefab": null,
  4604. "_opacity": 255,
  4605. "_color": {
  4606. "__type__": "cc.Color",
  4607. "r": 255,
  4608. "g": 255,
  4609. "b": 255,
  4610. "a": 255
  4611. },
  4612. "_contentSize": {
  4613. "__type__": "cc.Size",
  4614. "width": 350,
  4615. "height": 28
  4616. },
  4617. "_anchorPoint": {
  4618. "__type__": "cc.Vec2",
  4619. "x": 0.5,
  4620. "y": 0.5
  4621. },
  4622. "_position": {
  4623. "__type__": "cc.Vec3",
  4624. "x": 0,
  4625. "y": 0,
  4626. "z": 0
  4627. },
  4628. "_scale": {
  4629. "__type__": "cc.Vec3",
  4630. "x": 1,
  4631. "y": 1,
  4632. "z": 1
  4633. },
  4634. "_rotationX": 0,
  4635. "_rotationY": 0,
  4636. "_quat": {
  4637. "__type__": "cc.Quat",
  4638. "x": 0,
  4639. "y": 0,
  4640. "z": 0,
  4641. "w": 1
  4642. },
  4643. "_skewX": 0,
  4644. "_skewY": 0,
  4645. "groupIndex": 0,
  4646. "_id": "bdJ9p0JsdCE6gLCiqaQe2n"
  4647. },
  4648. {
  4649. "__type__": "cc.Node",
  4650. "_name": "Background",
  4651. "_objFlags": 0,
  4652. "_parent": {
  4653. "__id__": 100
  4654. },
  4655. "_children": [],
  4656. "_active": true,
  4657. "_level": 0,
  4658. "_components": [
  4659. {
  4660. "__id__": 102
  4661. },
  4662. {
  4663. "__id__": 103
  4664. }
  4665. ],
  4666. "_prefab": null,
  4667. "_opacity": 255,
  4668. "_color": {
  4669. "__type__": "cc.Color",
  4670. "r": 255,
  4671. "g": 255,
  4672. "b": 255,
  4673. "a": 255
  4674. },
  4675. "_contentSize": {
  4676. "__type__": "cc.Size",
  4677. "width": 22,
  4678. "height": 22
  4679. },
  4680. "_anchorPoint": {
  4681. "__type__": "cc.Vec2",
  4682. "x": 0.5,
  4683. "y": 0.5
  4684. },
  4685. "_position": {
  4686. "__type__": "cc.Vec3",
  4687. "x": -164,
  4688. "y": 0,
  4689. "z": 0
  4690. },
  4691. "_scale": {
  4692. "__type__": "cc.Vec3",
  4693. "x": 1,
  4694. "y": 1,
  4695. "z": 1
  4696. },
  4697. "_rotationX": 0,
  4698. "_rotationY": 0,
  4699. "_quat": {
  4700. "__type__": "cc.Quat",
  4701. "x": 0,
  4702. "y": 0,
  4703. "z": 0,
  4704. "w": 1
  4705. },
  4706. "_skewX": 0,
  4707. "_skewY": 0,
  4708. "groupIndex": 0,
  4709. "_id": "61rWYVzQlDx5HBSOhgwk/Z"
  4710. },
  4711. {
  4712. "__type__": "cc.Sprite",
  4713. "_name": "",
  4714. "_objFlags": 0,
  4715. "node": {
  4716. "__id__": 101
  4717. },
  4718. "_enabled": true,
  4719. "_spriteFrame": {
  4720. "__uuid__": "59529741-09ec-4eaa-9e1f-97e7225746d5"
  4721. },
  4722. "_type": 0,
  4723. "_sizeMode": 1,
  4724. "_fillType": 0,
  4725. "_fillCenter": {
  4726. "__type__": "cc.Vec2",
  4727. "x": 0,
  4728. "y": 0
  4729. },
  4730. "_fillStart": 0,
  4731. "_fillRange": 0,
  4732. "_isTrimmedMode": true,
  4733. "_state": 0,
  4734. "_atlas": {
  4735. "__uuid__": "b9c0be93-f2c4-4a99-af00-76900a4ee840"
  4736. },
  4737. "_srcBlendFactor": 770,
  4738. "_dstBlendFactor": 771,
  4739. "_id": "4ea+VQ7FlPRoypdwwy0v61"
  4740. },
  4741. {
  4742. "__type__": "cc.Widget",
  4743. "_name": "",
  4744. "_objFlags": 0,
  4745. "node": {
  4746. "__id__": 101
  4747. },
  4748. "_enabled": true,
  4749. "alignMode": 1,
  4750. "_target": null,
  4751. "_alignFlags": 10,
  4752. "_left": 0,
  4753. "_right": 0,
  4754. "_top": 0,
  4755. "_bottom": 0,
  4756. "_verticalCenter": 0,
  4757. "_horizontalCenter": 0,
  4758. "_isAbsLeft": true,
  4759. "_isAbsRight": true,
  4760. "_isAbsTop": true,
  4761. "_isAbsBottom": true,
  4762. "_isAbsHorizontalCenter": true,
  4763. "_isAbsVerticalCenter": true,
  4764. "_originalWidth": 0,
  4765. "_originalHeight": 0,
  4766. "_id": "e94thmZplITLPQ/cLis0NE"
  4767. },
  4768. {
  4769. "__type__": "cc.Node",
  4770. "_name": "checkmark",
  4771. "_objFlags": 0,
  4772. "_parent": {
  4773. "__id__": 100
  4774. },
  4775. "_children": [],
  4776. "_active": true,
  4777. "_level": 0,
  4778. "_components": [
  4779. {
  4780. "__id__": 105
  4781. },
  4782. {
  4783. "__id__": 106
  4784. }
  4785. ],
  4786. "_prefab": null,
  4787. "_opacity": 255,
  4788. "_color": {
  4789. "__type__": "cc.Color",
  4790. "r": 255,
  4791. "g": 255,
  4792. "b": 255,
  4793. "a": 255
  4794. },
  4795. "_contentSize": {
  4796. "__type__": "cc.Size",
  4797. "width": 22,
  4798. "height": 22
  4799. },
  4800. "_anchorPoint": {
  4801. "__type__": "cc.Vec2",
  4802. "x": 0.5,
  4803. "y": 0.5
  4804. },
  4805. "_position": {
  4806. "__type__": "cc.Vec3",
  4807. "x": -164,
  4808. "y": 0,
  4809. "z": 0
  4810. },
  4811. "_scale": {
  4812. "__type__": "cc.Vec3",
  4813. "x": 1,
  4814. "y": 1,
  4815. "z": 1
  4816. },
  4817. "_rotationX": 0,
  4818. "_rotationY": 0,
  4819. "_quat": {
  4820. "__type__": "cc.Quat",
  4821. "x": 0,
  4822. "y": 0,
  4823. "z": 0,
  4824. "w": 1
  4825. },
  4826. "_skewX": 0,
  4827. "_skewY": 0,
  4828. "groupIndex": 0,
  4829. "_id": "eb18osVrRHmbIFYzA05TMZ"
  4830. },
  4831. {
  4832. "__type__": "cc.Sprite",
  4833. "_name": "",
  4834. "_objFlags": 0,
  4835. "node": {
  4836. "__id__": 104
  4837. },
  4838. "_enabled": true,
  4839. "_spriteFrame": {
  4840. "__uuid__": "32b0d5eb-1ac8-44e2-a335-2165faa674a4"
  4841. },
  4842. "_type": 0,
  4843. "_sizeMode": 2,
  4844. "_fillType": 0,
  4845. "_fillCenter": {
  4846. "__type__": "cc.Vec2",
  4847. "x": 0,
  4848. "y": 0
  4849. },
  4850. "_fillStart": 0,
  4851. "_fillRange": 0,
  4852. "_isTrimmedMode": false,
  4853. "_state": 0,
  4854. "_atlas": {
  4855. "__uuid__": "b9c0be93-f2c4-4a99-af00-76900a4ee840"
  4856. },
  4857. "_srcBlendFactor": 770,
  4858. "_dstBlendFactor": 771,
  4859. "_id": "2buX5iFvZAVrzaFSfd1eLJ"
  4860. },
  4861. {
  4862. "__type__": "cc.Widget",
  4863. "_name": "",
  4864. "_objFlags": 0,
  4865. "node": {
  4866. "__id__": 104
  4867. },
  4868. "_enabled": true,
  4869. "alignMode": 1,
  4870. "_target": null,
  4871. "_alignFlags": 10,
  4872. "_left": 0,
  4873. "_right": 0,
  4874. "_top": 0,
  4875. "_bottom": 0,
  4876. "_verticalCenter": 0,
  4877. "_horizontalCenter": 0,
  4878. "_isAbsLeft": true,
  4879. "_isAbsRight": true,
  4880. "_isAbsTop": true,
  4881. "_isAbsBottom": true,
  4882. "_isAbsHorizontalCenter": true,
  4883. "_isAbsVerticalCenter": true,
  4884. "_originalWidth": 0,
  4885. "_originalHeight": 0,
  4886. "_id": "93Kr5eA5FFKIofKdj4+ElF"
  4887. },
  4888. {
  4889. "__type__": "cc.Node",
  4890. "_name": "tipstr",
  4891. "_objFlags": 0,
  4892. "_parent": {
  4893. "__id__": 100
  4894. },
  4895. "_children": [],
  4896. "_active": true,
  4897. "_level": 5,
  4898. "_components": [
  4899. {
  4900. "__id__": 108
  4901. },
  4902. {
  4903. "__id__": 109
  4904. }
  4905. ],
  4906. "_prefab": null,
  4907. "_opacity": 255,
  4908. "_color": {
  4909. "__type__": "cc.Color",
  4910. "r": 255,
  4911. "g": 255,
  4912. "b": 255,
  4913. "a": 255
  4914. },
  4915. "_contentSize": {
  4916. "__type__": "cc.Size",
  4917. "width": 319,
  4918. "height": 28
  4919. },
  4920. "_anchorPoint": {
  4921. "__type__": "cc.Vec2",
  4922. "x": 0.5,
  4923. "y": 0.5
  4924. },
  4925. "_position": {
  4926. "__type__": "cc.Vec3",
  4927. "x": 20,
  4928. "y": 0,
  4929. "z": 0
  4930. },
  4931. "_scale": {
  4932. "__type__": "cc.Vec3",
  4933. "x": 1,
  4934. "y": 1,
  4935. "z": 1
  4936. },
  4937. "_rotationX": 0,
  4938. "_rotationY": 0,
  4939. "_quat": {
  4940. "__type__": "cc.Quat",
  4941. "x": 0,
  4942. "y": 0,
  4943. "z": 0,
  4944. "w": 1
  4945. },
  4946. "_skewX": 0,
  4947. "_skewY": 0,
  4948. "groupIndex": 0,
  4949. "_id": "b6sfiRpB1D67bWvAL/XWR/"
  4950. },
  4951. {
  4952. "__type__": "cc.Sprite",
  4953. "_name": "",
  4954. "_objFlags": 0,
  4955. "node": {
  4956. "__id__": 107
  4957. },
  4958. "_enabled": true,
  4959. "_spriteFrame": {
  4960. "__uuid__": "217c08d0-4850-42f5-94bd-fcff470a8782"
  4961. },
  4962. "_type": 0,
  4963. "_sizeMode": 1,
  4964. "_fillType": 0,
  4965. "_fillCenter": {
  4966. "__type__": "cc.Vec2",
  4967. "x": 0,
  4968. "y": 0
  4969. },
  4970. "_fillStart": 0,
  4971. "_fillRange": 0,
  4972. "_isTrimmedMode": true,
  4973. "_state": 0,
  4974. "_atlas": null,
  4975. "_srcBlendFactor": 770,
  4976. "_dstBlendFactor": 771,
  4977. "_id": "b95ydXsrJDt4Fif31C0ZBB"
  4978. },
  4979. {
  4980. "__type__": "cc.Widget",
  4981. "_name": "",
  4982. "_objFlags": 0,
  4983. "node": {
  4984. "__id__": 107
  4985. },
  4986. "_enabled": true,
  4987. "alignMode": 1,
  4988. "_target": null,
  4989. "_alignFlags": 2,
  4990. "_left": 0,
  4991. "_right": 0,
  4992. "_top": 0,
  4993. "_bottom": 0,
  4994. "_verticalCenter": 0,
  4995. "_horizontalCenter": 0,
  4996. "_isAbsLeft": true,
  4997. "_isAbsRight": true,
  4998. "_isAbsTop": true,
  4999. "_isAbsBottom": true,
  5000. "_isAbsHorizontalCenter": true,
  5001. "_isAbsVerticalCenter": true,
  5002. "_originalWidth": 0,
  5003. "_originalHeight": 0,
  5004. "_id": "d2DColoiBFUKEDBIQrcZB/"
  5005. },
  5006. {
  5007. "__type__": "cc.Toggle",
  5008. "_name": "",
  5009. "_objFlags": 0,
  5010. "node": {
  5011. "__id__": 100
  5012. },
  5013. "_enabled": true,
  5014. "duration": 0.1,
  5015. "zoomScale": 1.2,
  5016. "clickEvents": [],
  5017. "_N$interactable": true,
  5018. "_N$enableAutoGrayEffect": false,
  5019. "_N$transition": 0,
  5020. "transition": 0,
  5021. "_N$normalColor": {
  5022. "__type__": "cc.Color",
  5023. "r": 214,
  5024. "g": 214,
  5025. "b": 214,
  5026. "a": 255
  5027. },
  5028. "_N$pressedColor": {
  5029. "__type__": "cc.Color",
  5030. "r": 211,
  5031. "g": 211,
  5032. "b": 211,
  5033. "a": 255
  5034. },
  5035. "pressedColor": {
  5036. "__type__": "cc.Color",
  5037. "r": 211,
  5038. "g": 211,
  5039. "b": 211,
  5040. "a": 255
  5041. },
  5042. "_N$hoverColor": {
  5043. "__type__": "cc.Color",
  5044. "r": 255,
  5045. "g": 255,
  5046. "b": 255,
  5047. "a": 255
  5048. },
  5049. "hoverColor": {
  5050. "__type__": "cc.Color",
  5051. "r": 255,
  5052. "g": 255,
  5053. "b": 255,
  5054. "a": 255
  5055. },
  5056. "_N$disabledColor": {
  5057. "__type__": "cc.Color",
  5058. "r": 124,
  5059. "g": 124,
  5060. "b": 124,
  5061. "a": 255
  5062. },
  5063. "_N$normalSprite": null,
  5064. "_N$pressedSprite": null,
  5065. "pressedSprite": null,
  5066. "_N$hoverSprite": null,
  5067. "hoverSprite": null,
  5068. "_N$disabledSprite": null,
  5069. "_N$target": {
  5070. "__id__": 101
  5071. },
  5072. "_N$isChecked": true,
  5073. "toggleGroup": null,
  5074. "checkMark": {
  5075. "__id__": 105
  5076. },
  5077. "checkEvents": [],
  5078. "_id": "021HzXmX1BT5+4NtOUaJVX"
  5079. },
  5080. {
  5081. "__type__": "cc.Widget",
  5082. "_name": "",
  5083. "_objFlags": 0,
  5084. "node": {
  5085. "__id__": 100
  5086. },
  5087. "_enabled": true,
  5088. "alignMode": 1,
  5089. "_target": {
  5090. "__id__": 6
  5091. },
  5092. "_alignFlags": 16,
  5093. "_left": 0.3688155922038981,
  5094. "_right": 0,
  5095. "_top": 0,
  5096. "_bottom": 0,
  5097. "_verticalCenter": 0,
  5098. "_horizontalCenter": 0,
  5099. "_isAbsLeft": false,
  5100. "_isAbsRight": true,
  5101. "_isAbsTop": true,
  5102. "_isAbsBottom": true,
  5103. "_isAbsHorizontalCenter": true,
  5104. "_isAbsVerticalCenter": true,
  5105. "_originalWidth": 0,
  5106. "_originalHeight": 0,
  5107. "_id": "254mzvW75PepCp3MJgjhNA"
  5108. },
  5109. {
  5110. "__type__": "cc.Sprite",
  5111. "_name": "",
  5112. "_objFlags": 0,
  5113. "node": {
  5114. "__id__": 99
  5115. },
  5116. "_enabled": true,
  5117. "_spriteFrame": {
  5118. "__uuid__": "2f4a5717-732c-4f6a-ba82-8bf5177fbca7"
  5119. },
  5120. "_type": 0,
  5121. "_sizeMode": 0,
  5122. "_fillType": 0,
  5123. "_fillCenter": {
  5124. "__type__": "cc.Vec2",
  5125. "x": 0,
  5126. "y": 0
  5127. },
  5128. "_fillStart": 0,
  5129. "_fillRange": 0,
  5130. "_isTrimmedMode": true,
  5131. "_state": 0,
  5132. "_atlas": null,
  5133. "_srcBlendFactor": 770,
  5134. "_dstBlendFactor": 771,
  5135. "_id": "99pZwKx8pOSq7kdJ7bwdus"
  5136. },
  5137. {
  5138. "__type__": "cc.Widget",
  5139. "_name": "",
  5140. "_objFlags": 0,
  5141. "node": {
  5142. "__id__": 99
  5143. },
  5144. "_enabled": true,
  5145. "alignMode": 1,
  5146. "_target": null,
  5147. "_alignFlags": 44,
  5148. "_left": 0,
  5149. "_right": 0,
  5150. "_top": 0,
  5151. "_bottom": 0,
  5152. "_verticalCenter": 0,
  5153. "_horizontalCenter": 0,
  5154. "_isAbsLeft": true,
  5155. "_isAbsRight": true,
  5156. "_isAbsTop": true,
  5157. "_isAbsBottom": true,
  5158. "_isAbsHorizontalCenter": true,
  5159. "_isAbsVerticalCenter": true,
  5160. "_originalWidth": 1334,
  5161. "_originalHeight": 0,
  5162. "_id": "b9LWJN32FLj6p5RvkEYEz7"
  5163. },
  5164. {
  5165. "__type__": "cc.Widget",
  5166. "_name": "",
  5167. "_objFlags": 0,
  5168. "node": {
  5169. "__id__": 72
  5170. },
  5171. "_enabled": true,
  5172. "alignMode": 1,
  5173. "_target": null,
  5174. "_alignFlags": 40,
  5175. "_left": 0,
  5176. "_right": 0,
  5177. "_top": 0,
  5178. "_bottom": 0,
  5179. "_verticalCenter": 0,
  5180. "_horizontalCenter": 0,
  5181. "_isAbsLeft": true,
  5182. "_isAbsRight": true,
  5183. "_isAbsTop": true,
  5184. "_isAbsBottom": true,
  5185. "_isAbsHorizontalCenter": true,
  5186. "_isAbsVerticalCenter": true,
  5187. "_originalWidth": 1334,
  5188. "_originalHeight": 0,
  5189. "_id": "feo/yP1QtHqKYVXdJr/PxA"
  5190. },
  5191. {
  5192. "__type__": "cc.Node",
  5193. "_name": "regAndread",
  5194. "_objFlags": 0,
  5195. "_parent": {
  5196. "__id__": 6
  5197. },
  5198. "_children": [
  5199. {
  5200. "__id__": 116
  5201. }
  5202. ],
  5203. "_active": false,
  5204. "_level": 2,
  5205. "_components": [
  5206. {
  5207. "__id__": 223
  5208. },
  5209. {
  5210. "__id__": 224
  5211. },
  5212. {
  5213. "__id__": 225
  5214. }
  5215. ],
  5216. "_prefab": null,
  5217. "_opacity": 255,
  5218. "_color": {
  5219. "__type__": "cc.Color",
  5220. "r": 255,
  5221. "g": 255,
  5222. "b": 255,
  5223. "a": 255
  5224. },
  5225. "_contentSize": {
  5226. "__type__": "cc.Size",
  5227. "width": 1334,
  5228. "height": 750
  5229. },
  5230. "_anchorPoint": {
  5231. "__type__": "cc.Vec2",
  5232. "x": 0,
  5233. "y": 0
  5234. },
  5235. "_position": {
  5236. "__type__": "cc.Vec3",
  5237. "x": 0,
  5238. "y": 0,
  5239. "z": 0
  5240. },
  5241. "_scale": {
  5242. "__type__": "cc.Vec3",
  5243. "x": 1,
  5244. "y": 1,
  5245. "z": 1
  5246. },
  5247. "_rotationX": 0,
  5248. "_rotationY": 0,
  5249. "_quat": {
  5250. "__type__": "cc.Quat",
  5251. "x": 0,
  5252. "y": 0,
  5253. "z": 0,
  5254. "w": 1
  5255. },
  5256. "_skewX": 0,
  5257. "_skewY": 0,
  5258. "groupIndex": 0,
  5259. "_id": "73Bfjtiv1Ghp2A+gfPtmoe"
  5260. },
  5261. {
  5262. "__type__": "cc.Node",
  5263. "_name": "content",
  5264. "_objFlags": 0,
  5265. "_parent": {
  5266. "__id__": 115
  5267. },
  5268. "_children": [
  5269. {
  5270. "__id__": 117
  5271. },
  5272. {
  5273. "__id__": 119
  5274. },
  5275. {
  5276. "__id__": 123
  5277. },
  5278. {
  5279. "__id__": 201
  5280. }
  5281. ],
  5282. "_active": true,
  5283. "_level": 3,
  5284. "_components": [
  5285. {
  5286. "__id__": 221
  5287. },
  5288. {
  5289. "__id__": 222
  5290. }
  5291. ],
  5292. "_prefab": null,
  5293. "_opacity": 255,
  5294. "_color": {
  5295. "__type__": "cc.Color",
  5296. "r": 255,
  5297. "g": 255,
  5298. "b": 255,
  5299. "a": 255
  5300. },
  5301. "_contentSize": {
  5302. "__type__": "cc.Size",
  5303. "width": 800,
  5304. "height": 564
  5305. },
  5306. "_anchorPoint": {
  5307. "__type__": "cc.Vec2",
  5308. "x": 0,
  5309. "y": 0
  5310. },
  5311. "_position": {
  5312. "__type__": "cc.Vec3",
  5313. "x": 267,
  5314. "y": 77,
  5315. "z": 0
  5316. },
  5317. "_scale": {
  5318. "__type__": "cc.Vec3",
  5319. "x": 1,
  5320. "y": 1,
  5321. "z": 1
  5322. },
  5323. "_rotationX": 0,
  5324. "_rotationY": 0,
  5325. "_quat": {
  5326. "__type__": "cc.Quat",
  5327. "x": 0,
  5328. "y": 0,
  5329. "z": 0,
  5330. "w": 1
  5331. },
  5332. "_skewX": 0,
  5333. "_skewY": 0,
  5334. "groupIndex": 0,
  5335. "_id": "66oLui/SJKhY/vWRD0f1oA"
  5336. },
  5337. {
  5338. "__type__": "cc.Node",
  5339. "_name": "_bg",
  5340. "_objFlags": 0,
  5341. "_parent": {
  5342. "__id__": 116
  5343. },
  5344. "_children": [],
  5345. "_active": true,
  5346. "_level": 4,
  5347. "_components": [
  5348. {
  5349. "__id__": 118
  5350. }
  5351. ],
  5352. "_prefab": null,
  5353. "_opacity": 255,
  5354. "_color": {
  5355. "__type__": "cc.Color",
  5356. "r": 255,
  5357. "g": 255,
  5358. "b": 255,
  5359. "a": 255
  5360. },
  5361. "_contentSize": {
  5362. "__type__": "cc.Size",
  5363. "width": 750,
  5364. "height": 438
  5365. },
  5366. "_anchorPoint": {
  5367. "__type__": "cc.Vec2",
  5368. "x": 0,
  5369. "y": 0
  5370. },
  5371. "_position": {
  5372. "__type__": "cc.Vec3",
  5373. "x": 25,
  5374. "y": 45,
  5375. "z": 0
  5376. },
  5377. "_scale": {
  5378. "__type__": "cc.Vec3",
  5379. "x": 1,
  5380. "y": 1,
  5381. "z": 1
  5382. },
  5383. "_rotationX": 0,
  5384. "_rotationY": 0,
  5385. "_quat": {
  5386. "__type__": "cc.Quat",
  5387. "x": 0,
  5388. "y": 0,
  5389. "z": 0,
  5390. "w": 1
  5391. },
  5392. "_skewX": 0,
  5393. "_skewY": 0,
  5394. "groupIndex": 0,
  5395. "_id": "41zNpS6ONPPJeeoPomfS3K"
  5396. },
  5397. {
  5398. "__type__": "cc.Sprite",
  5399. "_name": "",
  5400. "_objFlags": 0,
  5401. "node": {
  5402. "__id__": 117
  5403. },
  5404. "_enabled": true,
  5405. "_spriteFrame": {
  5406. "__uuid__": "ce67bbcb-b185-417f-9a3d-0c7d4abf9d0e"
  5407. },
  5408. "_type": 0,
  5409. "_sizeMode": 1,
  5410. "_fillType": 0,
  5411. "_fillCenter": {
  5412. "__type__": "cc.Vec2",
  5413. "x": 0,
  5414. "y": 0
  5415. },
  5416. "_fillStart": 0,
  5417. "_fillRange": 0,
  5418. "_isTrimmedMode": true,
  5419. "_state": 0,
  5420. "_atlas": null,
  5421. "_srcBlendFactor": 770,
  5422. "_dstBlendFactor": 771,
  5423. "_id": "ad6ZYxKmBMaZDstGEYBmt+"
  5424. },
  5425. {
  5426. "__type__": "cc.Node",
  5427. "_name": "closeBtn",
  5428. "_objFlags": 0,
  5429. "_parent": {
  5430. "__id__": 116
  5431. },
  5432. "_children": [],
  5433. "_active": true,
  5434. "_level": 4,
  5435. "_components": [
  5436. {
  5437. "__id__": 120
  5438. },
  5439. {
  5440. "__id__": 121
  5441. }
  5442. ],
  5443. "_prefab": null,
  5444. "_opacity": 255,
  5445. "_color": {
  5446. "__type__": "cc.Color",
  5447. "r": 255,
  5448. "g": 255,
  5449. "b": 255,
  5450. "a": 255
  5451. },
  5452. "_contentSize": {
  5453. "__type__": "cc.Size",
  5454. "width": 75,
  5455. "height": 75
  5456. },
  5457. "_anchorPoint": {
  5458. "__type__": "cc.Vec2",
  5459. "x": 0.5,
  5460. "y": 0.5
  5461. },
  5462. "_position": {
  5463. "__type__": "cc.Vec3",
  5464. "x": 772.6,
  5465. "y": 516.9,
  5466. "z": 0
  5467. },
  5468. "_scale": {
  5469. "__type__": "cc.Vec3",
  5470. "x": 1,
  5471. "y": 1,
  5472. "z": 1
  5473. },
  5474. "_rotationX": 0,
  5475. "_rotationY": 0,
  5476. "_quat": {
  5477. "__type__": "cc.Quat",
  5478. "x": 0,
  5479. "y": 0,
  5480. "z": 0,
  5481. "w": 1
  5482. },
  5483. "_skewX": 0,
  5484. "_skewY": 0,
  5485. "groupIndex": 0,
  5486. "_id": "64Od21wlNBQboORyy/UrQC"
  5487. },
  5488. {
  5489. "__type__": "cc.Sprite",
  5490. "_name": "",
  5491. "_objFlags": 0,
  5492. "node": {
  5493. "__id__": 119
  5494. },
  5495. "_enabled": true,
  5496. "_spriteFrame": {
  5497. "__uuid__": "6dc4d0f1-5dec-44f2-a8ce-d415c474ab0e"
  5498. },
  5499. "_type": 0,
  5500. "_sizeMode": 1,
  5501. "_fillType": 0,
  5502. "_fillCenter": {
  5503. "__type__": "cc.Vec2",
  5504. "x": 0,
  5505. "y": 0
  5506. },
  5507. "_fillStart": 0,
  5508. "_fillRange": 0,
  5509. "_isTrimmedMode": true,
  5510. "_state": 0,
  5511. "_atlas": {
  5512. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  5513. },
  5514. "_srcBlendFactor": 770,
  5515. "_dstBlendFactor": 771,
  5516. "_id": "b5qb+ZVYJIc7TCOQpgRE3c"
  5517. },
  5518. {
  5519. "__type__": "cc.Button",
  5520. "_name": "",
  5521. "_objFlags": 0,
  5522. "node": {
  5523. "__id__": 119
  5524. },
  5525. "_enabled": true,
  5526. "duration": 0.1,
  5527. "zoomScale": 1.2,
  5528. "clickEvents": [
  5529. {
  5530. "__id__": 122
  5531. }
  5532. ],
  5533. "_N$interactable": true,
  5534. "_N$enableAutoGrayEffect": false,
  5535. "_N$transition": 3,
  5536. "transition": 3,
  5537. "_N$normalColor": {
  5538. "__type__": "cc.Color",
  5539. "r": 214,
  5540. "g": 214,
  5541. "b": 214,
  5542. "a": 255
  5543. },
  5544. "_N$pressedColor": {
  5545. "__type__": "cc.Color",
  5546. "r": 211,
  5547. "g": 211,
  5548. "b": 211,
  5549. "a": 255
  5550. },
  5551. "pressedColor": {
  5552. "__type__": "cc.Color",
  5553. "r": 211,
  5554. "g": 211,
  5555. "b": 211,
  5556. "a": 255
  5557. },
  5558. "_N$hoverColor": {
  5559. "__type__": "cc.Color",
  5560. "r": 255,
  5561. "g": 255,
  5562. "b": 255,
  5563. "a": 255
  5564. },
  5565. "hoverColor": {
  5566. "__type__": "cc.Color",
  5567. "r": 255,
  5568. "g": 255,
  5569. "b": 255,
  5570. "a": 255
  5571. },
  5572. "_N$disabledColor": {
  5573. "__type__": "cc.Color",
  5574. "r": 124,
  5575. "g": 124,
  5576. "b": 124,
  5577. "a": 255
  5578. },
  5579. "_N$normalSprite": null,
  5580. "_N$pressedSprite": null,
  5581. "pressedSprite": null,
  5582. "_N$hoverSprite": null,
  5583. "hoverSprite": null,
  5584. "_N$disabledSprite": null,
  5585. "_N$target": {
  5586. "__id__": 119
  5587. },
  5588. "_id": "00aLliWe1F3aUCMamAyTRL"
  5589. },
  5590. {
  5591. "__type__": "cc.ClickEvent",
  5592. "target": {
  5593. "__id__": 6
  5594. },
  5595. "component": "",
  5596. "_componentId": "db8e82XSZdNhr/M689y9PoA",
  5597. "handler": "clickCloseReg",
  5598. "customEventData": ""
  5599. },
  5600. {
  5601. "__type__": "cc.Node",
  5602. "_name": "reg",
  5603. "_objFlags": 0,
  5604. "_parent": {
  5605. "__id__": 116
  5606. },
  5607. "_children": [
  5608. {
  5609. "__id__": 124
  5610. },
  5611. {
  5612. "__id__": 128
  5613. },
  5614. {
  5615. "__id__": 142
  5616. },
  5617. {
  5618. "__id__": 156
  5619. },
  5620. {
  5621. "__id__": 170
  5622. },
  5623. {
  5624. "__id__": 184
  5625. },
  5626. {
  5627. "__id__": 195
  5628. }
  5629. ],
  5630. "_active": true,
  5631. "_level": 4,
  5632. "_components": [],
  5633. "_prefab": null,
  5634. "_opacity": 255,
  5635. "_color": {
  5636. "__type__": "cc.Color",
  5637. "r": 255,
  5638. "g": 255,
  5639. "b": 255,
  5640. "a": 255
  5641. },
  5642. "_contentSize": {
  5643. "__type__": "cc.Size",
  5644. "width": 0,
  5645. "height": 0
  5646. },
  5647. "_anchorPoint": {
  5648. "__type__": "cc.Vec2",
  5649. "x": 0.5,
  5650. "y": 0.5
  5651. },
  5652. "_position": {
  5653. "__type__": "cc.Vec3",
  5654. "x": 0,
  5655. "y": 0,
  5656. "z": 0
  5657. },
  5658. "_scale": {
  5659. "__type__": "cc.Vec3",
  5660. "x": 1,
  5661. "y": 1,
  5662. "z": 1
  5663. },
  5664. "_rotationX": 0,
  5665. "_rotationY": 0,
  5666. "_quat": {
  5667. "__type__": "cc.Quat",
  5668. "x": 0,
  5669. "y": 0,
  5670. "z": 0,
  5671. "w": 1
  5672. },
  5673. "_skewX": 0,
  5674. "_skewY": 0,
  5675. "groupIndex": 0,
  5676. "_id": "23Z6SOWoxIHIW58kydcacA"
  5677. },
  5678. {
  5679. "__type__": "cc.Node",
  5680. "_name": "title",
  5681. "_objFlags": 0,
  5682. "_parent": {
  5683. "__id__": 123
  5684. },
  5685. "_children": [
  5686. {
  5687. "__id__": 125
  5688. }
  5689. ],
  5690. "_active": true,
  5691. "_level": 5,
  5692. "_components": [
  5693. {
  5694. "__id__": 127
  5695. }
  5696. ],
  5697. "_prefab": null,
  5698. "_opacity": 255,
  5699. "_color": {
  5700. "__type__": "cc.Color",
  5701. "r": 255,
  5702. "g": 255,
  5703. "b": 255,
  5704. "a": 255
  5705. },
  5706. "_contentSize": {
  5707. "__type__": "cc.Size",
  5708. "width": 479,
  5709. "height": 120
  5710. },
  5711. "_anchorPoint": {
  5712. "__type__": "cc.Vec2",
  5713. "x": 0.5,
  5714. "y": 0.5
  5715. },
  5716. "_position": {
  5717. "__type__": "cc.Vec3",
  5718. "x": 400,
  5719. "y": 540,
  5720. "z": 0
  5721. },
  5722. "_scale": {
  5723. "__type__": "cc.Vec3",
  5724. "x": 1,
  5725. "y": 1,
  5726. "z": 1
  5727. },
  5728. "_rotationX": 0,
  5729. "_rotationY": 0,
  5730. "_quat": {
  5731. "__type__": "cc.Quat",
  5732. "x": 0,
  5733. "y": 0,
  5734. "z": 0,
  5735. "w": 1
  5736. },
  5737. "_skewX": 0,
  5738. "_skewY": 0,
  5739. "groupIndex": 0,
  5740. "_id": "4a5DaO+U5CUq7STkGBtqiY"
  5741. },
  5742. {
  5743. "__type__": "cc.Node",
  5744. "_name": "name",
  5745. "_objFlags": 0,
  5746. "_parent": {
  5747. "__id__": 124
  5748. },
  5749. "_children": [],
  5750. "_active": true,
  5751. "_level": 5,
  5752. "_components": [
  5753. {
  5754. "__id__": 126
  5755. }
  5756. ],
  5757. "_prefab": null,
  5758. "_opacity": 255,
  5759. "_color": {
  5760. "__type__": "cc.Color",
  5761. "r": 255,
  5762. "g": 255,
  5763. "b": 255,
  5764. "a": 255
  5765. },
  5766. "_contentSize": {
  5767. "__type__": "cc.Size",
  5768. "width": 99,
  5769. "height": 53
  5770. },
  5771. "_anchorPoint": {
  5772. "__type__": "cc.Vec2",
  5773. "x": 0.5,
  5774. "y": 0.5
  5775. },
  5776. "_position": {
  5777. "__type__": "cc.Vec3",
  5778. "x": 0,
  5779. "y": 28,
  5780. "z": 0
  5781. },
  5782. "_scale": {
  5783. "__type__": "cc.Vec3",
  5784. "x": 1,
  5785. "y": 1,
  5786. "z": 1
  5787. },
  5788. "_rotationX": 0,
  5789. "_rotationY": 0,
  5790. "_quat": {
  5791. "__type__": "cc.Quat",
  5792. "x": 0,
  5793. "y": 0,
  5794. "z": 0,
  5795. "w": 1
  5796. },
  5797. "_skewX": 0,
  5798. "_skewY": 0,
  5799. "groupIndex": 0,
  5800. "_id": "d2SOrFNjNCTqs4PI379X/A"
  5801. },
  5802. {
  5803. "__type__": "cc.Sprite",
  5804. "_name": "",
  5805. "_objFlags": 0,
  5806. "node": {
  5807. "__id__": 125
  5808. },
  5809. "_enabled": true,
  5810. "_spriteFrame": {
  5811. "__uuid__": "8503e0cb-4da0-482e-9e97-a6e223825e01"
  5812. },
  5813. "_type": 0,
  5814. "_sizeMode": 1,
  5815. "_fillType": 0,
  5816. "_fillCenter": {
  5817. "__type__": "cc.Vec2",
  5818. "x": 0,
  5819. "y": 0
  5820. },
  5821. "_fillStart": 0,
  5822. "_fillRange": 0,
  5823. "_isTrimmedMode": true,
  5824. "_state": 0,
  5825. "_atlas": {
  5826. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  5827. },
  5828. "_srcBlendFactor": 770,
  5829. "_dstBlendFactor": 771,
  5830. "_id": "3bAKM514tH+Z/LOdJCGOsX"
  5831. },
  5832. {
  5833. "__type__": "cc.Sprite",
  5834. "_name": "",
  5835. "_objFlags": 0,
  5836. "node": {
  5837. "__id__": 124
  5838. },
  5839. "_enabled": true,
  5840. "_spriteFrame": {
  5841. "__uuid__": "269b480c-73ac-49a1-adf8-d863230aebde"
  5842. },
  5843. "_type": 0,
  5844. "_sizeMode": 1,
  5845. "_fillType": 0,
  5846. "_fillCenter": {
  5847. "__type__": "cc.Vec2",
  5848. "x": 0,
  5849. "y": 0
  5850. },
  5851. "_fillStart": 0,
  5852. "_fillRange": 0,
  5853. "_isTrimmedMode": true,
  5854. "_state": 0,
  5855. "_atlas": {
  5856. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  5857. },
  5858. "_srcBlendFactor": 770,
  5859. "_dstBlendFactor": 771,
  5860. "_id": "56FbHT0RdO1KApCa2MWIbC"
  5861. },
  5862. {
  5863. "__type__": "cc.Node",
  5864. "_name": "zhBanner",
  5865. "_objFlags": 0,
  5866. "_parent": {
  5867. "__id__": 123
  5868. },
  5869. "_children": [
  5870. {
  5871. "__id__": 129
  5872. },
  5873. {
  5874. "__id__": 137
  5875. }
  5876. ],
  5877. "_active": true,
  5878. "_level": 5,
  5879. "_components": [
  5880. {
  5881. "__id__": 140
  5882. },
  5883. {
  5884. "__id__": 141
  5885. }
  5886. ],
  5887. "_prefab": null,
  5888. "_opacity": 255,
  5889. "_color": {
  5890. "__type__": "cc.Color",
  5891. "r": 255,
  5892. "g": 255,
  5893. "b": 255,
  5894. "a": 255
  5895. },
  5896. "_contentSize": {
  5897. "__type__": "cc.Size",
  5898. "width": 337,
  5899. "height": 55
  5900. },
  5901. "_anchorPoint": {
  5902. "__type__": "cc.Vec2",
  5903. "x": 0,
  5904. "y": 0
  5905. },
  5906. "_position": {
  5907. "__type__": "cc.Vec3",
  5908. "x": 303,
  5909. "y": 405,
  5910. "z": 0
  5911. },
  5912. "_scale": {
  5913. "__type__": "cc.Vec3",
  5914. "x": 1,
  5915. "y": 1,
  5916. "z": 1
  5917. },
  5918. "_rotationX": 0,
  5919. "_rotationY": 0,
  5920. "_quat": {
  5921. "__type__": "cc.Quat",
  5922. "x": 0,
  5923. "y": 0,
  5924. "z": 0,
  5925. "w": 1
  5926. },
  5927. "_skewX": 0,
  5928. "_skewY": 0,
  5929. "groupIndex": 0,
  5930. "_id": "fakc1833dG2ocGpoAD7PbX"
  5931. },
  5932. {
  5933. "__type__": "cc.Node",
  5934. "_name": "srLabel",
  5935. "_objFlags": 0,
  5936. "_parent": {
  5937. "__id__": 128
  5938. },
  5939. "_children": [
  5940. {
  5941. "__id__": 130
  5942. },
  5943. {
  5944. "__id__": 132
  5945. },
  5946. {
  5947. "__id__": 134
  5948. }
  5949. ],
  5950. "_active": true,
  5951. "_level": 4,
  5952. "_components": [
  5953. {
  5954. "__id__": 136
  5955. }
  5956. ],
  5957. "_prefab": null,
  5958. "_opacity": 255,
  5959. "_color": {
  5960. "__type__": "cc.Color",
  5961. "r": 0,
  5962. "g": 0,
  5963. "b": 0,
  5964. "a": 255
  5965. },
  5966. "_contentSize": {
  5967. "__type__": "cc.Size",
  5968. "width": 330,
  5969. "height": 21
  5970. },
  5971. "_anchorPoint": {
  5972. "__type__": "cc.Vec2",
  5973. "x": 0,
  5974. "y": 0
  5975. },
  5976. "_position": {
  5977. "__type__": "cc.Vec3",
  5978. "x": 33,
  5979. "y": 18,
  5980. "z": 0
  5981. },
  5982. "_scale": {
  5983. "__type__": "cc.Vec3",
  5984. "x": 1,
  5985. "y": 1,
  5986. "z": 1
  5987. },
  5988. "_rotationX": 0,
  5989. "_rotationY": 0,
  5990. "_quat": {
  5991. "__type__": "cc.Quat",
  5992. "x": 0,
  5993. "y": 0,
  5994. "z": 0,
  5995. "w": 1
  5996. },
  5997. "_skewX": 0,
  5998. "_skewY": 0,
  5999. "groupIndex": 0,
  6000. "_id": "d5wE98Vi1DvK61A7NFV9WC"
  6001. },
  6002. {
  6003. "__type__": "cc.Node",
  6004. "_name": "BACKGROUND_SPRITE",
  6005. "_objFlags": 0,
  6006. "_parent": {
  6007. "__id__": 129
  6008. },
  6009. "_children": [],
  6010. "_active": true,
  6011. "_level": 5,
  6012. "_components": [
  6013. {
  6014. "__id__": 131
  6015. }
  6016. ],
  6017. "_prefab": null,
  6018. "_opacity": 255,
  6019. "_color": {
  6020. "__type__": "cc.Color",
  6021. "r": 255,
  6022. "g": 255,
  6023. "b": 255,
  6024. "a": 255
  6025. },
  6026. "_contentSize": {
  6027. "__type__": "cc.Size",
  6028. "width": 330,
  6029. "height": 21
  6030. },
  6031. "_anchorPoint": {
  6032. "__type__": "cc.Vec2",
  6033. "x": 0,
  6034. "y": 0
  6035. },
  6036. "_position": {
  6037. "__type__": "cc.Vec3",
  6038. "x": 0,
  6039. "y": 0,
  6040. "z": 0
  6041. },
  6042. "_scale": {
  6043. "__type__": "cc.Vec3",
  6044. "x": 1,
  6045. "y": 1,
  6046. "z": 1
  6047. },
  6048. "_rotationX": 0,
  6049. "_rotationY": 0,
  6050. "_quat": {
  6051. "__type__": "cc.Quat",
  6052. "x": 0,
  6053. "y": 0,
  6054. "z": 0,
  6055. "w": 1
  6056. },
  6057. "_skewX": 0,
  6058. "_skewY": 0,
  6059. "groupIndex": 0,
  6060. "_id": "73vAIbAfdGDoZCFChWDnDh"
  6061. },
  6062. {
  6063. "__type__": "cc.Sprite",
  6064. "_name": "",
  6065. "_objFlags": 0,
  6066. "node": {
  6067. "__id__": 130
  6068. },
  6069. "_enabled": true,
  6070. "_spriteFrame": null,
  6071. "_type": 1,
  6072. "_sizeMode": 1,
  6073. "_fillType": 0,
  6074. "_fillCenter": {
  6075. "__type__": "cc.Vec2",
  6076. "x": 0,
  6077. "y": 0
  6078. },
  6079. "_fillStart": 0,
  6080. "_fillRange": 0,
  6081. "_isTrimmedMode": true,
  6082. "_state": 0,
  6083. "_atlas": null,
  6084. "_srcBlendFactor": 770,
  6085. "_dstBlendFactor": 771,
  6086. "_id": "4738OkjipJXaHpMaMZf5kc"
  6087. },
  6088. {
  6089. "__type__": "cc.Node",
  6090. "_name": "TEXT_LABEL",
  6091. "_objFlags": 0,
  6092. "_parent": {
  6093. "__id__": 129
  6094. },
  6095. "_children": [],
  6096. "_active": false,
  6097. "_level": 5,
  6098. "_components": [
  6099. {
  6100. "__id__": 133
  6101. }
  6102. ],
  6103. "_prefab": null,
  6104. "_opacity": 255,
  6105. "_color": {
  6106. "__type__": "cc.Color",
  6107. "r": 3,
  6108. "g": 0,
  6109. "b": 0,
  6110. "a": 255
  6111. },
  6112. "_contentSize": {
  6113. "__type__": "cc.Size",
  6114. "width": 328,
  6115. "height": 21
  6116. },
  6117. "_anchorPoint": {
  6118. "__type__": "cc.Vec2",
  6119. "x": 0,
  6120. "y": 1
  6121. },
  6122. "_position": {
  6123. "__type__": "cc.Vec3",
  6124. "x": 2,
  6125. "y": 21,
  6126. "z": 0
  6127. },
  6128. "_scale": {
  6129. "__type__": "cc.Vec3",
  6130. "x": 1,
  6131. "y": 1,
  6132. "z": 1
  6133. },
  6134. "_rotationX": 0,
  6135. "_rotationY": 0,
  6136. "_quat": {
  6137. "__type__": "cc.Quat",
  6138. "x": 0,
  6139. "y": 0,
  6140. "z": 0,
  6141. "w": 1
  6142. },
  6143. "_skewX": 0,
  6144. "_skewY": 0,
  6145. "groupIndex": 0,
  6146. "_id": "3esXflKFZJhIkAwy9aAK1B"
  6147. },
  6148. {
  6149. "__type__": "cc.Label",
  6150. "_name": "",
  6151. "_objFlags": 0,
  6152. "node": {
  6153. "__id__": 132
  6154. },
  6155. "_enabled": true,
  6156. "_useOriginalSize": true,
  6157. "_string": "",
  6158. "_N$string": "",
  6159. "_fontSize": 21,
  6160. "_lineHeight": 21,
  6161. "_enableWrapText": false,
  6162. "_N$file": null,
  6163. "_isSystemFontUsed": true,
  6164. "_spacingX": 0,
  6165. "_batchAsBitmap": false,
  6166. "_N$horizontalAlign": 0,
  6167. "_N$verticalAlign": 1,
  6168. "_N$fontFamily": "Arial",
  6169. "_N$overflow": 1,
  6170. "_N$cacheMode": 0,
  6171. "_id": "11Rxz/mjhFyKgRMZHBj0yj"
  6172. },
  6173. {
  6174. "__type__": "cc.Node",
  6175. "_name": "PLACEHOLDER_LABEL",
  6176. "_objFlags": 0,
  6177. "_parent": {
  6178. "__id__": 129
  6179. },
  6180. "_children": [],
  6181. "_active": true,
  6182. "_level": 5,
  6183. "_components": [
  6184. {
  6185. "__id__": 135
  6186. }
  6187. ],
  6188. "_prefab": null,
  6189. "_opacity": 255,
  6190. "_color": {
  6191. "__type__": "cc.Color",
  6192. "r": 127,
  6193. "g": 127,
  6194. "b": 127,
  6195. "a": 255
  6196. },
  6197. "_contentSize": {
  6198. "__type__": "cc.Size",
  6199. "width": 328,
  6200. "height": 21
  6201. },
  6202. "_anchorPoint": {
  6203. "__type__": "cc.Vec2",
  6204. "x": 0,
  6205. "y": 1
  6206. },
  6207. "_position": {
  6208. "__type__": "cc.Vec3",
  6209. "x": 2,
  6210. "y": 21,
  6211. "z": 0
  6212. },
  6213. "_scale": {
  6214. "__type__": "cc.Vec3",
  6215. "x": 1,
  6216. "y": 1,
  6217. "z": 1
  6218. },
  6219. "_rotationX": 0,
  6220. "_rotationY": 0,
  6221. "_quat": {
  6222. "__type__": "cc.Quat",
  6223. "x": 0,
  6224. "y": 0,
  6225. "z": 0,
  6226. "w": 1
  6227. },
  6228. "_skewX": 0,
  6229. "_skewY": 0,
  6230. "groupIndex": 0,
  6231. "_id": "966uIFUp9JF7bGB6aR9fPR"
  6232. },
  6233. {
  6234. "__type__": "cc.Label",
  6235. "_name": "",
  6236. "_objFlags": 0,
  6237. "node": {
  6238. "__id__": 134
  6239. },
  6240. "_enabled": true,
  6241. "_useOriginalSize": true,
  6242. "_string": "请输入账号",
  6243. "_N$string": "请输入账号",
  6244. "_fontSize": 23,
  6245. "_lineHeight": 21,
  6246. "_enableWrapText": false,
  6247. "_N$file": null,
  6248. "_isSystemFontUsed": true,
  6249. "_spacingX": 0,
  6250. "_batchAsBitmap": false,
  6251. "_N$horizontalAlign": 0,
  6252. "_N$verticalAlign": 1,
  6253. "_N$fontFamily": "Arial",
  6254. "_N$overflow": 1,
  6255. "_N$cacheMode": 0,
  6256. "_id": "3crysqnKtJFZtqGpo2d2Bu"
  6257. },
  6258. {
  6259. "__type__": "cc.EditBox",
  6260. "_name": "",
  6261. "_objFlags": 0,
  6262. "node": {
  6263. "__id__": 129
  6264. },
  6265. "_enabled": true,
  6266. "_useOriginalSize": true,
  6267. "_string": "",
  6268. "_tabIndex": 0,
  6269. "editingDidBegan": [],
  6270. "textChanged": [],
  6271. "editingDidEnded": [],
  6272. "editingReturn": [],
  6273. "_N$backgroundImage": null,
  6274. "_N$returnType": 1,
  6275. "_N$inputFlag": 3,
  6276. "_N$inputMode": 6,
  6277. "_N$fontSize": 21,
  6278. "_N$lineHeight": 21,
  6279. "_N$fontColor": {
  6280. "__type__": "cc.Color",
  6281. "r": 3,
  6282. "g": 0,
  6283. "b": 0,
  6284. "a": 255
  6285. },
  6286. "_N$placeholder": "请输入账号",
  6287. "_N$placeholderFontSize": 23,
  6288. "_N$placeholderFontColor": {
  6289. "__type__": "cc.Color",
  6290. "r": 127,
  6291. "g": 127,
  6292. "b": 127,
  6293. "a": 255
  6294. },
  6295. "_N$maxLength": 10,
  6296. "_N$stayOnTop": false,
  6297. "_id": "37NmaJbrpLzqMTShJ5KdPH"
  6298. },
  6299. {
  6300. "__type__": "cc.Node",
  6301. "_name": "name1",
  6302. "_objFlags": 0,
  6303. "_parent": {
  6304. "__id__": 128
  6305. },
  6306. "_children": [],
  6307. "_active": true,
  6308. "_level": 6,
  6309. "_components": [
  6310. {
  6311. "__id__": 138
  6312. },
  6313. {
  6314. "__id__": 139
  6315. }
  6316. ],
  6317. "_prefab": null,
  6318. "_opacity": 255,
  6319. "_color": {
  6320. "__type__": "cc.Color",
  6321. "r": 255,
  6322. "g": 255,
  6323. "b": 255,
  6324. "a": 255
  6325. },
  6326. "_contentSize": {
  6327. "__type__": "cc.Size",
  6328. "width": 130,
  6329. "height": 37
  6330. },
  6331. "_anchorPoint": {
  6332. "__type__": "cc.Vec2",
  6333. "x": 0,
  6334. "y": 0
  6335. },
  6336. "_position": {
  6337. "__type__": "cc.Vec3",
  6338. "x": -146,
  6339. "y": 10,
  6340. "z": 0
  6341. },
  6342. "_scale": {
  6343. "__type__": "cc.Vec3",
  6344. "x": 1,
  6345. "y": 1,
  6346. "z": 1
  6347. },
  6348. "_rotationX": 0,
  6349. "_rotationY": 0,
  6350. "_quat": {
  6351. "__type__": "cc.Quat",
  6352. "x": 0,
  6353. "y": 0,
  6354. "z": 0,
  6355. "w": 1
  6356. },
  6357. "_skewX": 0,
  6358. "_skewY": 0,
  6359. "groupIndex": 0,
  6360. "_id": "42eBLYfzJDG7T8h0L12INo"
  6361. },
  6362. {
  6363. "__type__": "cc.Sprite",
  6364. "_name": "",
  6365. "_objFlags": 0,
  6366. "node": {
  6367. "__id__": 137
  6368. },
  6369. "_enabled": true,
  6370. "_spriteFrame": {
  6371. "__uuid__": "60695a1d-d6eb-4bc0-bd7d-ab7b3e1f968a"
  6372. },
  6373. "_type": 0,
  6374. "_sizeMode": 1,
  6375. "_fillType": 0,
  6376. "_fillCenter": {
  6377. "__type__": "cc.Vec2",
  6378. "x": 0,
  6379. "y": 0
  6380. },
  6381. "_fillStart": 0,
  6382. "_fillRange": 0,
  6383. "_isTrimmedMode": true,
  6384. "_state": 0,
  6385. "_atlas": {
  6386. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  6387. },
  6388. "_srcBlendFactor": 770,
  6389. "_dstBlendFactor": 771,
  6390. "_id": "39Mxo5EQ9M1owt6peTsRU7"
  6391. },
  6392. {
  6393. "__type__": "cc.Widget",
  6394. "_name": "",
  6395. "_objFlags": 0,
  6396. "node": {
  6397. "__id__": 137
  6398. },
  6399. "_enabled": true,
  6400. "alignMode": 1,
  6401. "_target": null,
  6402. "_alignFlags": 32,
  6403. "_left": -146,
  6404. "_right": 353,
  6405. "_top": 0,
  6406. "_bottom": 0,
  6407. "_verticalCenter": 0,
  6408. "_horizontalCenter": 0,
  6409. "_isAbsLeft": true,
  6410. "_isAbsRight": true,
  6411. "_isAbsTop": true,
  6412. "_isAbsBottom": true,
  6413. "_isAbsHorizontalCenter": true,
  6414. "_isAbsVerticalCenter": true,
  6415. "_originalWidth": 0,
  6416. "_originalHeight": 0,
  6417. "_id": "42oEYu/wZBebPzZ9Nc7EXc"
  6418. },
  6419. {
  6420. "__type__": "cc.Sprite",
  6421. "_name": "",
  6422. "_objFlags": 0,
  6423. "node": {
  6424. "__id__": 128
  6425. },
  6426. "_enabled": true,
  6427. "_spriteFrame": {
  6428. "__uuid__": "6671e6b0-fb48-4ec5-8462-dba274a6b633"
  6429. },
  6430. "_type": 0,
  6431. "_sizeMode": 1,
  6432. "_fillType": 0,
  6433. "_fillCenter": {
  6434. "__type__": "cc.Vec2",
  6435. "x": 0,
  6436. "y": 0
  6437. },
  6438. "_fillStart": 0,
  6439. "_fillRange": 0,
  6440. "_isTrimmedMode": true,
  6441. "_state": 0,
  6442. "_atlas": {
  6443. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  6444. },
  6445. "_srcBlendFactor": 770,
  6446. "_dstBlendFactor": 771,
  6447. "_id": "9eSensHLVJzaTgb/O7uyee"
  6448. },
  6449. {
  6450. "__type__": "cc.Widget",
  6451. "_name": "",
  6452. "_objFlags": 0,
  6453. "node": {
  6454. "__id__": 128
  6455. },
  6456. "_enabled": true,
  6457. "alignMode": 1,
  6458. "_target": {
  6459. "__id__": 6
  6460. },
  6461. "_alignFlags": 8,
  6462. "_left": 0.4272863568215892,
  6463. "_right": 457,
  6464. "_top": 351,
  6465. "_bottom": 0,
  6466. "_verticalCenter": 0,
  6467. "_horizontalCenter": 0,
  6468. "_isAbsLeft": false,
  6469. "_isAbsRight": true,
  6470. "_isAbsTop": true,
  6471. "_isAbsBottom": true,
  6472. "_isAbsHorizontalCenter": true,
  6473. "_isAbsVerticalCenter": true,
  6474. "_originalWidth": 397,
  6475. "_originalHeight": 0,
  6476. "_id": "bdzIwWohZM2L5+4uqucY50"
  6477. },
  6478. {
  6479. "__type__": "cc.Node",
  6480. "_name": "mmBanner",
  6481. "_objFlags": 0,
  6482. "_parent": {
  6483. "__id__": 123
  6484. },
  6485. "_children": [
  6486. {
  6487. "__id__": 143
  6488. },
  6489. {
  6490. "__id__": 151
  6491. }
  6492. ],
  6493. "_active": true,
  6494. "_level": 5,
  6495. "_components": [
  6496. {
  6497. "__id__": 154
  6498. },
  6499. {
  6500. "__id__": 155
  6501. }
  6502. ],
  6503. "_prefab": null,
  6504. "_opacity": 255,
  6505. "_color": {
  6506. "__type__": "cc.Color",
  6507. "r": 255,
  6508. "g": 255,
  6509. "b": 255,
  6510. "a": 255
  6511. },
  6512. "_contentSize": {
  6513. "__type__": "cc.Size",
  6514. "width": 337,
  6515. "height": 55
  6516. },
  6517. "_anchorPoint": {
  6518. "__type__": "cc.Vec2",
  6519. "x": 0,
  6520. "y": 0
  6521. },
  6522. "_position": {
  6523. "__type__": "cc.Vec3",
  6524. "x": 303,
  6525. "y": 325,
  6526. "z": 0
  6527. },
  6528. "_scale": {
  6529. "__type__": "cc.Vec3",
  6530. "x": 1,
  6531. "y": 1,
  6532. "z": 1
  6533. },
  6534. "_rotationX": 0,
  6535. "_rotationY": 0,
  6536. "_quat": {
  6537. "__type__": "cc.Quat",
  6538. "x": 0,
  6539. "y": 0,
  6540. "z": 0,
  6541. "w": 1
  6542. },
  6543. "_skewX": 0,
  6544. "_skewY": 0,
  6545. "groupIndex": 0,
  6546. "_id": "d0QJC1/dFOC6Zi6rK8Mv84"
  6547. },
  6548. {
  6549. "__type__": "cc.Node",
  6550. "_name": "srLabel",
  6551. "_objFlags": 0,
  6552. "_parent": {
  6553. "__id__": 142
  6554. },
  6555. "_children": [
  6556. {
  6557. "__id__": 144
  6558. },
  6559. {
  6560. "__id__": 146
  6561. },
  6562. {
  6563. "__id__": 148
  6564. }
  6565. ],
  6566. "_active": true,
  6567. "_level": 4,
  6568. "_components": [
  6569. {
  6570. "__id__": 150
  6571. }
  6572. ],
  6573. "_prefab": null,
  6574. "_opacity": 255,
  6575. "_color": {
  6576. "__type__": "cc.Color",
  6577. "r": 0,
  6578. "g": 0,
  6579. "b": 0,
  6580. "a": 255
  6581. },
  6582. "_contentSize": {
  6583. "__type__": "cc.Size",
  6584. "width": 330,
  6585. "height": 21
  6586. },
  6587. "_anchorPoint": {
  6588. "__type__": "cc.Vec2",
  6589. "x": 0,
  6590. "y": 0
  6591. },
  6592. "_position": {
  6593. "__type__": "cc.Vec3",
  6594. "x": 33,
  6595. "y": 18,
  6596. "z": 0
  6597. },
  6598. "_scale": {
  6599. "__type__": "cc.Vec3",
  6600. "x": 1,
  6601. "y": 1,
  6602. "z": 1
  6603. },
  6604. "_rotationX": 0,
  6605. "_rotationY": 0,
  6606. "_quat": {
  6607. "__type__": "cc.Quat",
  6608. "x": 0,
  6609. "y": 0,
  6610. "z": 0,
  6611. "w": 1
  6612. },
  6613. "_skewX": 0,
  6614. "_skewY": 0,
  6615. "groupIndex": 0,
  6616. "_id": "96uSGTWANK+7nkRFXbj3xY"
  6617. },
  6618. {
  6619. "__type__": "cc.Node",
  6620. "_name": "BACKGROUND_SPRITE",
  6621. "_objFlags": 0,
  6622. "_parent": {
  6623. "__id__": 143
  6624. },
  6625. "_children": [],
  6626. "_active": true,
  6627. "_level": 5,
  6628. "_components": [
  6629. {
  6630. "__id__": 145
  6631. }
  6632. ],
  6633. "_prefab": null,
  6634. "_opacity": 255,
  6635. "_color": {
  6636. "__type__": "cc.Color",
  6637. "r": 255,
  6638. "g": 255,
  6639. "b": 255,
  6640. "a": 255
  6641. },
  6642. "_contentSize": {
  6643. "__type__": "cc.Size",
  6644. "width": 330,
  6645. "height": 21
  6646. },
  6647. "_anchorPoint": {
  6648. "__type__": "cc.Vec2",
  6649. "x": 0,
  6650. "y": 0
  6651. },
  6652. "_position": {
  6653. "__type__": "cc.Vec3",
  6654. "x": 0,
  6655. "y": 0,
  6656. "z": 0
  6657. },
  6658. "_scale": {
  6659. "__type__": "cc.Vec3",
  6660. "x": 1,
  6661. "y": 1,
  6662. "z": 1
  6663. },
  6664. "_rotationX": 0,
  6665. "_rotationY": 0,
  6666. "_quat": {
  6667. "__type__": "cc.Quat",
  6668. "x": 0,
  6669. "y": 0,
  6670. "z": 0,
  6671. "w": 1
  6672. },
  6673. "_skewX": 0,
  6674. "_skewY": 0,
  6675. "groupIndex": 0,
  6676. "_id": "ceYuhxbC1A6bPRBGrZHQYu"
  6677. },
  6678. {
  6679. "__type__": "cc.Sprite",
  6680. "_name": "",
  6681. "_objFlags": 0,
  6682. "node": {
  6683. "__id__": 144
  6684. },
  6685. "_enabled": true,
  6686. "_spriteFrame": null,
  6687. "_type": 1,
  6688. "_sizeMode": 1,
  6689. "_fillType": 0,
  6690. "_fillCenter": {
  6691. "__type__": "cc.Vec2",
  6692. "x": 0,
  6693. "y": 0
  6694. },
  6695. "_fillStart": 0,
  6696. "_fillRange": 0,
  6697. "_isTrimmedMode": true,
  6698. "_state": 0,
  6699. "_atlas": null,
  6700. "_srcBlendFactor": 770,
  6701. "_dstBlendFactor": 771,
  6702. "_id": "d1RSzg4MdCZqvPWtyKn5hr"
  6703. },
  6704. {
  6705. "__type__": "cc.Node",
  6706. "_name": "TEXT_LABEL",
  6707. "_objFlags": 0,
  6708. "_parent": {
  6709. "__id__": 143
  6710. },
  6711. "_children": [],
  6712. "_active": false,
  6713. "_level": 5,
  6714. "_components": [
  6715. {
  6716. "__id__": 147
  6717. }
  6718. ],
  6719. "_prefab": null,
  6720. "_opacity": 255,
  6721. "_color": {
  6722. "__type__": "cc.Color",
  6723. "r": 3,
  6724. "g": 0,
  6725. "b": 0,
  6726. "a": 255
  6727. },
  6728. "_contentSize": {
  6729. "__type__": "cc.Size",
  6730. "width": 328,
  6731. "height": 21
  6732. },
  6733. "_anchorPoint": {
  6734. "__type__": "cc.Vec2",
  6735. "x": 0,
  6736. "y": 1
  6737. },
  6738. "_position": {
  6739. "__type__": "cc.Vec3",
  6740. "x": 2,
  6741. "y": 21,
  6742. "z": 0
  6743. },
  6744. "_scale": {
  6745. "__type__": "cc.Vec3",
  6746. "x": 1,
  6747. "y": 1,
  6748. "z": 1
  6749. },
  6750. "_rotationX": 0,
  6751. "_rotationY": 0,
  6752. "_quat": {
  6753. "__type__": "cc.Quat",
  6754. "x": 0,
  6755. "y": 0,
  6756. "z": 0,
  6757. "w": 1
  6758. },
  6759. "_skewX": 0,
  6760. "_skewY": 0,
  6761. "groupIndex": 0,
  6762. "_id": "2f6JgYkRBNWZwmYXTqfVe0"
  6763. },
  6764. {
  6765. "__type__": "cc.Label",
  6766. "_name": "",
  6767. "_objFlags": 0,
  6768. "node": {
  6769. "__id__": 146
  6770. },
  6771. "_enabled": true,
  6772. "_useOriginalSize": true,
  6773. "_string": "",
  6774. "_N$string": "",
  6775. "_fontSize": 21,
  6776. "_lineHeight": 21,
  6777. "_enableWrapText": false,
  6778. "_N$file": null,
  6779. "_isSystemFontUsed": true,
  6780. "_spacingX": 0,
  6781. "_batchAsBitmap": false,
  6782. "_N$horizontalAlign": 0,
  6783. "_N$verticalAlign": 1,
  6784. "_N$fontFamily": "Arial",
  6785. "_N$overflow": 1,
  6786. "_N$cacheMode": 0,
  6787. "_id": "7940wgGTxCrLXn0iMIxVvO"
  6788. },
  6789. {
  6790. "__type__": "cc.Node",
  6791. "_name": "PLACEHOLDER_LABEL",
  6792. "_objFlags": 0,
  6793. "_parent": {
  6794. "__id__": 143
  6795. },
  6796. "_children": [],
  6797. "_active": true,
  6798. "_level": 5,
  6799. "_components": [
  6800. {
  6801. "__id__": 149
  6802. }
  6803. ],
  6804. "_prefab": null,
  6805. "_opacity": 255,
  6806. "_color": {
  6807. "__type__": "cc.Color",
  6808. "r": 127,
  6809. "g": 127,
  6810. "b": 127,
  6811. "a": 255
  6812. },
  6813. "_contentSize": {
  6814. "__type__": "cc.Size",
  6815. "width": 328,
  6816. "height": 21
  6817. },
  6818. "_anchorPoint": {
  6819. "__type__": "cc.Vec2",
  6820. "x": 0,
  6821. "y": 1
  6822. },
  6823. "_position": {
  6824. "__type__": "cc.Vec3",
  6825. "x": 2,
  6826. "y": 21,
  6827. "z": 0
  6828. },
  6829. "_scale": {
  6830. "__type__": "cc.Vec3",
  6831. "x": 1,
  6832. "y": 1,
  6833. "z": 1
  6834. },
  6835. "_rotationX": 0,
  6836. "_rotationY": 0,
  6837. "_quat": {
  6838. "__type__": "cc.Quat",
  6839. "x": 0,
  6840. "y": 0,
  6841. "z": 0,
  6842. "w": 1
  6843. },
  6844. "_skewX": 0,
  6845. "_skewY": 0,
  6846. "groupIndex": 0,
  6847. "_id": "838bhFN6VCcL1Rp7eVDmSX"
  6848. },
  6849. {
  6850. "__type__": "cc.Label",
  6851. "_name": "",
  6852. "_objFlags": 0,
  6853. "node": {
  6854. "__id__": 148
  6855. },
  6856. "_enabled": true,
  6857. "_useOriginalSize": true,
  6858. "_string": "请输入密码",
  6859. "_N$string": "请输入密码",
  6860. "_fontSize": 23,
  6861. "_lineHeight": 21,
  6862. "_enableWrapText": false,
  6863. "_N$file": null,
  6864. "_isSystemFontUsed": true,
  6865. "_spacingX": 0,
  6866. "_batchAsBitmap": false,
  6867. "_N$horizontalAlign": 0,
  6868. "_N$verticalAlign": 1,
  6869. "_N$fontFamily": "Arial",
  6870. "_N$overflow": 1,
  6871. "_N$cacheMode": 0,
  6872. "_id": "dbBeAC/PBHwoXgBZJsfWcl"
  6873. },
  6874. {
  6875. "__type__": "cc.EditBox",
  6876. "_name": "",
  6877. "_objFlags": 0,
  6878. "node": {
  6879. "__id__": 143
  6880. },
  6881. "_enabled": true,
  6882. "_useOriginalSize": true,
  6883. "_string": "",
  6884. "_tabIndex": 0,
  6885. "editingDidBegan": [],
  6886. "textChanged": [],
  6887. "editingDidEnded": [],
  6888. "editingReturn": [],
  6889. "_N$backgroundImage": null,
  6890. "_N$returnType": 1,
  6891. "_N$inputFlag": 3,
  6892. "_N$inputMode": 6,
  6893. "_N$fontSize": 21,
  6894. "_N$lineHeight": 21,
  6895. "_N$fontColor": {
  6896. "__type__": "cc.Color",
  6897. "r": 3,
  6898. "g": 0,
  6899. "b": 0,
  6900. "a": 255
  6901. },
  6902. "_N$placeholder": "请输入密码",
  6903. "_N$placeholderFontSize": 23,
  6904. "_N$placeholderFontColor": {
  6905. "__type__": "cc.Color",
  6906. "r": 127,
  6907. "g": 127,
  6908. "b": 127,
  6909. "a": 255
  6910. },
  6911. "_N$maxLength": 10,
  6912. "_N$stayOnTop": false,
  6913. "_id": "0dSPlS8m5LhJlXJ2DLYIkC"
  6914. },
  6915. {
  6916. "__type__": "cc.Node",
  6917. "_name": "name2",
  6918. "_objFlags": 0,
  6919. "_parent": {
  6920. "__id__": 142
  6921. },
  6922. "_children": [],
  6923. "_active": true,
  6924. "_level": 6,
  6925. "_components": [
  6926. {
  6927. "__id__": 152
  6928. },
  6929. {
  6930. "__id__": 153
  6931. }
  6932. ],
  6933. "_prefab": null,
  6934. "_opacity": 255,
  6935. "_color": {
  6936. "__type__": "cc.Color",
  6937. "r": 255,
  6938. "g": 255,
  6939. "b": 255,
  6940. "a": 255
  6941. },
  6942. "_contentSize": {
  6943. "__type__": "cc.Size",
  6944. "width": 130,
  6945. "height": 37
  6946. },
  6947. "_anchorPoint": {
  6948. "__type__": "cc.Vec2",
  6949. "x": 0,
  6950. "y": 0
  6951. },
  6952. "_position": {
  6953. "__type__": "cc.Vec3",
  6954. "x": -146,
  6955. "y": 10,
  6956. "z": 0
  6957. },
  6958. "_scale": {
  6959. "__type__": "cc.Vec3",
  6960. "x": 1,
  6961. "y": 1,
  6962. "z": 1
  6963. },
  6964. "_rotationX": 0,
  6965. "_rotationY": 0,
  6966. "_quat": {
  6967. "__type__": "cc.Quat",
  6968. "x": 0,
  6969. "y": 0,
  6970. "z": 0,
  6971. "w": 1
  6972. },
  6973. "_skewX": 0,
  6974. "_skewY": 0,
  6975. "groupIndex": 0,
  6976. "_id": "d6M57vR5NGi6yR30UeioRb"
  6977. },
  6978. {
  6979. "__type__": "cc.Sprite",
  6980. "_name": "",
  6981. "_objFlags": 0,
  6982. "node": {
  6983. "__id__": 151
  6984. },
  6985. "_enabled": true,
  6986. "_spriteFrame": {
  6987. "__uuid__": "0bf50656-1733-4bf5-8bb9-be4b6adcdead"
  6988. },
  6989. "_type": 0,
  6990. "_sizeMode": 1,
  6991. "_fillType": 0,
  6992. "_fillCenter": {
  6993. "__type__": "cc.Vec2",
  6994. "x": 0,
  6995. "y": 0
  6996. },
  6997. "_fillStart": 0,
  6998. "_fillRange": 0,
  6999. "_isTrimmedMode": true,
  7000. "_state": 0,
  7001. "_atlas": {
  7002. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  7003. },
  7004. "_srcBlendFactor": 770,
  7005. "_dstBlendFactor": 771,
  7006. "_id": "64rwsJPTBC76ThsZ9/sFLJ"
  7007. },
  7008. {
  7009. "__type__": "cc.Widget",
  7010. "_name": "",
  7011. "_objFlags": 0,
  7012. "node": {
  7013. "__id__": 151
  7014. },
  7015. "_enabled": true,
  7016. "alignMode": 1,
  7017. "_target": null,
  7018. "_alignFlags": 32,
  7019. "_left": 0,
  7020. "_right": 353,
  7021. "_top": 0,
  7022. "_bottom": 0,
  7023. "_verticalCenter": 0,
  7024. "_horizontalCenter": 0,
  7025. "_isAbsLeft": true,
  7026. "_isAbsRight": true,
  7027. "_isAbsTop": true,
  7028. "_isAbsBottom": true,
  7029. "_isAbsHorizontalCenter": true,
  7030. "_isAbsVerticalCenter": true,
  7031. "_originalWidth": 0,
  7032. "_originalHeight": 0,
  7033. "_id": "eeC6n527tGI5JWlGFl/Hw6"
  7034. },
  7035. {
  7036. "__type__": "cc.Sprite",
  7037. "_name": "",
  7038. "_objFlags": 0,
  7039. "node": {
  7040. "__id__": 142
  7041. },
  7042. "_enabled": true,
  7043. "_spriteFrame": {
  7044. "__uuid__": "6671e6b0-fb48-4ec5-8462-dba274a6b633"
  7045. },
  7046. "_type": 0,
  7047. "_sizeMode": 1,
  7048. "_fillType": 0,
  7049. "_fillCenter": {
  7050. "__type__": "cc.Vec2",
  7051. "x": 0,
  7052. "y": 0
  7053. },
  7054. "_fillStart": 0,
  7055. "_fillRange": 0,
  7056. "_isTrimmedMode": true,
  7057. "_state": 0,
  7058. "_atlas": {
  7059. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  7060. },
  7061. "_srcBlendFactor": 770,
  7062. "_dstBlendFactor": 771,
  7063. "_id": "3crdR9AcJIcInWxWMVcQH5"
  7064. },
  7065. {
  7066. "__type__": "cc.Widget",
  7067. "_name": "",
  7068. "_objFlags": 0,
  7069. "node": {
  7070. "__id__": 142
  7071. },
  7072. "_enabled": true,
  7073. "alignMode": 1,
  7074. "_target": {
  7075. "__id__": 6
  7076. },
  7077. "_alignFlags": 8,
  7078. "_left": 0.4272863568215892,
  7079. "_right": 457,
  7080. "_top": 351,
  7081. "_bottom": 0,
  7082. "_verticalCenter": 0,
  7083. "_horizontalCenter": 0,
  7084. "_isAbsLeft": false,
  7085. "_isAbsRight": true,
  7086. "_isAbsTop": true,
  7087. "_isAbsBottom": true,
  7088. "_isAbsHorizontalCenter": true,
  7089. "_isAbsVerticalCenter": true,
  7090. "_originalWidth": 397,
  7091. "_originalHeight": 0,
  7092. "_id": "90vARO0GBFEanU+kR0Nlmg"
  7093. },
  7094. {
  7095. "__type__": "cc.Node",
  7096. "_name": "qrmmBanner",
  7097. "_objFlags": 0,
  7098. "_parent": {
  7099. "__id__": 123
  7100. },
  7101. "_children": [
  7102. {
  7103. "__id__": 157
  7104. },
  7105. {
  7106. "__id__": 165
  7107. }
  7108. ],
  7109. "_active": true,
  7110. "_level": 5,
  7111. "_components": [
  7112. {
  7113. "__id__": 168
  7114. },
  7115. {
  7116. "__id__": 169
  7117. }
  7118. ],
  7119. "_prefab": null,
  7120. "_opacity": 255,
  7121. "_color": {
  7122. "__type__": "cc.Color",
  7123. "r": 255,
  7124. "g": 255,
  7125. "b": 255,
  7126. "a": 255
  7127. },
  7128. "_contentSize": {
  7129. "__type__": "cc.Size",
  7130. "width": 337,
  7131. "height": 55
  7132. },
  7133. "_anchorPoint": {
  7134. "__type__": "cc.Vec2",
  7135. "x": 0,
  7136. "y": 0
  7137. },
  7138. "_position": {
  7139. "__type__": "cc.Vec3",
  7140. "x": 303,
  7141. "y": 245,
  7142. "z": 0
  7143. },
  7144. "_scale": {
  7145. "__type__": "cc.Vec3",
  7146. "x": 1,
  7147. "y": 1,
  7148. "z": 1
  7149. },
  7150. "_rotationX": 0,
  7151. "_rotationY": 0,
  7152. "_quat": {
  7153. "__type__": "cc.Quat",
  7154. "x": 0,
  7155. "y": 0,
  7156. "z": 0,
  7157. "w": 1
  7158. },
  7159. "_skewX": 0,
  7160. "_skewY": 0,
  7161. "groupIndex": 0,
  7162. "_id": "52EfmZZZVCXK3M/q/OH/01"
  7163. },
  7164. {
  7165. "__type__": "cc.Node",
  7166. "_name": "srLabel",
  7167. "_objFlags": 0,
  7168. "_parent": {
  7169. "__id__": 156
  7170. },
  7171. "_children": [
  7172. {
  7173. "__id__": 158
  7174. },
  7175. {
  7176. "__id__": 160
  7177. },
  7178. {
  7179. "__id__": 162
  7180. }
  7181. ],
  7182. "_active": true,
  7183. "_level": 4,
  7184. "_components": [
  7185. {
  7186. "__id__": 164
  7187. }
  7188. ],
  7189. "_prefab": null,
  7190. "_opacity": 255,
  7191. "_color": {
  7192. "__type__": "cc.Color",
  7193. "r": 0,
  7194. "g": 0,
  7195. "b": 0,
  7196. "a": 255
  7197. },
  7198. "_contentSize": {
  7199. "__type__": "cc.Size",
  7200. "width": 330,
  7201. "height": 21
  7202. },
  7203. "_anchorPoint": {
  7204. "__type__": "cc.Vec2",
  7205. "x": 0,
  7206. "y": 0
  7207. },
  7208. "_position": {
  7209. "__type__": "cc.Vec3",
  7210. "x": 33,
  7211. "y": 18,
  7212. "z": 0
  7213. },
  7214. "_scale": {
  7215. "__type__": "cc.Vec3",
  7216. "x": 1,
  7217. "y": 1,
  7218. "z": 1
  7219. },
  7220. "_rotationX": 0,
  7221. "_rotationY": 0,
  7222. "_quat": {
  7223. "__type__": "cc.Quat",
  7224. "x": 0,
  7225. "y": 0,
  7226. "z": 0,
  7227. "w": 1
  7228. },
  7229. "_skewX": 0,
  7230. "_skewY": 0,
  7231. "groupIndex": 0,
  7232. "_id": "69JctTPGlGKKDUDfZiCKem"
  7233. },
  7234. {
  7235. "__type__": "cc.Node",
  7236. "_name": "BACKGROUND_SPRITE",
  7237. "_objFlags": 0,
  7238. "_parent": {
  7239. "__id__": 157
  7240. },
  7241. "_children": [],
  7242. "_active": true,
  7243. "_level": 5,
  7244. "_components": [
  7245. {
  7246. "__id__": 159
  7247. }
  7248. ],
  7249. "_prefab": null,
  7250. "_opacity": 255,
  7251. "_color": {
  7252. "__type__": "cc.Color",
  7253. "r": 255,
  7254. "g": 255,
  7255. "b": 255,
  7256. "a": 255
  7257. },
  7258. "_contentSize": {
  7259. "__type__": "cc.Size",
  7260. "width": 330,
  7261. "height": 21
  7262. },
  7263. "_anchorPoint": {
  7264. "__type__": "cc.Vec2",
  7265. "x": 0,
  7266. "y": 0
  7267. },
  7268. "_position": {
  7269. "__type__": "cc.Vec3",
  7270. "x": 0,
  7271. "y": 0,
  7272. "z": 0
  7273. },
  7274. "_scale": {
  7275. "__type__": "cc.Vec3",
  7276. "x": 1,
  7277. "y": 1,
  7278. "z": 1
  7279. },
  7280. "_rotationX": 0,
  7281. "_rotationY": 0,
  7282. "_quat": {
  7283. "__type__": "cc.Quat",
  7284. "x": 0,
  7285. "y": 0,
  7286. "z": 0,
  7287. "w": 1
  7288. },
  7289. "_skewX": 0,
  7290. "_skewY": 0,
  7291. "groupIndex": 0,
  7292. "_id": "07QMVZl7lAi5U9Pyo904kJ"
  7293. },
  7294. {
  7295. "__type__": "cc.Sprite",
  7296. "_name": "",
  7297. "_objFlags": 0,
  7298. "node": {
  7299. "__id__": 158
  7300. },
  7301. "_enabled": true,
  7302. "_spriteFrame": null,
  7303. "_type": 1,
  7304. "_sizeMode": 1,
  7305. "_fillType": 0,
  7306. "_fillCenter": {
  7307. "__type__": "cc.Vec2",
  7308. "x": 0,
  7309. "y": 0
  7310. },
  7311. "_fillStart": 0,
  7312. "_fillRange": 0,
  7313. "_isTrimmedMode": true,
  7314. "_state": 0,
  7315. "_atlas": null,
  7316. "_srcBlendFactor": 770,
  7317. "_dstBlendFactor": 771,
  7318. "_id": "fbDqIfMnxH1JZ8GgTqZNfJ"
  7319. },
  7320. {
  7321. "__type__": "cc.Node",
  7322. "_name": "TEXT_LABEL",
  7323. "_objFlags": 0,
  7324. "_parent": {
  7325. "__id__": 157
  7326. },
  7327. "_children": [],
  7328. "_active": false,
  7329. "_level": 5,
  7330. "_components": [
  7331. {
  7332. "__id__": 161
  7333. }
  7334. ],
  7335. "_prefab": null,
  7336. "_opacity": 255,
  7337. "_color": {
  7338. "__type__": "cc.Color",
  7339. "r": 3,
  7340. "g": 0,
  7341. "b": 0,
  7342. "a": 255
  7343. },
  7344. "_contentSize": {
  7345. "__type__": "cc.Size",
  7346. "width": 328,
  7347. "height": 21
  7348. },
  7349. "_anchorPoint": {
  7350. "__type__": "cc.Vec2",
  7351. "x": 0,
  7352. "y": 1
  7353. },
  7354. "_position": {
  7355. "__type__": "cc.Vec3",
  7356. "x": 2,
  7357. "y": 21,
  7358. "z": 0
  7359. },
  7360. "_scale": {
  7361. "__type__": "cc.Vec3",
  7362. "x": 1,
  7363. "y": 1,
  7364. "z": 1
  7365. },
  7366. "_rotationX": 0,
  7367. "_rotationY": 0,
  7368. "_quat": {
  7369. "__type__": "cc.Quat",
  7370. "x": 0,
  7371. "y": 0,
  7372. "z": 0,
  7373. "w": 1
  7374. },
  7375. "_skewX": 0,
  7376. "_skewY": 0,
  7377. "groupIndex": 0,
  7378. "_id": "40f7CVWv1MCquchpBDk2Uo"
  7379. },
  7380. {
  7381. "__type__": "cc.Label",
  7382. "_name": "",
  7383. "_objFlags": 0,
  7384. "node": {
  7385. "__id__": 160
  7386. },
  7387. "_enabled": true,
  7388. "_useOriginalSize": true,
  7389. "_string": "",
  7390. "_N$string": "",
  7391. "_fontSize": 21,
  7392. "_lineHeight": 21,
  7393. "_enableWrapText": false,
  7394. "_N$file": null,
  7395. "_isSystemFontUsed": true,
  7396. "_spacingX": 0,
  7397. "_batchAsBitmap": false,
  7398. "_N$horizontalAlign": 0,
  7399. "_N$verticalAlign": 1,
  7400. "_N$fontFamily": "Arial",
  7401. "_N$overflow": 1,
  7402. "_N$cacheMode": 0,
  7403. "_id": "66lAsT3yFH/J9fKE0qmUMv"
  7404. },
  7405. {
  7406. "__type__": "cc.Node",
  7407. "_name": "PLACEHOLDER_LABEL",
  7408. "_objFlags": 0,
  7409. "_parent": {
  7410. "__id__": 157
  7411. },
  7412. "_children": [],
  7413. "_active": true,
  7414. "_level": 5,
  7415. "_components": [
  7416. {
  7417. "__id__": 163
  7418. }
  7419. ],
  7420. "_prefab": null,
  7421. "_opacity": 255,
  7422. "_color": {
  7423. "__type__": "cc.Color",
  7424. "r": 127,
  7425. "g": 127,
  7426. "b": 127,
  7427. "a": 255
  7428. },
  7429. "_contentSize": {
  7430. "__type__": "cc.Size",
  7431. "width": 328,
  7432. "height": 21
  7433. },
  7434. "_anchorPoint": {
  7435. "__type__": "cc.Vec2",
  7436. "x": 0,
  7437. "y": 1
  7438. },
  7439. "_position": {
  7440. "__type__": "cc.Vec3",
  7441. "x": 2,
  7442. "y": 21,
  7443. "z": 0
  7444. },
  7445. "_scale": {
  7446. "__type__": "cc.Vec3",
  7447. "x": 1,
  7448. "y": 1,
  7449. "z": 1
  7450. },
  7451. "_rotationX": 0,
  7452. "_rotationY": 0,
  7453. "_quat": {
  7454. "__type__": "cc.Quat",
  7455. "x": 0,
  7456. "y": 0,
  7457. "z": 0,
  7458. "w": 1
  7459. },
  7460. "_skewX": 0,
  7461. "_skewY": 0,
  7462. "groupIndex": 0,
  7463. "_id": "5eObQtVw9AlISQx8SHSMGA"
  7464. },
  7465. {
  7466. "__type__": "cc.Label",
  7467. "_name": "",
  7468. "_objFlags": 0,
  7469. "node": {
  7470. "__id__": 162
  7471. },
  7472. "_enabled": true,
  7473. "_useOriginalSize": true,
  7474. "_string": "请再次输入密码",
  7475. "_N$string": "请再次输入密码",
  7476. "_fontSize": 23,
  7477. "_lineHeight": 21,
  7478. "_enableWrapText": false,
  7479. "_N$file": null,
  7480. "_isSystemFontUsed": true,
  7481. "_spacingX": 0,
  7482. "_batchAsBitmap": false,
  7483. "_N$horizontalAlign": 0,
  7484. "_N$verticalAlign": 1,
  7485. "_N$fontFamily": "Arial",
  7486. "_N$overflow": 1,
  7487. "_N$cacheMode": 0,
  7488. "_id": "1fSZ13bwxL2YLvQh9BYFdD"
  7489. },
  7490. {
  7491. "__type__": "cc.EditBox",
  7492. "_name": "",
  7493. "_objFlags": 0,
  7494. "node": {
  7495. "__id__": 157
  7496. },
  7497. "_enabled": true,
  7498. "_useOriginalSize": true,
  7499. "_string": "",
  7500. "_tabIndex": 0,
  7501. "editingDidBegan": [],
  7502. "textChanged": [],
  7503. "editingDidEnded": [],
  7504. "editingReturn": [],
  7505. "_N$backgroundImage": null,
  7506. "_N$returnType": 1,
  7507. "_N$inputFlag": 3,
  7508. "_N$inputMode": 6,
  7509. "_N$fontSize": 21,
  7510. "_N$lineHeight": 21,
  7511. "_N$fontColor": {
  7512. "__type__": "cc.Color",
  7513. "r": 3,
  7514. "g": 0,
  7515. "b": 0,
  7516. "a": 255
  7517. },
  7518. "_N$placeholder": "请再次输入密码",
  7519. "_N$placeholderFontSize": 23,
  7520. "_N$placeholderFontColor": {
  7521. "__type__": "cc.Color",
  7522. "r": 127,
  7523. "g": 127,
  7524. "b": 127,
  7525. "a": 255
  7526. },
  7527. "_N$maxLength": 10,
  7528. "_N$stayOnTop": false,
  7529. "_id": "ddumSpgRxEOJvRyxU3JNQX"
  7530. },
  7531. {
  7532. "__type__": "cc.Node",
  7533. "_name": "name3",
  7534. "_objFlags": 0,
  7535. "_parent": {
  7536. "__id__": 156
  7537. },
  7538. "_children": [],
  7539. "_active": true,
  7540. "_level": 6,
  7541. "_components": [
  7542. {
  7543. "__id__": 166
  7544. },
  7545. {
  7546. "__id__": 167
  7547. }
  7548. ],
  7549. "_prefab": null,
  7550. "_opacity": 255,
  7551. "_color": {
  7552. "__type__": "cc.Color",
  7553. "r": 255,
  7554. "g": 255,
  7555. "b": 255,
  7556. "a": 255
  7557. },
  7558. "_contentSize": {
  7559. "__type__": "cc.Size",
  7560. "width": 193,
  7561. "height": 37
  7562. },
  7563. "_anchorPoint": {
  7564. "__type__": "cc.Vec2",
  7565. "x": 0,
  7566. "y": 0
  7567. },
  7568. "_position": {
  7569. "__type__": "cc.Vec3",
  7570. "x": -207,
  7571. "y": 10,
  7572. "z": 0
  7573. },
  7574. "_scale": {
  7575. "__type__": "cc.Vec3",
  7576. "x": 1,
  7577. "y": 1,
  7578. "z": 1
  7579. },
  7580. "_rotationX": 0,
  7581. "_rotationY": 0,
  7582. "_quat": {
  7583. "__type__": "cc.Quat",
  7584. "x": 0,
  7585. "y": 0,
  7586. "z": 0,
  7587. "w": 1
  7588. },
  7589. "_skewX": 0,
  7590. "_skewY": 0,
  7591. "groupIndex": 0,
  7592. "_id": "08PHzqwMJMyKmG9xZf2XGQ"
  7593. },
  7594. {
  7595. "__type__": "cc.Sprite",
  7596. "_name": "",
  7597. "_objFlags": 0,
  7598. "node": {
  7599. "__id__": 165
  7600. },
  7601. "_enabled": true,
  7602. "_spriteFrame": {
  7603. "__uuid__": "09ec141f-5245-45ec-99da-9555f467bf65"
  7604. },
  7605. "_type": 0,
  7606. "_sizeMode": 1,
  7607. "_fillType": 0,
  7608. "_fillCenter": {
  7609. "__type__": "cc.Vec2",
  7610. "x": 0,
  7611. "y": 0
  7612. },
  7613. "_fillStart": 0,
  7614. "_fillRange": 0,
  7615. "_isTrimmedMode": true,
  7616. "_state": 0,
  7617. "_atlas": {
  7618. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  7619. },
  7620. "_srcBlendFactor": 770,
  7621. "_dstBlendFactor": 771,
  7622. "_id": "47VyqdVs9MuLgKIn1W+WtS"
  7623. },
  7624. {
  7625. "__type__": "cc.Widget",
  7626. "_name": "",
  7627. "_objFlags": 0,
  7628. "node": {
  7629. "__id__": 165
  7630. },
  7631. "_enabled": true,
  7632. "alignMode": 1,
  7633. "_target": null,
  7634. "_alignFlags": 32,
  7635. "_left": 0,
  7636. "_right": 351,
  7637. "_top": 0,
  7638. "_bottom": 0,
  7639. "_verticalCenter": 0,
  7640. "_horizontalCenter": 0,
  7641. "_isAbsLeft": true,
  7642. "_isAbsRight": true,
  7643. "_isAbsTop": true,
  7644. "_isAbsBottom": true,
  7645. "_isAbsHorizontalCenter": true,
  7646. "_isAbsVerticalCenter": true,
  7647. "_originalWidth": 0,
  7648. "_originalHeight": 0,
  7649. "_id": "55sHvTCw5DyLdoNpJxOseo"
  7650. },
  7651. {
  7652. "__type__": "cc.Sprite",
  7653. "_name": "",
  7654. "_objFlags": 0,
  7655. "node": {
  7656. "__id__": 156
  7657. },
  7658. "_enabled": true,
  7659. "_spriteFrame": {
  7660. "__uuid__": "6671e6b0-fb48-4ec5-8462-dba274a6b633"
  7661. },
  7662. "_type": 0,
  7663. "_sizeMode": 1,
  7664. "_fillType": 0,
  7665. "_fillCenter": {
  7666. "__type__": "cc.Vec2",
  7667. "x": 0,
  7668. "y": 0
  7669. },
  7670. "_fillStart": 0,
  7671. "_fillRange": 0,
  7672. "_isTrimmedMode": true,
  7673. "_state": 0,
  7674. "_atlas": {
  7675. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  7676. },
  7677. "_srcBlendFactor": 770,
  7678. "_dstBlendFactor": 771,
  7679. "_id": "22CtGPFsVMqYnvJqYyy1+r"
  7680. },
  7681. {
  7682. "__type__": "cc.Widget",
  7683. "_name": "",
  7684. "_objFlags": 0,
  7685. "node": {
  7686. "__id__": 156
  7687. },
  7688. "_enabled": true,
  7689. "alignMode": 1,
  7690. "_target": {
  7691. "__id__": 6
  7692. },
  7693. "_alignFlags": 8,
  7694. "_left": 0.4272863568215892,
  7695. "_right": 457,
  7696. "_top": 351,
  7697. "_bottom": 0,
  7698. "_verticalCenter": 0,
  7699. "_horizontalCenter": 0,
  7700. "_isAbsLeft": false,
  7701. "_isAbsRight": true,
  7702. "_isAbsTop": true,
  7703. "_isAbsBottom": true,
  7704. "_isAbsHorizontalCenter": true,
  7705. "_isAbsVerticalCenter": true,
  7706. "_originalWidth": 397,
  7707. "_originalHeight": 0,
  7708. "_id": "697NVEqVxLW5j0hbKXaZpn"
  7709. },
  7710. {
  7711. "__type__": "cc.Node",
  7712. "_name": "sjBanner",
  7713. "_objFlags": 0,
  7714. "_parent": {
  7715. "__id__": 123
  7716. },
  7717. "_children": [
  7718. {
  7719. "__id__": 171
  7720. },
  7721. {
  7722. "__id__": 179
  7723. }
  7724. ],
  7725. "_active": true,
  7726. "_level": 5,
  7727. "_components": [
  7728. {
  7729. "__id__": 182
  7730. },
  7731. {
  7732. "__id__": 183
  7733. }
  7734. ],
  7735. "_prefab": null,
  7736. "_opacity": 255,
  7737. "_color": {
  7738. "__type__": "cc.Color",
  7739. "r": 255,
  7740. "g": 255,
  7741. "b": 255,
  7742. "a": 255
  7743. },
  7744. "_contentSize": {
  7745. "__type__": "cc.Size",
  7746. "width": 337,
  7747. "height": 55
  7748. },
  7749. "_anchorPoint": {
  7750. "__type__": "cc.Vec2",
  7751. "x": 0,
  7752. "y": 0
  7753. },
  7754. "_position": {
  7755. "__type__": "cc.Vec3",
  7756. "x": 303,
  7757. "y": 165,
  7758. "z": 0
  7759. },
  7760. "_scale": {
  7761. "__type__": "cc.Vec3",
  7762. "x": 1,
  7763. "y": 1,
  7764. "z": 1
  7765. },
  7766. "_rotationX": 0,
  7767. "_rotationY": 0,
  7768. "_quat": {
  7769. "__type__": "cc.Quat",
  7770. "x": 0,
  7771. "y": 0,
  7772. "z": 0,
  7773. "w": 1
  7774. },
  7775. "_skewX": 0,
  7776. "_skewY": 0,
  7777. "groupIndex": 0,
  7778. "_id": "444bqm+51K3ZfwCCNq2rz5"
  7779. },
  7780. {
  7781. "__type__": "cc.Node",
  7782. "_name": "srLabel",
  7783. "_objFlags": 0,
  7784. "_parent": {
  7785. "__id__": 170
  7786. },
  7787. "_children": [
  7788. {
  7789. "__id__": 172
  7790. },
  7791. {
  7792. "__id__": 174
  7793. },
  7794. {
  7795. "__id__": 176
  7796. }
  7797. ],
  7798. "_active": true,
  7799. "_level": 4,
  7800. "_components": [
  7801. {
  7802. "__id__": 178
  7803. }
  7804. ],
  7805. "_prefab": null,
  7806. "_opacity": 255,
  7807. "_color": {
  7808. "__type__": "cc.Color",
  7809. "r": 0,
  7810. "g": 0,
  7811. "b": 0,
  7812. "a": 255
  7813. },
  7814. "_contentSize": {
  7815. "__type__": "cc.Size",
  7816. "width": 330,
  7817. "height": 21
  7818. },
  7819. "_anchorPoint": {
  7820. "__type__": "cc.Vec2",
  7821. "x": 0,
  7822. "y": 0
  7823. },
  7824. "_position": {
  7825. "__type__": "cc.Vec3",
  7826. "x": 33,
  7827. "y": 18,
  7828. "z": 0
  7829. },
  7830. "_scale": {
  7831. "__type__": "cc.Vec3",
  7832. "x": 1,
  7833. "y": 1,
  7834. "z": 1
  7835. },
  7836. "_rotationX": 0,
  7837. "_rotationY": 0,
  7838. "_quat": {
  7839. "__type__": "cc.Quat",
  7840. "x": 0,
  7841. "y": 0,
  7842. "z": 0,
  7843. "w": 1
  7844. },
  7845. "_skewX": 0,
  7846. "_skewY": 0,
  7847. "groupIndex": 0,
  7848. "_id": "dfMMjET8JBeJPI0b1EgWl0"
  7849. },
  7850. {
  7851. "__type__": "cc.Node",
  7852. "_name": "BACKGROUND_SPRITE",
  7853. "_objFlags": 0,
  7854. "_parent": {
  7855. "__id__": 171
  7856. },
  7857. "_children": [],
  7858. "_active": true,
  7859. "_level": 5,
  7860. "_components": [
  7861. {
  7862. "__id__": 173
  7863. }
  7864. ],
  7865. "_prefab": null,
  7866. "_opacity": 255,
  7867. "_color": {
  7868. "__type__": "cc.Color",
  7869. "r": 255,
  7870. "g": 255,
  7871. "b": 255,
  7872. "a": 255
  7873. },
  7874. "_contentSize": {
  7875. "__type__": "cc.Size",
  7876. "width": 330,
  7877. "height": 21
  7878. },
  7879. "_anchorPoint": {
  7880. "__type__": "cc.Vec2",
  7881. "x": 0,
  7882. "y": 0
  7883. },
  7884. "_position": {
  7885. "__type__": "cc.Vec3",
  7886. "x": 0,
  7887. "y": 0,
  7888. "z": 0
  7889. },
  7890. "_scale": {
  7891. "__type__": "cc.Vec3",
  7892. "x": 1,
  7893. "y": 1,
  7894. "z": 1
  7895. },
  7896. "_rotationX": 0,
  7897. "_rotationY": 0,
  7898. "_quat": {
  7899. "__type__": "cc.Quat",
  7900. "x": 0,
  7901. "y": 0,
  7902. "z": 0,
  7903. "w": 1
  7904. },
  7905. "_skewX": 0,
  7906. "_skewY": 0,
  7907. "groupIndex": 0,
  7908. "_id": "28esj42aZAEK3lgcd9lzR2"
  7909. },
  7910. {
  7911. "__type__": "cc.Sprite",
  7912. "_name": "",
  7913. "_objFlags": 0,
  7914. "node": {
  7915. "__id__": 172
  7916. },
  7917. "_enabled": true,
  7918. "_spriteFrame": null,
  7919. "_type": 1,
  7920. "_sizeMode": 1,
  7921. "_fillType": 0,
  7922. "_fillCenter": {
  7923. "__type__": "cc.Vec2",
  7924. "x": 0,
  7925. "y": 0
  7926. },
  7927. "_fillStart": 0,
  7928. "_fillRange": 0,
  7929. "_isTrimmedMode": true,
  7930. "_state": 0,
  7931. "_atlas": null,
  7932. "_srcBlendFactor": 770,
  7933. "_dstBlendFactor": 771,
  7934. "_id": "c9RkIHzatE9ZNG5SZQrqWG"
  7935. },
  7936. {
  7937. "__type__": "cc.Node",
  7938. "_name": "TEXT_LABEL",
  7939. "_objFlags": 0,
  7940. "_parent": {
  7941. "__id__": 171
  7942. },
  7943. "_children": [],
  7944. "_active": false,
  7945. "_level": 5,
  7946. "_components": [
  7947. {
  7948. "__id__": 175
  7949. }
  7950. ],
  7951. "_prefab": null,
  7952. "_opacity": 255,
  7953. "_color": {
  7954. "__type__": "cc.Color",
  7955. "r": 3,
  7956. "g": 0,
  7957. "b": 0,
  7958. "a": 255
  7959. },
  7960. "_contentSize": {
  7961. "__type__": "cc.Size",
  7962. "width": 328,
  7963. "height": 21
  7964. },
  7965. "_anchorPoint": {
  7966. "__type__": "cc.Vec2",
  7967. "x": 0,
  7968. "y": 1
  7969. },
  7970. "_position": {
  7971. "__type__": "cc.Vec3",
  7972. "x": 2,
  7973. "y": 21,
  7974. "z": 0
  7975. },
  7976. "_scale": {
  7977. "__type__": "cc.Vec3",
  7978. "x": 1,
  7979. "y": 1,
  7980. "z": 1
  7981. },
  7982. "_rotationX": 0,
  7983. "_rotationY": 0,
  7984. "_quat": {
  7985. "__type__": "cc.Quat",
  7986. "x": 0,
  7987. "y": 0,
  7988. "z": 0,
  7989. "w": 1
  7990. },
  7991. "_skewX": 0,
  7992. "_skewY": 0,
  7993. "groupIndex": 0,
  7994. "_id": "516YU6GkdEcJUJ8/6epjjh"
  7995. },
  7996. {
  7997. "__type__": "cc.Label",
  7998. "_name": "",
  7999. "_objFlags": 0,
  8000. "node": {
  8001. "__id__": 174
  8002. },
  8003. "_enabled": true,
  8004. "_useOriginalSize": true,
  8005. "_string": "",
  8006. "_N$string": "",
  8007. "_fontSize": 21,
  8008. "_lineHeight": 21,
  8009. "_enableWrapText": false,
  8010. "_N$file": null,
  8011. "_isSystemFontUsed": true,
  8012. "_spacingX": 0,
  8013. "_batchAsBitmap": false,
  8014. "_N$horizontalAlign": 0,
  8015. "_N$verticalAlign": 1,
  8016. "_N$fontFamily": "Arial",
  8017. "_N$overflow": 1,
  8018. "_N$cacheMode": 0,
  8019. "_id": "288NXgxHpLKazuOPgOVsQu"
  8020. },
  8021. {
  8022. "__type__": "cc.Node",
  8023. "_name": "PLACEHOLDER_LABEL",
  8024. "_objFlags": 0,
  8025. "_parent": {
  8026. "__id__": 171
  8027. },
  8028. "_children": [],
  8029. "_active": true,
  8030. "_level": 5,
  8031. "_components": [
  8032. {
  8033. "__id__": 177
  8034. }
  8035. ],
  8036. "_prefab": null,
  8037. "_opacity": 255,
  8038. "_color": {
  8039. "__type__": "cc.Color",
  8040. "r": 127,
  8041. "g": 127,
  8042. "b": 127,
  8043. "a": 255
  8044. },
  8045. "_contentSize": {
  8046. "__type__": "cc.Size",
  8047. "width": 328,
  8048. "height": 21
  8049. },
  8050. "_anchorPoint": {
  8051. "__type__": "cc.Vec2",
  8052. "x": 0,
  8053. "y": 1
  8054. },
  8055. "_position": {
  8056. "__type__": "cc.Vec3",
  8057. "x": 2,
  8058. "y": 21,
  8059. "z": 0
  8060. },
  8061. "_scale": {
  8062. "__type__": "cc.Vec3",
  8063. "x": 1,
  8064. "y": 1,
  8065. "z": 1
  8066. },
  8067. "_rotationX": 0,
  8068. "_rotationY": 0,
  8069. "_quat": {
  8070. "__type__": "cc.Quat",
  8071. "x": 0,
  8072. "y": 0,
  8073. "z": 0,
  8074. "w": 1
  8075. },
  8076. "_skewX": 0,
  8077. "_skewY": 0,
  8078. "groupIndex": 0,
  8079. "_id": "6fujrX5hJPoqPv9TKakYqa"
  8080. },
  8081. {
  8082. "__type__": "cc.Label",
  8083. "_name": "",
  8084. "_objFlags": 0,
  8085. "node": {
  8086. "__id__": 176
  8087. },
  8088. "_enabled": true,
  8089. "_useOriginalSize": true,
  8090. "_string": "请输入手机号码",
  8091. "_N$string": "请输入手机号码",
  8092. "_fontSize": 23,
  8093. "_lineHeight": 21,
  8094. "_enableWrapText": false,
  8095. "_N$file": null,
  8096. "_isSystemFontUsed": true,
  8097. "_spacingX": 0,
  8098. "_batchAsBitmap": false,
  8099. "_N$horizontalAlign": 0,
  8100. "_N$verticalAlign": 1,
  8101. "_N$fontFamily": "Arial",
  8102. "_N$overflow": 1,
  8103. "_N$cacheMode": 0,
  8104. "_id": "031FJLXrBPqKrSuSxFElh1"
  8105. },
  8106. {
  8107. "__type__": "cc.EditBox",
  8108. "_name": "",
  8109. "_objFlags": 0,
  8110. "node": {
  8111. "__id__": 171
  8112. },
  8113. "_enabled": true,
  8114. "_useOriginalSize": true,
  8115. "_string": "",
  8116. "_tabIndex": 0,
  8117. "editingDidBegan": [],
  8118. "textChanged": [],
  8119. "editingDidEnded": [],
  8120. "editingReturn": [],
  8121. "_N$backgroundImage": null,
  8122. "_N$returnType": 1,
  8123. "_N$inputFlag": 3,
  8124. "_N$inputMode": 6,
  8125. "_N$fontSize": 21,
  8126. "_N$lineHeight": 21,
  8127. "_N$fontColor": {
  8128. "__type__": "cc.Color",
  8129. "r": 3,
  8130. "g": 0,
  8131. "b": 0,
  8132. "a": 255
  8133. },
  8134. "_N$placeholder": "请输入手机号码",
  8135. "_N$placeholderFontSize": 23,
  8136. "_N$placeholderFontColor": {
  8137. "__type__": "cc.Color",
  8138. "r": 127,
  8139. "g": 127,
  8140. "b": 127,
  8141. "a": 255
  8142. },
  8143. "_N$maxLength": 10,
  8144. "_N$stayOnTop": false,
  8145. "_id": "38yBx17vJLabNOSOBH6efH"
  8146. },
  8147. {
  8148. "__type__": "cc.Node",
  8149. "_name": "name4",
  8150. "_objFlags": 0,
  8151. "_parent": {
  8152. "__id__": 170
  8153. },
  8154. "_children": [],
  8155. "_active": true,
  8156. "_level": 6,
  8157. "_components": [
  8158. {
  8159. "__id__": 180
  8160. },
  8161. {
  8162. "__id__": 181
  8163. }
  8164. ],
  8165. "_prefab": null,
  8166. "_opacity": 255,
  8167. "_color": {
  8168. "__type__": "cc.Color",
  8169. "r": 255,
  8170. "g": 255,
  8171. "b": 255,
  8172. "a": 255
  8173. },
  8174. "_contentSize": {
  8175. "__type__": "cc.Size",
  8176. "width": 130,
  8177. "height": 36
  8178. },
  8179. "_anchorPoint": {
  8180. "__type__": "cc.Vec2",
  8181. "x": 0,
  8182. "y": 0
  8183. },
  8184. "_position": {
  8185. "__type__": "cc.Vec3",
  8186. "x": -146,
  8187. "y": 10,
  8188. "z": 0
  8189. },
  8190. "_scale": {
  8191. "__type__": "cc.Vec3",
  8192. "x": 1,
  8193. "y": 1,
  8194. "z": 1
  8195. },
  8196. "_rotationX": 0,
  8197. "_rotationY": 0,
  8198. "_quat": {
  8199. "__type__": "cc.Quat",
  8200. "x": 0,
  8201. "y": 0,
  8202. "z": 0,
  8203. "w": 1
  8204. },
  8205. "_skewX": 0,
  8206. "_skewY": 0,
  8207. "groupIndex": 0,
  8208. "_id": "5dXiuHvztEd6imY97hJNsR"
  8209. },
  8210. {
  8211. "__type__": "cc.Sprite",
  8212. "_name": "",
  8213. "_objFlags": 0,
  8214. "node": {
  8215. "__id__": 179
  8216. },
  8217. "_enabled": true,
  8218. "_spriteFrame": {
  8219. "__uuid__": "f65ca2bb-d623-4372-a59d-5d9c53058452"
  8220. },
  8221. "_type": 0,
  8222. "_sizeMode": 1,
  8223. "_fillType": 0,
  8224. "_fillCenter": {
  8225. "__type__": "cc.Vec2",
  8226. "x": 0,
  8227. "y": 0
  8228. },
  8229. "_fillStart": 0,
  8230. "_fillRange": 0,
  8231. "_isTrimmedMode": true,
  8232. "_state": 0,
  8233. "_atlas": {
  8234. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  8235. },
  8236. "_srcBlendFactor": 770,
  8237. "_dstBlendFactor": 771,
  8238. "_id": "43Ijmb9tRIr70alpJ5h5ON"
  8239. },
  8240. {
  8241. "__type__": "cc.Widget",
  8242. "_name": "",
  8243. "_objFlags": 0,
  8244. "node": {
  8245. "__id__": 179
  8246. },
  8247. "_enabled": true,
  8248. "alignMode": 1,
  8249. "_target": null,
  8250. "_alignFlags": 32,
  8251. "_left": 0,
  8252. "_right": 353,
  8253. "_top": 0,
  8254. "_bottom": 0,
  8255. "_verticalCenter": 0,
  8256. "_horizontalCenter": 0,
  8257. "_isAbsLeft": true,
  8258. "_isAbsRight": true,
  8259. "_isAbsTop": true,
  8260. "_isAbsBottom": true,
  8261. "_isAbsHorizontalCenter": true,
  8262. "_isAbsVerticalCenter": true,
  8263. "_originalWidth": 0,
  8264. "_originalHeight": 0,
  8265. "_id": "33w9EpuoxAerHUtbB/+/A7"
  8266. },
  8267. {
  8268. "__type__": "cc.Sprite",
  8269. "_name": "",
  8270. "_objFlags": 0,
  8271. "node": {
  8272. "__id__": 170
  8273. },
  8274. "_enabled": true,
  8275. "_spriteFrame": {
  8276. "__uuid__": "6671e6b0-fb48-4ec5-8462-dba274a6b633"
  8277. },
  8278. "_type": 0,
  8279. "_sizeMode": 1,
  8280. "_fillType": 0,
  8281. "_fillCenter": {
  8282. "__type__": "cc.Vec2",
  8283. "x": 0,
  8284. "y": 0
  8285. },
  8286. "_fillStart": 0,
  8287. "_fillRange": 0,
  8288. "_isTrimmedMode": true,
  8289. "_state": 0,
  8290. "_atlas": {
  8291. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  8292. },
  8293. "_srcBlendFactor": 770,
  8294. "_dstBlendFactor": 771,
  8295. "_id": "25OqLy02pBULIUuubnL25V"
  8296. },
  8297. {
  8298. "__type__": "cc.Widget",
  8299. "_name": "",
  8300. "_objFlags": 0,
  8301. "node": {
  8302. "__id__": 170
  8303. },
  8304. "_enabled": true,
  8305. "alignMode": 1,
  8306. "_target": {
  8307. "__id__": 6
  8308. },
  8309. "_alignFlags": 8,
  8310. "_left": 0.4272863568215892,
  8311. "_right": 457,
  8312. "_top": 351,
  8313. "_bottom": 0,
  8314. "_verticalCenter": 0,
  8315. "_horizontalCenter": 0,
  8316. "_isAbsLeft": false,
  8317. "_isAbsRight": true,
  8318. "_isAbsTop": true,
  8319. "_isAbsBottom": true,
  8320. "_isAbsHorizontalCenter": true,
  8321. "_isAbsVerticalCenter": true,
  8322. "_originalWidth": 397,
  8323. "_originalHeight": 0,
  8324. "_id": "4aGe3194dH4bf+t7lWTjJz"
  8325. },
  8326. {
  8327. "__type__": "cc.Node",
  8328. "_name": "ydys",
  8329. "_objFlags": 0,
  8330. "_parent": {
  8331. "__id__": 123
  8332. },
  8333. "_children": [
  8334. {
  8335. "__id__": 185
  8336. },
  8337. {
  8338. "__id__": 187
  8339. },
  8340. {
  8341. "__id__": 189
  8342. }
  8343. ],
  8344. "_active": true,
  8345. "_level": 5,
  8346. "_components": [
  8347. {
  8348. "__id__": 193
  8349. },
  8350. {
  8351. "__id__": 194
  8352. }
  8353. ],
  8354. "_prefab": null,
  8355. "_opacity": 255,
  8356. "_color": {
  8357. "__type__": "cc.Color",
  8358. "r": 255,
  8359. "g": 255,
  8360. "b": 255,
  8361. "a": 255
  8362. },
  8363. "_contentSize": {
  8364. "__type__": "cc.Size",
  8365. "width": 28,
  8366. "height": 28
  8367. },
  8368. "_anchorPoint": {
  8369. "__type__": "cc.Vec2",
  8370. "x": 0.5,
  8371. "y": 0.5
  8372. },
  8373. "_position": {
  8374. "__type__": "cc.Vec3",
  8375. "x": 266,
  8376. "y": 110,
  8377. "z": 0
  8378. },
  8379. "_scale": {
  8380. "__type__": "cc.Vec3",
  8381. "x": 1,
  8382. "y": 1,
  8383. "z": 1
  8384. },
  8385. "_rotationX": 0,
  8386. "_rotationY": 0,
  8387. "_quat": {
  8388. "__type__": "cc.Quat",
  8389. "x": 0,
  8390. "y": 0,
  8391. "z": 0,
  8392. "w": 1
  8393. },
  8394. "_skewX": 0,
  8395. "_skewY": 0,
  8396. "groupIndex": 0,
  8397. "_id": "06tbdr+UdNg7mmFEW5IXwD"
  8398. },
  8399. {
  8400. "__type__": "cc.Node",
  8401. "_name": "Background",
  8402. "_objFlags": 0,
  8403. "_parent": {
  8404. "__id__": 184
  8405. },
  8406. "_children": [],
  8407. "_active": true,
  8408. "_level": 0,
  8409. "_components": [
  8410. {
  8411. "__id__": 186
  8412. }
  8413. ],
  8414. "_prefab": null,
  8415. "_opacity": 255,
  8416. "_color": {
  8417. "__type__": "cc.Color",
  8418. "r": 255,
  8419. "g": 255,
  8420. "b": 255,
  8421. "a": 255
  8422. },
  8423. "_contentSize": {
  8424. "__type__": "cc.Size",
  8425. "width": 35,
  8426. "height": 35
  8427. },
  8428. "_anchorPoint": {
  8429. "__type__": "cc.Vec2",
  8430. "x": 0.5,
  8431. "y": 0.5
  8432. },
  8433. "_position": {
  8434. "__type__": "cc.Vec3",
  8435. "x": 0,
  8436. "y": 0,
  8437. "z": 0
  8438. },
  8439. "_scale": {
  8440. "__type__": "cc.Vec3",
  8441. "x": 1,
  8442. "y": 1,
  8443. "z": 1
  8444. },
  8445. "_rotationX": 0,
  8446. "_rotationY": 0,
  8447. "_quat": {
  8448. "__type__": "cc.Quat",
  8449. "x": 0,
  8450. "y": 0,
  8451. "z": 0,
  8452. "w": 1
  8453. },
  8454. "_skewX": 0,
  8455. "_skewY": 0,
  8456. "groupIndex": 0,
  8457. "_id": "f6PZV+ORVHEo5wTYj9TEIM"
  8458. },
  8459. {
  8460. "__type__": "cc.Sprite",
  8461. "_name": "",
  8462. "_objFlags": 0,
  8463. "node": {
  8464. "__id__": 185
  8465. },
  8466. "_enabled": true,
  8467. "_spriteFrame": {
  8468. "__uuid__": "9a885a1f-0710-4c05-8696-ca6502a12ed0"
  8469. },
  8470. "_type": 0,
  8471. "_sizeMode": 1,
  8472. "_fillType": 0,
  8473. "_fillCenter": {
  8474. "__type__": "cc.Vec2",
  8475. "x": 0,
  8476. "y": 0
  8477. },
  8478. "_fillStart": 0,
  8479. "_fillRange": 0,
  8480. "_isTrimmedMode": true,
  8481. "_state": 0,
  8482. "_atlas": {
  8483. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  8484. },
  8485. "_srcBlendFactor": 770,
  8486. "_dstBlendFactor": 771,
  8487. "_id": "5efky9XkNJD5O3I5kQvOVi"
  8488. },
  8489. {
  8490. "__type__": "cc.Node",
  8491. "_name": "checkmark",
  8492. "_objFlags": 0,
  8493. "_parent": {
  8494. "__id__": 184
  8495. },
  8496. "_children": [],
  8497. "_active": true,
  8498. "_level": 0,
  8499. "_components": [
  8500. {
  8501. "__id__": 188
  8502. }
  8503. ],
  8504. "_prefab": null,
  8505. "_opacity": 255,
  8506. "_color": {
  8507. "__type__": "cc.Color",
  8508. "r": 255,
  8509. "g": 255,
  8510. "b": 255,
  8511. "a": 255
  8512. },
  8513. "_contentSize": {
  8514. "__type__": "cc.Size",
  8515. "width": 35,
  8516. "height": 35
  8517. },
  8518. "_anchorPoint": {
  8519. "__type__": "cc.Vec2",
  8520. "x": 0.5,
  8521. "y": 0.5
  8522. },
  8523. "_position": {
  8524. "__type__": "cc.Vec3",
  8525. "x": 0,
  8526. "y": 0,
  8527. "z": 0
  8528. },
  8529. "_scale": {
  8530. "__type__": "cc.Vec3",
  8531. "x": 1,
  8532. "y": 1,
  8533. "z": 1
  8534. },
  8535. "_rotationX": 0,
  8536. "_rotationY": 0,
  8537. "_quat": {
  8538. "__type__": "cc.Quat",
  8539. "x": 0,
  8540. "y": 0,
  8541. "z": 0,
  8542. "w": 1
  8543. },
  8544. "_skewX": 0,
  8545. "_skewY": 0,
  8546. "groupIndex": 0,
  8547. "_id": "f3wqXiA/ZKuYS8Ro82F75u"
  8548. },
  8549. {
  8550. "__type__": "cc.Sprite",
  8551. "_name": "",
  8552. "_objFlags": 0,
  8553. "node": {
  8554. "__id__": 187
  8555. },
  8556. "_enabled": true,
  8557. "_spriteFrame": {
  8558. "__uuid__": "48638a53-fd33-4912-8ffa-4a6411074c89"
  8559. },
  8560. "_type": 0,
  8561. "_sizeMode": 2,
  8562. "_fillType": 0,
  8563. "_fillCenter": {
  8564. "__type__": "cc.Vec2",
  8565. "x": 0,
  8566. "y": 0
  8567. },
  8568. "_fillStart": 0,
  8569. "_fillRange": 0,
  8570. "_isTrimmedMode": false,
  8571. "_state": 0,
  8572. "_atlas": {
  8573. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  8574. },
  8575. "_srcBlendFactor": 770,
  8576. "_dstBlendFactor": 771,
  8577. "_id": "24hgnsgVZGe6PSKq5aS/1I"
  8578. },
  8579. {
  8580. "__type__": "cc.Node",
  8581. "_name": "tipstr",
  8582. "_objFlags": 0,
  8583. "_parent": {
  8584. "__id__": 184
  8585. },
  8586. "_children": [],
  8587. "_active": true,
  8588. "_level": 5,
  8589. "_components": [
  8590. {
  8591. "__id__": 190
  8592. },
  8593. {
  8594. "__id__": 191
  8595. }
  8596. ],
  8597. "_prefab": null,
  8598. "_opacity": 255,
  8599. "_color": {
  8600. "__type__": "cc.Color",
  8601. "r": 255,
  8602. "g": 255,
  8603. "b": 255,
  8604. "a": 255
  8605. },
  8606. "_contentSize": {
  8607. "__type__": "cc.Size",
  8608. "width": 333,
  8609. "height": 22
  8610. },
  8611. "_anchorPoint": {
  8612. "__type__": "cc.Vec2",
  8613. "x": 0,
  8614. "y": 0
  8615. },
  8616. "_position": {
  8617. "__type__": "cc.Vec3",
  8618. "x": 40,
  8619. "y": -8,
  8620. "z": 0
  8621. },
  8622. "_scale": {
  8623. "__type__": "cc.Vec3",
  8624. "x": 1,
  8625. "y": 1,
  8626. "z": 1
  8627. },
  8628. "_rotationX": 0,
  8629. "_rotationY": 0,
  8630. "_quat": {
  8631. "__type__": "cc.Quat",
  8632. "x": 0,
  8633. "y": 0,
  8634. "z": 0,
  8635. "w": 1
  8636. },
  8637. "_skewX": 0,
  8638. "_skewY": 0,
  8639. "groupIndex": 0,
  8640. "_id": "83VyynSvBOPLuC9PQmsHgx"
  8641. },
  8642. {
  8643. "__type__": "cc.Sprite",
  8644. "_name": "",
  8645. "_objFlags": 0,
  8646. "node": {
  8647. "__id__": 189
  8648. },
  8649. "_enabled": true,
  8650. "_spriteFrame": {
  8651. "__uuid__": "94c444e6-68f9-467a-9f2a-ab735cce3e24"
  8652. },
  8653. "_type": 0,
  8654. "_sizeMode": 1,
  8655. "_fillType": 0,
  8656. "_fillCenter": {
  8657. "__type__": "cc.Vec2",
  8658. "x": 0,
  8659. "y": 0
  8660. },
  8661. "_fillStart": 0,
  8662. "_fillRange": 0,
  8663. "_isTrimmedMode": true,
  8664. "_state": 0,
  8665. "_atlas": {
  8666. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  8667. },
  8668. "_srcBlendFactor": 770,
  8669. "_dstBlendFactor": 771,
  8670. "_id": "faySWu2hxNX5kqedeauTab"
  8671. },
  8672. {
  8673. "__type__": "cc.Button",
  8674. "_name": "",
  8675. "_objFlags": 0,
  8676. "node": {
  8677. "__id__": 189
  8678. },
  8679. "_enabled": true,
  8680. "duration": 0.1,
  8681. "zoomScale": 1.2,
  8682. "clickEvents": [
  8683. {
  8684. "__id__": 192
  8685. }
  8686. ],
  8687. "_N$interactable": true,
  8688. "_N$enableAutoGrayEffect": false,
  8689. "_N$transition": 0,
  8690. "transition": 0,
  8691. "_N$normalColor": {
  8692. "__type__": "cc.Color",
  8693. "r": 214,
  8694. "g": 214,
  8695. "b": 214,
  8696. "a": 255
  8697. },
  8698. "_N$pressedColor": {
  8699. "__type__": "cc.Color",
  8700. "r": 211,
  8701. "g": 211,
  8702. "b": 211,
  8703. "a": 255
  8704. },
  8705. "pressedColor": {
  8706. "__type__": "cc.Color",
  8707. "r": 211,
  8708. "g": 211,
  8709. "b": 211,
  8710. "a": 255
  8711. },
  8712. "_N$hoverColor": {
  8713. "__type__": "cc.Color",
  8714. "r": 255,
  8715. "g": 255,
  8716. "b": 255,
  8717. "a": 255
  8718. },
  8719. "hoverColor": {
  8720. "__type__": "cc.Color",
  8721. "r": 255,
  8722. "g": 255,
  8723. "b": 255,
  8724. "a": 255
  8725. },
  8726. "_N$disabledColor": {
  8727. "__type__": "cc.Color",
  8728. "r": 124,
  8729. "g": 124,
  8730. "b": 124,
  8731. "a": 255
  8732. },
  8733. "_N$normalSprite": null,
  8734. "_N$pressedSprite": null,
  8735. "pressedSprite": null,
  8736. "_N$hoverSprite": null,
  8737. "hoverSprite": null,
  8738. "_N$disabledSprite": null,
  8739. "_N$target": null,
  8740. "_id": "30OE0YZ+BBKrVf9qjoR3R0"
  8741. },
  8742. {
  8743. "__type__": "cc.ClickEvent",
  8744. "target": {
  8745. "__id__": 6
  8746. },
  8747. "component": "",
  8748. "_componentId": "db8e82XSZdNhr/M689y9PoA",
  8749. "handler": "clickReadYsBtn",
  8750. "customEventData": ""
  8751. },
  8752. {
  8753. "__type__": "cc.Toggle",
  8754. "_name": "",
  8755. "_objFlags": 0,
  8756. "node": {
  8757. "__id__": 184
  8758. },
  8759. "_enabled": true,
  8760. "duration": 0.1,
  8761. "zoomScale": 1.2,
  8762. "clickEvents": [],
  8763. "_N$interactable": true,
  8764. "_N$enableAutoGrayEffect": false,
  8765. "_N$transition": 0,
  8766. "transition": 0,
  8767. "_N$normalColor": {
  8768. "__type__": "cc.Color",
  8769. "r": 214,
  8770. "g": 214,
  8771. "b": 214,
  8772. "a": 255
  8773. },
  8774. "_N$pressedColor": {
  8775. "__type__": "cc.Color",
  8776. "r": 211,
  8777. "g": 211,
  8778. "b": 211,
  8779. "a": 255
  8780. },
  8781. "pressedColor": {
  8782. "__type__": "cc.Color",
  8783. "r": 211,
  8784. "g": 211,
  8785. "b": 211,
  8786. "a": 255
  8787. },
  8788. "_N$hoverColor": {
  8789. "__type__": "cc.Color",
  8790. "r": 255,
  8791. "g": 255,
  8792. "b": 255,
  8793. "a": 255
  8794. },
  8795. "hoverColor": {
  8796. "__type__": "cc.Color",
  8797. "r": 255,
  8798. "g": 255,
  8799. "b": 255,
  8800. "a": 255
  8801. },
  8802. "_N$disabledColor": {
  8803. "__type__": "cc.Color",
  8804. "r": 124,
  8805. "g": 124,
  8806. "b": 124,
  8807. "a": 255
  8808. },
  8809. "_N$normalSprite": null,
  8810. "_N$pressedSprite": null,
  8811. "pressedSprite": null,
  8812. "_N$hoverSprite": null,
  8813. "hoverSprite": null,
  8814. "_N$disabledSprite": null,
  8815. "_N$target": {
  8816. "__id__": 185
  8817. },
  8818. "_N$isChecked": true,
  8819. "toggleGroup": null,
  8820. "checkMark": {
  8821. "__id__": 188
  8822. },
  8823. "checkEvents": [],
  8824. "_id": "3ex8u70o5JKJXSOSD0mrEg"
  8825. },
  8826. {
  8827. "__type__": "cc.Widget",
  8828. "_name": "",
  8829. "_objFlags": 0,
  8830. "node": {
  8831. "__id__": 184
  8832. },
  8833. "_enabled": true,
  8834. "alignMode": 1,
  8835. "_target": {
  8836. "__id__": 6
  8837. },
  8838. "_alignFlags": 16,
  8839. "_left": 0.49175412293853077,
  8840. "_right": 0,
  8841. "_top": 0,
  8842. "_bottom": 0,
  8843. "_verticalCenter": 0,
  8844. "_horizontalCenter": -134,
  8845. "_isAbsLeft": false,
  8846. "_isAbsRight": true,
  8847. "_isAbsTop": true,
  8848. "_isAbsBottom": true,
  8849. "_isAbsHorizontalCenter": true,
  8850. "_isAbsVerticalCenter": true,
  8851. "_originalWidth": 0,
  8852. "_originalHeight": 0,
  8853. "_id": "39QAYRtaFAkKPbFSBDGzrY"
  8854. },
  8855. {
  8856. "__type__": "cc.Node",
  8857. "_name": "regSucBtn",
  8858. "_objFlags": 0,
  8859. "_parent": {
  8860. "__id__": 123
  8861. },
  8862. "_children": [
  8863. {
  8864. "__id__": 196
  8865. }
  8866. ],
  8867. "_active": true,
  8868. "_level": 5,
  8869. "_components": [
  8870. {
  8871. "__id__": 198
  8872. },
  8873. {
  8874. "__id__": 199
  8875. }
  8876. ],
  8877. "_prefab": null,
  8878. "_opacity": 255,
  8879. "_color": {
  8880. "__type__": "cc.Color",
  8881. "r": 255,
  8882. "g": 255,
  8883. "b": 255,
  8884. "a": 255
  8885. },
  8886. "_contentSize": {
  8887. "__type__": "cc.Size",
  8888. "width": 275,
  8889. "height": 86
  8890. },
  8891. "_anchorPoint": {
  8892. "__type__": "cc.Vec2",
  8893. "x": 0.5,
  8894. "y": 0.5
  8895. },
  8896. "_position": {
  8897. "__type__": "cc.Vec3",
  8898. "x": 402.5,
  8899. "y": 43,
  8900. "z": 0
  8901. },
  8902. "_scale": {
  8903. "__type__": "cc.Vec3",
  8904. "x": 1,
  8905. "y": 1,
  8906. "z": 1
  8907. },
  8908. "_rotationX": 0,
  8909. "_rotationY": 0,
  8910. "_quat": {
  8911. "__type__": "cc.Quat",
  8912. "x": 0,
  8913. "y": 0,
  8914. "z": 0,
  8915. "w": 1
  8916. },
  8917. "_skewX": 0,
  8918. "_skewY": 0,
  8919. "groupIndex": 0,
  8920. "_id": "aeUZJ+uH9JSJofqeu+Fk9m"
  8921. },
  8922. {
  8923. "__type__": "cc.Node",
  8924. "_name": "_name",
  8925. "_objFlags": 0,
  8926. "_parent": {
  8927. "__id__": 195
  8928. },
  8929. "_children": [],
  8930. "_active": true,
  8931. "_level": 5,
  8932. "_components": [
  8933. {
  8934. "__id__": 197
  8935. }
  8936. ],
  8937. "_prefab": null,
  8938. "_opacity": 255,
  8939. "_color": {
  8940. "__type__": "cc.Color",
  8941. "r": 255,
  8942. "g": 255,
  8943. "b": 255,
  8944. "a": 255
  8945. },
  8946. "_contentSize": {
  8947. "__type__": "cc.Size",
  8948. "width": 107,
  8949. "height": 41
  8950. },
  8951. "_anchorPoint": {
  8952. "__type__": "cc.Vec2",
  8953. "x": 0.5,
  8954. "y": 0.5
  8955. },
  8956. "_position": {
  8957. "__type__": "cc.Vec3",
  8958. "x": 0,
  8959. "y": 9,
  8960. "z": 0
  8961. },
  8962. "_scale": {
  8963. "__type__": "cc.Vec3",
  8964. "x": 1,
  8965. "y": 1,
  8966. "z": 1
  8967. },
  8968. "_rotationX": 0,
  8969. "_rotationY": 0,
  8970. "_quat": {
  8971. "__type__": "cc.Quat",
  8972. "x": 0,
  8973. "y": 0,
  8974. "z": 0,
  8975. "w": 1
  8976. },
  8977. "_skewX": 0,
  8978. "_skewY": 0,
  8979. "groupIndex": 0,
  8980. "_id": "f31FQA1dBOQIMpqC9bCn26"
  8981. },
  8982. {
  8983. "__type__": "cc.Sprite",
  8984. "_name": "",
  8985. "_objFlags": 0,
  8986. "node": {
  8987. "__id__": 196
  8988. },
  8989. "_enabled": true,
  8990. "_spriteFrame": {
  8991. "__uuid__": "f1ac91e6-4614-4b05-8a01-5b4ffc4d5271"
  8992. },
  8993. "_type": 0,
  8994. "_sizeMode": 1,
  8995. "_fillType": 0,
  8996. "_fillCenter": {
  8997. "__type__": "cc.Vec2",
  8998. "x": 0,
  8999. "y": 0
  9000. },
  9001. "_fillStart": 0,
  9002. "_fillRange": 0,
  9003. "_isTrimmedMode": true,
  9004. "_state": 0,
  9005. "_atlas": {
  9006. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  9007. },
  9008. "_srcBlendFactor": 770,
  9009. "_dstBlendFactor": 771,
  9010. "_id": "64du7rwvRB7rrt153iGj8h"
  9011. },
  9012. {
  9013. "__type__": "cc.Sprite",
  9014. "_name": "",
  9015. "_objFlags": 0,
  9016. "node": {
  9017. "__id__": 195
  9018. },
  9019. "_enabled": true,
  9020. "_spriteFrame": {
  9021. "__uuid__": "0224f835-1269-4ff0-a124-01894f44aec1"
  9022. },
  9023. "_type": 0,
  9024. "_sizeMode": 1,
  9025. "_fillType": 0,
  9026. "_fillCenter": {
  9027. "__type__": "cc.Vec2",
  9028. "x": 0,
  9029. "y": 0
  9030. },
  9031. "_fillStart": 0,
  9032. "_fillRange": 0,
  9033. "_isTrimmedMode": true,
  9034. "_state": 0,
  9035. "_atlas": {
  9036. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  9037. },
  9038. "_srcBlendFactor": 770,
  9039. "_dstBlendFactor": 771,
  9040. "_id": "7fYiDnWAlOUKGGSpYfeq+/"
  9041. },
  9042. {
  9043. "__type__": "cc.Button",
  9044. "_name": "",
  9045. "_objFlags": 0,
  9046. "node": {
  9047. "__id__": 195
  9048. },
  9049. "_enabled": true,
  9050. "duration": 0.1,
  9051. "zoomScale": 1.2,
  9052. "clickEvents": [
  9053. {
  9054. "__id__": 200
  9055. }
  9056. ],
  9057. "_N$interactable": true,
  9058. "_N$enableAutoGrayEffect": false,
  9059. "_N$transition": 3,
  9060. "transition": 3,
  9061. "_N$normalColor": {
  9062. "__type__": "cc.Color",
  9063. "r": 214,
  9064. "g": 214,
  9065. "b": 214,
  9066. "a": 255
  9067. },
  9068. "_N$pressedColor": {
  9069. "__type__": "cc.Color",
  9070. "r": 211,
  9071. "g": 211,
  9072. "b": 211,
  9073. "a": 255
  9074. },
  9075. "pressedColor": {
  9076. "__type__": "cc.Color",
  9077. "r": 211,
  9078. "g": 211,
  9079. "b": 211,
  9080. "a": 255
  9081. },
  9082. "_N$hoverColor": {
  9083. "__type__": "cc.Color",
  9084. "r": 255,
  9085. "g": 255,
  9086. "b": 255,
  9087. "a": 255
  9088. },
  9089. "hoverColor": {
  9090. "__type__": "cc.Color",
  9091. "r": 255,
  9092. "g": 255,
  9093. "b": 255,
  9094. "a": 255
  9095. },
  9096. "_N$disabledColor": {
  9097. "__type__": "cc.Color",
  9098. "r": 124,
  9099. "g": 124,
  9100. "b": 124,
  9101. "a": 255
  9102. },
  9103. "_N$normalSprite": null,
  9104. "_N$pressedSprite": null,
  9105. "pressedSprite": null,
  9106. "_N$hoverSprite": null,
  9107. "hoverSprite": null,
  9108. "_N$disabledSprite": null,
  9109. "_N$target": {
  9110. "__id__": 195
  9111. },
  9112. "_id": "9dAwpB121FNJLvJZPolclZ"
  9113. },
  9114. {
  9115. "__type__": "cc.ClickEvent",
  9116. "target": {
  9117. "__id__": 6
  9118. },
  9119. "component": "",
  9120. "_componentId": "db8e82XSZdNhr/M689y9PoA",
  9121. "handler": "onBtnConfirmClicked",
  9122. "customEventData": ""
  9123. },
  9124. {
  9125. "__type__": "cc.Node",
  9126. "_name": "read",
  9127. "_objFlags": 0,
  9128. "_parent": {
  9129. "__id__": 116
  9130. },
  9131. "_children": [
  9132. {
  9133. "__id__": 202
  9134. },
  9135. {
  9136. "__id__": 206
  9137. },
  9138. {
  9139. "__id__": 216
  9140. }
  9141. ],
  9142. "_active": false,
  9143. "_level": 4,
  9144. "_components": [],
  9145. "_prefab": null,
  9146. "_opacity": 255,
  9147. "_color": {
  9148. "__type__": "cc.Color",
  9149. "r": 255,
  9150. "g": 255,
  9151. "b": 255,
  9152. "a": 255
  9153. },
  9154. "_contentSize": {
  9155. "__type__": "cc.Size",
  9156. "width": 0,
  9157. "height": 0
  9158. },
  9159. "_anchorPoint": {
  9160. "__type__": "cc.Vec2",
  9161. "x": 0.5,
  9162. "y": 0.5
  9163. },
  9164. "_position": {
  9165. "__type__": "cc.Vec3",
  9166. "x": 0,
  9167. "y": 0,
  9168. "z": 0
  9169. },
  9170. "_scale": {
  9171. "__type__": "cc.Vec3",
  9172. "x": 1,
  9173. "y": 1,
  9174. "z": 1
  9175. },
  9176. "_rotationX": 0,
  9177. "_rotationY": 0,
  9178. "_quat": {
  9179. "__type__": "cc.Quat",
  9180. "x": 0,
  9181. "y": 0,
  9182. "z": 0,
  9183. "w": 1
  9184. },
  9185. "_skewX": 0,
  9186. "_skewY": 0,
  9187. "groupIndex": 0,
  9188. "_id": "a5Bnkv+PdDT6ZMSUo6fnKf"
  9189. },
  9190. {
  9191. "__type__": "cc.Node",
  9192. "_name": "title",
  9193. "_objFlags": 0,
  9194. "_parent": {
  9195. "__id__": 201
  9196. },
  9197. "_children": [
  9198. {
  9199. "__id__": 203
  9200. }
  9201. ],
  9202. "_active": true,
  9203. "_level": 5,
  9204. "_components": [
  9205. {
  9206. "__id__": 205
  9207. }
  9208. ],
  9209. "_prefab": null,
  9210. "_opacity": 255,
  9211. "_color": {
  9212. "__type__": "cc.Color",
  9213. "r": 255,
  9214. "g": 255,
  9215. "b": 255,
  9216. "a": 255
  9217. },
  9218. "_contentSize": {
  9219. "__type__": "cc.Size",
  9220. "width": 479,
  9221. "height": 120
  9222. },
  9223. "_anchorPoint": {
  9224. "__type__": "cc.Vec2",
  9225. "x": 0.5,
  9226. "y": 0.5
  9227. },
  9228. "_position": {
  9229. "__type__": "cc.Vec3",
  9230. "x": 400,
  9231. "y": 540,
  9232. "z": 0
  9233. },
  9234. "_scale": {
  9235. "__type__": "cc.Vec3",
  9236. "x": 1,
  9237. "y": 1,
  9238. "z": 1
  9239. },
  9240. "_rotationX": 0,
  9241. "_rotationY": 0,
  9242. "_quat": {
  9243. "__type__": "cc.Quat",
  9244. "x": 0,
  9245. "y": 0,
  9246. "z": 0,
  9247. "w": 1
  9248. },
  9249. "_skewX": 0,
  9250. "_skewY": 0,
  9251. "groupIndex": 0,
  9252. "_id": "1cNtuV7DFAc43071sBiuEk"
  9253. },
  9254. {
  9255. "__type__": "cc.Node",
  9256. "_name": "name",
  9257. "_objFlags": 0,
  9258. "_parent": {
  9259. "__id__": 202
  9260. },
  9261. "_children": [],
  9262. "_active": true,
  9263. "_level": 5,
  9264. "_components": [
  9265. {
  9266. "__id__": 204
  9267. }
  9268. ],
  9269. "_prefab": null,
  9270. "_opacity": 255,
  9271. "_color": {
  9272. "__type__": "cc.Color",
  9273. "r": 255,
  9274. "g": 255,
  9275. "b": 255,
  9276. "a": 255
  9277. },
  9278. "_contentSize": {
  9279. "__type__": "cc.Size",
  9280. "width": 191,
  9281. "height": 53
  9282. },
  9283. "_anchorPoint": {
  9284. "__type__": "cc.Vec2",
  9285. "x": 0.5,
  9286. "y": 0.5
  9287. },
  9288. "_position": {
  9289. "__type__": "cc.Vec3",
  9290. "x": 0,
  9291. "y": 28,
  9292. "z": 0
  9293. },
  9294. "_scale": {
  9295. "__type__": "cc.Vec3",
  9296. "x": 1,
  9297. "y": 1,
  9298. "z": 1
  9299. },
  9300. "_rotationX": 0,
  9301. "_rotationY": 0,
  9302. "_quat": {
  9303. "__type__": "cc.Quat",
  9304. "x": 0,
  9305. "y": 0,
  9306. "z": 0,
  9307. "w": 1
  9308. },
  9309. "_skewX": 0,
  9310. "_skewY": 0,
  9311. "groupIndex": 0,
  9312. "_id": "23vdJIwaZHG5sBDsuTAdVn"
  9313. },
  9314. {
  9315. "__type__": "cc.Sprite",
  9316. "_name": "",
  9317. "_objFlags": 0,
  9318. "node": {
  9319. "__id__": 203
  9320. },
  9321. "_enabled": true,
  9322. "_spriteFrame": {
  9323. "__uuid__": "583f9d9a-1b6c-40ed-b6cd-7bf6bad94216"
  9324. },
  9325. "_type": 0,
  9326. "_sizeMode": 1,
  9327. "_fillType": 0,
  9328. "_fillCenter": {
  9329. "__type__": "cc.Vec2",
  9330. "x": 0,
  9331. "y": 0
  9332. },
  9333. "_fillStart": 0,
  9334. "_fillRange": 0,
  9335. "_isTrimmedMode": true,
  9336. "_state": 0,
  9337. "_atlas": {
  9338. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  9339. },
  9340. "_srcBlendFactor": 770,
  9341. "_dstBlendFactor": 771,
  9342. "_id": "d1g9o9JPFDC7y6pju4ewAa"
  9343. },
  9344. {
  9345. "__type__": "cc.Sprite",
  9346. "_name": "",
  9347. "_objFlags": 0,
  9348. "node": {
  9349. "__id__": 202
  9350. },
  9351. "_enabled": true,
  9352. "_spriteFrame": {
  9353. "__uuid__": "269b480c-73ac-49a1-adf8-d863230aebde"
  9354. },
  9355. "_type": 0,
  9356. "_sizeMode": 1,
  9357. "_fillType": 0,
  9358. "_fillCenter": {
  9359. "__type__": "cc.Vec2",
  9360. "x": 0,
  9361. "y": 0
  9362. },
  9363. "_fillStart": 0,
  9364. "_fillRange": 0,
  9365. "_isTrimmedMode": true,
  9366. "_state": 0,
  9367. "_atlas": {
  9368. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  9369. },
  9370. "_srcBlendFactor": 770,
  9371. "_dstBlendFactor": 771,
  9372. "_id": "82sbpnMMBFSan0I+u9raZC"
  9373. },
  9374. {
  9375. "__type__": "cc.Node",
  9376. "_name": "content",
  9377. "_objFlags": 0,
  9378. "_parent": {
  9379. "__id__": 201
  9380. },
  9381. "_children": [
  9382. {
  9383. "__id__": 207
  9384. }
  9385. ],
  9386. "_active": true,
  9387. "_level": 5,
  9388. "_components": [
  9389. {
  9390. "__id__": 214
  9391. },
  9392. {
  9393. "__id__": 215
  9394. }
  9395. ],
  9396. "_prefab": null,
  9397. "_opacity": 255,
  9398. "_color": {
  9399. "__type__": "cc.Color",
  9400. "r": 255,
  9401. "g": 255,
  9402. "b": 255,
  9403. "a": 255
  9404. },
  9405. "_contentSize": {
  9406. "__type__": "cc.Size",
  9407. "width": 621,
  9408. "height": 438
  9409. },
  9410. "_anchorPoint": {
  9411. "__type__": "cc.Vec2",
  9412. "x": 0.5,
  9413. "y": 0.5
  9414. },
  9415. "_position": {
  9416. "__type__": "cc.Vec3",
  9417. "x": 402,
  9418. "y": 331,
  9419. "z": 0
  9420. },
  9421. "_scale": {
  9422. "__type__": "cc.Vec3",
  9423. "x": 1,
  9424. "y": 1,
  9425. "z": 1
  9426. },
  9427. "_rotationX": 0,
  9428. "_rotationY": 0,
  9429. "_quat": {
  9430. "__type__": "cc.Quat",
  9431. "x": 0,
  9432. "y": 0,
  9433. "z": 0,
  9434. "w": 1
  9435. },
  9436. "_skewX": 0,
  9437. "_skewY": 0,
  9438. "groupIndex": 0,
  9439. "_id": "56BWliCU1BM65e/VcLMdxn"
  9440. },
  9441. {
  9442. "__type__": "cc.Node",
  9443. "_name": "view",
  9444. "_objFlags": 0,
  9445. "_parent": {
  9446. "__id__": 206
  9447. },
  9448. "_children": [
  9449. {
  9450. "__id__": 208
  9451. }
  9452. ],
  9453. "_active": true,
  9454. "_level": 0,
  9455. "_components": [
  9456. {
  9457. "__id__": 213
  9458. }
  9459. ],
  9460. "_prefab": null,
  9461. "_opacity": 255,
  9462. "_color": {
  9463. "__type__": "cc.Color",
  9464. "r": 255,
  9465. "g": 255,
  9466. "b": 255,
  9467. "a": 255
  9468. },
  9469. "_contentSize": {
  9470. "__type__": "cc.Size",
  9471. "width": 621,
  9472. "height": 438
  9473. },
  9474. "_anchorPoint": {
  9475. "__type__": "cc.Vec2",
  9476. "x": 0.5,
  9477. "y": 1
  9478. },
  9479. "_position": {
  9480. "__type__": "cc.Vec3",
  9481. "x": 0,
  9482. "y": 150,
  9483. "z": 0
  9484. },
  9485. "_scale": {
  9486. "__type__": "cc.Vec3",
  9487. "x": 1,
  9488. "y": 1,
  9489. "z": 1
  9490. },
  9491. "_rotationX": 0,
  9492. "_rotationY": 0,
  9493. "_quat": {
  9494. "__type__": "cc.Quat",
  9495. "x": 0,
  9496. "y": 0,
  9497. "z": 0,
  9498. "w": 1
  9499. },
  9500. "_skewX": 0,
  9501. "_skewY": 0,
  9502. "groupIndex": 0,
  9503. "_id": "6dRPwa9S9Bc7r3AXuuKLUy"
  9504. },
  9505. {
  9506. "__type__": "cc.Node",
  9507. "_name": "content",
  9508. "_objFlags": 0,
  9509. "_parent": {
  9510. "__id__": 207
  9511. },
  9512. "_children": [
  9513. {
  9514. "__id__": 209
  9515. },
  9516. {
  9517. "__id__": 211
  9518. }
  9519. ],
  9520. "_active": true,
  9521. "_level": 0,
  9522. "_components": [],
  9523. "_prefab": null,
  9524. "_opacity": 255,
  9525. "_color": {
  9526. "__type__": "cc.Color",
  9527. "r": 255,
  9528. "g": 255,
  9529. "b": 255,
  9530. "a": 255
  9531. },
  9532. "_contentSize": {
  9533. "__type__": "cc.Size",
  9534. "width": 621,
  9535. "height": 438
  9536. },
  9537. "_anchorPoint": {
  9538. "__type__": "cc.Vec2",
  9539. "x": 0.5,
  9540. "y": 1
  9541. },
  9542. "_position": {
  9543. "__type__": "cc.Vec3",
  9544. "x": 0,
  9545. "y": 0,
  9546. "z": 0
  9547. },
  9548. "_scale": {
  9549. "__type__": "cc.Vec3",
  9550. "x": 1,
  9551. "y": 1,
  9552. "z": 1
  9553. },
  9554. "_rotationX": 0,
  9555. "_rotationY": 0,
  9556. "_quat": {
  9557. "__type__": "cc.Quat",
  9558. "x": 0,
  9559. "y": 0,
  9560. "z": 0,
  9561. "w": 1
  9562. },
  9563. "_skewX": 0,
  9564. "_skewY": 0,
  9565. "groupIndex": 0,
  9566. "_id": "eeiubpY0xIxKirf0Q5OF6L"
  9567. },
  9568. {
  9569. "__type__": "cc.Node",
  9570. "_name": "item",
  9571. "_objFlags": 0,
  9572. "_parent": {
  9573. "__id__": 208
  9574. },
  9575. "_children": [],
  9576. "_active": true,
  9577. "_level": 0,
  9578. "_components": [
  9579. {
  9580. "__id__": 210
  9581. }
  9582. ],
  9583. "_prefab": null,
  9584. "_opacity": 255,
  9585. "_color": {
  9586. "__type__": "cc.Color",
  9587. "r": 255,
  9588. "g": 255,
  9589. "b": 255,
  9590. "a": 255
  9591. },
  9592. "_contentSize": {
  9593. "__type__": "cc.Size",
  9594. "width": 265,
  9595. "height": 22
  9596. },
  9597. "_anchorPoint": {
  9598. "__type__": "cc.Vec2",
  9599. "x": 0,
  9600. "y": 1
  9601. },
  9602. "_position": {
  9603. "__type__": "cc.Vec3",
  9604. "x": -102.2,
  9605. "y": -10.15,
  9606. "z": 0
  9607. },
  9608. "_scale": {
  9609. "__type__": "cc.Vec3",
  9610. "x": 1,
  9611. "y": 1,
  9612. "z": 1
  9613. },
  9614. "_rotationX": 0,
  9615. "_rotationY": 0,
  9616. "_quat": {
  9617. "__type__": "cc.Quat",
  9618. "x": 0,
  9619. "y": 0,
  9620. "z": 0,
  9621. "w": 1
  9622. },
  9623. "_skewX": 0,
  9624. "_skewY": 0,
  9625. "groupIndex": 0,
  9626. "_id": "19JT2AFVRCy5IWxslzIUoY"
  9627. },
  9628. {
  9629. "__type__": "cc.Sprite",
  9630. "_name": "",
  9631. "_objFlags": 0,
  9632. "node": {
  9633. "__id__": 209
  9634. },
  9635. "_enabled": true,
  9636. "_spriteFrame": {
  9637. "__uuid__": "ac233bbc-f121-4c2a-87c5-01ea9ed6ccf8"
  9638. },
  9639. "_type": 0,
  9640. "_sizeMode": 1,
  9641. "_fillType": 0,
  9642. "_fillCenter": {
  9643. "__type__": "cc.Vec2",
  9644. "x": 0,
  9645. "y": 0
  9646. },
  9647. "_fillStart": 0,
  9648. "_fillRange": 0,
  9649. "_isTrimmedMode": true,
  9650. "_state": 0,
  9651. "_atlas": {
  9652. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  9653. },
  9654. "_srcBlendFactor": 770,
  9655. "_dstBlendFactor": 771,
  9656. "_id": "a2ourJQ8NG+7seSCwyaEwx"
  9657. },
  9658. {
  9659. "__type__": "cc.Node",
  9660. "_name": "item",
  9661. "_objFlags": 0,
  9662. "_parent": {
  9663. "__id__": 208
  9664. },
  9665. "_children": [],
  9666. "_active": true,
  9667. "_level": 1,
  9668. "_components": [
  9669. {
  9670. "__id__": 212
  9671. }
  9672. ],
  9673. "_prefab": null,
  9674. "_opacity": 255,
  9675. "_color": {
  9676. "__type__": "cc.Color",
  9677. "r": 255,
  9678. "g": 255,
  9679. "b": 255,
  9680. "a": 255
  9681. },
  9682. "_contentSize": {
  9683. "__type__": "cc.Size",
  9684. "width": 621,
  9685. "height": 365
  9686. },
  9687. "_anchorPoint": {
  9688. "__type__": "cc.Vec2",
  9689. "x": 0,
  9690. "y": 1
  9691. },
  9692. "_position": {
  9693. "__type__": "cc.Vec3",
  9694. "x": -310,
  9695. "y": -46,
  9696. "z": 0
  9697. },
  9698. "_scale": {
  9699. "__type__": "cc.Vec3",
  9700. "x": 1,
  9701. "y": 1,
  9702. "z": 1
  9703. },
  9704. "_rotationX": 0,
  9705. "_rotationY": 0,
  9706. "_quat": {
  9707. "__type__": "cc.Quat",
  9708. "x": 0,
  9709. "y": 0,
  9710. "z": 0,
  9711. "w": 1
  9712. },
  9713. "_skewX": 0,
  9714. "_skewY": 0,
  9715. "groupIndex": 0,
  9716. "_id": "21b3hxH9xHw6HTy1ts8GsT"
  9717. },
  9718. {
  9719. "__type__": "cc.Sprite",
  9720. "_name": "",
  9721. "_objFlags": 0,
  9722. "node": {
  9723. "__id__": 211
  9724. },
  9725. "_enabled": true,
  9726. "_spriteFrame": {
  9727. "__uuid__": "b10bb586-c22a-42b3-a950-ec2353621e9c"
  9728. },
  9729. "_type": 0,
  9730. "_sizeMode": 1,
  9731. "_fillType": 0,
  9732. "_fillCenter": {
  9733. "__type__": "cc.Vec2",
  9734. "x": 0,
  9735. "y": 0
  9736. },
  9737. "_fillStart": 0,
  9738. "_fillRange": 0,
  9739. "_isTrimmedMode": true,
  9740. "_state": 0,
  9741. "_atlas": null,
  9742. "_srcBlendFactor": 770,
  9743. "_dstBlendFactor": 771,
  9744. "_id": "3e9MVPhh1FfL3FqKe3nh9T"
  9745. },
  9746. {
  9747. "__type__": "cc.Mask",
  9748. "_name": "",
  9749. "_objFlags": 0,
  9750. "node": {
  9751. "__id__": 207
  9752. },
  9753. "_enabled": true,
  9754. "_spriteFrame": null,
  9755. "_type": 0,
  9756. "_segments": 64,
  9757. "_N$alphaThreshold": 0,
  9758. "_N$inverted": false,
  9759. "_id": "e6+DQBfgtPrK+6tWJw6Ywo"
  9760. },
  9761. {
  9762. "__type__": "cc.Sprite",
  9763. "_name": "",
  9764. "_objFlags": 0,
  9765. "node": {
  9766. "__id__": 206
  9767. },
  9768. "_enabled": true,
  9769. "_spriteFrame": null,
  9770. "_type": 1,
  9771. "_sizeMode": 0,
  9772. "_fillType": 0,
  9773. "_fillCenter": {
  9774. "__type__": "cc.Vec2",
  9775. "x": 0,
  9776. "y": 0
  9777. },
  9778. "_fillStart": 0,
  9779. "_fillRange": 0,
  9780. "_isTrimmedMode": true,
  9781. "_state": 0,
  9782. "_atlas": null,
  9783. "_srcBlendFactor": 770,
  9784. "_dstBlendFactor": 771,
  9785. "_id": "b0sBjF2nRNoLfyqG5j0P+T"
  9786. },
  9787. {
  9788. "__type__": "cc.ScrollView",
  9789. "_name": "",
  9790. "_objFlags": 0,
  9791. "node": {
  9792. "__id__": 206
  9793. },
  9794. "_enabled": true,
  9795. "horizontal": false,
  9796. "vertical": true,
  9797. "inertia": false,
  9798. "brake": 0.75,
  9799. "elastic": true,
  9800. "bounceDuration": 0.25,
  9801. "scrollEvents": [],
  9802. "cancelInnerEvents": true,
  9803. "_N$content": {
  9804. "__id__": 208
  9805. },
  9806. "content": {
  9807. "__id__": 208
  9808. },
  9809. "_N$horizontalScrollBar": null,
  9810. "_N$verticalScrollBar": null,
  9811. "_id": "a1EMapmcVJ/oi97FeO6Ml8"
  9812. },
  9813. {
  9814. "__type__": "cc.Node",
  9815. "_name": "regSucBtn",
  9816. "_objFlags": 0,
  9817. "_parent": {
  9818. "__id__": 201
  9819. },
  9820. "_children": [
  9821. {
  9822. "__id__": 217
  9823. }
  9824. ],
  9825. "_active": true,
  9826. "_level": 4,
  9827. "_components": [
  9828. {
  9829. "__id__": 219
  9830. },
  9831. {
  9832. "__id__": 220
  9833. }
  9834. ],
  9835. "_prefab": null,
  9836. "_opacity": 255,
  9837. "_color": {
  9838. "__type__": "cc.Color",
  9839. "r": 255,
  9840. "g": 255,
  9841. "b": 255,
  9842. "a": 255
  9843. },
  9844. "_contentSize": {
  9845. "__type__": "cc.Size",
  9846. "width": 275,
  9847. "height": 86
  9848. },
  9849. "_anchorPoint": {
  9850. "__type__": "cc.Vec2",
  9851. "x": 0.5,
  9852. "y": 0.5
  9853. },
  9854. "_position": {
  9855. "__type__": "cc.Vec3",
  9856. "x": 402.5,
  9857. "y": 43,
  9858. "z": 0
  9859. },
  9860. "_scale": {
  9861. "__type__": "cc.Vec3",
  9862. "x": 1,
  9863. "y": 1,
  9864. "z": 1
  9865. },
  9866. "_rotationX": 0,
  9867. "_rotationY": 0,
  9868. "_quat": {
  9869. "__type__": "cc.Quat",
  9870. "x": 0,
  9871. "y": 0,
  9872. "z": 0,
  9873. "w": 1
  9874. },
  9875. "_skewX": 0,
  9876. "_skewY": 0,
  9877. "groupIndex": 0,
  9878. "_id": "dbwYBoFrJDSrdTt4EXCAYR"
  9879. },
  9880. {
  9881. "__type__": "cc.Node",
  9882. "_name": "_name",
  9883. "_objFlags": 0,
  9884. "_parent": {
  9885. "__id__": 216
  9886. },
  9887. "_children": [],
  9888. "_active": true,
  9889. "_level": 5,
  9890. "_components": [
  9891. {
  9892. "__id__": 218
  9893. }
  9894. ],
  9895. "_prefab": null,
  9896. "_opacity": 255,
  9897. "_color": {
  9898. "__type__": "cc.Color",
  9899. "r": 255,
  9900. "g": 255,
  9901. "b": 255,
  9902. "a": 255
  9903. },
  9904. "_contentSize": {
  9905. "__type__": "cc.Size",
  9906. "width": 76,
  9907. "height": 41
  9908. },
  9909. "_anchorPoint": {
  9910. "__type__": "cc.Vec2",
  9911. "x": 0.5,
  9912. "y": 0.5
  9913. },
  9914. "_position": {
  9915. "__type__": "cc.Vec3",
  9916. "x": 0,
  9917. "y": 9,
  9918. "z": 0
  9919. },
  9920. "_scale": {
  9921. "__type__": "cc.Vec3",
  9922. "x": 1,
  9923. "y": 1,
  9924. "z": 1
  9925. },
  9926. "_rotationX": 0,
  9927. "_rotationY": 0,
  9928. "_quat": {
  9929. "__type__": "cc.Quat",
  9930. "x": 0,
  9931. "y": 0,
  9932. "z": 0,
  9933. "w": 1
  9934. },
  9935. "_skewX": 0,
  9936. "_skewY": 0,
  9937. "groupIndex": 0,
  9938. "_id": "95Cxo6/4JJMpzFSlqFYe7e"
  9939. },
  9940. {
  9941. "__type__": "cc.Sprite",
  9942. "_name": "",
  9943. "_objFlags": 0,
  9944. "node": {
  9945. "__id__": 217
  9946. },
  9947. "_enabled": true,
  9948. "_spriteFrame": {
  9949. "__uuid__": "a1b8642c-9238-423b-90b2-a89b7c9d3618"
  9950. },
  9951. "_type": 0,
  9952. "_sizeMode": 1,
  9953. "_fillType": 0,
  9954. "_fillCenter": {
  9955. "__type__": "cc.Vec2",
  9956. "x": 0,
  9957. "y": 0
  9958. },
  9959. "_fillStart": 0,
  9960. "_fillRange": 0,
  9961. "_isTrimmedMode": true,
  9962. "_state": 0,
  9963. "_atlas": {
  9964. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  9965. },
  9966. "_srcBlendFactor": 770,
  9967. "_dstBlendFactor": 771,
  9968. "_id": "5cnJUYyiRFfKBK1Ccw1tmI"
  9969. },
  9970. {
  9971. "__type__": "cc.Sprite",
  9972. "_name": "",
  9973. "_objFlags": 0,
  9974. "node": {
  9975. "__id__": 216
  9976. },
  9977. "_enabled": true,
  9978. "_spriteFrame": {
  9979. "__uuid__": "0224f835-1269-4ff0-a124-01894f44aec1"
  9980. },
  9981. "_type": 0,
  9982. "_sizeMode": 1,
  9983. "_fillType": 0,
  9984. "_fillCenter": {
  9985. "__type__": "cc.Vec2",
  9986. "x": 0,
  9987. "y": 0
  9988. },
  9989. "_fillStart": 0,
  9990. "_fillRange": 0,
  9991. "_isTrimmedMode": true,
  9992. "_state": 0,
  9993. "_atlas": {
  9994. "__uuid__": "8ffb795d-d2e5-456c-b144-224a7ee93982"
  9995. },
  9996. "_srcBlendFactor": 770,
  9997. "_dstBlendFactor": 771,
  9998. "_id": "b09WR50OhHvL8Dh3l2R3pL"
  9999. },
  10000. {
  10001. "__type__": "cc.Button",
  10002. "_name": "",
  10003. "_objFlags": 0,
  10004. "node": {
  10005. "__id__": 216
  10006. },
  10007. "_enabled": true,
  10008. "duration": 0.1,
  10009. "zoomScale": 1.2,
  10010. "clickEvents": [],
  10011. "_N$interactable": true,
  10012. "_N$enableAutoGrayEffect": false,
  10013. "_N$transition": 3,
  10014. "transition": 3,
  10015. "_N$normalColor": {
  10016. "__type__": "cc.Color",
  10017. "r": 214,
  10018. "g": 214,
  10019. "b": 214,
  10020. "a": 255
  10021. },
  10022. "_N$pressedColor": {
  10023. "__type__": "cc.Color",
  10024. "r": 211,
  10025. "g": 211,
  10026. "b": 211,
  10027. "a": 255
  10028. },
  10029. "pressedColor": {
  10030. "__type__": "cc.Color",
  10031. "r": 211,
  10032. "g": 211,
  10033. "b": 211,
  10034. "a": 255
  10035. },
  10036. "_N$hoverColor": {
  10037. "__type__": "cc.Color",
  10038. "r": 255,
  10039. "g": 255,
  10040. "b": 255,
  10041. "a": 255
  10042. },
  10043. "hoverColor": {
  10044. "__type__": "cc.Color",
  10045. "r": 255,
  10046. "g": 255,
  10047. "b": 255,
  10048. "a": 255
  10049. },
  10050. "_N$disabledColor": {
  10051. "__type__": "cc.Color",
  10052. "r": 124,
  10053. "g": 124,
  10054. "b": 124,
  10055. "a": 255
  10056. },
  10057. "_N$normalSprite": null,
  10058. "_N$pressedSprite": null,
  10059. "pressedSprite": null,
  10060. "_N$hoverSprite": null,
  10061. "hoverSprite": null,
  10062. "_N$disabledSprite": null,
  10063. "_N$target": {
  10064. "__id__": 216
  10065. },
  10066. "_id": "1fL/UShW9JhaCVAg/9qwYo"
  10067. },
  10068. {
  10069. "__type__": "cc.Sprite",
  10070. "_name": "",
  10071. "_objFlags": 0,
  10072. "node": {
  10073. "__id__": 116
  10074. },
  10075. "_enabled": true,
  10076. "_spriteFrame": {
  10077. "__uuid__": "87e4d5fc-4546-4534-8d35-074f689eb012"
  10078. },
  10079. "_type": 0,
  10080. "_sizeMode": 1,
  10081. "_fillType": 0,
  10082. "_fillCenter": {
  10083. "__type__": "cc.Vec2",
  10084. "x": 0,
  10085. "y": 0
  10086. },
  10087. "_fillStart": 0,
  10088. "_fillRange": 0,
  10089. "_isTrimmedMode": true,
  10090. "_state": 0,
  10091. "_atlas": null,
  10092. "_srcBlendFactor": 770,
  10093. "_dstBlendFactor": 771,
  10094. "_id": "ad8gkBtptMer/RFpUehN36"
  10095. },
  10096. {
  10097. "__type__": "cc.Widget",
  10098. "_name": "",
  10099. "_objFlags": 0,
  10100. "node": {
  10101. "__id__": 116
  10102. },
  10103. "_enabled": true,
  10104. "alignMode": 1,
  10105. "_target": null,
  10106. "_alignFlags": 16,
  10107. "_left": 0,
  10108. "_right": 0,
  10109. "_top": 0,
  10110. "_bottom": 0,
  10111. "_verticalCenter": 0,
  10112. "_horizontalCenter": 0,
  10113. "_isAbsLeft": true,
  10114. "_isAbsRight": true,
  10115. "_isAbsTop": true,
  10116. "_isAbsBottom": true,
  10117. "_isAbsHorizontalCenter": true,
  10118. "_isAbsVerticalCenter": true,
  10119. "_originalWidth": 0,
  10120. "_originalHeight": 0,
  10121. "_id": "45o7CNPfZJ4qO3JfRUNWN7"
  10122. },
  10123. {
  10124. "__type__": "cc.Widget",
  10125. "_name": "",
  10126. "_objFlags": 0,
  10127. "node": {
  10128. "__id__": 115
  10129. },
  10130. "_enabled": true,
  10131. "alignMode": 1,
  10132. "_target": null,
  10133. "_alignFlags": 45,
  10134. "_left": 0,
  10135. "_right": 0,
  10136. "_top": 0,
  10137. "_bottom": 0,
  10138. "_verticalCenter": 0,
  10139. "_horizontalCenter": 0,
  10140. "_isAbsLeft": true,
  10141. "_isAbsRight": true,
  10142. "_isAbsTop": true,
  10143. "_isAbsBottom": true,
  10144. "_isAbsHorizontalCenter": true,
  10145. "_isAbsVerticalCenter": true,
  10146. "_originalWidth": 0,
  10147. "_originalHeight": 0,
  10148. "_id": "23RQunHq5BA7iufMUfREf+"
  10149. },
  10150. {
  10151. "__type__": "cc.Sprite",
  10152. "_name": "",
  10153. "_objFlags": 0,
  10154. "node": {
  10155. "__id__": 115
  10156. },
  10157. "_enabled": true,
  10158. "_spriteFrame": {
  10159. "__uuid__": "9bfc9418-5b0a-4fd6-92ec-b40607f1c7d0"
  10160. },
  10161. "_type": 0,
  10162. "_sizeMode": 1,
  10163. "_fillType": 0,
  10164. "_fillCenter": {
  10165. "__type__": "cc.Vec2",
  10166. "x": 0,
  10167. "y": 0
  10168. },
  10169. "_fillStart": 0,
  10170. "_fillRange": 0,
  10171. "_isTrimmedMode": true,
  10172. "_state": 0,
  10173. "_atlas": null,
  10174. "_srcBlendFactor": 770,
  10175. "_dstBlendFactor": 771,
  10176. "_id": "bep8SqiXlECoCfBTR2XBi1"
  10177. },
  10178. {
  10179. "__type__": "cc.BlockInputEvents",
  10180. "_name": "",
  10181. "_objFlags": 0,
  10182. "node": {
  10183. "__id__": 115
  10184. },
  10185. "_enabled": true,
  10186. "_id": "7bXqdn4hpIDZD+fzixsEmK"
  10187. },
  10188. {
  10189. "__type__": "cc.Node",
  10190. "_name": "loading",
  10191. "_objFlags": 0,
  10192. "_parent": {
  10193. "__id__": 6
  10194. },
  10195. "_children": [
  10196. {
  10197. "__id__": 227
  10198. },
  10199. {
  10200. "__id__": 235
  10201. }
  10202. ],
  10203. "_active": true,
  10204. "_level": 2,
  10205. "_components": [],
  10206. "_prefab": null,
  10207. "_opacity": 255,
  10208. "_color": {
  10209. "__type__": "cc.Color",
  10210. "r": 255,
  10211. "g": 255,
  10212. "b": 255,
  10213. "a": 255
  10214. },
  10215. "_contentSize": {
  10216. "__type__": "cc.Size",
  10217. "width": 0,
  10218. "height": 0
  10219. },
  10220. "_anchorPoint": {
  10221. "__type__": "cc.Vec2",
  10222. "x": 0,
  10223. "y": 0
  10224. },
  10225. "_position": {
  10226. "__type__": "cc.Vec3",
  10227. "x": 0,
  10228. "y": 0,
  10229. "z": 0
  10230. },
  10231. "_scale": {
  10232. "__type__": "cc.Vec3",
  10233. "x": 1,
  10234. "y": 1,
  10235. "z": 1
  10236. },
  10237. "_rotationX": 0,
  10238. "_rotationY": 0,
  10239. "_quat": {
  10240. "__type__": "cc.Quat",
  10241. "x": 0,
  10242. "y": 0,
  10243. "z": 0,
  10244. "w": 1
  10245. },
  10246. "_skewX": 0,
  10247. "_skewY": 0,
  10248. "groupIndex": 0,
  10249. "_id": "178uSCMvZHwog3Jyla3zB1"
  10250. },
  10251. {
  10252. "__type__": "cc.Node",
  10253. "_name": "loadPro",
  10254. "_objFlags": 0,
  10255. "_parent": {
  10256. "__id__": 226
  10257. },
  10258. "_children": [
  10259. {
  10260. "__id__": 228
  10261. },
  10262. {
  10263. "__id__": 230
  10264. }
  10265. ],
  10266. "_active": true,
  10267. "_level": 3,
  10268. "_components": [
  10269. {
  10270. "__id__": 232
  10271. },
  10272. {
  10273. "__id__": 233
  10274. },
  10275. {
  10276. "__id__": 234
  10277. }
  10278. ],
  10279. "_prefab": null,
  10280. "_opacity": 255,
  10281. "_color": {
  10282. "__type__": "cc.Color",
  10283. "r": 255,
  10284. "g": 255,
  10285. "b": 255,
  10286. "a": 255
  10287. },
  10288. "_contentSize": {
  10289. "__type__": "cc.Size",
  10290. "width": 732,
  10291. "height": 34
  10292. },
  10293. "_anchorPoint": {
  10294. "__type__": "cc.Vec2",
  10295. "x": 0.5,
  10296. "y": 0.5
  10297. },
  10298. "_position": {
  10299. "__type__": "cc.Vec3",
  10300. "x": 667,
  10301. "y": 266,
  10302. "z": 0
  10303. },
  10304. "_scale": {
  10305. "__type__": "cc.Vec3",
  10306. "x": 1,
  10307. "y": 1,
  10308. "z": 1
  10309. },
  10310. "_rotationX": 0,
  10311. "_rotationY": 0,
  10312. "_quat": {
  10313. "__type__": "cc.Quat",
  10314. "x": 0,
  10315. "y": 0,
  10316. "z": 0,
  10317. "w": 1
  10318. },
  10319. "_skewX": 0,
  10320. "_skewY": 0,
  10321. "groupIndex": 0,
  10322. "_id": "30ND56MnhNB6Khr1r7I17S"
  10323. },
  10324. {
  10325. "__type__": "cc.Node",
  10326. "_name": "_bg",
  10327. "_objFlags": 0,
  10328. "_parent": {
  10329. "__id__": 227
  10330. },
  10331. "_children": [],
  10332. "_active": true,
  10333. "_level": 4,
  10334. "_components": [
  10335. {
  10336. "__id__": 229
  10337. }
  10338. ],
  10339. "_prefab": null,
  10340. "_opacity": 255,
  10341. "_color": {
  10342. "__type__": "cc.Color",
  10343. "r": 255,
  10344. "g": 255,
  10345. "b": 255,
  10346. "a": 255
  10347. },
  10348. "_contentSize": {
  10349. "__type__": "cc.Size",
  10350. "width": 713,
  10351. "height": 11
  10352. },
  10353. "_anchorPoint": {
  10354. "__type__": "cc.Vec2",
  10355. "x": 0.5,
  10356. "y": 0.5
  10357. },
  10358. "_position": {
  10359. "__type__": "cc.Vec3",
  10360. "x": 0,
  10361. "y": 0,
  10362. "z": 0
  10363. },
  10364. "_scale": {
  10365. "__type__": "cc.Vec3",
  10366. "x": 1,
  10367. "y": 1,
  10368. "z": 1
  10369. },
  10370. "_rotationX": 0,
  10371. "_rotationY": 0,
  10372. "_quat": {
  10373. "__type__": "cc.Quat",
  10374. "x": 0,
  10375. "y": 0,
  10376. "z": 0,
  10377. "w": 1
  10378. },
  10379. "_skewX": 0,
  10380. "_skewY": 0,
  10381. "groupIndex": 0,
  10382. "_id": "14siT63WlDLIZbTOam6SsB"
  10383. },
  10384. {
  10385. "__type__": "cc.Sprite",
  10386. "_name": "",
  10387. "_objFlags": 0,
  10388. "node": {
  10389. "__id__": 228
  10390. },
  10391. "_enabled": true,
  10392. "_spriteFrame": {
  10393. "__uuid__": "abf71374-0ee9-451d-a321-7f770dbe20bd"
  10394. },
  10395. "_type": 0,
  10396. "_sizeMode": 0,
  10397. "_fillType": 0,
  10398. "_fillCenter": {
  10399. "__type__": "cc.Vec2",
  10400. "x": 0,
  10401. "y": 0
  10402. },
  10403. "_fillStart": 0,
  10404. "_fillRange": 0,
  10405. "_isTrimmedMode": true,
  10406. "_state": 0,
  10407. "_atlas": {
  10408. "__uuid__": "b9c0be93-f2c4-4a99-af00-76900a4ee840"
  10409. },
  10410. "_srcBlendFactor": 770,
  10411. "_dstBlendFactor": 771,
  10412. "_id": "99nzAC47BBIbY64thaJp6H"
  10413. },
  10414. {
  10415. "__type__": "cc.Node",
  10416. "_name": "bar",
  10417. "_objFlags": 0,
  10418. "_parent": {
  10419. "__id__": 227
  10420. },
  10421. "_children": [],
  10422. "_active": true,
  10423. "_level": 0,
  10424. "_components": [
  10425. {
  10426. "__id__": 231
  10427. }
  10428. ],
  10429. "_prefab": null,
  10430. "_opacity": 255,
  10431. "_color": {
  10432. "__type__": "cc.Color",
  10433. "r": 255,
  10434. "g": 255,
  10435. "b": 255,
  10436. "a": 255
  10437. },
  10438. "_contentSize": {
  10439. "__type__": "cc.Size",
  10440. "width": 713,
  10441. "height": 18
  10442. },
  10443. "_anchorPoint": {
  10444. "__type__": "cc.Vec2",
  10445. "x": 0,
  10446. "y": 0.5
  10447. },
  10448. "_position": {
  10449. "__type__": "cc.Vec3",
  10450. "x": -357.8,
  10451. "y": 2.9,
  10452. "z": 0
  10453. },
  10454. "_scale": {
  10455. "__type__": "cc.Vec3",
  10456. "x": 1,
  10457. "y": 1,
  10458. "z": 1
  10459. },
  10460. "_rotationX": 0,
  10461. "_rotationY": 0,
  10462. "_quat": {
  10463. "__type__": "cc.Quat",
  10464. "x": 0,
  10465. "y": 0,
  10466. "z": 0,
  10467. "w": 1
  10468. },
  10469. "_skewX": 0,
  10470. "_skewY": 0,
  10471. "groupIndex": 0,
  10472. "_id": "95gc2vi6dNOY2IxAniu0vE"
  10473. },
  10474. {
  10475. "__type__": "cc.Sprite",
  10476. "_name": "",
  10477. "_objFlags": 0,
  10478. "node": {
  10479. "__id__": 230
  10480. },
  10481. "_enabled": true,
  10482. "_spriteFrame": {
  10483. "__uuid__": "fc5f094f-9943-4d4d-bb18-ed2f1a40bc5f"
  10484. },
  10485. "_type": 1,
  10486. "_sizeMode": 0,
  10487. "_fillType": 0,
  10488. "_fillCenter": {
  10489. "__type__": "cc.Vec2",
  10490. "x": 0,
  10491. "y": 0
  10492. },
  10493. "_fillStart": 0,
  10494. "_fillRange": 0,
  10495. "_isTrimmedMode": true,
  10496. "_state": 0,
  10497. "_atlas": {
  10498. "__uuid__": "b9c0be93-f2c4-4a99-af00-76900a4ee840"
  10499. },
  10500. "_srcBlendFactor": 770,
  10501. "_dstBlendFactor": 771,
  10502. "_id": "70XpVz121MOr8vYnwjUXqS"
  10503. },
  10504. {
  10505. "__type__": "cc.Sprite",
  10506. "_name": "",
  10507. "_objFlags": 0,
  10508. "node": {
  10509. "__id__": 227
  10510. },
  10511. "_enabled": true,
  10512. "_spriteFrame": {
  10513. "__uuid__": "a1d19605-a279-46aa-96d2-058673028b5a"
  10514. },
  10515. "_type": 1,
  10516. "_sizeMode": 0,
  10517. "_fillType": 0,
  10518. "_fillCenter": {
  10519. "__type__": "cc.Vec2",
  10520. "x": 0,
  10521. "y": 0
  10522. },
  10523. "_fillStart": 0,
  10524. "_fillRange": 0,
  10525. "_isTrimmedMode": true,
  10526. "_state": 0,
  10527. "_atlas": {
  10528. "__uuid__": "b9c0be93-f2c4-4a99-af00-76900a4ee840"
  10529. },
  10530. "_srcBlendFactor": 770,
  10531. "_dstBlendFactor": 771,
  10532. "_id": "e5nydJvUJNxLvUArNwu1h5"
  10533. },
  10534. {
  10535. "__type__": "cc.ProgressBar",
  10536. "_name": "",
  10537. "_objFlags": 0,
  10538. "node": {
  10539. "__id__": 227
  10540. },
  10541. "_enabled": true,
  10542. "_N$totalLength": 713,
  10543. "_N$barSprite": {
  10544. "__id__": 231
  10545. },
  10546. "_N$mode": 0,
  10547. "_N$progress": 1,
  10548. "_N$reverse": false,
  10549. "_id": "b11yLz+fRInZpOL8fvBX0l"
  10550. },
  10551. {
  10552. "__type__": "cc.Widget",
  10553. "_name": "",
  10554. "_objFlags": 0,
  10555. "node": {
  10556. "__id__": 227
  10557. },
  10558. "_enabled": true,
  10559. "alignMode": 1,
  10560. "_target": {
  10561. "__id__": 6
  10562. },
  10563. "_alignFlags": 16,
  10564. "_left": 0.2256371814092954,
  10565. "_right": 0.2256371814092954,
  10566. "_top": 0,
  10567. "_bottom": 0,
  10568. "_verticalCenter": 0,
  10569. "_horizontalCenter": 0,
  10570. "_isAbsLeft": false,
  10571. "_isAbsRight": false,
  10572. "_isAbsTop": true,
  10573. "_isAbsBottom": true,
  10574. "_isAbsHorizontalCenter": true,
  10575. "_isAbsVerticalCenter": true,
  10576. "_originalWidth": 732,
  10577. "_originalHeight": 0,
  10578. "_id": "9fIiyezI9LXrzXE8WBTkc7"
  10579. },
  10580. {
  10581. "__type__": "cc.Node",
  10582. "_name": "bottom",
  10583. "_objFlags": 0,
  10584. "_parent": {
  10585. "__id__": 226
  10586. },
  10587. "_children": [
  10588. {
  10589. "__id__": 236
  10590. }
  10591. ],
  10592. "_active": true,
  10593. "_level": 3,
  10594. "_components": [
  10595. {
  10596. "__id__": 239
  10597. },
  10598. {
  10599. "__id__": 240
  10600. }
  10601. ],
  10602. "_prefab": null,
  10603. "_opacity": 255,
  10604. "_color": {
  10605. "__type__": "cc.Color",
  10606. "r": 255,
  10607. "g": 255,
  10608. "b": 255,
  10609. "a": 255
  10610. },
  10611. "_contentSize": {
  10612. "__type__": "cc.Size",
  10613. "width": 1334,
  10614. "height": 90
  10615. },
  10616. "_anchorPoint": {
  10617. "__type__": "cc.Vec2",
  10618. "x": 0,
  10619. "y": 0
  10620. },
  10621. "_position": {
  10622. "__type__": "cc.Vec3",
  10623. "x": 0,
  10624. "y": 0,
  10625. "z": 0
  10626. },
  10627. "_scale": {
  10628. "__type__": "cc.Vec3",
  10629. "x": 1,
  10630. "y": 1,
  10631. "z": 1
  10632. },
  10633. "_rotationX": 0,
  10634. "_rotationY": 0,
  10635. "_quat": {
  10636. "__type__": "cc.Quat",
  10637. "x": 0,
  10638. "y": 0,
  10639. "z": 0,
  10640. "w": 1
  10641. },
  10642. "_skewX": 0,
  10643. "_skewY": 0,
  10644. "groupIndex": 0,
  10645. "_id": "37RG2hdgJET5hnzazvQAre"
  10646. },
  10647. {
  10648. "__type__": "cc.Node",
  10649. "_name": "tip",
  10650. "_objFlags": 0,
  10651. "_parent": {
  10652. "__id__": 235
  10653. },
  10654. "_children": [],
  10655. "_active": true,
  10656. "_level": 4,
  10657. "_components": [
  10658. {
  10659. "__id__": 237
  10660. },
  10661. {
  10662. "__id__": 238
  10663. }
  10664. ],
  10665. "_prefab": null,
  10666. "_opacity": 255,
  10667. "_color": {
  10668. "__type__": "cc.Color",
  10669. "r": 255,
  10670. "g": 255,
  10671. "b": 255,
  10672. "a": 255
  10673. },
  10674. "_contentSize": {
  10675. "__type__": "cc.Size",
  10676. "width": 863,
  10677. "height": 29
  10678. },
  10679. "_anchorPoint": {
  10680. "__type__": "cc.Vec2",
  10681. "x": 0,
  10682. "y": 0
  10683. },
  10684. "_position": {
  10685. "__type__": "cc.Vec3",
  10686. "x": 235.5,
  10687. "y": 30.5,
  10688. "z": 0
  10689. },
  10690. "_scale": {
  10691. "__type__": "cc.Vec3",
  10692. "x": 1,
  10693. "y": 1,
  10694. "z": 1
  10695. },
  10696. "_rotationX": 0,
  10697. "_rotationY": 0,
  10698. "_quat": {
  10699. "__type__": "cc.Quat",
  10700. "x": 0,
  10701. "y": 0,
  10702. "z": 0,
  10703. "w": 1
  10704. },
  10705. "_skewX": 0,
  10706. "_skewY": 0,
  10707. "groupIndex": 0,
  10708. "_id": "1fntRGbeVFJq2m+4c3qZWe"
  10709. },
  10710. {
  10711. "__type__": "cc.Sprite",
  10712. "_name": "",
  10713. "_objFlags": 0,
  10714. "node": {
  10715. "__id__": 236
  10716. },
  10717. "_enabled": true,
  10718. "_spriteFrame": {
  10719. "__uuid__": "027ec417-16e2-4342-a0ce-a4db605b13e7"
  10720. },
  10721. "_type": 0,
  10722. "_sizeMode": 1,
  10723. "_fillType": 0,
  10724. "_fillCenter": {
  10725. "__type__": "cc.Vec2",
  10726. "x": 0,
  10727. "y": 0
  10728. },
  10729. "_fillStart": 0,
  10730. "_fillRange": 0,
  10731. "_isTrimmedMode": true,
  10732. "_state": 0,
  10733. "_atlas": null,
  10734. "_srcBlendFactor": 770,
  10735. "_dstBlendFactor": 771,
  10736. "_id": "d2wmE0ETFGZJXMnGZ+N51J"
  10737. },
  10738. {
  10739. "__type__": "cc.Widget",
  10740. "_name": "",
  10741. "_objFlags": 0,
  10742. "node": {
  10743. "__id__": 236
  10744. },
  10745. "_enabled": true,
  10746. "alignMode": 1,
  10747. "_target": null,
  10748. "_alignFlags": 18,
  10749. "_left": 0,
  10750. "_right": 0,
  10751. "_top": 0,
  10752. "_bottom": 0,
  10753. "_verticalCenter": 0,
  10754. "_horizontalCenter": 0,
  10755. "_isAbsLeft": true,
  10756. "_isAbsRight": true,
  10757. "_isAbsTop": true,
  10758. "_isAbsBottom": true,
  10759. "_isAbsHorizontalCenter": true,
  10760. "_isAbsVerticalCenter": true,
  10761. "_originalWidth": 0,
  10762. "_originalHeight": 0,
  10763. "_id": "aezqoT34dOkLfKMIV5u71t"
  10764. },
  10765. {
  10766. "__type__": "cc.Sprite",
  10767. "_name": "",
  10768. "_objFlags": 0,
  10769. "node": {
  10770. "__id__": 235
  10771. },
  10772. "_enabled": true,
  10773. "_spriteFrame": {
  10774. "__uuid__": "2f4a5717-732c-4f6a-ba82-8bf5177fbca7"
  10775. },
  10776. "_type": 0,
  10777. "_sizeMode": 1,
  10778. "_fillType": 0,
  10779. "_fillCenter": {
  10780. "__type__": "cc.Vec2",
  10781. "x": 0,
  10782. "y": 0
  10783. },
  10784. "_fillStart": 0,
  10785. "_fillRange": 0,
  10786. "_isTrimmedMode": true,
  10787. "_state": 0,
  10788. "_atlas": null,
  10789. "_srcBlendFactor": 770,
  10790. "_dstBlendFactor": 771,
  10791. "_id": "25KepEKpdOR4xF/71aVlOd"
  10792. },
  10793. {
  10794. "__type__": "cc.Widget",
  10795. "_name": "",
  10796. "_objFlags": 0,
  10797. "node": {
  10798. "__id__": 235
  10799. },
  10800. "_enabled": true,
  10801. "alignMode": 1,
  10802. "_target": {
  10803. "__id__": 6
  10804. },
  10805. "_alignFlags": 40,
  10806. "_left": 0,
  10807. "_right": 0,
  10808. "_top": 0,
  10809. "_bottom": 0,
  10810. "_verticalCenter": 0,
  10811. "_horizontalCenter": 0,
  10812. "_isAbsLeft": true,
  10813. "_isAbsRight": true,
  10814. "_isAbsTop": true,
  10815. "_isAbsBottom": true,
  10816. "_isAbsHorizontalCenter": true,
  10817. "_isAbsVerticalCenter": true,
  10818. "_originalWidth": 1334,
  10819. "_originalHeight": 0,
  10820. "_id": "38xpSDnDpKF7UQrJ4yernE"
  10821. },
  10822. {
  10823. "__type__": "cc.Widget",
  10824. "_name": "",
  10825. "_objFlags": 0,
  10826. "node": {
  10827. "__id__": 6
  10828. },
  10829. "_enabled": true,
  10830. "alignMode": 1,
  10831. "_target": null,
  10832. "_alignFlags": 45,
  10833. "_left": 0,
  10834. "_right": 0,
  10835. "_top": 0,
  10836. "_bottom": 0,
  10837. "_verticalCenter": 0,
  10838. "_horizontalCenter": 0,
  10839. "_isAbsLeft": true,
  10840. "_isAbsRight": true,
  10841. "_isAbsTop": true,
  10842. "_isAbsBottom": true,
  10843. "_isAbsHorizontalCenter": true,
  10844. "_isAbsVerticalCenter": true,
  10845. "_originalWidth": 1334,
  10846. "_originalHeight": 750,
  10847. "_id": "a1geoUukZK6aFR3P6kd81M"
  10848. },
  10849. {
  10850. "__type__": "db8e82XSZdNhr/M689y9PoA",
  10851. "_name": "",
  10852. "_objFlags": 0,
  10853. "node": {
  10854. "__id__": 6
  10855. },
  10856. "_enabled": true,
  10857. "progressBar": {
  10858. "__id__": 233
  10859. },
  10860. "wxLogin": {
  10861. "__id__": 76
  10862. },
  10863. "ykLogin": {
  10864. "__id__": 85
  10865. },
  10866. "zhLogin": {
  10867. "__id__": 80
  10868. },
  10869. "ljLogin": {
  10870. "__id__": 96
  10871. },
  10872. "yk2Login": {
  10873. "__id__": 90
  10874. },
  10875. "loginBtnNode": {
  10876. "__id__": 72
  10877. },
  10878. "loadproNode": {
  10879. "__id__": 226
  10880. },
  10881. "loginBannerNode": {
  10882. "__id__": 13
  10883. },
  10884. "regAndreadNode": {
  10885. "__id__": 115
  10886. },
  10887. "regNode": {
  10888. "__id__": 123
  10889. },
  10890. "readNode": {
  10891. "__id__": 201
  10892. },
  10893. "gotoRegBtn": {
  10894. "__id__": 195
  10895. },
  10896. "inputName": {
  10897. "__id__": 136
  10898. },
  10899. "inputPass": {
  10900. "__id__": 150
  10901. },
  10902. "inputCmpass": {
  10903. "__id__": 164
  10904. },
  10905. "inputphone": {
  10906. "__id__": 178
  10907. },
  10908. "loginName": {
  10909. "__id__": 26
  10910. },
  10911. "loginPass": {
  10912. "__id__": 50
  10913. },
  10914. "_id": "28veKYJbVF24esbSrIgMey"
  10915. }
  10916. ]