LeaseInfo.prefab 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "LeaseInfo",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 5
  25. },
  26. {
  27. "__id__": 59
  28. },
  29. {
  30. "__id__": 81
  31. },
  32. {
  33. "__id__": 89
  34. },
  35. {
  36. "__id__": 97
  37. },
  38. {
  39. "__id__": 105
  40. }
  41. ],
  42. "_active": true,
  43. "_level": 4,
  44. "_components": [
  45. {
  46. "__id__": 107
  47. }
  48. ],
  49. "_prefab": {
  50. "__id__": 108
  51. },
  52. "_opacity": 255,
  53. "_color": {
  54. "__type__": "cc.Color",
  55. "r": 255,
  56. "g": 255,
  57. "b": 255,
  58. "a": 255
  59. },
  60. "_contentSize": {
  61. "__type__": "cc.Size",
  62. "width": 0,
  63. "height": 0
  64. },
  65. "_anchorPoint": {
  66. "__type__": "cc.Vec2",
  67. "x": 0.5,
  68. "y": 0.5
  69. },
  70. "_position": {
  71. "__type__": "cc.Vec3",
  72. "x": 0,
  73. "y": 0,
  74. "z": 0
  75. },
  76. "_scale": {
  77. "__type__": "cc.Vec3",
  78. "x": 1,
  79. "y": 1,
  80. "z": 1
  81. },
  82. "_eulerAngles": {
  83. "__type__": "cc.Vec3",
  84. "x": 0,
  85. "y": 0,
  86. "z": 0
  87. },
  88. "_skewX": 0,
  89. "_skewY": 0,
  90. "_is3DNode": false,
  91. "groupIndex": 0,
  92. "_id": ""
  93. },
  94. {
  95. "__type__": "cc.Node",
  96. "_name": "BG",
  97. "_objFlags": 0,
  98. "_parent": {
  99. "__id__": 1
  100. },
  101. "_children": [],
  102. "_active": true,
  103. "_level": 4,
  104. "_components": [
  105. {
  106. "__id__": 3
  107. }
  108. ],
  109. "_prefab": {
  110. "__id__": 4
  111. },
  112. "_opacity": 255,
  113. "_color": {
  114. "__type__": "cc.Color",
  115. "r": 255,
  116. "g": 255,
  117. "b": 255,
  118. "a": 255
  119. },
  120. "_contentSize": {
  121. "__type__": "cc.Size",
  122. "width": 594,
  123. "height": 629
  124. },
  125. "_anchorPoint": {
  126. "__type__": "cc.Vec2",
  127. "x": 0.5,
  128. "y": 0.5
  129. },
  130. "_position": {
  131. "__type__": "cc.Vec3",
  132. "x": 0,
  133. "y": 0,
  134. "z": 0
  135. },
  136. "_scale": {
  137. "__type__": "cc.Vec3",
  138. "x": 0.691,
  139. "y": 0.691,
  140. "z": 0.691
  141. },
  142. "_eulerAngles": {
  143. "__type__": "cc.Vec3",
  144. "x": 0,
  145. "y": 0,
  146. "z": 0
  147. },
  148. "_skewX": 0,
  149. "_skewY": 0,
  150. "_is3DNode": false,
  151. "groupIndex": 0,
  152. "_id": ""
  153. },
  154. {
  155. "__type__": "cc.Sprite",
  156. "_name": "",
  157. "_objFlags": 0,
  158. "node": {
  159. "__id__": 2
  160. },
  161. "_enabled": true,
  162. "_materials": [
  163. {
  164. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  165. }
  166. ],
  167. "_srcBlendFactor": 770,
  168. "_dstBlendFactor": 771,
  169. "_spriteFrame": {
  170. "__uuid__": "46c87ac7-f3f8-40d6-961f-620894961285"
  171. },
  172. "_type": 0,
  173. "_sizeMode": 1,
  174. "_fillType": 0,
  175. "_fillCenter": {
  176. "__type__": "cc.Vec2",
  177. "x": 0,
  178. "y": 0
  179. },
  180. "_fillStart": 0,
  181. "_fillRange": 0,
  182. "_isTrimmedMode": true,
  183. "_atlas": null,
  184. "_id": ""
  185. },
  186. {
  187. "__type__": "cc.PrefabInfo",
  188. "root": {
  189. "__id__": 1
  190. },
  191. "asset": {
  192. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  193. },
  194. "fileId": "574GWT8apM7JnMq27mckzZ",
  195. "sync": false
  196. },
  197. {
  198. "__type__": "cc.Node",
  199. "_name": "Container1",
  200. "_objFlags": 0,
  201. "_parent": {
  202. "__id__": 1
  203. },
  204. "_children": [
  205. {
  206. "__id__": 6
  207. },
  208. {
  209. "__id__": 9
  210. },
  211. {
  212. "__id__": 51
  213. },
  214. {
  215. "__id__": 54
  216. }
  217. ],
  218. "_active": true,
  219. "_level": 5,
  220. "_components": [
  221. {
  222. "__id__": 57
  223. }
  224. ],
  225. "_prefab": {
  226. "__id__": 58
  227. },
  228. "_opacity": 255,
  229. "_color": {
  230. "__type__": "cc.Color",
  231. "r": 228,
  232. "g": 244,
  233. "b": 249,
  234. "a": 255
  235. },
  236. "_contentSize": {
  237. "__type__": "cc.Size",
  238. "width": 300,
  239. "height": 130
  240. },
  241. "_anchorPoint": {
  242. "__type__": "cc.Vec2",
  243. "x": 0.5,
  244. "y": 0.5
  245. },
  246. "_position": {
  247. "__type__": "cc.Vec3",
  248. "x": 0,
  249. "y": 94.439,
  250. "z": 0
  251. },
  252. "_scale": {
  253. "__type__": "cc.Vec3",
  254. "x": 1,
  255. "y": 1,
  256. "z": 1
  257. },
  258. "_eulerAngles": {
  259. "__type__": "cc.Vec3",
  260. "x": 0,
  261. "y": 0,
  262. "z": 0
  263. },
  264. "_skewX": 0,
  265. "_skewY": 0,
  266. "_is3DNode": false,
  267. "groupIndex": 0,
  268. "_id": ""
  269. },
  270. {
  271. "__type__": "cc.Node",
  272. "_name": "text1",
  273. "_objFlags": 0,
  274. "_parent": {
  275. "__id__": 5
  276. },
  277. "_children": [],
  278. "_active": true,
  279. "_level": 6,
  280. "_components": [
  281. {
  282. "__id__": 7
  283. }
  284. ],
  285. "_prefab": {
  286. "__id__": 8
  287. },
  288. "_opacity": 255,
  289. "_color": {
  290. "__type__": "cc.Color",
  291. "r": 42,
  292. "g": 155,
  293. "b": 200,
  294. "a": 255
  295. },
  296. "_contentSize": {
  297. "__type__": "cc.Size",
  298. "width": 91.11,
  299. "height": 50.4
  300. },
  301. "_anchorPoint": {
  302. "__type__": "cc.Vec2",
  303. "x": 0.5,
  304. "y": 0.5
  305. },
  306. "_position": {
  307. "__type__": "cc.Vec3",
  308. "x": -117.892,
  309. "y": 27.601,
  310. "z": 0
  311. },
  312. "_scale": {
  313. "__type__": "cc.Vec3",
  314. "x": 0.644,
  315. "y": 0.644,
  316. "z": 0.644
  317. },
  318. "_eulerAngles": {
  319. "__type__": "cc.Vec3",
  320. "x": 0,
  321. "y": 0,
  322. "z": 0
  323. },
  324. "_skewX": 0,
  325. "_skewY": 0,
  326. "_is3DNode": false,
  327. "groupIndex": 0,
  328. "_id": ""
  329. },
  330. {
  331. "__type__": "cc.Label",
  332. "_name": "",
  333. "_objFlags": 0,
  334. "node": {
  335. "__id__": 6
  336. },
  337. "_enabled": true,
  338. "_materials": [
  339. {
  340. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  341. }
  342. ],
  343. "_useOriginalSize": false,
  344. "_string": "租期:",
  345. "_N$string": "租期:",
  346. "_fontSize": 40,
  347. "_lineHeight": 40,
  348. "_enableWrapText": true,
  349. "_N$file": null,
  350. "_isSystemFontUsed": true,
  351. "_spacingX": 0,
  352. "_batchAsBitmap": false,
  353. "_N$horizontalAlign": 1,
  354. "_N$verticalAlign": 1,
  355. "_N$fontFamily": "Arial",
  356. "_N$overflow": 0,
  357. "_N$cacheMode": 0,
  358. "_id": ""
  359. },
  360. {
  361. "__type__": "cc.PrefabInfo",
  362. "root": {
  363. "__id__": 1
  364. },
  365. "asset": {
  366. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  367. },
  368. "fileId": "d0mG9ETIxDJp6lNbnZcFGu",
  369. "sync": false
  370. },
  371. {
  372. "__type__": "cc.Node",
  373. "_name": "toggleContainer",
  374. "_objFlags": 0,
  375. "_parent": {
  376. "__id__": 5
  377. },
  378. "_children": [
  379. {
  380. "__id__": 10
  381. },
  382. {
  383. "__id__": 23
  384. },
  385. {
  386. "__id__": 36
  387. }
  388. ],
  389. "_active": true,
  390. "_level": 6,
  391. "_components": [
  392. {
  393. "__id__": 49
  394. }
  395. ],
  396. "_prefab": {
  397. "__id__": 50
  398. },
  399. "_opacity": 255,
  400. "_color": {
  401. "__type__": "cc.Color",
  402. "r": 255,
  403. "g": 255,
  404. "b": 255,
  405. "a": 255
  406. },
  407. "_contentSize": {
  408. "__type__": "cc.Size",
  409. "width": 221,
  410. "height": 61
  411. },
  412. "_anchorPoint": {
  413. "__type__": "cc.Vec2",
  414. "x": 0.5,
  415. "y": 0.5
  416. },
  417. "_position": {
  418. "__type__": "cc.Vec3",
  419. "x": 32.507,
  420. "y": 24.601,
  421. "z": 0
  422. },
  423. "_scale": {
  424. "__type__": "cc.Vec3",
  425. "x": 1,
  426. "y": 1,
  427. "z": 1
  428. },
  429. "_eulerAngles": {
  430. "__type__": "cc.Vec3",
  431. "x": 0,
  432. "y": 0,
  433. "z": 0
  434. },
  435. "_skewX": 0,
  436. "_skewY": 0,
  437. "_is3DNode": false,
  438. "groupIndex": 0,
  439. "_id": ""
  440. },
  441. {
  442. "__type__": "cc.Node",
  443. "_name": "toggle1",
  444. "_objFlags": 0,
  445. "_parent": {
  446. "__id__": 9
  447. },
  448. "_children": [
  449. {
  450. "__id__": 11
  451. },
  452. {
  453. "__id__": 14
  454. },
  455. {
  456. "__id__": 17
  457. }
  458. ],
  459. "_active": true,
  460. "_level": 0,
  461. "_components": [
  462. {
  463. "__id__": 20
  464. }
  465. ],
  466. "_prefab": {
  467. "__id__": 22
  468. },
  469. "_opacity": 255,
  470. "_color": {
  471. "__type__": "cc.Color",
  472. "r": 255,
  473. "g": 255,
  474. "b": 255,
  475. "a": 255
  476. },
  477. "_contentSize": {
  478. "__type__": "cc.Size",
  479. "width": 41,
  480. "height": 28
  481. },
  482. "_anchorPoint": {
  483. "__type__": "cc.Vec2",
  484. "x": 0.5,
  485. "y": 0.5
  486. },
  487. "_position": {
  488. "__type__": "cc.Vec3",
  489. "x": -94.445,
  490. "y": 3,
  491. "z": 0
  492. },
  493. "_scale": {
  494. "__type__": "cc.Vec3",
  495. "x": 1,
  496. "y": 1,
  497. "z": 1
  498. },
  499. "_eulerAngles": {
  500. "__type__": "cc.Vec3",
  501. "x": 0,
  502. "y": 0,
  503. "z": 0
  504. },
  505. "_skewX": 0,
  506. "_skewY": 0,
  507. "_is3DNode": false,
  508. "groupIndex": 0,
  509. "_id": ""
  510. },
  511. {
  512. "__type__": "cc.Node",
  513. "_name": "Background",
  514. "_objFlags": 0,
  515. "_parent": {
  516. "__id__": 10
  517. },
  518. "_children": [],
  519. "_active": true,
  520. "_level": 0,
  521. "_components": [
  522. {
  523. "__id__": 12
  524. }
  525. ],
  526. "_prefab": {
  527. "__id__": 13
  528. },
  529. "_opacity": 255,
  530. "_color": {
  531. "__type__": "cc.Color",
  532. "r": 255,
  533. "g": 255,
  534. "b": 255,
  535. "a": 255
  536. },
  537. "_contentSize": {
  538. "__type__": "cc.Size",
  539. "width": 24,
  540. "height": 24
  541. },
  542. "_anchorPoint": {
  543. "__type__": "cc.Vec2",
  544. "x": 0.5,
  545. "y": 0.5
  546. },
  547. "_position": {
  548. "__type__": "cc.Vec3",
  549. "x": 0,
  550. "y": 0,
  551. "z": 0
  552. },
  553. "_scale": {
  554. "__type__": "cc.Vec3",
  555. "x": 1,
  556. "y": 1,
  557. "z": 1
  558. },
  559. "_eulerAngles": {
  560. "__type__": "cc.Vec3",
  561. "x": 0,
  562. "y": 0,
  563. "z": 0
  564. },
  565. "_skewX": 0,
  566. "_skewY": 0,
  567. "_is3DNode": false,
  568. "groupIndex": 0,
  569. "_id": ""
  570. },
  571. {
  572. "__type__": "cc.Sprite",
  573. "_name": "",
  574. "_objFlags": 0,
  575. "node": {
  576. "__id__": 11
  577. },
  578. "_enabled": true,
  579. "_materials": [
  580. {
  581. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  582. }
  583. ],
  584. "_srcBlendFactor": 770,
  585. "_dstBlendFactor": 771,
  586. "_spriteFrame": {
  587. "__uuid__": "3244671c-7da2-4632-830e-31a34f8ccb2f"
  588. },
  589. "_type": 0,
  590. "_sizeMode": 2,
  591. "_fillType": 0,
  592. "_fillCenter": {
  593. "__type__": "cc.Vec2",
  594. "x": 0,
  595. "y": 0
  596. },
  597. "_fillStart": 0,
  598. "_fillRange": 0,
  599. "_isTrimmedMode": false,
  600. "_atlas": null,
  601. "_id": ""
  602. },
  603. {
  604. "__type__": "cc.PrefabInfo",
  605. "root": {
  606. "__id__": 1
  607. },
  608. "asset": {
  609. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  610. },
  611. "fileId": "ccP1rFoz1O/ZBG25OVkV8p",
  612. "sync": false
  613. },
  614. {
  615. "__type__": "cc.Node",
  616. "_name": "checkmark",
  617. "_objFlags": 0,
  618. "_parent": {
  619. "__id__": 10
  620. },
  621. "_children": [],
  622. "_active": true,
  623. "_level": 0,
  624. "_components": [
  625. {
  626. "__id__": 15
  627. }
  628. ],
  629. "_prefab": {
  630. "__id__": 16
  631. },
  632. "_opacity": 255,
  633. "_color": {
  634. "__type__": "cc.Color",
  635. "r": 255,
  636. "g": 255,
  637. "b": 255,
  638. "a": 255
  639. },
  640. "_contentSize": {
  641. "__type__": "cc.Size",
  642. "width": 24,
  643. "height": 24
  644. },
  645. "_anchorPoint": {
  646. "__type__": "cc.Vec2",
  647. "x": 0.5,
  648. "y": 0.5
  649. },
  650. "_position": {
  651. "__type__": "cc.Vec3",
  652. "x": 0,
  653. "y": 0,
  654. "z": 0
  655. },
  656. "_scale": {
  657. "__type__": "cc.Vec3",
  658. "x": 1,
  659. "y": 1,
  660. "z": 1
  661. },
  662. "_eulerAngles": {
  663. "__type__": "cc.Vec3",
  664. "x": 0,
  665. "y": 0,
  666. "z": 0
  667. },
  668. "_skewX": 0,
  669. "_skewY": 0,
  670. "_is3DNode": false,
  671. "groupIndex": 0,
  672. "_id": ""
  673. },
  674. {
  675. "__type__": "cc.Sprite",
  676. "_name": "",
  677. "_objFlags": 0,
  678. "node": {
  679. "__id__": 14
  680. },
  681. "_enabled": true,
  682. "_materials": [
  683. {
  684. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  685. }
  686. ],
  687. "_srcBlendFactor": 770,
  688. "_dstBlendFactor": 771,
  689. "_spriteFrame": {
  690. "__uuid__": "e0779666-c2d3-4219-8d7e-82107ab8a649"
  691. },
  692. "_type": 0,
  693. "_sizeMode": 2,
  694. "_fillType": 0,
  695. "_fillCenter": {
  696. "__type__": "cc.Vec2",
  697. "x": 0,
  698. "y": 0
  699. },
  700. "_fillStart": 0,
  701. "_fillRange": 0,
  702. "_isTrimmedMode": false,
  703. "_atlas": null,
  704. "_id": ""
  705. },
  706. {
  707. "__type__": "cc.PrefabInfo",
  708. "root": {
  709. "__id__": 1
  710. },
  711. "asset": {
  712. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  713. },
  714. "fileId": "83D6kxqVdLBaDdv0vrY/S3",
  715. "sync": false
  716. },
  717. {
  718. "__type__": "cc.Node",
  719. "_name": "New Label",
  720. "_objFlags": 0,
  721. "_parent": {
  722. "__id__": 10
  723. },
  724. "_children": [],
  725. "_active": true,
  726. "_level": 1,
  727. "_components": [
  728. {
  729. "__id__": 18
  730. }
  731. ],
  732. "_prefab": {
  733. "__id__": 19
  734. },
  735. "_opacity": 255,
  736. "_color": {
  737. "__type__": "cc.Color",
  738. "r": 42,
  739. "g": 155,
  740. "b": 200,
  741. "a": 255
  742. },
  743. "_contentSize": {
  744. "__type__": "cc.Size",
  745. "width": 72,
  746. "height": 30.24
  747. },
  748. "_anchorPoint": {
  749. "__type__": "cc.Vec2",
  750. "x": 0.5,
  751. "y": 0.5
  752. },
  753. "_position": {
  754. "__type__": "cc.Vec3",
  755. "x": 38.031,
  756. "y": 0,
  757. "z": 0
  758. },
  759. "_scale": {
  760. "__type__": "cc.Vec3",
  761. "x": 0.644,
  762. "y": 0.644,
  763. "z": 0.644
  764. },
  765. "_eulerAngles": {
  766. "__type__": "cc.Vec3",
  767. "x": 0,
  768. "y": 0,
  769. "z": 0
  770. },
  771. "_skewX": 0,
  772. "_skewY": 0,
  773. "_is3DNode": false,
  774. "groupIndex": 0,
  775. "_id": ""
  776. },
  777. {
  778. "__type__": "cc.Label",
  779. "_name": "",
  780. "_objFlags": 0,
  781. "node": {
  782. "__id__": 17
  783. },
  784. "_enabled": true,
  785. "_materials": [
  786. {
  787. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  788. }
  789. ],
  790. "_useOriginalSize": false,
  791. "_string": "三个月",
  792. "_N$string": "三个月",
  793. "_fontSize": 24,
  794. "_lineHeight": 24,
  795. "_enableWrapText": true,
  796. "_N$file": null,
  797. "_isSystemFontUsed": true,
  798. "_spacingX": 0,
  799. "_batchAsBitmap": false,
  800. "_N$horizontalAlign": 1,
  801. "_N$verticalAlign": 1,
  802. "_N$fontFamily": "Arial",
  803. "_N$overflow": 0,
  804. "_N$cacheMode": 0,
  805. "_id": ""
  806. },
  807. {
  808. "__type__": "cc.PrefabInfo",
  809. "root": {
  810. "__id__": 1
  811. },
  812. "asset": {
  813. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  814. },
  815. "fileId": "37g3q3ABVHnbmy5zRrOZot",
  816. "sync": false
  817. },
  818. {
  819. "__type__": "cc.Toggle",
  820. "_name": "",
  821. "_objFlags": 0,
  822. "node": {
  823. "__id__": 10
  824. },
  825. "_enabled": true,
  826. "duration": 0.1,
  827. "zoomScale": 1.2,
  828. "clickEvents": [],
  829. "_N$interactable": true,
  830. "_N$enableAutoGrayEffect": false,
  831. "_N$transition": 3,
  832. "transition": 3,
  833. "_N$normalColor": {
  834. "__type__": "cc.Color",
  835. "r": 214,
  836. "g": 214,
  837. "b": 214,
  838. "a": 255
  839. },
  840. "_N$pressedColor": {
  841. "__type__": "cc.Color",
  842. "r": 211,
  843. "g": 211,
  844. "b": 211,
  845. "a": 255
  846. },
  847. "pressedColor": {
  848. "__type__": "cc.Color",
  849. "r": 211,
  850. "g": 211,
  851. "b": 211,
  852. "a": 255
  853. },
  854. "_N$hoverColor": {
  855. "__type__": "cc.Color",
  856. "r": 255,
  857. "g": 255,
  858. "b": 255,
  859. "a": 255
  860. },
  861. "hoverColor": {
  862. "__type__": "cc.Color",
  863. "r": 255,
  864. "g": 255,
  865. "b": 255,
  866. "a": 255
  867. },
  868. "_N$disabledColor": {
  869. "__type__": "cc.Color",
  870. "r": 124,
  871. "g": 124,
  872. "b": 124,
  873. "a": 255
  874. },
  875. "_N$normalSprite": null,
  876. "_N$pressedSprite": null,
  877. "pressedSprite": null,
  878. "_N$hoverSprite": null,
  879. "hoverSprite": null,
  880. "_N$disabledSprite": null,
  881. "_N$target": {
  882. "__id__": 10
  883. },
  884. "_N$isChecked": true,
  885. "toggleGroup": null,
  886. "checkMark": {
  887. "__id__": 15
  888. },
  889. "checkEvents": [
  890. {
  891. "__id__": 21
  892. }
  893. ],
  894. "_id": ""
  895. },
  896. {
  897. "__type__": "cc.ClickEvent",
  898. "target": {
  899. "__id__": 1
  900. },
  901. "component": "",
  902. "_componentId": "c2ecdxgPgxIaJQDwmKcBgZr",
  903. "handler": "onToggleInput",
  904. "customEventData": "1"
  905. },
  906. {
  907. "__type__": "cc.PrefabInfo",
  908. "root": {
  909. "__id__": 1
  910. },
  911. "asset": {
  912. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  913. },
  914. "fileId": "c1YmhBurpO5Klmzunmj1IV",
  915. "sync": false
  916. },
  917. {
  918. "__type__": "cc.Node",
  919. "_name": "toggle2",
  920. "_objFlags": 0,
  921. "_parent": {
  922. "__id__": 9
  923. },
  924. "_children": [
  925. {
  926. "__id__": 24
  927. },
  928. {
  929. "__id__": 27
  930. },
  931. {
  932. "__id__": 30
  933. }
  934. ],
  935. "_active": true,
  936. "_level": 0,
  937. "_components": [
  938. {
  939. "__id__": 33
  940. }
  941. ],
  942. "_prefab": {
  943. "__id__": 35
  944. },
  945. "_opacity": 255,
  946. "_color": {
  947. "__type__": "cc.Color",
  948. "r": 255,
  949. "g": 255,
  950. "b": 255,
  951. "a": 255
  952. },
  953. "_contentSize": {
  954. "__type__": "cc.Size",
  955. "width": 42,
  956. "height": 28
  957. },
  958. "_anchorPoint": {
  959. "__type__": "cc.Vec2",
  960. "x": 0.5,
  961. "y": 0.5
  962. },
  963. "_position": {
  964. "__type__": "cc.Vec3",
  965. "x": -11.139,
  966. "y": 3,
  967. "z": 0
  968. },
  969. "_scale": {
  970. "__type__": "cc.Vec3",
  971. "x": 1,
  972. "y": 1,
  973. "z": 1
  974. },
  975. "_eulerAngles": {
  976. "__type__": "cc.Vec3",
  977. "x": 0,
  978. "y": 0,
  979. "z": 0
  980. },
  981. "_skewX": 0,
  982. "_skewY": 0,
  983. "_is3DNode": false,
  984. "groupIndex": 0,
  985. "_id": ""
  986. },
  987. {
  988. "__type__": "cc.Node",
  989. "_name": "Background",
  990. "_objFlags": 0,
  991. "_parent": {
  992. "__id__": 23
  993. },
  994. "_children": [],
  995. "_active": true,
  996. "_level": 0,
  997. "_components": [
  998. {
  999. "__id__": 25
  1000. }
  1001. ],
  1002. "_prefab": {
  1003. "__id__": 26
  1004. },
  1005. "_opacity": 255,
  1006. "_color": {
  1007. "__type__": "cc.Color",
  1008. "r": 255,
  1009. "g": 255,
  1010. "b": 255,
  1011. "a": 255
  1012. },
  1013. "_contentSize": {
  1014. "__type__": "cc.Size",
  1015. "width": 24,
  1016. "height": 24
  1017. },
  1018. "_anchorPoint": {
  1019. "__type__": "cc.Vec2",
  1020. "x": 0.5,
  1021. "y": 0.5
  1022. },
  1023. "_position": {
  1024. "__type__": "cc.Vec3",
  1025. "x": 0,
  1026. "y": 0,
  1027. "z": 0
  1028. },
  1029. "_scale": {
  1030. "__type__": "cc.Vec3",
  1031. "x": 1,
  1032. "y": 1,
  1033. "z": 1
  1034. },
  1035. "_eulerAngles": {
  1036. "__type__": "cc.Vec3",
  1037. "x": 0,
  1038. "y": 0,
  1039. "z": 0
  1040. },
  1041. "_skewX": 0,
  1042. "_skewY": 0,
  1043. "_is3DNode": false,
  1044. "groupIndex": 0,
  1045. "_id": ""
  1046. },
  1047. {
  1048. "__type__": "cc.Sprite",
  1049. "_name": "",
  1050. "_objFlags": 0,
  1051. "node": {
  1052. "__id__": 24
  1053. },
  1054. "_enabled": true,
  1055. "_materials": [
  1056. {
  1057. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1058. }
  1059. ],
  1060. "_srcBlendFactor": 770,
  1061. "_dstBlendFactor": 771,
  1062. "_spriteFrame": {
  1063. "__uuid__": "3244671c-7da2-4632-830e-31a34f8ccb2f"
  1064. },
  1065. "_type": 0,
  1066. "_sizeMode": 2,
  1067. "_fillType": 0,
  1068. "_fillCenter": {
  1069. "__type__": "cc.Vec2",
  1070. "x": 0,
  1071. "y": 0
  1072. },
  1073. "_fillStart": 0,
  1074. "_fillRange": 0,
  1075. "_isTrimmedMode": false,
  1076. "_atlas": null,
  1077. "_id": ""
  1078. },
  1079. {
  1080. "__type__": "cc.PrefabInfo",
  1081. "root": {
  1082. "__id__": 1
  1083. },
  1084. "asset": {
  1085. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  1086. },
  1087. "fileId": "ebmEJy6R9NXbCY15SjVGw9",
  1088. "sync": false
  1089. },
  1090. {
  1091. "__type__": "cc.Node",
  1092. "_name": "checkmark",
  1093. "_objFlags": 0,
  1094. "_parent": {
  1095. "__id__": 23
  1096. },
  1097. "_children": [],
  1098. "_active": false,
  1099. "_level": 0,
  1100. "_components": [
  1101. {
  1102. "__id__": 28
  1103. }
  1104. ],
  1105. "_prefab": {
  1106. "__id__": 29
  1107. },
  1108. "_opacity": 255,
  1109. "_color": {
  1110. "__type__": "cc.Color",
  1111. "r": 255,
  1112. "g": 255,
  1113. "b": 255,
  1114. "a": 255
  1115. },
  1116. "_contentSize": {
  1117. "__type__": "cc.Size",
  1118. "width": 24,
  1119. "height": 24
  1120. },
  1121. "_anchorPoint": {
  1122. "__type__": "cc.Vec2",
  1123. "x": 0.5,
  1124. "y": 0.5
  1125. },
  1126. "_position": {
  1127. "__type__": "cc.Vec3",
  1128. "x": 0,
  1129. "y": 0,
  1130. "z": 0
  1131. },
  1132. "_scale": {
  1133. "__type__": "cc.Vec3",
  1134. "x": 1,
  1135. "y": 1,
  1136. "z": 1
  1137. },
  1138. "_eulerAngles": {
  1139. "__type__": "cc.Vec3",
  1140. "x": 0,
  1141. "y": 0,
  1142. "z": 0
  1143. },
  1144. "_skewX": 0,
  1145. "_skewY": 0,
  1146. "_is3DNode": false,
  1147. "groupIndex": 0,
  1148. "_id": ""
  1149. },
  1150. {
  1151. "__type__": "cc.Sprite",
  1152. "_name": "",
  1153. "_objFlags": 0,
  1154. "node": {
  1155. "__id__": 27
  1156. },
  1157. "_enabled": true,
  1158. "_materials": [
  1159. {
  1160. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1161. }
  1162. ],
  1163. "_srcBlendFactor": 770,
  1164. "_dstBlendFactor": 771,
  1165. "_spriteFrame": {
  1166. "__uuid__": "e0779666-c2d3-4219-8d7e-82107ab8a649"
  1167. },
  1168. "_type": 0,
  1169. "_sizeMode": 2,
  1170. "_fillType": 0,
  1171. "_fillCenter": {
  1172. "__type__": "cc.Vec2",
  1173. "x": 0,
  1174. "y": 0
  1175. },
  1176. "_fillStart": 0,
  1177. "_fillRange": 0,
  1178. "_isTrimmedMode": false,
  1179. "_atlas": null,
  1180. "_id": ""
  1181. },
  1182. {
  1183. "__type__": "cc.PrefabInfo",
  1184. "root": {
  1185. "__id__": 1
  1186. },
  1187. "asset": {
  1188. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  1189. },
  1190. "fileId": "28vM8hC8tBZ5jrfC382Rn2",
  1191. "sync": false
  1192. },
  1193. {
  1194. "__type__": "cc.Node",
  1195. "_name": "New Label copy",
  1196. "_objFlags": 0,
  1197. "_parent": {
  1198. "__id__": 23
  1199. },
  1200. "_children": [],
  1201. "_active": true,
  1202. "_level": 1,
  1203. "_components": [
  1204. {
  1205. "__id__": 31
  1206. }
  1207. ],
  1208. "_prefab": {
  1209. "__id__": 32
  1210. },
  1211. "_opacity": 255,
  1212. "_color": {
  1213. "__type__": "cc.Color",
  1214. "r": 42,
  1215. "g": 155,
  1216. "b": 200,
  1217. "a": 255
  1218. },
  1219. "_contentSize": {
  1220. "__type__": "cc.Size",
  1221. "width": 37.35,
  1222. "height": 30.24
  1223. },
  1224. "_anchorPoint": {
  1225. "__type__": "cc.Vec2",
  1226. "x": 0.5,
  1227. "y": 0.5
  1228. },
  1229. "_position": {
  1230. "__type__": "cc.Vec3",
  1231. "x": 31.017,
  1232. "y": 0,
  1233. "z": 0
  1234. },
  1235. "_scale": {
  1236. "__type__": "cc.Vec3",
  1237. "x": 0.644,
  1238. "y": 0.644,
  1239. "z": 0.644
  1240. },
  1241. "_eulerAngles": {
  1242. "__type__": "cc.Vec3",
  1243. "x": 0,
  1244. "y": 0,
  1245. "z": 0
  1246. },
  1247. "_skewX": 0,
  1248. "_skewY": 0,
  1249. "_is3DNode": false,
  1250. "groupIndex": 0,
  1251. "_id": ""
  1252. },
  1253. {
  1254. "__type__": "cc.Label",
  1255. "_name": "",
  1256. "_objFlags": 0,
  1257. "node": {
  1258. "__id__": 30
  1259. },
  1260. "_enabled": true,
  1261. "_materials": [
  1262. {
  1263. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1264. }
  1265. ],
  1266. "_useOriginalSize": false,
  1267. "_string": "1年",
  1268. "_N$string": "1年",
  1269. "_fontSize": 24,
  1270. "_lineHeight": 24,
  1271. "_enableWrapText": true,
  1272. "_N$file": null,
  1273. "_isSystemFontUsed": true,
  1274. "_spacingX": 0,
  1275. "_batchAsBitmap": false,
  1276. "_N$horizontalAlign": 1,
  1277. "_N$verticalAlign": 1,
  1278. "_N$fontFamily": "Arial",
  1279. "_N$overflow": 0,
  1280. "_N$cacheMode": 0,
  1281. "_id": ""
  1282. },
  1283. {
  1284. "__type__": "cc.PrefabInfo",
  1285. "root": {
  1286. "__id__": 1
  1287. },
  1288. "asset": {
  1289. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  1290. },
  1291. "fileId": "40jTKok71CcI427IEA6Ry9",
  1292. "sync": false
  1293. },
  1294. {
  1295. "__type__": "cc.Toggle",
  1296. "_name": "",
  1297. "_objFlags": 0,
  1298. "node": {
  1299. "__id__": 23
  1300. },
  1301. "_enabled": true,
  1302. "duration": 0.1,
  1303. "zoomScale": 1.2,
  1304. "clickEvents": [],
  1305. "_N$interactable": true,
  1306. "_N$enableAutoGrayEffect": false,
  1307. "_N$transition": 3,
  1308. "transition": 3,
  1309. "_N$normalColor": {
  1310. "__type__": "cc.Color",
  1311. "r": 214,
  1312. "g": 214,
  1313. "b": 214,
  1314. "a": 255
  1315. },
  1316. "_N$pressedColor": {
  1317. "__type__": "cc.Color",
  1318. "r": 211,
  1319. "g": 211,
  1320. "b": 211,
  1321. "a": 255
  1322. },
  1323. "pressedColor": {
  1324. "__type__": "cc.Color",
  1325. "r": 211,
  1326. "g": 211,
  1327. "b": 211,
  1328. "a": 255
  1329. },
  1330. "_N$hoverColor": {
  1331. "__type__": "cc.Color",
  1332. "r": 255,
  1333. "g": 255,
  1334. "b": 255,
  1335. "a": 255
  1336. },
  1337. "hoverColor": {
  1338. "__type__": "cc.Color",
  1339. "r": 255,
  1340. "g": 255,
  1341. "b": 255,
  1342. "a": 255
  1343. },
  1344. "_N$disabledColor": {
  1345. "__type__": "cc.Color",
  1346. "r": 124,
  1347. "g": 124,
  1348. "b": 124,
  1349. "a": 255
  1350. },
  1351. "_N$normalSprite": null,
  1352. "_N$pressedSprite": null,
  1353. "pressedSprite": null,
  1354. "_N$hoverSprite": null,
  1355. "hoverSprite": null,
  1356. "_N$disabledSprite": null,
  1357. "_N$target": {
  1358. "__id__": 23
  1359. },
  1360. "_N$isChecked": false,
  1361. "toggleGroup": null,
  1362. "checkMark": {
  1363. "__id__": 28
  1364. },
  1365. "checkEvents": [
  1366. {
  1367. "__id__": 34
  1368. }
  1369. ],
  1370. "_id": ""
  1371. },
  1372. {
  1373. "__type__": "cc.ClickEvent",
  1374. "target": {
  1375. "__id__": 1
  1376. },
  1377. "component": "",
  1378. "_componentId": "c2ecdxgPgxIaJQDwmKcBgZr",
  1379. "handler": "onToggleInput",
  1380. "customEventData": "2"
  1381. },
  1382. {
  1383. "__type__": "cc.PrefabInfo",
  1384. "root": {
  1385. "__id__": 1
  1386. },
  1387. "asset": {
  1388. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  1389. },
  1390. "fileId": "04h2UVKJ5N1ros8/SGBByX",
  1391. "sync": false
  1392. },
  1393. {
  1394. "__type__": "cc.Node",
  1395. "_name": "toggle3",
  1396. "_objFlags": 0,
  1397. "_parent": {
  1398. "__id__": 9
  1399. },
  1400. "_children": [
  1401. {
  1402. "__id__": 37
  1403. },
  1404. {
  1405. "__id__": 40
  1406. },
  1407. {
  1408. "__id__": 43
  1409. }
  1410. ],
  1411. "_active": true,
  1412. "_level": 7,
  1413. "_components": [
  1414. {
  1415. "__id__": 46
  1416. }
  1417. ],
  1418. "_prefab": {
  1419. "__id__": 48
  1420. },
  1421. "_opacity": 255,
  1422. "_color": {
  1423. "__type__": "cc.Color",
  1424. "r": 255,
  1425. "g": 255,
  1426. "b": 255,
  1427. "a": 255
  1428. },
  1429. "_contentSize": {
  1430. "__type__": "cc.Size",
  1431. "width": 42,
  1432. "height": 28
  1433. },
  1434. "_anchorPoint": {
  1435. "__type__": "cc.Vec2",
  1436. "x": 0.5,
  1437. "y": 0.5
  1438. },
  1439. "_position": {
  1440. "__type__": "cc.Vec3",
  1441. "x": 57.26,
  1442. "y": 3,
  1443. "z": 0
  1444. },
  1445. "_scale": {
  1446. "__type__": "cc.Vec3",
  1447. "x": 1,
  1448. "y": 1,
  1449. "z": 1
  1450. },
  1451. "_eulerAngles": {
  1452. "__type__": "cc.Vec3",
  1453. "x": 0,
  1454. "y": 0,
  1455. "z": 0
  1456. },
  1457. "_skewX": 0,
  1458. "_skewY": 0,
  1459. "_is3DNode": false,
  1460. "groupIndex": 0,
  1461. "_id": ""
  1462. },
  1463. {
  1464. "__type__": "cc.Node",
  1465. "_name": "Background",
  1466. "_objFlags": 0,
  1467. "_parent": {
  1468. "__id__": 36
  1469. },
  1470. "_children": [],
  1471. "_active": true,
  1472. "_level": 0,
  1473. "_components": [
  1474. {
  1475. "__id__": 38
  1476. }
  1477. ],
  1478. "_prefab": {
  1479. "__id__": 39
  1480. },
  1481. "_opacity": 255,
  1482. "_color": {
  1483. "__type__": "cc.Color",
  1484. "r": 255,
  1485. "g": 255,
  1486. "b": 255,
  1487. "a": 255
  1488. },
  1489. "_contentSize": {
  1490. "__type__": "cc.Size",
  1491. "width": 24,
  1492. "height": 24
  1493. },
  1494. "_anchorPoint": {
  1495. "__type__": "cc.Vec2",
  1496. "x": 0.5,
  1497. "y": 0.5
  1498. },
  1499. "_position": {
  1500. "__type__": "cc.Vec3",
  1501. "x": 0,
  1502. "y": 0,
  1503. "z": 0
  1504. },
  1505. "_scale": {
  1506. "__type__": "cc.Vec3",
  1507. "x": 1,
  1508. "y": 1,
  1509. "z": 1
  1510. },
  1511. "_eulerAngles": {
  1512. "__type__": "cc.Vec3",
  1513. "x": 0,
  1514. "y": 0,
  1515. "z": 0
  1516. },
  1517. "_skewX": 0,
  1518. "_skewY": 0,
  1519. "_is3DNode": false,
  1520. "groupIndex": 0,
  1521. "_id": ""
  1522. },
  1523. {
  1524. "__type__": "cc.Sprite",
  1525. "_name": "",
  1526. "_objFlags": 0,
  1527. "node": {
  1528. "__id__": 37
  1529. },
  1530. "_enabled": true,
  1531. "_materials": [
  1532. {
  1533. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1534. }
  1535. ],
  1536. "_srcBlendFactor": 770,
  1537. "_dstBlendFactor": 771,
  1538. "_spriteFrame": {
  1539. "__uuid__": "3244671c-7da2-4632-830e-31a34f8ccb2f"
  1540. },
  1541. "_type": 0,
  1542. "_sizeMode": 2,
  1543. "_fillType": 0,
  1544. "_fillCenter": {
  1545. "__type__": "cc.Vec2",
  1546. "x": 0,
  1547. "y": 0
  1548. },
  1549. "_fillStart": 0,
  1550. "_fillRange": 0,
  1551. "_isTrimmedMode": false,
  1552. "_atlas": null,
  1553. "_id": ""
  1554. },
  1555. {
  1556. "__type__": "cc.PrefabInfo",
  1557. "root": {
  1558. "__id__": 1
  1559. },
  1560. "asset": {
  1561. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  1562. },
  1563. "fileId": "942ulXQBxP6IUIX7RkolgW",
  1564. "sync": false
  1565. },
  1566. {
  1567. "__type__": "cc.Node",
  1568. "_name": "checkmark",
  1569. "_objFlags": 0,
  1570. "_parent": {
  1571. "__id__": 36
  1572. },
  1573. "_children": [],
  1574. "_active": false,
  1575. "_level": 0,
  1576. "_components": [
  1577. {
  1578. "__id__": 41
  1579. }
  1580. ],
  1581. "_prefab": {
  1582. "__id__": 42
  1583. },
  1584. "_opacity": 255,
  1585. "_color": {
  1586. "__type__": "cc.Color",
  1587. "r": 255,
  1588. "g": 255,
  1589. "b": 255,
  1590. "a": 255
  1591. },
  1592. "_contentSize": {
  1593. "__type__": "cc.Size",
  1594. "width": 24,
  1595. "height": 24
  1596. },
  1597. "_anchorPoint": {
  1598. "__type__": "cc.Vec2",
  1599. "x": 0.5,
  1600. "y": 0.5
  1601. },
  1602. "_position": {
  1603. "__type__": "cc.Vec3",
  1604. "x": 0,
  1605. "y": 0,
  1606. "z": 0
  1607. },
  1608. "_scale": {
  1609. "__type__": "cc.Vec3",
  1610. "x": 1,
  1611. "y": 1,
  1612. "z": 1
  1613. },
  1614. "_eulerAngles": {
  1615. "__type__": "cc.Vec3",
  1616. "x": 0,
  1617. "y": 0,
  1618. "z": 0
  1619. },
  1620. "_skewX": 0,
  1621. "_skewY": 0,
  1622. "_is3DNode": false,
  1623. "groupIndex": 0,
  1624. "_id": ""
  1625. },
  1626. {
  1627. "__type__": "cc.Sprite",
  1628. "_name": "",
  1629. "_objFlags": 0,
  1630. "node": {
  1631. "__id__": 40
  1632. },
  1633. "_enabled": true,
  1634. "_materials": [
  1635. {
  1636. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1637. }
  1638. ],
  1639. "_srcBlendFactor": 770,
  1640. "_dstBlendFactor": 771,
  1641. "_spriteFrame": {
  1642. "__uuid__": "e0779666-c2d3-4219-8d7e-82107ab8a649"
  1643. },
  1644. "_type": 0,
  1645. "_sizeMode": 2,
  1646. "_fillType": 0,
  1647. "_fillCenter": {
  1648. "__type__": "cc.Vec2",
  1649. "x": 0,
  1650. "y": 0
  1651. },
  1652. "_fillStart": 0,
  1653. "_fillRange": 0,
  1654. "_isTrimmedMode": false,
  1655. "_atlas": null,
  1656. "_id": ""
  1657. },
  1658. {
  1659. "__type__": "cc.PrefabInfo",
  1660. "root": {
  1661. "__id__": 1
  1662. },
  1663. "asset": {
  1664. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  1665. },
  1666. "fileId": "64NOh62+hAiKdngpLaOlwF",
  1667. "sync": false
  1668. },
  1669. {
  1670. "__type__": "cc.Node",
  1671. "_name": "New Label copy",
  1672. "_objFlags": 0,
  1673. "_parent": {
  1674. "__id__": 36
  1675. },
  1676. "_children": [],
  1677. "_active": true,
  1678. "_level": 1,
  1679. "_components": [
  1680. {
  1681. "__id__": 44
  1682. }
  1683. ],
  1684. "_prefab": {
  1685. "__id__": 45
  1686. },
  1687. "_opacity": 255,
  1688. "_color": {
  1689. "__type__": "cc.Color",
  1690. "r": 42,
  1691. "g": 155,
  1692. "b": 200,
  1693. "a": 255
  1694. },
  1695. "_contentSize": {
  1696. "__type__": "cc.Size",
  1697. "width": 37.35,
  1698. "height": 30.24
  1699. },
  1700. "_anchorPoint": {
  1701. "__type__": "cc.Vec2",
  1702. "x": 0.5,
  1703. "y": 0.5
  1704. },
  1705. "_position": {
  1706. "__type__": "cc.Vec3",
  1707. "x": 31.017,
  1708. "y": 0,
  1709. "z": 0
  1710. },
  1711. "_scale": {
  1712. "__type__": "cc.Vec3",
  1713. "x": 0.644,
  1714. "y": 0.644,
  1715. "z": 0.644
  1716. },
  1717. "_eulerAngles": {
  1718. "__type__": "cc.Vec3",
  1719. "x": 0,
  1720. "y": 0,
  1721. "z": 0
  1722. },
  1723. "_skewX": 0,
  1724. "_skewY": 0,
  1725. "_is3DNode": false,
  1726. "groupIndex": 0,
  1727. "_id": ""
  1728. },
  1729. {
  1730. "__type__": "cc.Label",
  1731. "_name": "",
  1732. "_objFlags": 0,
  1733. "node": {
  1734. "__id__": 43
  1735. },
  1736. "_enabled": true,
  1737. "_materials": [
  1738. {
  1739. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1740. }
  1741. ],
  1742. "_useOriginalSize": false,
  1743. "_string": "5年",
  1744. "_N$string": "5年",
  1745. "_fontSize": 24,
  1746. "_lineHeight": 24,
  1747. "_enableWrapText": true,
  1748. "_N$file": null,
  1749. "_isSystemFontUsed": true,
  1750. "_spacingX": 0,
  1751. "_batchAsBitmap": false,
  1752. "_N$horizontalAlign": 1,
  1753. "_N$verticalAlign": 1,
  1754. "_N$fontFamily": "Arial",
  1755. "_N$overflow": 0,
  1756. "_N$cacheMode": 0,
  1757. "_id": ""
  1758. },
  1759. {
  1760. "__type__": "cc.PrefabInfo",
  1761. "root": {
  1762. "__id__": 1
  1763. },
  1764. "asset": {
  1765. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  1766. },
  1767. "fileId": "e613AfOA5CuZHn55hCxmaG",
  1768. "sync": false
  1769. },
  1770. {
  1771. "__type__": "cc.Toggle",
  1772. "_name": "",
  1773. "_objFlags": 0,
  1774. "node": {
  1775. "__id__": 36
  1776. },
  1777. "_enabled": true,
  1778. "duration": 0.1,
  1779. "zoomScale": 1.2,
  1780. "clickEvents": [],
  1781. "_N$interactable": true,
  1782. "_N$enableAutoGrayEffect": false,
  1783. "_N$transition": 3,
  1784. "transition": 3,
  1785. "_N$normalColor": {
  1786. "__type__": "cc.Color",
  1787. "r": 214,
  1788. "g": 214,
  1789. "b": 214,
  1790. "a": 255
  1791. },
  1792. "_N$pressedColor": {
  1793. "__type__": "cc.Color",
  1794. "r": 211,
  1795. "g": 211,
  1796. "b": 211,
  1797. "a": 255
  1798. },
  1799. "pressedColor": {
  1800. "__type__": "cc.Color",
  1801. "r": 211,
  1802. "g": 211,
  1803. "b": 211,
  1804. "a": 255
  1805. },
  1806. "_N$hoverColor": {
  1807. "__type__": "cc.Color",
  1808. "r": 255,
  1809. "g": 255,
  1810. "b": 255,
  1811. "a": 255
  1812. },
  1813. "hoverColor": {
  1814. "__type__": "cc.Color",
  1815. "r": 255,
  1816. "g": 255,
  1817. "b": 255,
  1818. "a": 255
  1819. },
  1820. "_N$disabledColor": {
  1821. "__type__": "cc.Color",
  1822. "r": 124,
  1823. "g": 124,
  1824. "b": 124,
  1825. "a": 255
  1826. },
  1827. "_N$normalSprite": null,
  1828. "_N$pressedSprite": null,
  1829. "pressedSprite": null,
  1830. "_N$hoverSprite": null,
  1831. "hoverSprite": null,
  1832. "_N$disabledSprite": null,
  1833. "_N$target": {
  1834. "__id__": 36
  1835. },
  1836. "_N$isChecked": false,
  1837. "toggleGroup": null,
  1838. "checkMark": {
  1839. "__id__": 41
  1840. },
  1841. "checkEvents": [
  1842. {
  1843. "__id__": 47
  1844. }
  1845. ],
  1846. "_id": ""
  1847. },
  1848. {
  1849. "__type__": "cc.ClickEvent",
  1850. "target": {
  1851. "__id__": 1
  1852. },
  1853. "component": "",
  1854. "_componentId": "c2ecdxgPgxIaJQDwmKcBgZr",
  1855. "handler": "onToggleInput",
  1856. "customEventData": "3"
  1857. },
  1858. {
  1859. "__type__": "cc.PrefabInfo",
  1860. "root": {
  1861. "__id__": 1
  1862. },
  1863. "asset": {
  1864. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  1865. },
  1866. "fileId": "4718y1jFVHwYIdBKWP6tam",
  1867. "sync": false
  1868. },
  1869. {
  1870. "__type__": "cc.ToggleContainer",
  1871. "_name": "",
  1872. "_objFlags": 0,
  1873. "node": {
  1874. "__id__": 9
  1875. },
  1876. "_enabled": true,
  1877. "allowSwitchOff": false,
  1878. "checkEvents": [],
  1879. "_id": ""
  1880. },
  1881. {
  1882. "__type__": "cc.PrefabInfo",
  1883. "root": {
  1884. "__id__": 1
  1885. },
  1886. "asset": {
  1887. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  1888. },
  1889. "fileId": "a2+rbeZeBCLadCQcnh1mwC",
  1890. "sync": false
  1891. },
  1892. {
  1893. "__type__": "cc.Node",
  1894. "_name": "text2",
  1895. "_objFlags": 0,
  1896. "_parent": {
  1897. "__id__": 5
  1898. },
  1899. "_children": [],
  1900. "_active": true,
  1901. "_level": 6,
  1902. "_components": [
  1903. {
  1904. "__id__": 52
  1905. }
  1906. ],
  1907. "_prefab": {
  1908. "__id__": 53
  1909. },
  1910. "_opacity": 255,
  1911. "_color": {
  1912. "__type__": "cc.Color",
  1913. "r": 42,
  1914. "g": 155,
  1915. "b": 200,
  1916. "a": 255
  1917. },
  1918. "_contentSize": {
  1919. "__type__": "cc.Size",
  1920. "width": 91.11,
  1921. "height": 50.4
  1922. },
  1923. "_anchorPoint": {
  1924. "__type__": "cc.Vec2",
  1925. "x": 0.5,
  1926. "y": 0.5
  1927. },
  1928. "_position": {
  1929. "__type__": "cc.Vec3",
  1930. "x": -117.892,
  1931. "y": -20.629,
  1932. "z": 0
  1933. },
  1934. "_scale": {
  1935. "__type__": "cc.Vec3",
  1936. "x": 0.644,
  1937. "y": 0.644,
  1938. "z": 0.644
  1939. },
  1940. "_eulerAngles": {
  1941. "__type__": "cc.Vec3",
  1942. "x": 0,
  1943. "y": 0,
  1944. "z": 0
  1945. },
  1946. "_skewX": 0,
  1947. "_skewY": 0,
  1948. "_is3DNode": false,
  1949. "groupIndex": 0,
  1950. "_id": ""
  1951. },
  1952. {
  1953. "__type__": "cc.Label",
  1954. "_name": "",
  1955. "_objFlags": 0,
  1956. "node": {
  1957. "__id__": 51
  1958. },
  1959. "_enabled": true,
  1960. "_materials": [
  1961. {
  1962. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1963. }
  1964. ],
  1965. "_useOriginalSize": false,
  1966. "_string": "费用:",
  1967. "_N$string": "费用:",
  1968. "_fontSize": 40,
  1969. "_lineHeight": 40,
  1970. "_enableWrapText": true,
  1971. "_N$file": null,
  1972. "_isSystemFontUsed": true,
  1973. "_spacingX": 0,
  1974. "_batchAsBitmap": false,
  1975. "_N$horizontalAlign": 1,
  1976. "_N$verticalAlign": 1,
  1977. "_N$fontFamily": "Arial",
  1978. "_N$overflow": 0,
  1979. "_N$cacheMode": 0,
  1980. "_id": ""
  1981. },
  1982. {
  1983. "__type__": "cc.PrefabInfo",
  1984. "root": {
  1985. "__id__": 1
  1986. },
  1987. "asset": {
  1988. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  1989. },
  1990. "fileId": "a1h54rhQZDAYuADm6265Vd",
  1991. "sync": false
  1992. },
  1993. {
  1994. "__type__": "cc.Node",
  1995. "_name": "text2_value",
  1996. "_objFlags": 0,
  1997. "_parent": {
  1998. "__id__": 5
  1999. },
  2000. "_children": [],
  2001. "_active": true,
  2002. "_level": 6,
  2003. "_components": [
  2004. {
  2005. "__id__": 55
  2006. }
  2007. ],
  2008. "_prefab": {
  2009. "__id__": 56
  2010. },
  2011. "_opacity": 255,
  2012. "_color": {
  2013. "__type__": "cc.Color",
  2014. "r": 42,
  2015. "g": 155,
  2016. "b": 200,
  2017. "a": 255
  2018. },
  2019. "_contentSize": {
  2020. "__type__": "cc.Size",
  2021. "width": 141.5,
  2022. "height": 47.88
  2023. },
  2024. "_anchorPoint": {
  2025. "__type__": "cc.Vec2",
  2026. "x": 0,
  2027. "y": 0.5
  2028. },
  2029. "_position": {
  2030. "__type__": "cc.Vec3",
  2031. "x": -72.13,
  2032. "y": -20.629,
  2033. "z": 0
  2034. },
  2035. "_scale": {
  2036. "__type__": "cc.Vec3",
  2037. "x": 0.644,
  2038. "y": 0.644,
  2039. "z": 0.644
  2040. },
  2041. "_eulerAngles": {
  2042. "__type__": "cc.Vec3",
  2043. "x": 0,
  2044. "y": 0,
  2045. "z": 0
  2046. },
  2047. "_skewX": 0,
  2048. "_skewY": 0,
  2049. "_is3DNode": false,
  2050. "groupIndex": 0,
  2051. "_id": ""
  2052. },
  2053. {
  2054. "__type__": "cc.Label",
  2055. "_name": "",
  2056. "_objFlags": 0,
  2057. "node": {
  2058. "__id__": 54
  2059. },
  2060. "_enabled": true,
  2061. "_materials": [
  2062. {
  2063. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2064. }
  2065. ],
  2066. "_useOriginalSize": false,
  2067. "_string": "600CNT",
  2068. "_N$string": "600CNT",
  2069. "_fontSize": 38,
  2070. "_lineHeight": 38,
  2071. "_enableWrapText": true,
  2072. "_N$file": null,
  2073. "_isSystemFontUsed": true,
  2074. "_spacingX": 0,
  2075. "_batchAsBitmap": false,
  2076. "_N$horizontalAlign": 1,
  2077. "_N$verticalAlign": 1,
  2078. "_N$fontFamily": "Arial",
  2079. "_N$overflow": 0,
  2080. "_N$cacheMode": 0,
  2081. "_id": ""
  2082. },
  2083. {
  2084. "__type__": "cc.PrefabInfo",
  2085. "root": {
  2086. "__id__": 1
  2087. },
  2088. "asset": {
  2089. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  2090. },
  2091. "fileId": "676F3lV9hIoZBQEy9PMb4I",
  2092. "sync": false
  2093. },
  2094. {
  2095. "__type__": "cc.Sprite",
  2096. "_name": "",
  2097. "_objFlags": 0,
  2098. "node": {
  2099. "__id__": 5
  2100. },
  2101. "_enabled": true,
  2102. "_materials": [
  2103. {
  2104. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2105. }
  2106. ],
  2107. "_srcBlendFactor": 770,
  2108. "_dstBlendFactor": 771,
  2109. "_spriteFrame": {
  2110. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  2111. },
  2112. "_type": 0,
  2113. "_sizeMode": 0,
  2114. "_fillType": 0,
  2115. "_fillCenter": {
  2116. "__type__": "cc.Vec2",
  2117. "x": 0,
  2118. "y": 0
  2119. },
  2120. "_fillStart": 0,
  2121. "_fillRange": 0,
  2122. "_isTrimmedMode": true,
  2123. "_atlas": null,
  2124. "_id": ""
  2125. },
  2126. {
  2127. "__type__": "cc.PrefabInfo",
  2128. "root": {
  2129. "__id__": 1
  2130. },
  2131. "asset": {
  2132. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  2133. },
  2134. "fileId": "f4NR2NdqZDm5vS1b50pvOm",
  2135. "sync": false
  2136. },
  2137. {
  2138. "__type__": "cc.Node",
  2139. "_name": "Container2",
  2140. "_objFlags": 0,
  2141. "_parent": {
  2142. "__id__": 1
  2143. },
  2144. "_children": [
  2145. {
  2146. "__id__": 60
  2147. },
  2148. {
  2149. "__id__": 63
  2150. }
  2151. ],
  2152. "_active": true,
  2153. "_level": 5,
  2154. "_components": [
  2155. {
  2156. "__id__": 79
  2157. }
  2158. ],
  2159. "_prefab": {
  2160. "__id__": 80
  2161. },
  2162. "_opacity": 255,
  2163. "_color": {
  2164. "__type__": "cc.Color",
  2165. "r": 228,
  2166. "g": 244,
  2167. "b": 249,
  2168. "a": 255
  2169. },
  2170. "_contentSize": {
  2171. "__type__": "cc.Size",
  2172. "width": 200,
  2173. "height": 50
  2174. },
  2175. "_anchorPoint": {
  2176. "__type__": "cc.Vec2",
  2177. "x": 0.5,
  2178. "y": 0.5
  2179. },
  2180. "_position": {
  2181. "__type__": "cc.Vec3",
  2182. "x": 34.263,
  2183. "y": -6.979,
  2184. "z": 0
  2185. },
  2186. "_scale": {
  2187. "__type__": "cc.Vec3",
  2188. "x": 1,
  2189. "y": 1,
  2190. "z": 1
  2191. },
  2192. "_eulerAngles": {
  2193. "__type__": "cc.Vec3",
  2194. "x": 0,
  2195. "y": 0,
  2196. "z": 0
  2197. },
  2198. "_skewX": 0,
  2199. "_skewY": 0,
  2200. "_is3DNode": false,
  2201. "groupIndex": 0,
  2202. "_id": ""
  2203. },
  2204. {
  2205. "__type__": "cc.Node",
  2206. "_name": "text2_value",
  2207. "_objFlags": 0,
  2208. "_parent": {
  2209. "__id__": 59
  2210. },
  2211. "_children": [],
  2212. "_active": true,
  2213. "_level": 6,
  2214. "_components": [
  2215. {
  2216. "__id__": 61
  2217. }
  2218. ],
  2219. "_prefab": {
  2220. "__id__": 62
  2221. },
  2222. "_opacity": 255,
  2223. "_color": {
  2224. "__type__": "cc.Color",
  2225. "r": 42,
  2226. "g": 155,
  2227. "b": 200,
  2228. "a": 255
  2229. },
  2230. "_contentSize": {
  2231. "__type__": "cc.Size",
  2232. "width": 114,
  2233. "height": 47.88
  2234. },
  2235. "_anchorPoint": {
  2236. "__type__": "cc.Vec2",
  2237. "x": 0,
  2238. "y": 0.5
  2239. },
  2240. "_position": {
  2241. "__type__": "cc.Vec3",
  2242. "x": -179.031,
  2243. "y": 0,
  2244. "z": 0
  2245. },
  2246. "_scale": {
  2247. "__type__": "cc.Vec3",
  2248. "x": 0.644,
  2249. "y": 0.644,
  2250. "z": 0.644
  2251. },
  2252. "_eulerAngles": {
  2253. "__type__": "cc.Vec3",
  2254. "x": 0,
  2255. "y": 0,
  2256. "z": 0
  2257. },
  2258. "_skewX": 0,
  2259. "_skewY": 0,
  2260. "_is3DNode": false,
  2261. "groupIndex": 0,
  2262. "_id": ""
  2263. },
  2264. {
  2265. "__type__": "cc.Label",
  2266. "_name": "",
  2267. "_objFlags": 0,
  2268. "node": {
  2269. "__id__": 60
  2270. },
  2271. "_enabled": true,
  2272. "_materials": [
  2273. {
  2274. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2275. }
  2276. ],
  2277. "_useOriginalSize": false,
  2278. "_string": "倍数:",
  2279. "_N$string": "倍数:",
  2280. "_fontSize": 38,
  2281. "_lineHeight": 38,
  2282. "_enableWrapText": true,
  2283. "_N$file": null,
  2284. "_isSystemFontUsed": true,
  2285. "_spacingX": 0,
  2286. "_batchAsBitmap": false,
  2287. "_N$horizontalAlign": 1,
  2288. "_N$verticalAlign": 1,
  2289. "_N$fontFamily": "Arial",
  2290. "_N$overflow": 0,
  2291. "_N$cacheMode": 0,
  2292. "_id": ""
  2293. },
  2294. {
  2295. "__type__": "cc.PrefabInfo",
  2296. "root": {
  2297. "__id__": 1
  2298. },
  2299. "asset": {
  2300. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  2301. },
  2302. "fileId": "6bFC0MiqZL+JmBefoBTsSO",
  2303. "sync": false
  2304. },
  2305. {
  2306. "__type__": "cc.Node",
  2307. "_name": "editbox",
  2308. "_objFlags": 0,
  2309. "_parent": {
  2310. "__id__": 59
  2311. },
  2312. "_children": [
  2313. {
  2314. "__id__": 64
  2315. },
  2316. {
  2317. "__id__": 68
  2318. },
  2319. {
  2320. "__id__": 72
  2321. }
  2322. ],
  2323. "_active": true,
  2324. "_level": 6,
  2325. "_components": [
  2326. {
  2327. "__id__": 76
  2328. }
  2329. ],
  2330. "_prefab": {
  2331. "__id__": 78
  2332. },
  2333. "_opacity": 255,
  2334. "_color": {
  2335. "__type__": "cc.Color",
  2336. "r": 255,
  2337. "g": 255,
  2338. "b": 255,
  2339. "a": 255
  2340. },
  2341. "_contentSize": {
  2342. "__type__": "cc.Size",
  2343. "width": 160,
  2344. "height": 40
  2345. },
  2346. "_anchorPoint": {
  2347. "__type__": "cc.Vec2",
  2348. "x": 0.5,
  2349. "y": 0.5
  2350. },
  2351. "_position": {
  2352. "__type__": "cc.Vec3",
  2353. "x": 0,
  2354. "y": 0,
  2355. "z": 0
  2356. },
  2357. "_scale": {
  2358. "__type__": "cc.Vec3",
  2359. "x": 1,
  2360. "y": 1,
  2361. "z": 1
  2362. },
  2363. "_eulerAngles": {
  2364. "__type__": "cc.Vec3",
  2365. "x": 0,
  2366. "y": 0,
  2367. "z": 0
  2368. },
  2369. "_skewX": 0,
  2370. "_skewY": 0,
  2371. "_is3DNode": false,
  2372. "groupIndex": 0,
  2373. "_id": ""
  2374. },
  2375. {
  2376. "__type__": "cc.Node",
  2377. "_name": "BACKGROUND_SPRITE",
  2378. "_objFlags": 0,
  2379. "_parent": {
  2380. "__id__": 63
  2381. },
  2382. "_children": [],
  2383. "_active": true,
  2384. "_level": 2,
  2385. "_components": [
  2386. {
  2387. "__id__": 65
  2388. },
  2389. {
  2390. "__id__": 66
  2391. }
  2392. ],
  2393. "_prefab": {
  2394. "__id__": 67
  2395. },
  2396. "_opacity": 255,
  2397. "_color": {
  2398. "__type__": "cc.Color",
  2399. "r": 0,
  2400. "g": 0,
  2401. "b": 0,
  2402. "a": 255
  2403. },
  2404. "_contentSize": {
  2405. "__type__": "cc.Size",
  2406. "width": 160,
  2407. "height": 40
  2408. },
  2409. "_anchorPoint": {
  2410. "__type__": "cc.Vec2",
  2411. "x": 0.5,
  2412. "y": 0.5
  2413. },
  2414. "_position": {
  2415. "__type__": "cc.Vec3",
  2416. "x": 0,
  2417. "y": 0,
  2418. "z": 0
  2419. },
  2420. "_scale": {
  2421. "__type__": "cc.Vec3",
  2422. "x": 1,
  2423. "y": 1,
  2424. "z": 1
  2425. },
  2426. "_eulerAngles": {
  2427. "__type__": "cc.Vec3",
  2428. "x": 0,
  2429. "y": 0,
  2430. "z": 0
  2431. },
  2432. "_skewX": 0,
  2433. "_skewY": 0,
  2434. "_is3DNode": false,
  2435. "groupIndex": 0,
  2436. "_id": ""
  2437. },
  2438. {
  2439. "__type__": "cc.Sprite",
  2440. "_name": "",
  2441. "_objFlags": 0,
  2442. "node": {
  2443. "__id__": 64
  2444. },
  2445. "_enabled": false,
  2446. "_materials": [
  2447. {
  2448. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2449. }
  2450. ],
  2451. "_srcBlendFactor": 770,
  2452. "_dstBlendFactor": 771,
  2453. "_spriteFrame": {
  2454. "__uuid__": "ff0e91c7-55c6-4086-a39f-cb6e457b8c3b"
  2455. },
  2456. "_type": 1,
  2457. "_sizeMode": 0,
  2458. "_fillType": 0,
  2459. "_fillCenter": {
  2460. "__type__": "cc.Vec2",
  2461. "x": 0,
  2462. "y": 0
  2463. },
  2464. "_fillStart": 0,
  2465. "_fillRange": 0,
  2466. "_isTrimmedMode": true,
  2467. "_atlas": null,
  2468. "_id": ""
  2469. },
  2470. {
  2471. "__type__": "cc.Widget",
  2472. "_name": "",
  2473. "_objFlags": 0,
  2474. "node": {
  2475. "__id__": 64
  2476. },
  2477. "_enabled": true,
  2478. "alignMode": 0,
  2479. "_target": null,
  2480. "_alignFlags": 45,
  2481. "_left": 0,
  2482. "_right": 0,
  2483. "_top": 0,
  2484. "_bottom": 0,
  2485. "_verticalCenter": 0,
  2486. "_horizontalCenter": 0,
  2487. "_isAbsLeft": true,
  2488. "_isAbsRight": true,
  2489. "_isAbsTop": true,
  2490. "_isAbsBottom": true,
  2491. "_isAbsHorizontalCenter": true,
  2492. "_isAbsVerticalCenter": true,
  2493. "_originalWidth": 160,
  2494. "_originalHeight": 40,
  2495. "_id": ""
  2496. },
  2497. {
  2498. "__type__": "cc.PrefabInfo",
  2499. "root": {
  2500. "__id__": 1
  2501. },
  2502. "asset": {
  2503. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  2504. },
  2505. "fileId": "77sOmxhCBD4oFVM5LSd2Xl",
  2506. "sync": false
  2507. },
  2508. {
  2509. "__type__": "cc.Node",
  2510. "_name": "TEXT_LABEL",
  2511. "_objFlags": 0,
  2512. "_parent": {
  2513. "__id__": 63
  2514. },
  2515. "_children": [],
  2516. "_active": false,
  2517. "_level": 2,
  2518. "_components": [
  2519. {
  2520. "__id__": 69
  2521. },
  2522. {
  2523. "__id__": 70
  2524. }
  2525. ],
  2526. "_prefab": {
  2527. "__id__": 71
  2528. },
  2529. "_opacity": 255,
  2530. "_color": {
  2531. "__type__": "cc.Color",
  2532. "r": 0,
  2533. "g": 0,
  2534. "b": 0,
  2535. "a": 255
  2536. },
  2537. "_contentSize": {
  2538. "__type__": "cc.Size",
  2539. "width": 150,
  2540. "height": 40
  2541. },
  2542. "_anchorPoint": {
  2543. "__type__": "cc.Vec2",
  2544. "x": 0,
  2545. "y": 1
  2546. },
  2547. "_position": {
  2548. "__type__": "cc.Vec3",
  2549. "x": -72.518,
  2550. "y": 20,
  2551. "z": 0
  2552. },
  2553. "_scale": {
  2554. "__type__": "cc.Vec3",
  2555. "x": 1,
  2556. "y": 1,
  2557. "z": 1
  2558. },
  2559. "_eulerAngles": {
  2560. "__type__": "cc.Vec3",
  2561. "x": 0,
  2562. "y": 0,
  2563. "z": 0
  2564. },
  2565. "_skewX": 0,
  2566. "_skewY": 0,
  2567. "_is3DNode": false,
  2568. "groupIndex": 0,
  2569. "_id": ""
  2570. },
  2571. {
  2572. "__type__": "cc.Label",
  2573. "_name": "",
  2574. "_objFlags": 0,
  2575. "node": {
  2576. "__id__": 68
  2577. },
  2578. "_enabled": true,
  2579. "_materials": [],
  2580. "_useOriginalSize": true,
  2581. "_string": "",
  2582. "_N$string": "",
  2583. "_fontSize": 20,
  2584. "_lineHeight": 25,
  2585. "_enableWrapText": false,
  2586. "_N$file": null,
  2587. "_isSystemFontUsed": true,
  2588. "_spacingX": 0,
  2589. "_batchAsBitmap": false,
  2590. "_N$horizontalAlign": 0,
  2591. "_N$verticalAlign": 1,
  2592. "_N$fontFamily": "Arial",
  2593. "_N$overflow": 1,
  2594. "_N$cacheMode": 0,
  2595. "_id": ""
  2596. },
  2597. {
  2598. "__type__": "cc.Widget",
  2599. "_name": "",
  2600. "_objFlags": 0,
  2601. "node": {
  2602. "__id__": 68
  2603. },
  2604. "_enabled": true,
  2605. "alignMode": 0,
  2606. "_target": null,
  2607. "_alignFlags": 45,
  2608. "_left": 2,
  2609. "_right": 0,
  2610. "_top": 0,
  2611. "_bottom": 0,
  2612. "_verticalCenter": 0,
  2613. "_horizontalCenter": 0,
  2614. "_isAbsLeft": true,
  2615. "_isAbsRight": true,
  2616. "_isAbsTop": true,
  2617. "_isAbsBottom": true,
  2618. "_isAbsHorizontalCenter": true,
  2619. "_isAbsVerticalCenter": true,
  2620. "_originalWidth": 158,
  2621. "_originalHeight": 40,
  2622. "_id": ""
  2623. },
  2624. {
  2625. "__type__": "cc.PrefabInfo",
  2626. "root": {
  2627. "__id__": 1
  2628. },
  2629. "asset": {
  2630. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  2631. },
  2632. "fileId": "a8kw61KrRIXIz52xmg0QfM",
  2633. "sync": false
  2634. },
  2635. {
  2636. "__type__": "cc.Node",
  2637. "_name": "PLACEHOLDER_LABEL",
  2638. "_objFlags": 0,
  2639. "_parent": {
  2640. "__id__": 63
  2641. },
  2642. "_children": [],
  2643. "_active": true,
  2644. "_level": 2,
  2645. "_components": [
  2646. {
  2647. "__id__": 73
  2648. },
  2649. {
  2650. "__id__": 74
  2651. }
  2652. ],
  2653. "_prefab": {
  2654. "__id__": 75
  2655. },
  2656. "_opacity": 255,
  2657. "_color": {
  2658. "__type__": "cc.Color",
  2659. "r": 0,
  2660. "g": 0,
  2661. "b": 0,
  2662. "a": 255
  2663. },
  2664. "_contentSize": {
  2665. "__type__": "cc.Size",
  2666. "width": 150,
  2667. "height": 40
  2668. },
  2669. "_anchorPoint": {
  2670. "__type__": "cc.Vec2",
  2671. "x": 0,
  2672. "y": 1
  2673. },
  2674. "_position": {
  2675. "__type__": "cc.Vec3",
  2676. "x": -72.518,
  2677. "y": 20,
  2678. "z": 0
  2679. },
  2680. "_scale": {
  2681. "__type__": "cc.Vec3",
  2682. "x": 1,
  2683. "y": 1,
  2684. "z": 1
  2685. },
  2686. "_eulerAngles": {
  2687. "__type__": "cc.Vec3",
  2688. "x": 0,
  2689. "y": 0,
  2690. "z": 0
  2691. },
  2692. "_skewX": 0,
  2693. "_skewY": 0,
  2694. "_is3DNode": false,
  2695. "groupIndex": 0,
  2696. "_id": ""
  2697. },
  2698. {
  2699. "__type__": "cc.Label",
  2700. "_name": "",
  2701. "_objFlags": 0,
  2702. "node": {
  2703. "__id__": 72
  2704. },
  2705. "_enabled": true,
  2706. "_materials": [
  2707. {
  2708. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2709. }
  2710. ],
  2711. "_useOriginalSize": true,
  2712. "_string": "输入租赁的倍数",
  2713. "_N$string": "输入租赁的倍数",
  2714. "_fontSize": 20,
  2715. "_lineHeight": 25,
  2716. "_enableWrapText": false,
  2717. "_N$file": null,
  2718. "_isSystemFontUsed": true,
  2719. "_spacingX": 0,
  2720. "_batchAsBitmap": false,
  2721. "_N$horizontalAlign": 0,
  2722. "_N$verticalAlign": 1,
  2723. "_N$fontFamily": "Arial",
  2724. "_N$overflow": 1,
  2725. "_N$cacheMode": 0,
  2726. "_id": ""
  2727. },
  2728. {
  2729. "__type__": "cc.Widget",
  2730. "_name": "",
  2731. "_objFlags": 0,
  2732. "node": {
  2733. "__id__": 72
  2734. },
  2735. "_enabled": true,
  2736. "alignMode": 0,
  2737. "_target": null,
  2738. "_alignFlags": 45,
  2739. "_left": 7.481999999999999,
  2740. "_right": 2.5180000000000007,
  2741. "_top": 0,
  2742. "_bottom": 0,
  2743. "_verticalCenter": 0,
  2744. "_horizontalCenter": 0,
  2745. "_isAbsLeft": true,
  2746. "_isAbsRight": true,
  2747. "_isAbsTop": true,
  2748. "_isAbsBottom": true,
  2749. "_isAbsHorizontalCenter": true,
  2750. "_isAbsVerticalCenter": true,
  2751. "_originalWidth": 158,
  2752. "_originalHeight": 40,
  2753. "_id": ""
  2754. },
  2755. {
  2756. "__type__": "cc.PrefabInfo",
  2757. "root": {
  2758. "__id__": 1
  2759. },
  2760. "asset": {
  2761. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  2762. },
  2763. "fileId": "1d/2b4VolG3KpXSd+ovY3R",
  2764. "sync": false
  2765. },
  2766. {
  2767. "__type__": "cc.EditBox",
  2768. "_name": "",
  2769. "_objFlags": 0,
  2770. "node": {
  2771. "__id__": 63
  2772. },
  2773. "_enabled": true,
  2774. "_useOriginalSize": false,
  2775. "_string": "",
  2776. "returnType": 0,
  2777. "maxLength": 8,
  2778. "_tabIndex": 0,
  2779. "editingDidBegan": [],
  2780. "textChanged": [
  2781. {
  2782. "__id__": 77
  2783. }
  2784. ],
  2785. "editingDidEnded": [],
  2786. "editingReturn": [],
  2787. "_N$textLabel": {
  2788. "__id__": 69
  2789. },
  2790. "_N$placeholderLabel": {
  2791. "__id__": 73
  2792. },
  2793. "_N$background": {
  2794. "__id__": 65
  2795. },
  2796. "_N$inputFlag": 5,
  2797. "_N$inputMode": 3,
  2798. "_N$stayOnTop": false,
  2799. "_id": ""
  2800. },
  2801. {
  2802. "__type__": "cc.ClickEvent",
  2803. "target": {
  2804. "__id__": 1
  2805. },
  2806. "component": "",
  2807. "_componentId": "c2ecdxgPgxIaJQDwmKcBgZr",
  2808. "handler": "inputLeaseValue",
  2809. "customEventData": ""
  2810. },
  2811. {
  2812. "__type__": "cc.PrefabInfo",
  2813. "root": {
  2814. "__id__": 1
  2815. },
  2816. "asset": {
  2817. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  2818. },
  2819. "fileId": "4bfxuGzNZAJ7t9OoIuB/X5",
  2820. "sync": false
  2821. },
  2822. {
  2823. "__type__": "cc.Sprite",
  2824. "_name": "",
  2825. "_objFlags": 0,
  2826. "node": {
  2827. "__id__": 59
  2828. },
  2829. "_enabled": true,
  2830. "_materials": [
  2831. {
  2832. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2833. }
  2834. ],
  2835. "_srcBlendFactor": 770,
  2836. "_dstBlendFactor": 771,
  2837. "_spriteFrame": {
  2838. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  2839. },
  2840. "_type": 0,
  2841. "_sizeMode": 0,
  2842. "_fillType": 0,
  2843. "_fillCenter": {
  2844. "__type__": "cc.Vec2",
  2845. "x": 0,
  2846. "y": 0
  2847. },
  2848. "_fillStart": 0,
  2849. "_fillRange": 0,
  2850. "_isTrimmedMode": true,
  2851. "_atlas": null,
  2852. "_id": ""
  2853. },
  2854. {
  2855. "__type__": "cc.PrefabInfo",
  2856. "root": {
  2857. "__id__": 1
  2858. },
  2859. "asset": {
  2860. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  2861. },
  2862. "fileId": "87P/a2yZRFSI/W1uwCdJA1",
  2863. "sync": false
  2864. },
  2865. {
  2866. "__type__": "cc.Node",
  2867. "_name": "Container3",
  2868. "_objFlags": 0,
  2869. "_parent": {
  2870. "__id__": 1
  2871. },
  2872. "_children": [
  2873. {
  2874. "__id__": 82
  2875. },
  2876. {
  2877. "__id__": 85
  2878. }
  2879. ],
  2880. "_active": true,
  2881. "_level": 5,
  2882. "_components": [],
  2883. "_prefab": {
  2884. "__id__": 88
  2885. },
  2886. "_opacity": 255,
  2887. "_color": {
  2888. "__type__": "cc.Color",
  2889. "r": 228,
  2890. "g": 244,
  2891. "b": 249,
  2892. "a": 255
  2893. },
  2894. "_contentSize": {
  2895. "__type__": "cc.Size",
  2896. "width": 200,
  2897. "height": 50
  2898. },
  2899. "_anchorPoint": {
  2900. "__type__": "cc.Vec2",
  2901. "x": 0.5,
  2902. "y": 0.5
  2903. },
  2904. "_position": {
  2905. "__type__": "cc.Vec3",
  2906. "x": 34.263,
  2907. "y": -67.282,
  2908. "z": 0
  2909. },
  2910. "_scale": {
  2911. "__type__": "cc.Vec3",
  2912. "x": 1,
  2913. "y": 1,
  2914. "z": 1
  2915. },
  2916. "_eulerAngles": {
  2917. "__type__": "cc.Vec3",
  2918. "x": 0,
  2919. "y": 0,
  2920. "z": 0
  2921. },
  2922. "_skewX": 0,
  2923. "_skewY": 0,
  2924. "_is3DNode": false,
  2925. "groupIndex": 0,
  2926. "_id": ""
  2927. },
  2928. {
  2929. "__type__": "cc.Node",
  2930. "_name": "text3",
  2931. "_objFlags": 0,
  2932. "_parent": {
  2933. "__id__": 81
  2934. },
  2935. "_children": [],
  2936. "_active": true,
  2937. "_level": 6,
  2938. "_components": [
  2939. {
  2940. "__id__": 83
  2941. }
  2942. ],
  2943. "_prefab": {
  2944. "__id__": 84
  2945. },
  2946. "_opacity": 255,
  2947. "_color": {
  2948. "__type__": "cc.Color",
  2949. "r": 42,
  2950. "g": 155,
  2951. "b": 200,
  2952. "a": 255
  2953. },
  2954. "_contentSize": {
  2955. "__type__": "cc.Size",
  2956. "width": 114,
  2957. "height": 47.88
  2958. },
  2959. "_anchorPoint": {
  2960. "__type__": "cc.Vec2",
  2961. "x": 0,
  2962. "y": 0.5
  2963. },
  2964. "_position": {
  2965. "__type__": "cc.Vec3",
  2966. "x": -179.031,
  2967. "y": 0,
  2968. "z": 0
  2969. },
  2970. "_scale": {
  2971. "__type__": "cc.Vec3",
  2972. "x": 0.644,
  2973. "y": 0.644,
  2974. "z": 0.644
  2975. },
  2976. "_eulerAngles": {
  2977. "__type__": "cc.Vec3",
  2978. "x": 0,
  2979. "y": 0,
  2980. "z": 0
  2981. },
  2982. "_skewX": 0,
  2983. "_skewY": 0,
  2984. "_is3DNode": false,
  2985. "groupIndex": 0,
  2986. "_id": ""
  2987. },
  2988. {
  2989. "__type__": "cc.Label",
  2990. "_name": "",
  2991. "_objFlags": 0,
  2992. "node": {
  2993. "__id__": 82
  2994. },
  2995. "_enabled": true,
  2996. "_materials": [
  2997. {
  2998. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2999. }
  3000. ],
  3001. "_useOriginalSize": false,
  3002. "_string": "简介:",
  3003. "_N$string": "简介:",
  3004. "_fontSize": 38,
  3005. "_lineHeight": 38,
  3006. "_enableWrapText": true,
  3007. "_N$file": null,
  3008. "_isSystemFontUsed": true,
  3009. "_spacingX": 0,
  3010. "_batchAsBitmap": false,
  3011. "_N$horizontalAlign": 1,
  3012. "_N$verticalAlign": 1,
  3013. "_N$fontFamily": "Arial",
  3014. "_N$overflow": 0,
  3015. "_N$cacheMode": 0,
  3016. "_id": ""
  3017. },
  3018. {
  3019. "__type__": "cc.PrefabInfo",
  3020. "root": {
  3021. "__id__": 1
  3022. },
  3023. "asset": {
  3024. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  3025. },
  3026. "fileId": "aaA39lDblHAodl2mesWPHw",
  3027. "sync": false
  3028. },
  3029. {
  3030. "__type__": "cc.Node",
  3031. "_name": "text3_value",
  3032. "_objFlags": 0,
  3033. "_parent": {
  3034. "__id__": 81
  3035. },
  3036. "_children": [],
  3037. "_active": true,
  3038. "_level": 6,
  3039. "_components": [
  3040. {
  3041. "__id__": 86
  3042. }
  3043. ],
  3044. "_prefab": {
  3045. "__id__": 87
  3046. },
  3047. "_opacity": 255,
  3048. "_color": {
  3049. "__type__": "cc.Color",
  3050. "r": 255,
  3051. "g": 137,
  3052. "b": 165,
  3053. "a": 255
  3054. },
  3055. "_contentSize": {
  3056. "__type__": "cc.Size",
  3057. "width": 312,
  3058. "height": 102.24
  3059. },
  3060. "_anchorPoint": {
  3061. "__type__": "cc.Vec2",
  3062. "x": 0,
  3063. "y": 0.5
  3064. },
  3065. "_position": {
  3066. "__type__": "cc.Vec3",
  3067. "x": -102.282,
  3068. "y": -11.792,
  3069. "z": 0
  3070. },
  3071. "_scale": {
  3072. "__type__": "cc.Vec3",
  3073. "x": 0.644,
  3074. "y": 0.644,
  3075. "z": 0.644
  3076. },
  3077. "_eulerAngles": {
  3078. "__type__": "cc.Vec3",
  3079. "x": 0,
  3080. "y": 0,
  3081. "z": 0
  3082. },
  3083. "_skewX": 0,
  3084. "_skewY": 0,
  3085. "_is3DNode": false,
  3086. "groupIndex": 0,
  3087. "_id": ""
  3088. },
  3089. {
  3090. "__type__": "cc.Label",
  3091. "_name": "",
  3092. "_objFlags": 0,
  3093. "node": {
  3094. "__id__": 85
  3095. },
  3096. "_enabled": true,
  3097. "_materials": [
  3098. {
  3099. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3100. }
  3101. ],
  3102. "_useOriginalSize": false,
  3103. "_string": "可用与种植农作用,购买种子\n播种到土地,等农作物成熟后\n收获到仓库,售卖之后可获得\n神农贝。",
  3104. "_N$string": "可用与种植农作用,购买种子\n播种到土地,等农作物成熟后\n收获到仓库,售卖之后可获得\n神农贝。",
  3105. "_fontSize": 24,
  3106. "_lineHeight": 24,
  3107. "_enableWrapText": true,
  3108. "_N$file": null,
  3109. "_isSystemFontUsed": true,
  3110. "_spacingX": 0,
  3111. "_batchAsBitmap": false,
  3112. "_N$horizontalAlign": 1,
  3113. "_N$verticalAlign": 1,
  3114. "_N$fontFamily": "Arial",
  3115. "_N$overflow": 0,
  3116. "_N$cacheMode": 0,
  3117. "_id": ""
  3118. },
  3119. {
  3120. "__type__": "cc.PrefabInfo",
  3121. "root": {
  3122. "__id__": 1
  3123. },
  3124. "asset": {
  3125. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  3126. },
  3127. "fileId": "49GsZdKclFAqntzdCcedqN",
  3128. "sync": false
  3129. },
  3130. {
  3131. "__type__": "cc.PrefabInfo",
  3132. "root": {
  3133. "__id__": 1
  3134. },
  3135. "asset": {
  3136. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  3137. },
  3138. "fileId": "f5Wn+t1sBJbYl+Fh3URygV",
  3139. "sync": false
  3140. },
  3141. {
  3142. "__type__": "cc.Node",
  3143. "_name": "button",
  3144. "_objFlags": 0,
  3145. "_parent": {
  3146. "__id__": 1
  3147. },
  3148. "_children": [
  3149. {
  3150. "__id__": 90
  3151. }
  3152. ],
  3153. "_active": true,
  3154. "_level": 5,
  3155. "_components": [
  3156. {
  3157. "__id__": 94
  3158. }
  3159. ],
  3160. "_prefab": {
  3161. "__id__": 96
  3162. },
  3163. "_opacity": 255,
  3164. "_color": {
  3165. "__type__": "cc.Color",
  3166. "r": 255,
  3167. "g": 255,
  3168. "b": 255,
  3169. "a": 255
  3170. },
  3171. "_contentSize": {
  3172. "__type__": "cc.Size",
  3173. "width": 100,
  3174. "height": 50
  3175. },
  3176. "_anchorPoint": {
  3177. "__type__": "cc.Vec2",
  3178. "x": 0.5,
  3179. "y": 0.5
  3180. },
  3181. "_position": {
  3182. "__type__": "cc.Vec3",
  3183. "x": 0,
  3184. "y": -148.3,
  3185. "z": 0
  3186. },
  3187. "_scale": {
  3188. "__type__": "cc.Vec3",
  3189. "x": 1,
  3190. "y": 1,
  3191. "z": 1
  3192. },
  3193. "_eulerAngles": {
  3194. "__type__": "cc.Vec3",
  3195. "x": 0,
  3196. "y": 0,
  3197. "z": 0
  3198. },
  3199. "_skewX": 0,
  3200. "_skewY": 0,
  3201. "_is3DNode": false,
  3202. "groupIndex": 0,
  3203. "_id": ""
  3204. },
  3205. {
  3206. "__type__": "cc.Node",
  3207. "_name": "Background",
  3208. "_objFlags": 0,
  3209. "_parent": {
  3210. "__id__": 89
  3211. },
  3212. "_children": [],
  3213. "_active": true,
  3214. "_level": 2,
  3215. "_components": [
  3216. {
  3217. "__id__": 91
  3218. },
  3219. {
  3220. "__id__": 92
  3221. }
  3222. ],
  3223. "_prefab": {
  3224. "__id__": 93
  3225. },
  3226. "_opacity": 255,
  3227. "_color": {
  3228. "__type__": "cc.Color",
  3229. "r": 255,
  3230. "g": 255,
  3231. "b": 255,
  3232. "a": 255
  3233. },
  3234. "_contentSize": {
  3235. "__type__": "cc.Size",
  3236. "width": 100,
  3237. "height": 50
  3238. },
  3239. "_anchorPoint": {
  3240. "__type__": "cc.Vec2",
  3241. "x": 0.5,
  3242. "y": 0.5
  3243. },
  3244. "_position": {
  3245. "__type__": "cc.Vec3",
  3246. "x": 0,
  3247. "y": 0,
  3248. "z": 0
  3249. },
  3250. "_scale": {
  3251. "__type__": "cc.Vec3",
  3252. "x": 1,
  3253. "y": 1,
  3254. "z": 1
  3255. },
  3256. "_eulerAngles": {
  3257. "__type__": "cc.Vec3",
  3258. "x": 0,
  3259. "y": 0,
  3260. "z": 0
  3261. },
  3262. "_skewX": 0,
  3263. "_skewY": 0,
  3264. "_is3DNode": false,
  3265. "groupIndex": 0,
  3266. "_id": ""
  3267. },
  3268. {
  3269. "__type__": "cc.Sprite",
  3270. "_name": "",
  3271. "_objFlags": 0,
  3272. "node": {
  3273. "__id__": 90
  3274. },
  3275. "_enabled": true,
  3276. "_materials": [
  3277. {
  3278. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3279. }
  3280. ],
  3281. "_srcBlendFactor": 770,
  3282. "_dstBlendFactor": 771,
  3283. "_spriteFrame": {
  3284. "__uuid__": "93ae74ef-0216-4b89-8bcb-eca92fd67740"
  3285. },
  3286. "_type": 1,
  3287. "_sizeMode": 0,
  3288. "_fillType": 0,
  3289. "_fillCenter": {
  3290. "__type__": "cc.Vec2",
  3291. "x": 0,
  3292. "y": 0
  3293. },
  3294. "_fillStart": 0,
  3295. "_fillRange": 0,
  3296. "_isTrimmedMode": true,
  3297. "_atlas": null,
  3298. "_id": ""
  3299. },
  3300. {
  3301. "__type__": "cc.Widget",
  3302. "_name": "",
  3303. "_objFlags": 0,
  3304. "node": {
  3305. "__id__": 90
  3306. },
  3307. "_enabled": true,
  3308. "alignMode": 0,
  3309. "_target": null,
  3310. "_alignFlags": 45,
  3311. "_left": 0,
  3312. "_right": 0,
  3313. "_top": 0,
  3314. "_bottom": 0,
  3315. "_verticalCenter": 0,
  3316. "_horizontalCenter": 0,
  3317. "_isAbsLeft": true,
  3318. "_isAbsRight": true,
  3319. "_isAbsTop": true,
  3320. "_isAbsBottom": true,
  3321. "_isAbsHorizontalCenter": true,
  3322. "_isAbsVerticalCenter": true,
  3323. "_originalWidth": 100,
  3324. "_originalHeight": 40,
  3325. "_id": ""
  3326. },
  3327. {
  3328. "__type__": "cc.PrefabInfo",
  3329. "root": {
  3330. "__id__": 1
  3331. },
  3332. "asset": {
  3333. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  3334. },
  3335. "fileId": "camQlyaXFKtqBIMTgjKhMh",
  3336. "sync": false
  3337. },
  3338. {
  3339. "__type__": "cc.Button",
  3340. "_name": "",
  3341. "_objFlags": 0,
  3342. "node": {
  3343. "__id__": 89
  3344. },
  3345. "_enabled": true,
  3346. "duration": 0.1,
  3347. "zoomScale": 1.2,
  3348. "clickEvents": [
  3349. {
  3350. "__id__": 95
  3351. }
  3352. ],
  3353. "_N$interactable": true,
  3354. "_N$enableAutoGrayEffect": false,
  3355. "_N$transition": 3,
  3356. "transition": 3,
  3357. "_N$normalColor": {
  3358. "__type__": "cc.Color",
  3359. "r": 230,
  3360. "g": 230,
  3361. "b": 230,
  3362. "a": 255
  3363. },
  3364. "_N$pressedColor": {
  3365. "__type__": "cc.Color",
  3366. "r": 200,
  3367. "g": 200,
  3368. "b": 200,
  3369. "a": 255
  3370. },
  3371. "pressedColor": {
  3372. "__type__": "cc.Color",
  3373. "r": 200,
  3374. "g": 200,
  3375. "b": 200,
  3376. "a": 255
  3377. },
  3378. "_N$hoverColor": {
  3379. "__type__": "cc.Color",
  3380. "r": 255,
  3381. "g": 255,
  3382. "b": 255,
  3383. "a": 255
  3384. },
  3385. "hoverColor": {
  3386. "__type__": "cc.Color",
  3387. "r": 255,
  3388. "g": 255,
  3389. "b": 255,
  3390. "a": 255
  3391. },
  3392. "_N$disabledColor": {
  3393. "__type__": "cc.Color",
  3394. "r": 120,
  3395. "g": 120,
  3396. "b": 120,
  3397. "a": 200
  3398. },
  3399. "_N$normalSprite": {
  3400. "__uuid__": "93ae74ef-0216-4b89-8bcb-eca92fd67740"
  3401. },
  3402. "_N$pressedSprite": {
  3403. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3404. },
  3405. "pressedSprite": {
  3406. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3407. },
  3408. "_N$hoverSprite": {
  3409. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3410. },
  3411. "hoverSprite": {
  3412. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3413. },
  3414. "_N$disabledSprite": {
  3415. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  3416. },
  3417. "_N$target": {
  3418. "__id__": 90
  3419. },
  3420. "_id": ""
  3421. },
  3422. {
  3423. "__type__": "cc.ClickEvent",
  3424. "target": {
  3425. "__id__": 1
  3426. },
  3427. "component": "",
  3428. "_componentId": "44137DozfJBcJ2mWQU1P352",
  3429. "handler": "onBindInviteInfo",
  3430. "customEventData": ""
  3431. },
  3432. {
  3433. "__type__": "cc.PrefabInfo",
  3434. "root": {
  3435. "__id__": 1
  3436. },
  3437. "asset": {
  3438. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  3439. },
  3440. "fileId": "e0wxf7ZrVFSo4zLMJU6lcl",
  3441. "sync": false
  3442. },
  3443. {
  3444. "__type__": "cc.Node",
  3445. "_name": "close",
  3446. "_objFlags": 0,
  3447. "_parent": {
  3448. "__id__": 1
  3449. },
  3450. "_children": [
  3451. {
  3452. "__id__": 98
  3453. }
  3454. ],
  3455. "_active": true,
  3456. "_level": 5,
  3457. "_components": [
  3458. {
  3459. "__id__": 102
  3460. }
  3461. ],
  3462. "_prefab": {
  3463. "__id__": 104
  3464. },
  3465. "_opacity": 255,
  3466. "_color": {
  3467. "__type__": "cc.Color",
  3468. "r": 255,
  3469. "g": 255,
  3470. "b": 255,
  3471. "a": 255
  3472. },
  3473. "_contentSize": {
  3474. "__type__": "cc.Size",
  3475. "width": 80,
  3476. "height": 80
  3477. },
  3478. "_anchorPoint": {
  3479. "__type__": "cc.Vec2",
  3480. "x": 0.5,
  3481. "y": 0.5
  3482. },
  3483. "_position": {
  3484. "__type__": "cc.Vec3",
  3485. "x": 174.056,
  3486. "y": 190.219,
  3487. "z": 0
  3488. },
  3489. "_scale": {
  3490. "__type__": "cc.Vec3",
  3491. "x": 1,
  3492. "y": 1,
  3493. "z": 1
  3494. },
  3495. "_eulerAngles": {
  3496. "__type__": "cc.Vec3",
  3497. "x": 0,
  3498. "y": 0,
  3499. "z": 0
  3500. },
  3501. "_skewX": 0,
  3502. "_skewY": 0,
  3503. "_is3DNode": false,
  3504. "groupIndex": 0,
  3505. "_id": ""
  3506. },
  3507. {
  3508. "__type__": "cc.Node",
  3509. "_name": "Background",
  3510. "_objFlags": 0,
  3511. "_parent": {
  3512. "__id__": 97
  3513. },
  3514. "_children": [],
  3515. "_active": true,
  3516. "_level": 2,
  3517. "_components": [
  3518. {
  3519. "__id__": 99
  3520. },
  3521. {
  3522. "__id__": 100
  3523. }
  3524. ],
  3525. "_prefab": {
  3526. "__id__": 101
  3527. },
  3528. "_opacity": 255,
  3529. "_color": {
  3530. "__type__": "cc.Color",
  3531. "r": 255,
  3532. "g": 255,
  3533. "b": 255,
  3534. "a": 255
  3535. },
  3536. "_contentSize": {
  3537. "__type__": "cc.Size",
  3538. "width": 80,
  3539. "height": 80
  3540. },
  3541. "_anchorPoint": {
  3542. "__type__": "cc.Vec2",
  3543. "x": 0.5,
  3544. "y": 0.5
  3545. },
  3546. "_position": {
  3547. "__type__": "cc.Vec3",
  3548. "x": 0,
  3549. "y": 0,
  3550. "z": 0
  3551. },
  3552. "_scale": {
  3553. "__type__": "cc.Vec3",
  3554. "x": 1,
  3555. "y": 1,
  3556. "z": 1
  3557. },
  3558. "_eulerAngles": {
  3559. "__type__": "cc.Vec3",
  3560. "x": 0,
  3561. "y": 0,
  3562. "z": 0
  3563. },
  3564. "_skewX": 0,
  3565. "_skewY": 0,
  3566. "_is3DNode": false,
  3567. "groupIndex": 0,
  3568. "_id": ""
  3569. },
  3570. {
  3571. "__type__": "cc.Sprite",
  3572. "_name": "",
  3573. "_objFlags": 0,
  3574. "node": {
  3575. "__id__": 98
  3576. },
  3577. "_enabled": true,
  3578. "_materials": [
  3579. {
  3580. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3581. }
  3582. ],
  3583. "_srcBlendFactor": 770,
  3584. "_dstBlendFactor": 771,
  3585. "_spriteFrame": {
  3586. "__uuid__": "60d0ea3b-b0a3-4544-84f0-48914bceb893"
  3587. },
  3588. "_type": 1,
  3589. "_sizeMode": 0,
  3590. "_fillType": 0,
  3591. "_fillCenter": {
  3592. "__type__": "cc.Vec2",
  3593. "x": 0,
  3594. "y": 0
  3595. },
  3596. "_fillStart": 0,
  3597. "_fillRange": 0,
  3598. "_isTrimmedMode": true,
  3599. "_atlas": null,
  3600. "_id": ""
  3601. },
  3602. {
  3603. "__type__": "cc.Widget",
  3604. "_name": "",
  3605. "_objFlags": 0,
  3606. "node": {
  3607. "__id__": 98
  3608. },
  3609. "_enabled": true,
  3610. "alignMode": 0,
  3611. "_target": null,
  3612. "_alignFlags": 45,
  3613. "_left": 0,
  3614. "_right": 0,
  3615. "_top": 0,
  3616. "_bottom": 0,
  3617. "_verticalCenter": 0,
  3618. "_horizontalCenter": 0,
  3619. "_isAbsLeft": true,
  3620. "_isAbsRight": true,
  3621. "_isAbsTop": true,
  3622. "_isAbsBottom": true,
  3623. "_isAbsHorizontalCenter": true,
  3624. "_isAbsVerticalCenter": true,
  3625. "_originalWidth": 100,
  3626. "_originalHeight": 40,
  3627. "_id": ""
  3628. },
  3629. {
  3630. "__type__": "cc.PrefabInfo",
  3631. "root": {
  3632. "__id__": 1
  3633. },
  3634. "asset": {
  3635. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  3636. },
  3637. "fileId": "47dnz4MUJFXZgamfxCjLOn",
  3638. "sync": false
  3639. },
  3640. {
  3641. "__type__": "cc.Button",
  3642. "_name": "",
  3643. "_objFlags": 0,
  3644. "node": {
  3645. "__id__": 97
  3646. },
  3647. "_enabled": true,
  3648. "duration": 0.1,
  3649. "zoomScale": 1.2,
  3650. "clickEvents": [
  3651. {
  3652. "__id__": 103
  3653. }
  3654. ],
  3655. "_N$interactable": true,
  3656. "_N$enableAutoGrayEffect": false,
  3657. "_N$transition": 3,
  3658. "transition": 3,
  3659. "_N$normalColor": {
  3660. "__type__": "cc.Color",
  3661. "r": 230,
  3662. "g": 230,
  3663. "b": 230,
  3664. "a": 255
  3665. },
  3666. "_N$pressedColor": {
  3667. "__type__": "cc.Color",
  3668. "r": 200,
  3669. "g": 200,
  3670. "b": 200,
  3671. "a": 255
  3672. },
  3673. "pressedColor": {
  3674. "__type__": "cc.Color",
  3675. "r": 200,
  3676. "g": 200,
  3677. "b": 200,
  3678. "a": 255
  3679. },
  3680. "_N$hoverColor": {
  3681. "__type__": "cc.Color",
  3682. "r": 255,
  3683. "g": 255,
  3684. "b": 255,
  3685. "a": 255
  3686. },
  3687. "hoverColor": {
  3688. "__type__": "cc.Color",
  3689. "r": 255,
  3690. "g": 255,
  3691. "b": 255,
  3692. "a": 255
  3693. },
  3694. "_N$disabledColor": {
  3695. "__type__": "cc.Color",
  3696. "r": 120,
  3697. "g": 120,
  3698. "b": 120,
  3699. "a": 200
  3700. },
  3701. "_N$normalSprite": {
  3702. "__uuid__": "60d0ea3b-b0a3-4544-84f0-48914bceb893"
  3703. },
  3704. "_N$pressedSprite": {
  3705. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3706. },
  3707. "pressedSprite": {
  3708. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3709. },
  3710. "_N$hoverSprite": {
  3711. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3712. },
  3713. "hoverSprite": {
  3714. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3715. },
  3716. "_N$disabledSprite": {
  3717. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  3718. },
  3719. "_N$target": {
  3720. "__id__": 98
  3721. },
  3722. "_id": ""
  3723. },
  3724. {
  3725. "__type__": "cc.ClickEvent",
  3726. "target": {
  3727. "__id__": 1
  3728. },
  3729. "component": "",
  3730. "_componentId": "44137DozfJBcJ2mWQU1P352",
  3731. "handler": "onBindInviteInfo",
  3732. "customEventData": ""
  3733. },
  3734. {
  3735. "__type__": "cc.PrefabInfo",
  3736. "root": {
  3737. "__id__": 1
  3738. },
  3739. "asset": {
  3740. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  3741. },
  3742. "fileId": "1fOaC/XrtHdqpIZPUOIW0Q",
  3743. "sync": false
  3744. },
  3745. {
  3746. "__type__": "cc.Node",
  3747. "_name": "parent",
  3748. "_objFlags": 0,
  3749. "_parent": {
  3750. "__id__": 1
  3751. },
  3752. "_children": [],
  3753. "_active": true,
  3754. "_level": 2,
  3755. "_components": [],
  3756. "_prefab": {
  3757. "__id__": 106
  3758. },
  3759. "_opacity": 255,
  3760. "_color": {
  3761. "__type__": "cc.Color",
  3762. "r": 255,
  3763. "g": 255,
  3764. "b": 255,
  3765. "a": 255
  3766. },
  3767. "_contentSize": {
  3768. "__type__": "cc.Size",
  3769. "width": 0,
  3770. "height": 0
  3771. },
  3772. "_anchorPoint": {
  3773. "__type__": "cc.Vec2",
  3774. "x": 0.5,
  3775. "y": 0.5
  3776. },
  3777. "_position": {
  3778. "__type__": "cc.Vec3",
  3779. "x": 0,
  3780. "y": 165.095,
  3781. "z": 0
  3782. },
  3783. "_scale": {
  3784. "__type__": "cc.Vec3",
  3785. "x": 1,
  3786. "y": 1,
  3787. "z": 1
  3788. },
  3789. "_eulerAngles": {
  3790. "__type__": "cc.Vec3",
  3791. "x": 0,
  3792. "y": 0,
  3793. "z": 0
  3794. },
  3795. "_skewX": 0,
  3796. "_skewY": 0,
  3797. "_is3DNode": false,
  3798. "groupIndex": 0,
  3799. "_id": ""
  3800. },
  3801. {
  3802. "__type__": "cc.PrefabInfo",
  3803. "root": {
  3804. "__id__": 1
  3805. },
  3806. "asset": {
  3807. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  3808. },
  3809. "fileId": "51FJwT0hBAL5hNfm4/aaF+",
  3810. "sync": false
  3811. },
  3812. {
  3813. "__type__": "c2ecdxgPgxIaJQDwmKcBgZr",
  3814. "_name": "",
  3815. "_objFlags": 0,
  3816. "node": {
  3817. "__id__": 1
  3818. },
  3819. "_enabled": true,
  3820. "inputInviteValue": "",
  3821. "ToastParent": {
  3822. "__id__": 105
  3823. },
  3824. "inputContainer": {
  3825. "__id__": 63
  3826. },
  3827. "_id": ""
  3828. },
  3829. {
  3830. "__type__": "cc.PrefabInfo",
  3831. "root": {
  3832. "__id__": 1
  3833. },
  3834. "asset": {
  3835. "__uuid__": "10b426c2-9b82-463d-afed-c8937398c6d8"
  3836. },
  3837. "fileId": "d0fI6pl+pLZ5UweTGDLWiI",
  3838. "sync": false
  3839. }
  3840. ]