LandInfo.prefab 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340
  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": "LandInfo",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 5
  25. },
  26. {
  27. "__id__": 49
  28. },
  29. {
  30. "__id__": 57
  31. }
  32. ],
  33. "_active": true,
  34. "_level": 1,
  35. "_components": [
  36. {
  37. "__id__": 65
  38. }
  39. ],
  40. "_prefab": {
  41. "__id__": 66
  42. },
  43. "_opacity": 255,
  44. "_color": {
  45. "__type__": "cc.Color",
  46. "r": 255,
  47. "g": 255,
  48. "b": 255,
  49. "a": 255
  50. },
  51. "_contentSize": {
  52. "__type__": "cc.Size",
  53. "width": 0,
  54. "height": 0
  55. },
  56. "_anchorPoint": {
  57. "__type__": "cc.Vec2",
  58. "x": 0.5,
  59. "y": 0.5
  60. },
  61. "_position": {
  62. "__type__": "cc.Vec3",
  63. "x": 0,
  64. "y": 0,
  65. "z": 0
  66. },
  67. "_scale": {
  68. "__type__": "cc.Vec3",
  69. "x": 1,
  70. "y": 1,
  71. "z": 1
  72. },
  73. "_eulerAngles": {
  74. "__type__": "cc.Vec3",
  75. "x": 0,
  76. "y": 0,
  77. "z": 0
  78. },
  79. "_skewX": 0,
  80. "_skewY": 0,
  81. "_is3DNode": false,
  82. "groupIndex": 0,
  83. "_id": ""
  84. },
  85. {
  86. "__type__": "cc.Node",
  87. "_name": "BG",
  88. "_objFlags": 0,
  89. "_parent": {
  90. "__id__": 1
  91. },
  92. "_children": [],
  93. "_active": true,
  94. "_level": 4,
  95. "_components": [
  96. {
  97. "__id__": 3
  98. }
  99. ],
  100. "_prefab": {
  101. "__id__": 4
  102. },
  103. "_opacity": 255,
  104. "_color": {
  105. "__type__": "cc.Color",
  106. "r": 255,
  107. "g": 255,
  108. "b": 255,
  109. "a": 255
  110. },
  111. "_contentSize": {
  112. "__type__": "cc.Size",
  113. "width": 594,
  114. "height": 629
  115. },
  116. "_anchorPoint": {
  117. "__type__": "cc.Vec2",
  118. "x": 0.5,
  119. "y": 0.5
  120. },
  121. "_position": {
  122. "__type__": "cc.Vec3",
  123. "x": 0,
  124. "y": 0,
  125. "z": 0
  126. },
  127. "_scale": {
  128. "__type__": "cc.Vec3",
  129. "x": 0.691,
  130. "y": 0.691,
  131. "z": 0.691
  132. },
  133. "_eulerAngles": {
  134. "__type__": "cc.Vec3",
  135. "x": 0,
  136. "y": 0,
  137. "z": 0
  138. },
  139. "_skewX": 0,
  140. "_skewY": 0,
  141. "_is3DNode": false,
  142. "groupIndex": 0,
  143. "_id": ""
  144. },
  145. {
  146. "__type__": "cc.Sprite",
  147. "_name": "",
  148. "_objFlags": 0,
  149. "node": {
  150. "__id__": 2
  151. },
  152. "_enabled": true,
  153. "_materials": [
  154. {
  155. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  156. }
  157. ],
  158. "_srcBlendFactor": 770,
  159. "_dstBlendFactor": 771,
  160. "_spriteFrame": {
  161. "__uuid__": "46c87ac7-f3f8-40d6-961f-620894961285"
  162. },
  163. "_type": 0,
  164. "_sizeMode": 1,
  165. "_fillType": 0,
  166. "_fillCenter": {
  167. "__type__": "cc.Vec2",
  168. "x": 0,
  169. "y": 0
  170. },
  171. "_fillStart": 0,
  172. "_fillRange": 0,
  173. "_isTrimmedMode": true,
  174. "_atlas": null,
  175. "_id": ""
  176. },
  177. {
  178. "__type__": "cc.PrefabInfo",
  179. "root": {
  180. "__id__": 1
  181. },
  182. "asset": {
  183. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  184. },
  185. "fileId": "574GWT8apM7JnMq27mckzZ",
  186. "sync": false
  187. },
  188. {
  189. "__type__": "cc.Node",
  190. "_name": "Container1",
  191. "_objFlags": 0,
  192. "_parent": {
  193. "__id__": 1
  194. },
  195. "_children": [
  196. {
  197. "__id__": 6
  198. },
  199. {
  200. "__id__": 14
  201. },
  202. {
  203. "__id__": 22
  204. },
  205. {
  206. "__id__": 30
  207. },
  208. {
  209. "__id__": 38
  210. }
  211. ],
  212. "_active": true,
  213. "_level": 5,
  214. "_components": [
  215. {
  216. "__id__": 46
  217. },
  218. {
  219. "__id__": 47
  220. }
  221. ],
  222. "_prefab": {
  223. "__id__": 48
  224. },
  225. "_opacity": 255,
  226. "_color": {
  227. "__type__": "cc.Color",
  228. "r": 228,
  229. "g": 244,
  230. "b": 249,
  231. "a": 255
  232. },
  233. "_contentSize": {
  234. "__type__": "cc.Size",
  235. "width": 300,
  236. "height": 200
  237. },
  238. "_anchorPoint": {
  239. "__type__": "cc.Vec2",
  240. "x": 0.5,
  241. "y": 1
  242. },
  243. "_position": {
  244. "__type__": "cc.Vec3",
  245. "x": 0,
  246. "y": 153.861,
  247. "z": 0
  248. },
  249. "_scale": {
  250. "__type__": "cc.Vec3",
  251. "x": 1,
  252. "y": 1,
  253. "z": 1
  254. },
  255. "_eulerAngles": {
  256. "__type__": "cc.Vec3",
  257. "x": 0,
  258. "y": 0,
  259. "z": 0
  260. },
  261. "_skewX": 0,
  262. "_skewY": 0,
  263. "_is3DNode": false,
  264. "groupIndex": 0,
  265. "_id": ""
  266. },
  267. {
  268. "__type__": "cc.Node",
  269. "_name": "1",
  270. "_objFlags": 0,
  271. "_parent": {
  272. "__id__": 5
  273. },
  274. "_children": [
  275. {
  276. "__id__": 7
  277. },
  278. {
  279. "__id__": 10
  280. }
  281. ],
  282. "_active": true,
  283. "_level": 6,
  284. "_components": [],
  285. "_prefab": {
  286. "__id__": 13
  287. },
  288. "_opacity": 255,
  289. "_color": {
  290. "__type__": "cc.Color",
  291. "r": 255,
  292. "g": 255,
  293. "b": 255,
  294. "a": 255
  295. },
  296. "_contentSize": {
  297. "__type__": "cc.Size",
  298. "width": 0,
  299. "height": 0
  300. },
  301. "_anchorPoint": {
  302. "__type__": "cc.Vec2",
  303. "x": 0.5,
  304. "y": 0.5
  305. },
  306. "_position": {
  307. "__type__": "cc.Vec3",
  308. "x": 7,
  309. "y": -30,
  310. "z": 0
  311. },
  312. "_scale": {
  313. "__type__": "cc.Vec3",
  314. "x": 1,
  315. "y": 1,
  316. "z": 1
  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.Node",
  332. "_name": "text1",
  333. "_objFlags": 0,
  334. "_parent": {
  335. "__id__": 6
  336. },
  337. "_children": [],
  338. "_active": true,
  339. "_level": 7,
  340. "_components": [
  341. {
  342. "__id__": 8
  343. }
  344. ],
  345. "_prefab": {
  346. "__id__": 9
  347. },
  348. "_opacity": 255,
  349. "_color": {
  350. "__type__": "cc.Color",
  351. "r": 42,
  352. "g": 155,
  353. "b": 200,
  354. "a": 255
  355. },
  356. "_contentSize": {
  357. "__type__": "cc.Size",
  358. "width": 91.11,
  359. "height": 50.4
  360. },
  361. "_anchorPoint": {
  362. "__type__": "cc.Vec2",
  363. "x": 0.5,
  364. "y": 0.5
  365. },
  366. "_position": {
  367. "__type__": "cc.Vec3",
  368. "x": -112.825,
  369. "y": 0,
  370. "z": 0
  371. },
  372. "_scale": {
  373. "__type__": "cc.Vec3",
  374. "x": 0.644,
  375. "y": 0.644,
  376. "z": 0.644
  377. },
  378. "_eulerAngles": {
  379. "__type__": "cc.Vec3",
  380. "x": 0,
  381. "y": 0,
  382. "z": 0
  383. },
  384. "_skewX": 0,
  385. "_skewY": 0,
  386. "_is3DNode": false,
  387. "groupIndex": 0,
  388. "_id": ""
  389. },
  390. {
  391. "__type__": "cc.Label",
  392. "_name": "",
  393. "_objFlags": 0,
  394. "node": {
  395. "__id__": 7
  396. },
  397. "_enabled": true,
  398. "_materials": [
  399. {
  400. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  401. }
  402. ],
  403. "_useOriginalSize": false,
  404. "_string": "租金:",
  405. "_N$string": "租金:",
  406. "_fontSize": 40,
  407. "_lineHeight": 40,
  408. "_enableWrapText": true,
  409. "_N$file": null,
  410. "_isSystemFontUsed": true,
  411. "_spacingX": 0,
  412. "_batchAsBitmap": false,
  413. "_N$horizontalAlign": 1,
  414. "_N$verticalAlign": 1,
  415. "_N$fontFamily": "Arial",
  416. "_N$overflow": 0,
  417. "_N$cacheMode": 0,
  418. "_id": ""
  419. },
  420. {
  421. "__type__": "cc.PrefabInfo",
  422. "root": {
  423. "__id__": 1
  424. },
  425. "asset": {
  426. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  427. },
  428. "fileId": "fasZDpV3dEtImP44Mhw8PH",
  429. "sync": false
  430. },
  431. {
  432. "__type__": "cc.Node",
  433. "_name": "text1_value",
  434. "_objFlags": 0,
  435. "_parent": {
  436. "__id__": 6
  437. },
  438. "_children": [],
  439. "_active": true,
  440. "_level": 7,
  441. "_components": [
  442. {
  443. "__id__": 11
  444. }
  445. ],
  446. "_prefab": {
  447. "__id__": 12
  448. },
  449. "_opacity": 255,
  450. "_color": {
  451. "__type__": "cc.Color",
  452. "r": 255,
  453. "g": 137,
  454. "b": 165,
  455. "a": 255
  456. },
  457. "_contentSize": {
  458. "__type__": "cc.Size",
  459. "width": 90.07,
  460. "height": 37.8
  461. },
  462. "_anchorPoint": {
  463. "__type__": "cc.Vec2",
  464. "x": 0,
  465. "y": 0.5
  466. },
  467. "_position": {
  468. "__type__": "cc.Vec3",
  469. "x": -69.286,
  470. "y": 0,
  471. "z": 0
  472. },
  473. "_scale": {
  474. "__type__": "cc.Vec3",
  475. "x": 0.644,
  476. "y": 0.644,
  477. "z": 0.644
  478. },
  479. "_eulerAngles": {
  480. "__type__": "cc.Vec3",
  481. "x": 0,
  482. "y": 0,
  483. "z": 0
  484. },
  485. "_skewX": 0,
  486. "_skewY": 0,
  487. "_is3DNode": false,
  488. "groupIndex": 0,
  489. "_id": ""
  490. },
  491. {
  492. "__type__": "cc.Label",
  493. "_name": "",
  494. "_objFlags": 0,
  495. "node": {
  496. "__id__": 10
  497. },
  498. "_enabled": true,
  499. "_materials": [
  500. {
  501. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  502. }
  503. ],
  504. "_useOriginalSize": false,
  505. "_string": "399cnt",
  506. "_N$string": "399cnt",
  507. "_fontSize": 30,
  508. "_lineHeight": 30,
  509. "_enableWrapText": true,
  510. "_N$file": null,
  511. "_isSystemFontUsed": true,
  512. "_spacingX": 0,
  513. "_batchAsBitmap": false,
  514. "_N$horizontalAlign": 1,
  515. "_N$verticalAlign": 1,
  516. "_N$fontFamily": "Arial",
  517. "_N$overflow": 0,
  518. "_N$cacheMode": 0,
  519. "_id": ""
  520. },
  521. {
  522. "__type__": "cc.PrefabInfo",
  523. "root": {
  524. "__id__": 1
  525. },
  526. "asset": {
  527. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  528. },
  529. "fileId": "671fRurClGiJr7ROvz4QSZ",
  530. "sync": false
  531. },
  532. {
  533. "__type__": "cc.PrefabInfo",
  534. "root": {
  535. "__id__": 1
  536. },
  537. "asset": {
  538. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  539. },
  540. "fileId": "9ck2/njBFAW7t6uGd/w+gt",
  541. "sync": false
  542. },
  543. {
  544. "__type__": "cc.Node",
  545. "_name": "2",
  546. "_objFlags": 0,
  547. "_parent": {
  548. "__id__": 5
  549. },
  550. "_children": [
  551. {
  552. "__id__": 15
  553. },
  554. {
  555. "__id__": 18
  556. }
  557. ],
  558. "_active": true,
  559. "_level": 6,
  560. "_components": [],
  561. "_prefab": {
  562. "__id__": 21
  563. },
  564. "_opacity": 255,
  565. "_color": {
  566. "__type__": "cc.Color",
  567. "r": 255,
  568. "g": 255,
  569. "b": 255,
  570. "a": 255
  571. },
  572. "_contentSize": {
  573. "__type__": "cc.Size",
  574. "width": 0,
  575. "height": 0
  576. },
  577. "_anchorPoint": {
  578. "__type__": "cc.Vec2",
  579. "x": 0.5,
  580. "y": 0.5
  581. },
  582. "_position": {
  583. "__type__": "cc.Vec3",
  584. "x": 7,
  585. "y": -65,
  586. "z": 0
  587. },
  588. "_scale": {
  589. "__type__": "cc.Vec3",
  590. "x": 1,
  591. "y": 1,
  592. "z": 1
  593. },
  594. "_eulerAngles": {
  595. "__type__": "cc.Vec3",
  596. "x": 0,
  597. "y": 0,
  598. "z": 0
  599. },
  600. "_skewX": 0,
  601. "_skewY": 0,
  602. "_is3DNode": false,
  603. "groupIndex": 0,
  604. "_id": ""
  605. },
  606. {
  607. "__type__": "cc.Node",
  608. "_name": "text2",
  609. "_objFlags": 0,
  610. "_parent": {
  611. "__id__": 14
  612. },
  613. "_children": [],
  614. "_active": true,
  615. "_level": 7,
  616. "_components": [
  617. {
  618. "__id__": 16
  619. }
  620. ],
  621. "_prefab": {
  622. "__id__": 17
  623. },
  624. "_opacity": 255,
  625. "_color": {
  626. "__type__": "cc.Color",
  627. "r": 42,
  628. "g": 155,
  629. "b": 200,
  630. "a": 255
  631. },
  632. "_contentSize": {
  633. "__type__": "cc.Size",
  634. "width": 91.11,
  635. "height": 50.4
  636. },
  637. "_anchorPoint": {
  638. "__type__": "cc.Vec2",
  639. "x": 0,
  640. "y": 0.5
  641. },
  642. "_position": {
  643. "__type__": "cc.Vec3",
  644. "x": -141.961,
  645. "y": 0,
  646. "z": 0
  647. },
  648. "_scale": {
  649. "__type__": "cc.Vec3",
  650. "x": 0.644,
  651. "y": 0.644,
  652. "z": 0.644
  653. },
  654. "_eulerAngles": {
  655. "__type__": "cc.Vec3",
  656. "x": 0,
  657. "y": 0,
  658. "z": 0
  659. },
  660. "_skewX": 0,
  661. "_skewY": 0,
  662. "_is3DNode": false,
  663. "groupIndex": 0,
  664. "_id": ""
  665. },
  666. {
  667. "__type__": "cc.Label",
  668. "_name": "",
  669. "_objFlags": 0,
  670. "node": {
  671. "__id__": 15
  672. },
  673. "_enabled": true,
  674. "_materials": [
  675. {
  676. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  677. }
  678. ],
  679. "_useOriginalSize": false,
  680. "_string": "租期:",
  681. "_N$string": "租期:",
  682. "_fontSize": 40,
  683. "_lineHeight": 40,
  684. "_enableWrapText": true,
  685. "_N$file": null,
  686. "_isSystemFontUsed": true,
  687. "_spacingX": 0,
  688. "_batchAsBitmap": false,
  689. "_N$horizontalAlign": 1,
  690. "_N$verticalAlign": 1,
  691. "_N$fontFamily": "Arial",
  692. "_N$overflow": 0,
  693. "_N$cacheMode": 0,
  694. "_id": ""
  695. },
  696. {
  697. "__type__": "cc.PrefabInfo",
  698. "root": {
  699. "__id__": 1
  700. },
  701. "asset": {
  702. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  703. },
  704. "fileId": "5cYqb1UkJBEqAhxx4ub/AJ",
  705. "sync": false
  706. },
  707. {
  708. "__type__": "cc.Node",
  709. "_name": "text2_value",
  710. "_objFlags": 0,
  711. "_parent": {
  712. "__id__": 14
  713. },
  714. "_children": [],
  715. "_active": true,
  716. "_level": 7,
  717. "_components": [
  718. {
  719. "__id__": 19
  720. }
  721. ],
  722. "_prefab": {
  723. "__id__": 20
  724. },
  725. "_opacity": 255,
  726. "_color": {
  727. "__type__": "cc.Color",
  728. "r": 255,
  729. "g": 137,
  730. "b": 165,
  731. "a": 255
  732. },
  733. "_contentSize": {
  734. "__type__": "cc.Size",
  735. "width": 46.68,
  736. "height": 37.8
  737. },
  738. "_anchorPoint": {
  739. "__type__": "cc.Vec2",
  740. "x": 0,
  741. "y": 0.5
  742. },
  743. "_position": {
  744. "__type__": "cc.Vec3",
  745. "x": -43.95,
  746. "y": 0,
  747. "z": 0
  748. },
  749. "_scale": {
  750. "__type__": "cc.Vec3",
  751. "x": 0.644,
  752. "y": 0.644,
  753. "z": 0.644
  754. },
  755. "_eulerAngles": {
  756. "__type__": "cc.Vec3",
  757. "x": 0,
  758. "y": 0,
  759. "z": 0
  760. },
  761. "_skewX": 0,
  762. "_skewY": 0,
  763. "_is3DNode": false,
  764. "groupIndex": 0,
  765. "_id": ""
  766. },
  767. {
  768. "__type__": "cc.Label",
  769. "_name": "",
  770. "_objFlags": 0,
  771. "node": {
  772. "__id__": 18
  773. },
  774. "_enabled": true,
  775. "_materials": [
  776. {
  777. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  778. }
  779. ],
  780. "_useOriginalSize": false,
  781. "_string": "1天",
  782. "_N$string": "1天",
  783. "_fontSize": 30,
  784. "_lineHeight": 30,
  785. "_enableWrapText": true,
  786. "_N$file": null,
  787. "_isSystemFontUsed": true,
  788. "_spacingX": 0,
  789. "_batchAsBitmap": false,
  790. "_N$horizontalAlign": 1,
  791. "_N$verticalAlign": 1,
  792. "_N$fontFamily": "Arial",
  793. "_N$overflow": 0,
  794. "_N$cacheMode": 0,
  795. "_id": ""
  796. },
  797. {
  798. "__type__": "cc.PrefabInfo",
  799. "root": {
  800. "__id__": 1
  801. },
  802. "asset": {
  803. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  804. },
  805. "fileId": "1bh6kRFNFNjL0Wq8XqcNqc",
  806. "sync": false
  807. },
  808. {
  809. "__type__": "cc.PrefabInfo",
  810. "root": {
  811. "__id__": 1
  812. },
  813. "asset": {
  814. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  815. },
  816. "fileId": "e3d/Rqwr9Ai59ChKvBqFhy",
  817. "sync": false
  818. },
  819. {
  820. "__type__": "cc.Node",
  821. "_name": "3",
  822. "_objFlags": 0,
  823. "_parent": {
  824. "__id__": 5
  825. },
  826. "_children": [
  827. {
  828. "__id__": 23
  829. },
  830. {
  831. "__id__": 26
  832. }
  833. ],
  834. "_active": true,
  835. "_level": 6,
  836. "_components": [],
  837. "_prefab": {
  838. "__id__": 29
  839. },
  840. "_opacity": 255,
  841. "_color": {
  842. "__type__": "cc.Color",
  843. "r": 255,
  844. "g": 255,
  845. "b": 255,
  846. "a": 255
  847. },
  848. "_contentSize": {
  849. "__type__": "cc.Size",
  850. "width": 0,
  851. "height": 0
  852. },
  853. "_anchorPoint": {
  854. "__type__": "cc.Vec2",
  855. "x": 0.5,
  856. "y": 0.5
  857. },
  858. "_position": {
  859. "__type__": "cc.Vec3",
  860. "x": 7,
  861. "y": -100,
  862. "z": 0
  863. },
  864. "_scale": {
  865. "__type__": "cc.Vec3",
  866. "x": 1,
  867. "y": 1,
  868. "z": 1
  869. },
  870. "_eulerAngles": {
  871. "__type__": "cc.Vec3",
  872. "x": 0,
  873. "y": 0,
  874. "z": 0
  875. },
  876. "_skewX": 0,
  877. "_skewY": 0,
  878. "_is3DNode": false,
  879. "groupIndex": 0,
  880. "_id": ""
  881. },
  882. {
  883. "__type__": "cc.Node",
  884. "_name": "text3",
  885. "_objFlags": 0,
  886. "_parent": {
  887. "__id__": 22
  888. },
  889. "_children": [],
  890. "_active": true,
  891. "_level": 7,
  892. "_components": [
  893. {
  894. "__id__": 24
  895. }
  896. ],
  897. "_prefab": {
  898. "__id__": 25
  899. },
  900. "_opacity": 255,
  901. "_color": {
  902. "__type__": "cc.Color",
  903. "r": 42,
  904. "g": 155,
  905. "b": 200,
  906. "a": 255
  907. },
  908. "_contentSize": {
  909. "__type__": "cc.Size",
  910. "width": 200,
  911. "height": 50.4
  912. },
  913. "_anchorPoint": {
  914. "__type__": "cc.Vec2",
  915. "x": 0,
  916. "y": 0.5
  917. },
  918. "_position": {
  919. "__type__": "cc.Vec3",
  920. "x": -141.961,
  921. "y": 0,
  922. "z": 0
  923. },
  924. "_scale": {
  925. "__type__": "cc.Vec3",
  926. "x": 0.644,
  927. "y": 0.644,
  928. "z": 0.644
  929. },
  930. "_eulerAngles": {
  931. "__type__": "cc.Vec3",
  932. "x": 0,
  933. "y": 0,
  934. "z": 0
  935. },
  936. "_skewX": 0,
  937. "_skewY": 0,
  938. "_is3DNode": false,
  939. "groupIndex": 0,
  940. "_id": ""
  941. },
  942. {
  943. "__type__": "cc.Label",
  944. "_name": "",
  945. "_objFlags": 0,
  946. "node": {
  947. "__id__": 23
  948. },
  949. "_enabled": true,
  950. "_materials": [
  951. {
  952. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  953. }
  954. ],
  955. "_useOriginalSize": false,
  956. "_string": "租赁时间:",
  957. "_N$string": "租赁时间:",
  958. "_fontSize": 40,
  959. "_lineHeight": 40,
  960. "_enableWrapText": true,
  961. "_N$file": null,
  962. "_isSystemFontUsed": true,
  963. "_spacingX": 0,
  964. "_batchAsBitmap": false,
  965. "_N$horizontalAlign": 1,
  966. "_N$verticalAlign": 1,
  967. "_N$fontFamily": "Arial",
  968. "_N$overflow": 0,
  969. "_N$cacheMode": 0,
  970. "_id": ""
  971. },
  972. {
  973. "__type__": "cc.PrefabInfo",
  974. "root": {
  975. "__id__": 1
  976. },
  977. "asset": {
  978. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  979. },
  980. "fileId": "48ObXzJzJJM7dLtv9vIgNk",
  981. "sync": false
  982. },
  983. {
  984. "__type__": "cc.Node",
  985. "_name": "text3_value",
  986. "_objFlags": 0,
  987. "_parent": {
  988. "__id__": 22
  989. },
  990. "_children": [],
  991. "_active": true,
  992. "_level": 7,
  993. "_components": [
  994. {
  995. "__id__": 27
  996. }
  997. ],
  998. "_prefab": {
  999. "__id__": 28
  1000. },
  1001. "_opacity": 255,
  1002. "_color": {
  1003. "__type__": "cc.Color",
  1004. "r": 255,
  1005. "g": 137,
  1006. "b": 165,
  1007. "a": 255
  1008. },
  1009. "_contentSize": {
  1010. "__type__": "cc.Size",
  1011. "width": 153.46,
  1012. "height": 37.8
  1013. },
  1014. "_anchorPoint": {
  1015. "__type__": "cc.Vec2",
  1016. "x": 0,
  1017. "y": 0.5
  1018. },
  1019. "_position": {
  1020. "__type__": "cc.Vec3",
  1021. "x": -19.881,
  1022. "y": 0,
  1023. "z": 0
  1024. },
  1025. "_scale": {
  1026. "__type__": "cc.Vec3",
  1027. "x": 0.644,
  1028. "y": 0.644,
  1029. "z": 0.644
  1030. },
  1031. "_eulerAngles": {
  1032. "__type__": "cc.Vec3",
  1033. "x": 0,
  1034. "y": 0,
  1035. "z": 0
  1036. },
  1037. "_skewX": 0,
  1038. "_skewY": 0,
  1039. "_is3DNode": false,
  1040. "groupIndex": 0,
  1041. "_id": ""
  1042. },
  1043. {
  1044. "__type__": "cc.Label",
  1045. "_name": "",
  1046. "_objFlags": 0,
  1047. "node": {
  1048. "__id__": 26
  1049. },
  1050. "_enabled": true,
  1051. "_materials": [
  1052. {
  1053. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1054. }
  1055. ],
  1056. "_useOriginalSize": false,
  1057. "_string": "2022-01-03",
  1058. "_N$string": "2022-01-03",
  1059. "_fontSize": 30,
  1060. "_lineHeight": 30,
  1061. "_enableWrapText": true,
  1062. "_N$file": null,
  1063. "_isSystemFontUsed": true,
  1064. "_spacingX": 0,
  1065. "_batchAsBitmap": false,
  1066. "_N$horizontalAlign": 1,
  1067. "_N$verticalAlign": 1,
  1068. "_N$fontFamily": "Arial",
  1069. "_N$overflow": 0,
  1070. "_N$cacheMode": 0,
  1071. "_id": ""
  1072. },
  1073. {
  1074. "__type__": "cc.PrefabInfo",
  1075. "root": {
  1076. "__id__": 1
  1077. },
  1078. "asset": {
  1079. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  1080. },
  1081. "fileId": "17SFQGstlJ4Kl9L/c0FqXt",
  1082. "sync": false
  1083. },
  1084. {
  1085. "__type__": "cc.PrefabInfo",
  1086. "root": {
  1087. "__id__": 1
  1088. },
  1089. "asset": {
  1090. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  1091. },
  1092. "fileId": "42xE9S/2tH6Z9nXPM6y2V4",
  1093. "sync": false
  1094. },
  1095. {
  1096. "__type__": "cc.Node",
  1097. "_name": "4",
  1098. "_objFlags": 0,
  1099. "_parent": {
  1100. "__id__": 5
  1101. },
  1102. "_children": [
  1103. {
  1104. "__id__": 31
  1105. },
  1106. {
  1107. "__id__": 34
  1108. }
  1109. ],
  1110. "_active": true,
  1111. "_level": 6,
  1112. "_components": [],
  1113. "_prefab": {
  1114. "__id__": 37
  1115. },
  1116. "_opacity": 255,
  1117. "_color": {
  1118. "__type__": "cc.Color",
  1119. "r": 255,
  1120. "g": 255,
  1121. "b": 255,
  1122. "a": 255
  1123. },
  1124. "_contentSize": {
  1125. "__type__": "cc.Size",
  1126. "width": 0,
  1127. "height": 0
  1128. },
  1129. "_anchorPoint": {
  1130. "__type__": "cc.Vec2",
  1131. "x": 0.5,
  1132. "y": 0.5
  1133. },
  1134. "_position": {
  1135. "__type__": "cc.Vec3",
  1136. "x": 7,
  1137. "y": -135,
  1138. "z": 0
  1139. },
  1140. "_scale": {
  1141. "__type__": "cc.Vec3",
  1142. "x": 1,
  1143. "y": 1,
  1144. "z": 1
  1145. },
  1146. "_eulerAngles": {
  1147. "__type__": "cc.Vec3",
  1148. "x": 0,
  1149. "y": 0,
  1150. "z": 0
  1151. },
  1152. "_skewX": 0,
  1153. "_skewY": 0,
  1154. "_is3DNode": false,
  1155. "groupIndex": 0,
  1156. "_id": ""
  1157. },
  1158. {
  1159. "__type__": "cc.Node",
  1160. "_name": "text4",
  1161. "_objFlags": 0,
  1162. "_parent": {
  1163. "__id__": 30
  1164. },
  1165. "_children": [],
  1166. "_active": true,
  1167. "_level": 7,
  1168. "_components": [
  1169. {
  1170. "__id__": 32
  1171. }
  1172. ],
  1173. "_prefab": {
  1174. "__id__": 33
  1175. },
  1176. "_opacity": 255,
  1177. "_color": {
  1178. "__type__": "cc.Color",
  1179. "r": 42,
  1180. "g": 155,
  1181. "b": 200,
  1182. "a": 255
  1183. },
  1184. "_contentSize": {
  1185. "__type__": "cc.Size",
  1186. "width": 200,
  1187. "height": 50.4
  1188. },
  1189. "_anchorPoint": {
  1190. "__type__": "cc.Vec2",
  1191. "x": 0,
  1192. "y": 0.5
  1193. },
  1194. "_position": {
  1195. "__type__": "cc.Vec3",
  1196. "x": -141.961,
  1197. "y": 0,
  1198. "z": 0
  1199. },
  1200. "_scale": {
  1201. "__type__": "cc.Vec3",
  1202. "x": 0.644,
  1203. "y": 0.644,
  1204. "z": 0.644
  1205. },
  1206. "_eulerAngles": {
  1207. "__type__": "cc.Vec3",
  1208. "x": 0,
  1209. "y": 0,
  1210. "z": 0
  1211. },
  1212. "_skewX": 0,
  1213. "_skewY": 0,
  1214. "_is3DNode": false,
  1215. "groupIndex": 0,
  1216. "_id": ""
  1217. },
  1218. {
  1219. "__type__": "cc.Label",
  1220. "_name": "",
  1221. "_objFlags": 0,
  1222. "node": {
  1223. "__id__": 31
  1224. },
  1225. "_enabled": true,
  1226. "_materials": [
  1227. {
  1228. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1229. }
  1230. ],
  1231. "_useOriginalSize": false,
  1232. "_string": "到期时间:",
  1233. "_N$string": "到期时间:",
  1234. "_fontSize": 40,
  1235. "_lineHeight": 40,
  1236. "_enableWrapText": true,
  1237. "_N$file": null,
  1238. "_isSystemFontUsed": true,
  1239. "_spacingX": 0,
  1240. "_batchAsBitmap": false,
  1241. "_N$horizontalAlign": 1,
  1242. "_N$verticalAlign": 1,
  1243. "_N$fontFamily": "Arial",
  1244. "_N$overflow": 0,
  1245. "_N$cacheMode": 0,
  1246. "_id": ""
  1247. },
  1248. {
  1249. "__type__": "cc.PrefabInfo",
  1250. "root": {
  1251. "__id__": 1
  1252. },
  1253. "asset": {
  1254. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  1255. },
  1256. "fileId": "d3Jl5/6RNKALEs8iS4IKJ0",
  1257. "sync": false
  1258. },
  1259. {
  1260. "__type__": "cc.Node",
  1261. "_name": "text4_value",
  1262. "_objFlags": 0,
  1263. "_parent": {
  1264. "__id__": 30
  1265. },
  1266. "_children": [],
  1267. "_active": true,
  1268. "_level": 7,
  1269. "_components": [
  1270. {
  1271. "__id__": 35
  1272. }
  1273. ],
  1274. "_prefab": {
  1275. "__id__": 36
  1276. },
  1277. "_opacity": 255,
  1278. "_color": {
  1279. "__type__": "cc.Color",
  1280. "r": 255,
  1281. "g": 137,
  1282. "b": 165,
  1283. "a": 255
  1284. },
  1285. "_contentSize": {
  1286. "__type__": "cc.Size",
  1287. "width": 80.05,
  1288. "height": 37.8
  1289. },
  1290. "_anchorPoint": {
  1291. "__type__": "cc.Vec2",
  1292. "x": 0,
  1293. "y": 0.5
  1294. },
  1295. "_position": {
  1296. "__type__": "cc.Vec3",
  1297. "x": -19.881,
  1298. "y": 0,
  1299. "z": 0
  1300. },
  1301. "_scale": {
  1302. "__type__": "cc.Vec3",
  1303. "x": 0.644,
  1304. "y": 0.644,
  1305. "z": 0.644
  1306. },
  1307. "_eulerAngles": {
  1308. "__type__": "cc.Vec3",
  1309. "x": 0,
  1310. "y": 0,
  1311. "z": 0
  1312. },
  1313. "_skewX": 0,
  1314. "_skewY": 0,
  1315. "_is3DNode": false,
  1316. "groupIndex": 0,
  1317. "_id": ""
  1318. },
  1319. {
  1320. "__type__": "cc.Label",
  1321. "_name": "",
  1322. "_objFlags": 0,
  1323. "node": {
  1324. "__id__": 34
  1325. },
  1326. "_enabled": true,
  1327. "_materials": [
  1328. {
  1329. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1330. }
  1331. ],
  1332. "_useOriginalSize": false,
  1333. "_string": "300个",
  1334. "_N$string": "300个",
  1335. "_fontSize": 30,
  1336. "_lineHeight": 30,
  1337. "_enableWrapText": true,
  1338. "_N$file": null,
  1339. "_isSystemFontUsed": true,
  1340. "_spacingX": 0,
  1341. "_batchAsBitmap": false,
  1342. "_N$horizontalAlign": 1,
  1343. "_N$verticalAlign": 1,
  1344. "_N$fontFamily": "Arial",
  1345. "_N$overflow": 0,
  1346. "_N$cacheMode": 0,
  1347. "_id": ""
  1348. },
  1349. {
  1350. "__type__": "cc.PrefabInfo",
  1351. "root": {
  1352. "__id__": 1
  1353. },
  1354. "asset": {
  1355. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  1356. },
  1357. "fileId": "e7qKOQ2XRCDpTj+IVdh0TT",
  1358. "sync": false
  1359. },
  1360. {
  1361. "__type__": "cc.PrefabInfo",
  1362. "root": {
  1363. "__id__": 1
  1364. },
  1365. "asset": {
  1366. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  1367. },
  1368. "fileId": "3fSPWXqjdNibvdugFeucL3",
  1369. "sync": false
  1370. },
  1371. {
  1372. "__type__": "cc.Node",
  1373. "_name": "5",
  1374. "_objFlags": 0,
  1375. "_parent": {
  1376. "__id__": 5
  1377. },
  1378. "_children": [
  1379. {
  1380. "__id__": 39
  1381. },
  1382. {
  1383. "__id__": 42
  1384. }
  1385. ],
  1386. "_active": true,
  1387. "_level": 6,
  1388. "_components": [],
  1389. "_prefab": {
  1390. "__id__": 45
  1391. },
  1392. "_opacity": 255,
  1393. "_color": {
  1394. "__type__": "cc.Color",
  1395. "r": 255,
  1396. "g": 255,
  1397. "b": 255,
  1398. "a": 255
  1399. },
  1400. "_contentSize": {
  1401. "__type__": "cc.Size",
  1402. "width": 0,
  1403. "height": 0
  1404. },
  1405. "_anchorPoint": {
  1406. "__type__": "cc.Vec2",
  1407. "x": 0.5,
  1408. "y": 0.5
  1409. },
  1410. "_position": {
  1411. "__type__": "cc.Vec3",
  1412. "x": 7,
  1413. "y": -170,
  1414. "z": 0
  1415. },
  1416. "_scale": {
  1417. "__type__": "cc.Vec3",
  1418. "x": 1,
  1419. "y": 1,
  1420. "z": 1
  1421. },
  1422. "_eulerAngles": {
  1423. "__type__": "cc.Vec3",
  1424. "x": 0,
  1425. "y": 0,
  1426. "z": 0
  1427. },
  1428. "_skewX": 0,
  1429. "_skewY": 0,
  1430. "_is3DNode": false,
  1431. "groupIndex": 0,
  1432. "_id": ""
  1433. },
  1434. {
  1435. "__type__": "cc.Node",
  1436. "_name": "text5",
  1437. "_objFlags": 0,
  1438. "_parent": {
  1439. "__id__": 38
  1440. },
  1441. "_children": [],
  1442. "_active": true,
  1443. "_level": 7,
  1444. "_components": [
  1445. {
  1446. "__id__": 40
  1447. }
  1448. ],
  1449. "_prefab": {
  1450. "__id__": 41
  1451. },
  1452. "_opacity": 255,
  1453. "_color": {
  1454. "__type__": "cc.Color",
  1455. "r": 42,
  1456. "g": 155,
  1457. "b": 200,
  1458. "a": 255
  1459. },
  1460. "_contentSize": {
  1461. "__type__": "cc.Size",
  1462. "width": 120,
  1463. "height": 50.4
  1464. },
  1465. "_anchorPoint": {
  1466. "__type__": "cc.Vec2",
  1467. "x": 0,
  1468. "y": 0.5
  1469. },
  1470. "_position": {
  1471. "__type__": "cc.Vec3",
  1472. "x": -141.961,
  1473. "y": 0,
  1474. "z": 0
  1475. },
  1476. "_scale": {
  1477. "__type__": "cc.Vec3",
  1478. "x": 0.644,
  1479. "y": 0.644,
  1480. "z": 0.644
  1481. },
  1482. "_eulerAngles": {
  1483. "__type__": "cc.Vec3",
  1484. "x": 0,
  1485. "y": 0,
  1486. "z": 0
  1487. },
  1488. "_skewX": 0,
  1489. "_skewY": 0,
  1490. "_is3DNode": false,
  1491. "groupIndex": 0,
  1492. "_id": ""
  1493. },
  1494. {
  1495. "__type__": "cc.Label",
  1496. "_name": "",
  1497. "_objFlags": 0,
  1498. "node": {
  1499. "__id__": 39
  1500. },
  1501. "_enabled": true,
  1502. "_materials": [
  1503. {
  1504. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1505. }
  1506. ],
  1507. "_useOriginalSize": false,
  1508. "_string": "倍数:",
  1509. "_N$string": "倍数:",
  1510. "_fontSize": 40,
  1511. "_lineHeight": 40,
  1512. "_enableWrapText": true,
  1513. "_N$file": null,
  1514. "_isSystemFontUsed": true,
  1515. "_spacingX": 0,
  1516. "_batchAsBitmap": false,
  1517. "_N$horizontalAlign": 1,
  1518. "_N$verticalAlign": 1,
  1519. "_N$fontFamily": "Arial",
  1520. "_N$overflow": 0,
  1521. "_N$cacheMode": 0,
  1522. "_id": ""
  1523. },
  1524. {
  1525. "__type__": "cc.PrefabInfo",
  1526. "root": {
  1527. "__id__": 1
  1528. },
  1529. "asset": {
  1530. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  1531. },
  1532. "fileId": "0fsaADE95NX7S03wXie72K",
  1533. "sync": false
  1534. },
  1535. {
  1536. "__type__": "cc.Node",
  1537. "_name": "text5_value",
  1538. "_objFlags": 0,
  1539. "_parent": {
  1540. "__id__": 38
  1541. },
  1542. "_children": [],
  1543. "_active": true,
  1544. "_level": 7,
  1545. "_components": [
  1546. {
  1547. "__id__": 43
  1548. }
  1549. ],
  1550. "_prefab": {
  1551. "__id__": 44
  1552. },
  1553. "_opacity": 255,
  1554. "_color": {
  1555. "__type__": "cc.Color",
  1556. "r": 255,
  1557. "g": 137,
  1558. "b": 165,
  1559. "a": 255
  1560. },
  1561. "_contentSize": {
  1562. "__type__": "cc.Size",
  1563. "width": 46.68,
  1564. "height": 37.8
  1565. },
  1566. "_anchorPoint": {
  1567. "__type__": "cc.Vec2",
  1568. "x": 0,
  1569. "y": 0.5
  1570. },
  1571. "_position": {
  1572. "__type__": "cc.Vec3",
  1573. "x": -19.881,
  1574. "y": 0,
  1575. "z": 0
  1576. },
  1577. "_scale": {
  1578. "__type__": "cc.Vec3",
  1579. "x": 0.644,
  1580. "y": 0.644,
  1581. "z": 0.644
  1582. },
  1583. "_eulerAngles": {
  1584. "__type__": "cc.Vec3",
  1585. "x": 0,
  1586. "y": 0,
  1587. "z": 0
  1588. },
  1589. "_skewX": 0,
  1590. "_skewY": 0,
  1591. "_is3DNode": false,
  1592. "groupIndex": 0,
  1593. "_id": ""
  1594. },
  1595. {
  1596. "__type__": "cc.Label",
  1597. "_name": "",
  1598. "_objFlags": 0,
  1599. "node": {
  1600. "__id__": 42
  1601. },
  1602. "_enabled": true,
  1603. "_materials": [
  1604. {
  1605. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1606. }
  1607. ],
  1608. "_useOriginalSize": false,
  1609. "_string": "1倍",
  1610. "_N$string": "1倍",
  1611. "_fontSize": 30,
  1612. "_lineHeight": 30,
  1613. "_enableWrapText": true,
  1614. "_N$file": null,
  1615. "_isSystemFontUsed": true,
  1616. "_spacingX": 0,
  1617. "_batchAsBitmap": false,
  1618. "_N$horizontalAlign": 1,
  1619. "_N$verticalAlign": 1,
  1620. "_N$fontFamily": "Arial",
  1621. "_N$overflow": 0,
  1622. "_N$cacheMode": 0,
  1623. "_id": ""
  1624. },
  1625. {
  1626. "__type__": "cc.PrefabInfo",
  1627. "root": {
  1628. "__id__": 1
  1629. },
  1630. "asset": {
  1631. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  1632. },
  1633. "fileId": "faDfgEUuJFNbthDDXgqbGO",
  1634. "sync": false
  1635. },
  1636. {
  1637. "__type__": "cc.PrefabInfo",
  1638. "root": {
  1639. "__id__": 1
  1640. },
  1641. "asset": {
  1642. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  1643. },
  1644. "fileId": "f6F+v/4dRK7ZfpprvVFpls",
  1645. "sync": false
  1646. },
  1647. {
  1648. "__type__": "cc.Sprite",
  1649. "_name": "",
  1650. "_objFlags": 0,
  1651. "node": {
  1652. "__id__": 5
  1653. },
  1654. "_enabled": true,
  1655. "_materials": [
  1656. {
  1657. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1658. }
  1659. ],
  1660. "_srcBlendFactor": 770,
  1661. "_dstBlendFactor": 771,
  1662. "_spriteFrame": {
  1663. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1664. },
  1665. "_type": 0,
  1666. "_sizeMode": 0,
  1667. "_fillType": 0,
  1668. "_fillCenter": {
  1669. "__type__": "cc.Vec2",
  1670. "x": 0,
  1671. "y": 0
  1672. },
  1673. "_fillStart": 0,
  1674. "_fillRange": 0,
  1675. "_isTrimmedMode": true,
  1676. "_atlas": null,
  1677. "_id": ""
  1678. },
  1679. {
  1680. "__type__": "cc.Layout",
  1681. "_name": "",
  1682. "_objFlags": 0,
  1683. "node": {
  1684. "__id__": 5
  1685. },
  1686. "_enabled": true,
  1687. "_layoutSize": {
  1688. "__type__": "cc.Size",
  1689. "width": 300,
  1690. "height": 200
  1691. },
  1692. "_resize": 0,
  1693. "_N$layoutType": 2,
  1694. "_N$padding": 0,
  1695. "_N$cellSize": {
  1696. "__type__": "cc.Size",
  1697. "width": 40,
  1698. "height": 40
  1699. },
  1700. "_N$startAxis": 0,
  1701. "_N$paddingLeft": 0,
  1702. "_N$paddingRight": 0,
  1703. "_N$paddingTop": 30,
  1704. "_N$paddingBottom": 0,
  1705. "_N$spacingX": 0,
  1706. "_N$spacingY": 35,
  1707. "_N$verticalDirection": 1,
  1708. "_N$horizontalDirection": 0,
  1709. "_N$affectedByScale": false,
  1710. "_id": ""
  1711. },
  1712. {
  1713. "__type__": "cc.PrefabInfo",
  1714. "root": {
  1715. "__id__": 1
  1716. },
  1717. "asset": {
  1718. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  1719. },
  1720. "fileId": "f4NR2NdqZDm5vS1b50pvOm",
  1721. "sync": false
  1722. },
  1723. {
  1724. "__type__": "cc.Node",
  1725. "_name": "Container3",
  1726. "_objFlags": 0,
  1727. "_parent": {
  1728. "__id__": 1
  1729. },
  1730. "_children": [
  1731. {
  1732. "__id__": 50
  1733. },
  1734. {
  1735. "__id__": 53
  1736. }
  1737. ],
  1738. "_active": true,
  1739. "_level": 5,
  1740. "_components": [],
  1741. "_prefab": {
  1742. "__id__": 56
  1743. },
  1744. "_opacity": 255,
  1745. "_color": {
  1746. "__type__": "cc.Color",
  1747. "r": 228,
  1748. "g": 244,
  1749. "b": 249,
  1750. "a": 255
  1751. },
  1752. "_contentSize": {
  1753. "__type__": "cc.Size",
  1754. "width": 200,
  1755. "height": 50
  1756. },
  1757. "_anchorPoint": {
  1758. "__type__": "cc.Vec2",
  1759. "x": 0.5,
  1760. "y": 0.5
  1761. },
  1762. "_position": {
  1763. "__type__": "cc.Vec3",
  1764. "x": 35.171,
  1765. "y": -98.487,
  1766. "z": 0
  1767. },
  1768. "_scale": {
  1769. "__type__": "cc.Vec3",
  1770. "x": 1,
  1771. "y": 1,
  1772. "z": 1
  1773. },
  1774. "_eulerAngles": {
  1775. "__type__": "cc.Vec3",
  1776. "x": 0,
  1777. "y": 0,
  1778. "z": 0
  1779. },
  1780. "_skewX": 0,
  1781. "_skewY": 0,
  1782. "_is3DNode": false,
  1783. "groupIndex": 0,
  1784. "_id": ""
  1785. },
  1786. {
  1787. "__type__": "cc.Node",
  1788. "_name": "text6",
  1789. "_objFlags": 0,
  1790. "_parent": {
  1791. "__id__": 49
  1792. },
  1793. "_children": [],
  1794. "_active": true,
  1795. "_level": 6,
  1796. "_components": [
  1797. {
  1798. "__id__": 51
  1799. }
  1800. ],
  1801. "_prefab": {
  1802. "__id__": 52
  1803. },
  1804. "_opacity": 255,
  1805. "_color": {
  1806. "__type__": "cc.Color",
  1807. "r": 42,
  1808. "g": 155,
  1809. "b": 200,
  1810. "a": 255
  1811. },
  1812. "_contentSize": {
  1813. "__type__": "cc.Size",
  1814. "width": 140,
  1815. "height": 35.28
  1816. },
  1817. "_anchorPoint": {
  1818. "__type__": "cc.Vec2",
  1819. "x": 0,
  1820. "y": 0.5
  1821. },
  1822. "_position": {
  1823. "__type__": "cc.Vec3",
  1824. "x": -181.828,
  1825. "y": 23.614,
  1826. "z": 0
  1827. },
  1828. "_scale": {
  1829. "__type__": "cc.Vec3",
  1830. "x": 0.644,
  1831. "y": 0.644,
  1832. "z": 0.644
  1833. },
  1834. "_eulerAngles": {
  1835. "__type__": "cc.Vec3",
  1836. "x": 0,
  1837. "y": 0,
  1838. "z": 0
  1839. },
  1840. "_skewX": 0,
  1841. "_skewY": 0,
  1842. "_is3DNode": false,
  1843. "groupIndex": 0,
  1844. "_id": ""
  1845. },
  1846. {
  1847. "__type__": "cc.Label",
  1848. "_name": "",
  1849. "_objFlags": 0,
  1850. "node": {
  1851. "__id__": 50
  1852. },
  1853. "_enabled": true,
  1854. "_materials": [
  1855. {
  1856. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1857. }
  1858. ],
  1859. "_useOriginalSize": false,
  1860. "_string": "土地简介:",
  1861. "_N$string": "土地简介:",
  1862. "_fontSize": 28,
  1863. "_lineHeight": 28,
  1864. "_enableWrapText": true,
  1865. "_N$file": null,
  1866. "_isSystemFontUsed": true,
  1867. "_spacingX": 0,
  1868. "_batchAsBitmap": false,
  1869. "_N$horizontalAlign": 1,
  1870. "_N$verticalAlign": 1,
  1871. "_N$fontFamily": "Arial",
  1872. "_N$overflow": 0,
  1873. "_N$cacheMode": 0,
  1874. "_id": ""
  1875. },
  1876. {
  1877. "__type__": "cc.PrefabInfo",
  1878. "root": {
  1879. "__id__": 1
  1880. },
  1881. "asset": {
  1882. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  1883. },
  1884. "fileId": "aaA39lDblHAodl2mesWPHw",
  1885. "sync": false
  1886. },
  1887. {
  1888. "__type__": "cc.Node",
  1889. "_name": "text6_value",
  1890. "_objFlags": 0,
  1891. "_parent": {
  1892. "__id__": 49
  1893. },
  1894. "_children": [],
  1895. "_active": true,
  1896. "_level": 6,
  1897. "_components": [
  1898. {
  1899. "__id__": 54
  1900. }
  1901. ],
  1902. "_prefab": {
  1903. "__id__": 55
  1904. },
  1905. "_opacity": 255,
  1906. "_color": {
  1907. "__type__": "cc.Color",
  1908. "r": 255,
  1909. "g": 137,
  1910. "b": 165,
  1911. "a": 255
  1912. },
  1913. "_contentSize": {
  1914. "__type__": "cc.Size",
  1915. "width": 312,
  1916. "height": 102.24
  1917. },
  1918. "_anchorPoint": {
  1919. "__type__": "cc.Vec2",
  1920. "x": 0,
  1921. "y": 0.5
  1922. },
  1923. "_position": {
  1924. "__type__": "cc.Vec3",
  1925. "x": -135.553,
  1926. "y": -29.957,
  1927. "z": 0
  1928. },
  1929. "_scale": {
  1930. "__type__": "cc.Vec3",
  1931. "x": 0.644,
  1932. "y": 0.644,
  1933. "z": 0.644
  1934. },
  1935. "_eulerAngles": {
  1936. "__type__": "cc.Vec3",
  1937. "x": 0,
  1938. "y": 0,
  1939. "z": 0
  1940. },
  1941. "_skewX": 0,
  1942. "_skewY": 0,
  1943. "_is3DNode": false,
  1944. "groupIndex": 0,
  1945. "_id": ""
  1946. },
  1947. {
  1948. "__type__": "cc.Label",
  1949. "_name": "",
  1950. "_objFlags": 0,
  1951. "node": {
  1952. "__id__": 53
  1953. },
  1954. "_enabled": true,
  1955. "_materials": [
  1956. {
  1957. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1958. }
  1959. ],
  1960. "_useOriginalSize": false,
  1961. "_string": "可用与种植农作用,购买种子\n播种到土地,等农作物成熟后\n收获到仓库,售卖之后可获得\n农贝。",
  1962. "_N$string": "可用与种植农作用,购买种子\n播种到土地,等农作物成熟后\n收获到仓库,售卖之后可获得\n农贝。",
  1963. "_fontSize": 24,
  1964. "_lineHeight": 24,
  1965. "_enableWrapText": true,
  1966. "_N$file": null,
  1967. "_isSystemFontUsed": true,
  1968. "_spacingX": 0,
  1969. "_batchAsBitmap": false,
  1970. "_N$horizontalAlign": 1,
  1971. "_N$verticalAlign": 1,
  1972. "_N$fontFamily": "Arial",
  1973. "_N$overflow": 0,
  1974. "_N$cacheMode": 0,
  1975. "_id": ""
  1976. },
  1977. {
  1978. "__type__": "cc.PrefabInfo",
  1979. "root": {
  1980. "__id__": 1
  1981. },
  1982. "asset": {
  1983. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  1984. },
  1985. "fileId": "49GsZdKclFAqntzdCcedqN",
  1986. "sync": false
  1987. },
  1988. {
  1989. "__type__": "cc.PrefabInfo",
  1990. "root": {
  1991. "__id__": 1
  1992. },
  1993. "asset": {
  1994. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  1995. },
  1996. "fileId": "f5Wn+t1sBJbYl+Fh3URygV",
  1997. "sync": false
  1998. },
  1999. {
  2000. "__type__": "cc.Node",
  2001. "_name": "close",
  2002. "_objFlags": 0,
  2003. "_parent": {
  2004. "__id__": 1
  2005. },
  2006. "_children": [
  2007. {
  2008. "__id__": 58
  2009. }
  2010. ],
  2011. "_active": true,
  2012. "_level": 5,
  2013. "_components": [
  2014. {
  2015. "__id__": 62
  2016. }
  2017. ],
  2018. "_prefab": {
  2019. "__id__": 64
  2020. },
  2021. "_opacity": 255,
  2022. "_color": {
  2023. "__type__": "cc.Color",
  2024. "r": 255,
  2025. "g": 255,
  2026. "b": 255,
  2027. "a": 255
  2028. },
  2029. "_contentSize": {
  2030. "__type__": "cc.Size",
  2031. "width": 80,
  2032. "height": 80
  2033. },
  2034. "_anchorPoint": {
  2035. "__type__": "cc.Vec2",
  2036. "x": 0.5,
  2037. "y": 0.5
  2038. },
  2039. "_position": {
  2040. "__type__": "cc.Vec3",
  2041. "x": 174.056,
  2042. "y": 190.219,
  2043. "z": 0
  2044. },
  2045. "_scale": {
  2046. "__type__": "cc.Vec3",
  2047. "x": 1,
  2048. "y": 1,
  2049. "z": 1
  2050. },
  2051. "_eulerAngles": {
  2052. "__type__": "cc.Vec3",
  2053. "x": 0,
  2054. "y": 0,
  2055. "z": 0
  2056. },
  2057. "_skewX": 0,
  2058. "_skewY": 0,
  2059. "_is3DNode": false,
  2060. "groupIndex": 0,
  2061. "_id": ""
  2062. },
  2063. {
  2064. "__type__": "cc.Node",
  2065. "_name": "Background",
  2066. "_objFlags": 0,
  2067. "_parent": {
  2068. "__id__": 57
  2069. },
  2070. "_children": [],
  2071. "_active": true,
  2072. "_level": 2,
  2073. "_components": [
  2074. {
  2075. "__id__": 59
  2076. },
  2077. {
  2078. "__id__": 60
  2079. }
  2080. ],
  2081. "_prefab": {
  2082. "__id__": 61
  2083. },
  2084. "_opacity": 255,
  2085. "_color": {
  2086. "__type__": "cc.Color",
  2087. "r": 255,
  2088. "g": 255,
  2089. "b": 255,
  2090. "a": 255
  2091. },
  2092. "_contentSize": {
  2093. "__type__": "cc.Size",
  2094. "width": 80,
  2095. "height": 80
  2096. },
  2097. "_anchorPoint": {
  2098. "__type__": "cc.Vec2",
  2099. "x": 0.5,
  2100. "y": 0.5
  2101. },
  2102. "_position": {
  2103. "__type__": "cc.Vec3",
  2104. "x": 0,
  2105. "y": 0,
  2106. "z": 0
  2107. },
  2108. "_scale": {
  2109. "__type__": "cc.Vec3",
  2110. "x": 1,
  2111. "y": 1,
  2112. "z": 1
  2113. },
  2114. "_eulerAngles": {
  2115. "__type__": "cc.Vec3",
  2116. "x": 0,
  2117. "y": 0,
  2118. "z": 0
  2119. },
  2120. "_skewX": 0,
  2121. "_skewY": 0,
  2122. "_is3DNode": false,
  2123. "groupIndex": 0,
  2124. "_id": ""
  2125. },
  2126. {
  2127. "__type__": "cc.Sprite",
  2128. "_name": "",
  2129. "_objFlags": 0,
  2130. "node": {
  2131. "__id__": 58
  2132. },
  2133. "_enabled": true,
  2134. "_materials": [
  2135. {
  2136. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2137. }
  2138. ],
  2139. "_srcBlendFactor": 770,
  2140. "_dstBlendFactor": 771,
  2141. "_spriteFrame": {
  2142. "__uuid__": "60d0ea3b-b0a3-4544-84f0-48914bceb893"
  2143. },
  2144. "_type": 1,
  2145. "_sizeMode": 0,
  2146. "_fillType": 0,
  2147. "_fillCenter": {
  2148. "__type__": "cc.Vec2",
  2149. "x": 0,
  2150. "y": 0
  2151. },
  2152. "_fillStart": 0,
  2153. "_fillRange": 0,
  2154. "_isTrimmedMode": true,
  2155. "_atlas": null,
  2156. "_id": ""
  2157. },
  2158. {
  2159. "__type__": "cc.Widget",
  2160. "_name": "",
  2161. "_objFlags": 0,
  2162. "node": {
  2163. "__id__": 58
  2164. },
  2165. "_enabled": true,
  2166. "alignMode": 0,
  2167. "_target": null,
  2168. "_alignFlags": 45,
  2169. "_left": 0,
  2170. "_right": 0,
  2171. "_top": 0,
  2172. "_bottom": 0,
  2173. "_verticalCenter": 0,
  2174. "_horizontalCenter": 0,
  2175. "_isAbsLeft": true,
  2176. "_isAbsRight": true,
  2177. "_isAbsTop": true,
  2178. "_isAbsBottom": true,
  2179. "_isAbsHorizontalCenter": true,
  2180. "_isAbsVerticalCenter": true,
  2181. "_originalWidth": 100,
  2182. "_originalHeight": 40,
  2183. "_id": ""
  2184. },
  2185. {
  2186. "__type__": "cc.PrefabInfo",
  2187. "root": {
  2188. "__id__": 1
  2189. },
  2190. "asset": {
  2191. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  2192. },
  2193. "fileId": "47dnz4MUJFXZgamfxCjLOn",
  2194. "sync": false
  2195. },
  2196. {
  2197. "__type__": "cc.Button",
  2198. "_name": "",
  2199. "_objFlags": 0,
  2200. "node": {
  2201. "__id__": 57
  2202. },
  2203. "_enabled": true,
  2204. "duration": 0.1,
  2205. "zoomScale": 1.2,
  2206. "clickEvents": [
  2207. {
  2208. "__id__": 63
  2209. }
  2210. ],
  2211. "_N$interactable": true,
  2212. "_N$enableAutoGrayEffect": false,
  2213. "_N$transition": 3,
  2214. "transition": 3,
  2215. "_N$normalColor": {
  2216. "__type__": "cc.Color",
  2217. "r": 230,
  2218. "g": 230,
  2219. "b": 230,
  2220. "a": 255
  2221. },
  2222. "_N$pressedColor": {
  2223. "__type__": "cc.Color",
  2224. "r": 200,
  2225. "g": 200,
  2226. "b": 200,
  2227. "a": 255
  2228. },
  2229. "pressedColor": {
  2230. "__type__": "cc.Color",
  2231. "r": 200,
  2232. "g": 200,
  2233. "b": 200,
  2234. "a": 255
  2235. },
  2236. "_N$hoverColor": {
  2237. "__type__": "cc.Color",
  2238. "r": 255,
  2239. "g": 255,
  2240. "b": 255,
  2241. "a": 255
  2242. },
  2243. "hoverColor": {
  2244. "__type__": "cc.Color",
  2245. "r": 255,
  2246. "g": 255,
  2247. "b": 255,
  2248. "a": 255
  2249. },
  2250. "_N$disabledColor": {
  2251. "__type__": "cc.Color",
  2252. "r": 120,
  2253. "g": 120,
  2254. "b": 120,
  2255. "a": 200
  2256. },
  2257. "_N$normalSprite": {
  2258. "__uuid__": "60d0ea3b-b0a3-4544-84f0-48914bceb893"
  2259. },
  2260. "_N$pressedSprite": {
  2261. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2262. },
  2263. "pressedSprite": {
  2264. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2265. },
  2266. "_N$hoverSprite": {
  2267. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2268. },
  2269. "hoverSprite": {
  2270. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2271. },
  2272. "_N$disabledSprite": {
  2273. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2274. },
  2275. "_N$target": {
  2276. "__id__": 58
  2277. },
  2278. "_id": ""
  2279. },
  2280. {
  2281. "__type__": "cc.ClickEvent",
  2282. "target": {
  2283. "__id__": 1
  2284. },
  2285. "component": "",
  2286. "_componentId": "44137DozfJBcJ2mWQU1P352",
  2287. "handler": "onBindInviteInfo",
  2288. "customEventData": ""
  2289. },
  2290. {
  2291. "__type__": "cc.PrefabInfo",
  2292. "root": {
  2293. "__id__": 1
  2294. },
  2295. "asset": {
  2296. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  2297. },
  2298. "fileId": "1fOaC/XrtHdqpIZPUOIW0Q",
  2299. "sync": false
  2300. },
  2301. {
  2302. "__type__": "5697fyiQiJFyog3L7KK2Hx7",
  2303. "_name": "",
  2304. "_objFlags": 0,
  2305. "node": {
  2306. "__id__": 1
  2307. },
  2308. "_enabled": true,
  2309. "price": {
  2310. "__id__": 11
  2311. },
  2312. "date": {
  2313. "__id__": 19
  2314. },
  2315. "startTime": {
  2316. "__id__": 27
  2317. },
  2318. "endTime": {
  2319. "__id__": 35
  2320. },
  2321. "multiple": {
  2322. "__id__": 43
  2323. },
  2324. "describe": {
  2325. "__id__": 54
  2326. },
  2327. "_id": ""
  2328. },
  2329. {
  2330. "__type__": "cc.PrefabInfo",
  2331. "root": {
  2332. "__id__": 1
  2333. },
  2334. "asset": {
  2335. "__uuid__": "8b7c02b7-8c93-4f18-8a21-8ea7d64b433a"
  2336. },
  2337. "fileId": "d0fI6pl+pLZ5UweTGDLWiI",
  2338. "sync": false
  2339. }
  2340. ]