unc_alert.plist.meta 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586
  1. {
  2. "ver": "1.2.4",
  3. "uuid": "07a4b184-ad35-457c-af08-868bf3502155",
  4. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  5. "size": {
  6. "width": 1673,
  7. "height": 1023
  8. },
  9. "type": "Texture Packer",
  10. "subMetas": {
  11. "alert_bg_block_01.png": {
  12. "ver": "1.0.4",
  13. "uuid": "1d6bf6d8-209a-41be-a5fd-b4ee78a23fa9",
  14. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  15. "trimType": "auto",
  16. "trimThreshold": 1,
  17. "rotated": false,
  18. "offsetX": 0,
  19. "offsetY": 0,
  20. "trimX": 1134,
  21. "trimY": 989,
  22. "width": 24,
  23. "height": 24,
  24. "rawWidth": 24,
  25. "rawHeight": 24,
  26. "borderTop": 12,
  27. "borderBottom": 12,
  28. "borderLeft": 12,
  29. "borderRight": 12,
  30. "spriteType": "normal",
  31. "subMetas": {}
  32. },
  33. "alert_bg_block_02.png": {
  34. "ver": "1.0.4",
  35. "uuid": "eaaaceef-5e2b-47cd-a342-b4b4e8427b0a",
  36. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  37. "trimType": "auto",
  38. "trimThreshold": 1,
  39. "rotated": false,
  40. "offsetX": 0,
  41. "offsetY": 0,
  42. "trimX": 1108,
  43. "trimY": 989,
  44. "width": 24,
  45. "height": 24,
  46. "rawWidth": 24,
  47. "rawHeight": 24,
  48. "borderTop": 12,
  49. "borderBottom": 12,
  50. "borderLeft": 12,
  51. "borderRight": 12,
  52. "spriteType": "normal",
  53. "subMetas": {}
  54. },
  55. "alert_bg_block_03.png": {
  56. "ver": "1.0.4",
  57. "uuid": "ca8198a5-104d-4851-a2e4-e65b5d653a37",
  58. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  59. "trimType": "auto",
  60. "trimThreshold": 1,
  61. "rotated": false,
  62. "offsetX": 0,
  63. "offsetY": 0,
  64. "trimX": 1626,
  65. "trimY": 971,
  66. "width": 18,
  67. "height": 18,
  68. "rawWidth": 18,
  69. "rawHeight": 18,
  70. "borderTop": 9,
  71. "borderBottom": 9,
  72. "borderLeft": 9,
  73. "borderRight": 9,
  74. "spriteType": "normal",
  75. "subMetas": {}
  76. },
  77. "alert_bg_block_04.png": {
  78. "ver": "1.0.4",
  79. "uuid": "23946cb4-9ab6-41ef-bbaa-ebc891a6e009",
  80. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  81. "trimType": "auto",
  82. "trimThreshold": 1,
  83. "rotated": false,
  84. "offsetX": 0,
  85. "offsetY": 0,
  86. "trimX": 1082,
  87. "trimY": 989,
  88. "width": 24,
  89. "height": 24,
  90. "rawWidth": 24,
  91. "rawHeight": 24,
  92. "borderTop": 10,
  93. "borderBottom": 14,
  94. "borderLeft": 12,
  95. "borderRight": 12,
  96. "spriteType": "normal",
  97. "subMetas": {}
  98. },
  99. "alert_bg_block_05.png": {
  100. "ver": "1.0.4",
  101. "uuid": "c368420e-27c1-4a56-81f2-1f99e2998b0b",
  102. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  103. "trimType": "auto",
  104. "trimThreshold": 1,
  105. "rotated": false,
  106. "offsetX": 0,
  107. "offsetY": 0,
  108. "trimX": 1652,
  109. "trimY": 951,
  110. "width": 18,
  111. "height": 18,
  112. "rawWidth": 18,
  113. "rawHeight": 18,
  114. "borderTop": 8,
  115. "borderBottom": 10,
  116. "borderLeft": 9,
  117. "borderRight": 9,
  118. "spriteType": "normal",
  119. "subMetas": {}
  120. },
  121. "alert_bg_block_06.png": {
  122. "ver": "1.0.4",
  123. "uuid": "261fdb32-600b-4918-ad59-95df05efb364",
  124. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  125. "trimType": "auto",
  126. "trimThreshold": 1,
  127. "rotated": false,
  128. "offsetX": 0,
  129. "offsetY": 0,
  130. "trimX": 1632,
  131. "trimY": 951,
  132. "width": 18,
  133. "height": 18,
  134. "rawWidth": 18,
  135. "rawHeight": 18,
  136. "borderTop": 9,
  137. "borderBottom": 9,
  138. "borderLeft": 9,
  139. "borderRight": 9,
  140. "spriteType": "normal",
  141. "subMetas": {}
  142. },
  143. "alert_bg_block_07.png": {
  144. "ver": "1.0.4",
  145. "uuid": "4c53968c-0ca9-4765-b333-5b2f0ba224aa",
  146. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  147. "trimType": "auto",
  148. "trimThreshold": 1,
  149. "rotated": false,
  150. "offsetX": 0,
  151. "offsetY": 0,
  152. "trimX": 1186,
  153. "trimY": 989,
  154. "width": 18,
  155. "height": 18,
  156. "rawWidth": 18,
  157. "rawHeight": 18,
  158. "borderTop": 9,
  159. "borderBottom": 9,
  160. "borderLeft": 9,
  161. "borderRight": 9,
  162. "spriteType": "normal",
  163. "subMetas": {}
  164. },
  165. "alert_bg_block_08.png": {
  166. "ver": "1.0.4",
  167. "uuid": "3ef31b5e-f09a-42cd-85d8-94a0d8aee2c3",
  168. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  169. "trimType": "auto",
  170. "trimThreshold": 1,
  171. "rotated": false,
  172. "offsetX": 0,
  173. "offsetY": 0,
  174. "trimX": 826,
  175. "trimY": 941,
  176. "width": 28,
  177. "height": 28,
  178. "rawWidth": 28,
  179. "rawHeight": 28,
  180. "borderTop": 14,
  181. "borderBottom": 14,
  182. "borderLeft": 14,
  183. "borderRight": 14,
  184. "spriteType": "normal",
  185. "subMetas": {}
  186. },
  187. "alert_bg_block_09.png": {
  188. "ver": "1.0.4",
  189. "uuid": "9a6e1c54-55a3-4af7-aaab-940a372ec24d",
  190. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  191. "trimType": "auto",
  192. "trimThreshold": 1,
  193. "rotated": false,
  194. "offsetX": 0,
  195. "offsetY": 0,
  196. "trimX": 1444,
  197. "trimY": 737,
  198. "width": 8,
  199. "height": 18,
  200. "rawWidth": 8,
  201. "rawHeight": 18,
  202. "borderTop": 9,
  203. "borderBottom": 9,
  204. "borderLeft": 7,
  205. "borderRight": 1,
  206. "spriteType": "normal",
  207. "subMetas": {}
  208. },
  209. "alert_bg_block_10.png": {
  210. "ver": "1.0.4",
  211. "uuid": "1dd7640d-5654-406d-bbed-cde8c2ed080b",
  212. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  213. "trimType": "auto",
  214. "trimThreshold": 1,
  215. "rotated": false,
  216. "offsetX": 0,
  217. "offsetY": 0,
  218. "trimX": 1396,
  219. "trimY": 995,
  220. "width": 18,
  221. "height": 20,
  222. "rawWidth": 18,
  223. "rawHeight": 20,
  224. "borderTop": 10,
  225. "borderBottom": 10,
  226. "borderLeft": 9,
  227. "borderRight": 9,
  228. "spriteType": "normal",
  229. "subMetas": {}
  230. },
  231. "alert_bg_block_11.png": {
  232. "ver": "1.0.4",
  233. "uuid": "9c0caf60-39c2-4ef3-a1e9-9f9cc6810457",
  234. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  235. "trimType": "auto",
  236. "trimThreshold": 1,
  237. "rotated": false,
  238. "offsetX": 0,
  239. "offsetY": 0,
  240. "trimX": 870,
  241. "trimY": 622,
  242. "width": 44,
  243. "height": 44,
  244. "rawWidth": 44,
  245. "rawHeight": 44,
  246. "borderTop": 26,
  247. "borderBottom": 30,
  248. "borderLeft": 13,
  249. "borderRight": 14,
  250. "spriteType": "normal",
  251. "subMetas": {}
  252. },
  253. "alert_bg_block_12.png": {
  254. "ver": "1.0.4",
  255. "uuid": "f58a47a4-5193-475e-9243-244a24ca3606",
  256. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  257. "trimType": "auto",
  258. "trimThreshold": 1,
  259. "rotated": false,
  260. "offsetX": 0,
  261. "offsetY": 0,
  262. "trimX": 1388,
  263. "trimY": 587,
  264. "width": 63,
  265. "height": 62,
  266. "rawWidth": 63,
  267. "rawHeight": 62,
  268. "borderTop": 31,
  269. "borderBottom": 31,
  270. "borderLeft": 30,
  271. "borderRight": 31,
  272. "spriteType": "normal",
  273. "subMetas": {}
  274. },
  275. "alert_bg_block_13.png": {
  276. "ver": "1.0.4",
  277. "uuid": "8716974f-6f25-41c2-8445-37208629cac0",
  278. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  279. "trimType": "auto",
  280. "trimThreshold": 1,
  281. "rotated": false,
  282. "offsetX": 0,
  283. "offsetY": 0,
  284. "trimX": 1514,
  285. "trimY": 791,
  286. "width": 68,
  287. "height": 68,
  288. "rawWidth": 68,
  289. "rawHeight": 68,
  290. "borderTop": 34,
  291. "borderBottom": 34,
  292. "borderLeft": 34,
  293. "borderRight": 34,
  294. "spriteType": "normal",
  295. "subMetas": {}
  296. },
  297. "alert_bg_block_14.png": {
  298. "ver": "1.0.4",
  299. "uuid": "87b67e38-96eb-4aa6-b0f3-bd0a07335ac9",
  300. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  301. "trimType": "auto",
  302. "trimThreshold": 1,
  303. "rotated": false,
  304. "offsetX": 0,
  305. "offsetY": 0,
  306. "trimX": 1592,
  307. "trimY": 720,
  308. "width": 68,
  309. "height": 68,
  310. "rawWidth": 68,
  311. "rawHeight": 68,
  312. "borderTop": 34,
  313. "borderBottom": 34,
  314. "borderLeft": 34,
  315. "borderRight": 34,
  316. "spriteType": "normal",
  317. "subMetas": {}
  318. },
  319. "alert_bg_block_15.png": {
  320. "ver": "1.0.4",
  321. "uuid": "f189ca56-fe2f-4f05-8683-0aa08eb28e73",
  322. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  323. "trimType": "auto",
  324. "trimThreshold": 1,
  325. "rotated": false,
  326. "offsetX": 0,
  327. "offsetY": 0,
  328. "trimX": 1444,
  329. "trimY": 667,
  330. "width": 68,
  331. "height": 68,
  332. "rawWidth": 68,
  333. "rawHeight": 68,
  334. "borderTop": 34,
  335. "borderBottom": 34,
  336. "borderLeft": 33,
  337. "borderRight": 33,
  338. "spriteType": "normal",
  339. "subMetas": {}
  340. },
  341. "alert_bg_block_16.png": {
  342. "ver": "1.0.4",
  343. "uuid": "2776ef9b-36ad-4a6e-b8c7-bd1949ca4b21",
  344. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  345. "trimType": "auto",
  346. "trimThreshold": 1,
  347. "rotated": false,
  348. "offsetX": 0,
  349. "offsetY": 0,
  350. "trimX": 870,
  351. "trimY": 622,
  352. "width": 44,
  353. "height": 44,
  354. "rawWidth": 44,
  355. "rawHeight": 44,
  356. "borderTop": 22,
  357. "borderBottom": 22,
  358. "borderLeft": 22,
  359. "borderRight": 22,
  360. "spriteType": "normal",
  361. "subMetas": {}
  362. },
  363. "alert_bg_block_17.png": {
  364. "ver": "1.0.4",
  365. "uuid": "9aad234a-b52b-42ec-8317-ad3708363b8b",
  366. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  367. "trimType": "auto",
  368. "trimThreshold": 1,
  369. "rotated": false,
  370. "offsetX": 0,
  371. "offsetY": 0,
  372. "trimX": 1160,
  373. "trimY": 1009,
  374. "width": 12,
  375. "height": 12,
  376. "rawWidth": 12,
  377. "rawHeight": 12,
  378. "borderTop": 6,
  379. "borderBottom": 6,
  380. "borderLeft": 6,
  381. "borderRight": 6,
  382. "spriteType": "normal",
  383. "subMetas": {}
  384. },
  385. "alert_bg_block_18.png": {
  386. "ver": "1.0.4",
  387. "uuid": "760de526-525a-489a-8869-d706a2b93d86",
  388. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  389. "trimType": "auto",
  390. "trimThreshold": 1,
  391. "rotated": false,
  392. "offsetX": 0,
  393. "offsetY": 0,
  394. "trimX": 1516,
  395. "trimY": 941,
  396. "width": 60,
  397. "height": 72,
  398. "rawWidth": 60,
  399. "rawHeight": 72,
  400. "borderTop": 35,
  401. "borderBottom": 35,
  402. "borderLeft": 30,
  403. "borderRight": 30,
  404. "spriteType": "normal",
  405. "subMetas": {}
  406. },
  407. "alert_bg_block_19.png": {
  408. "ver": "1.0.4",
  409. "uuid": "e70e5cd1-29b3-4e74-b291-706deb52ed0b",
  410. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  411. "trimType": "auto",
  412. "trimThreshold": 1,
  413. "rotated": false,
  414. "offsetX": 0,
  415. "offsetY": 0,
  416. "trimX": 1584,
  417. "trimY": 853,
  418. "width": 60,
  419. "height": 60,
  420. "rawWidth": 60,
  421. "rawHeight": 60,
  422. "borderTop": 30,
  423. "borderBottom": 30,
  424. "borderLeft": 30,
  425. "borderRight": 30,
  426. "spriteType": "normal",
  427. "subMetas": {}
  428. },
  429. "alert_bg_block_20.png": {
  430. "ver": "1.0.4",
  431. "uuid": "9aa5c209-2362-4f25-8c3a-0a86816e50ff",
  432. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  433. "trimType": "auto",
  434. "trimThreshold": 1,
  435. "rotated": false,
  436. "offsetX": 0,
  437. "offsetY": 0,
  438. "trimX": 782,
  439. "trimY": 983,
  440. "width": 38,
  441. "height": 38,
  442. "rawWidth": 38,
  443. "rawHeight": 38,
  444. "borderTop": 19,
  445. "borderBottom": 19,
  446. "borderLeft": 18,
  447. "borderRight": 18,
  448. "spriteType": "normal",
  449. "subMetas": {}
  450. },
  451. "alert_bg_block_21.png": {
  452. "ver": "1.0.4",
  453. "uuid": "a8f681ff-4be5-4dbb-be54-39b587fb2fc3",
  454. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  455. "trimType": "auto",
  456. "trimThreshold": 1,
  457. "rotated": false,
  458. "offsetX": 0,
  459. "offsetY": 0,
  460. "trimX": 742,
  461. "trimY": 983,
  462. "width": 38,
  463. "height": 38,
  464. "rawWidth": 38,
  465. "rawHeight": 38,
  466. "borderTop": 19,
  467. "borderBottom": 19,
  468. "borderLeft": 19,
  469. "borderRight": 19,
  470. "spriteType": "normal",
  471. "subMetas": {}
  472. },
  473. "alert_bg_block_22.png": {
  474. "ver": "1.0.4",
  475. "uuid": "a75a63fb-57ce-45eb-8cd4-00fe6b5a7b46",
  476. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  477. "trimType": "auto",
  478. "trimThreshold": 1,
  479. "rotated": false,
  480. "offsetX": 0,
  481. "offsetY": 0,
  482. "trimX": 1160,
  483. "trimY": 989,
  484. "width": 24,
  485. "height": 18,
  486. "rawWidth": 24,
  487. "rawHeight": 18,
  488. "borderTop": 9,
  489. "borderBottom": 9,
  490. "borderLeft": 12,
  491. "borderRight": 12,
  492. "spriteType": "normal",
  493. "subMetas": {}
  494. },
  495. "alert_bg_block_23.png": {
  496. "ver": "1.0.4",
  497. "uuid": "db6a9b80-81d3-4f28-9d08-90e5c086f4b1",
  498. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  499. "trimType": "auto",
  500. "trimThreshold": 1,
  501. "rotated": false,
  502. "offsetX": 0,
  503. "offsetY": 0,
  504. "trimX": 1290,
  505. "trimY": 555,
  506. "width": 10,
  507. "height": 20,
  508. "rawWidth": 10,
  509. "rawHeight": 20,
  510. "borderTop": 10,
  511. "borderBottom": 10,
  512. "borderLeft": 5,
  513. "borderRight": 5,
  514. "spriteType": "normal",
  515. "subMetas": {}
  516. },
  517. "alert_bg_block_24.png": {
  518. "ver": "1.0.4",
  519. "uuid": "98c4dc2c-5329-4da6-8f55-95260d9caa0f",
  520. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  521. "trimType": "auto",
  522. "trimThreshold": 1,
  523. "rotated": false,
  524. "offsetX": 0,
  525. "offsetY": 0,
  526. "trimX": 1578,
  527. "trimY": 963,
  528. "width": 46,
  529. "height": 38,
  530. "rawWidth": 46,
  531. "rawHeight": 38,
  532. "borderTop": 18,
  533. "borderBottom": 18,
  534. "borderLeft": 23,
  535. "borderRight": 23,
  536. "spriteType": "normal",
  537. "subMetas": {}
  538. },
  539. "alert_bg_block_25.png": {
  540. "ver": "1.0.4",
  541. "uuid": "5817e106-90a5-4b7f-aabd-d5d024265fb5",
  542. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  543. "trimType": "auto",
  544. "trimThreshold": 1,
  545. "rotated": false,
  546. "offsetX": 0,
  547. "offsetY": 0,
  548. "trimX": 1234,
  549. "trimY": 555,
  550. "width": 54,
  551. "height": 30,
  552. "rawWidth": 54,
  553. "rawHeight": 30,
  554. "borderTop": 15,
  555. "borderBottom": 15,
  556. "borderLeft": 27,
  557. "borderRight": 27,
  558. "spriteType": "normal",
  559. "subMetas": {}
  560. },
  561. "alert_bg_block_26.png": {
  562. "ver": "1.0.4",
  563. "uuid": "2538eaf8-d889-41d6-b2df-44673569b329",
  564. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  565. "trimType": "auto",
  566. "trimThreshold": 1,
  567. "rotated": false,
  568. "offsetX": 0,
  569. "offsetY": 0,
  570. "trimX": 1056,
  571. "trimY": 989,
  572. "width": 24,
  573. "height": 24,
  574. "rawWidth": 24,
  575. "rawHeight": 24,
  576. "borderTop": 12,
  577. "borderBottom": 12,
  578. "borderLeft": 12,
  579. "borderRight": 12,
  580. "spriteType": "normal",
  581. "subMetas": {}
  582. },
  583. "alert_bg_block_27.png": {
  584. "ver": "1.0.4",
  585. "uuid": "f703d41a-c73d-4b36-9a1a-3c457d46f291",
  586. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  587. "trimType": "auto",
  588. "trimThreshold": 1,
  589. "rotated": false,
  590. "offsetX": 0,
  591. "offsetY": 0,
  592. "trimX": 1366,
  593. "trimY": 319,
  594. "width": 20,
  595. "height": 20,
  596. "rawWidth": 20,
  597. "rawHeight": 20,
  598. "borderTop": 10,
  599. "borderBottom": 10,
  600. "borderLeft": 10,
  601. "borderRight": 10,
  602. "spriteType": "normal",
  603. "subMetas": {}
  604. },
  605. "alert_bg_block_28.png": {
  606. "ver": "1.0.4",
  607. "uuid": "c93e5d5a-4118-4342-97ee-464aa64561aa",
  608. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  609. "trimType": "auto",
  610. "trimThreshold": 1,
  611. "rotated": false,
  612. "offsetX": 0,
  613. "offsetY": 0,
  614. "trimX": 822,
  615. "trimY": 983,
  616. "width": 32,
  617. "height": 32,
  618. "rawWidth": 32,
  619. "rawHeight": 32,
  620. "borderTop": 16,
  621. "borderBottom": 16,
  622. "borderLeft": 16,
  623. "borderRight": 16,
  624. "spriteType": "normal",
  625. "subMetas": {}
  626. },
  627. "alert_bg_block_29.png": {
  628. "ver": "1.0.4",
  629. "uuid": "1c812b66-159d-4605-b383-e1d64ad36527",
  630. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  631. "trimType": "auto",
  632. "trimThreshold": 1,
  633. "rotated": false,
  634. "offsetX": 0,
  635. "offsetY": 0,
  636. "trimX": 698,
  637. "trimY": 941,
  638. "width": 42,
  639. "height": 42,
  640. "rawWidth": 42,
  641. "rawHeight": 42,
  642. "borderTop": 21,
  643. "borderBottom": 21,
  644. "borderLeft": 21,
  645. "borderRight": 21,
  646. "spriteType": "normal",
  647. "subMetas": {}
  648. },
  649. "alert_bg_block_30.png": {
  650. "ver": "1.0.4",
  651. "uuid": "91cc4bb3-0448-4c42-afeb-b58030f86738",
  652. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  653. "trimType": "auto",
  654. "trimThreshold": 1,
  655. "rotated": false,
  656. "offsetX": 0,
  657. "offsetY": 0,
  658. "trimX": 1460,
  659. "trimY": 913,
  660. "width": 52,
  661. "height": 38,
  662. "rawWidth": 52,
  663. "rawHeight": 38,
  664. "borderTop": 18,
  665. "borderBottom": 18,
  666. "borderLeft": 26,
  667. "borderRight": 26,
  668. "spriteType": "normal",
  669. "subMetas": {}
  670. },
  671. "alert_bg_block_31.png": {
  672. "ver": "1.0.4",
  673. "uuid": "16ccb9d6-687a-40a0-a811-4275f0fca855",
  674. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  675. "trimType": "auto",
  676. "trimThreshold": 1,
  677. "rotated": false,
  678. "offsetX": 0,
  679. "offsetY": 0,
  680. "trimX": 806,
  681. "trimY": 666,
  682. "width": 30,
  683. "height": 30,
  684. "rawWidth": 30,
  685. "rawHeight": 30,
  686. "borderTop": 15,
  687. "borderBottom": 15,
  688. "borderLeft": 15,
  689. "borderRight": 15,
  690. "spriteType": "normal",
  691. "subMetas": {}
  692. },
  693. "alert_bg_block_32.png": {
  694. "ver": "1.0.4",
  695. "uuid": "ec2e94c7-b11d-4167-8088-8dd4b8ec2331",
  696. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  697. "trimType": "auto",
  698. "trimThreshold": 1,
  699. "rotated": false,
  700. "offsetX": 0,
  701. "offsetY": 0,
  702. "trimX": 1514,
  703. "trimY": 861,
  704. "width": 66,
  705. "height": 78,
  706. "rawWidth": 66,
  707. "rawHeight": 78,
  708. "borderTop": 23,
  709. "borderBottom": 49,
  710. "borderLeft": 33,
  711. "borderRight": 33,
  712. "spriteType": "normal",
  713. "subMetas": {}
  714. },
  715. "alert_bg_block_33.png": {
  716. "ver": "1.0.4",
  717. "uuid": "f0b1431a-b709-4f9a-a46e-935f598b006f",
  718. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  719. "trimType": "auto",
  720. "trimThreshold": 1,
  721. "rotated": false,
  722. "offsetX": 0,
  723. "offsetY": 0,
  724. "trimX": 1368,
  725. "trimY": 995,
  726. "width": 26,
  727. "height": 26,
  728. "rawWidth": 26,
  729. "rawHeight": 26,
  730. "borderTop": 13,
  731. "borderBottom": 13,
  732. "borderLeft": 13,
  733. "borderRight": 13,
  734. "spriteType": "normal",
  735. "subMetas": {}
  736. },
  737. "alert_bg_block_34.png": {
  738. "ver": "1.0.4",
  739. "uuid": "07e3dc4c-ea87-4f43-83c1-ef89365399f2",
  740. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  741. "trimType": "auto",
  742. "trimThreshold": 1,
  743. "rotated": false,
  744. "offsetX": 0,
  745. "offsetY": 0,
  746. "trimX": 1340,
  747. "trimY": 995,
  748. "width": 26,
  749. "height": 26,
  750. "rawWidth": 26,
  751. "rawHeight": 26,
  752. "borderTop": 13,
  753. "borderBottom": 13,
  754. "borderLeft": 13,
  755. "borderRight": 13,
  756. "spriteType": "normal",
  757. "subMetas": {}
  758. },
  759. "alert_bg_block_35.png": {
  760. "ver": "1.0.4",
  761. "uuid": "406f142b-c14a-49a9-8ed2-8346ebb03ef4",
  762. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  763. "trimType": "auto",
  764. "trimThreshold": 1,
  765. "rotated": false,
  766. "offsetX": 0,
  767. "offsetY": 0,
  768. "trimX": 1514,
  769. "trimY": 713,
  770. "width": 76,
  771. "height": 76,
  772. "rawWidth": 76,
  773. "rawHeight": 76,
  774. "borderTop": 38,
  775. "borderBottom": 38,
  776. "borderLeft": 38,
  777. "borderRight": 38,
  778. "spriteType": "normal",
  779. "subMetas": {}
  780. },
  781. "alert_bg_block_36.png": {
  782. "ver": "1.0.4",
  783. "uuid": "bcf4ae3a-6435-43b6-b0e1-e661c5c18225",
  784. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  785. "trimType": "auto",
  786. "trimThreshold": 1,
  787. "rotated": false,
  788. "offsetX": 0,
  789. "offsetY": 0,
  790. "trimX": 784,
  791. "trimY": 941,
  792. "width": 40,
  793. "height": 40,
  794. "rawWidth": 40,
  795. "rawHeight": 40,
  796. "borderTop": 20,
  797. "borderBottom": 20,
  798. "borderLeft": 20,
  799. "borderRight": 20,
  800. "spriteType": "normal",
  801. "subMetas": {}
  802. },
  803. "alert_bg_block_37.png": {
  804. "ver": "1.0.4",
  805. "uuid": "43350c07-284e-4ac8-990f-ac79316788a5",
  806. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  807. "trimType": "auto",
  808. "trimThreshold": 1,
  809. "rotated": false,
  810. "offsetX": 0,
  811. "offsetY": 0,
  812. "trimX": 1584,
  813. "trimY": 791,
  814. "width": 60,
  815. "height": 60,
  816. "rawWidth": 60,
  817. "rawHeight": 60,
  818. "borderTop": 29.9,
  819. "borderBottom": 29.9,
  820. "borderLeft": 29.9,
  821. "borderRight": 29.9,
  822. "spriteType": "normal",
  823. "subMetas": {}
  824. },
  825. "alert_bg_block_38.png": {
  826. "ver": "1.0.4",
  827. "uuid": "5c4d7633-647a-449e-8aba-c3dfb0555ee3",
  828. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  829. "trimType": "auto",
  830. "trimThreshold": 1,
  831. "rotated": false,
  832. "offsetX": 0,
  833. "offsetY": 0,
  834. "trimX": 742,
  835. "trimY": 941,
  836. "width": 40,
  837. "height": 40,
  838. "rawWidth": 40,
  839. "rawHeight": 40,
  840. "borderTop": 20,
  841. "borderBottom": 20,
  842. "borderLeft": 20,
  843. "borderRight": 20,
  844. "spriteType": "normal",
  845. "subMetas": {}
  846. },
  847. "alert_bg_block_39.png": {
  848. "ver": "1.0.4",
  849. "uuid": "caac6967-6350-4998-bd9a-bc52db223c08",
  850. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  851. "trimType": "auto",
  852. "trimThreshold": 1,
  853. "rotated": false,
  854. "offsetX": 0,
  855. "offsetY": 0,
  856. "trimX": 1176,
  857. "trimY": 557,
  858. "width": 48,
  859. "height": 108,
  860. "rawWidth": 48,
  861. "rawHeight": 108,
  862. "borderTop": 43,
  863. "borderBottom": 65,
  864. "borderLeft": 24,
  865. "borderRight": 24,
  866. "spriteType": "normal",
  867. "subMetas": {}
  868. },
  869. "alert_bg_block_40.png": {
  870. "ver": "1.0.4",
  871. "uuid": "17350d35-8605-48e2-bdf1-67c0806a010f",
  872. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  873. "trimType": "auto",
  874. "trimThreshold": 1,
  875. "rotated": false,
  876. "offsetX": 0,
  877. "offsetY": 0,
  878. "trimX": 978,
  879. "trimY": 969,
  880. "width": 26,
  881. "height": 27,
  882. "rawWidth": 26,
  883. "rawHeight": 27,
  884. "borderTop": 13,
  885. "borderBottom": 14,
  886. "borderLeft": 13,
  887. "borderRight": 13,
  888. "spriteType": "normal",
  889. "subMetas": {}
  890. },
  891. "alert_bg_block_41.png": {
  892. "ver": "1.0.4",
  893. "uuid": "fba6dd14-1d63-4d1d-8953-e23913dd201c",
  894. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  895. "trimType": "auto",
  896. "trimThreshold": 1,
  897. "rotated": false,
  898. "offsetX": 0,
  899. "offsetY": 0,
  900. "trimX": 1366,
  901. "trimY": 295,
  902. "width": 22,
  903. "height": 22,
  904. "rawWidth": 22,
  905. "rawHeight": 22,
  906. "borderTop": 11,
  907. "borderBottom": 11,
  908. "borderLeft": 11,
  909. "borderRight": 11,
  910. "spriteType": "normal",
  911. "subMetas": {}
  912. },
  913. "alert_bg_block_42.png": {
  914. "ver": "1.0.4",
  915. "uuid": "bfc4faa7-611d-4bbe-b996-901b11235677",
  916. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  917. "trimType": "auto",
  918. "trimThreshold": 1,
  919. "rotated": false,
  920. "offsetX": 0,
  921. "offsetY": 0,
  922. "trimX": 1632,
  923. "trimY": 915,
  924. "width": 34,
  925. "height": 34,
  926. "rawWidth": 34,
  927. "rawHeight": 34,
  928. "borderTop": 17,
  929. "borderBottom": 17,
  930. "borderLeft": 17,
  931. "borderRight": 17,
  932. "spriteType": "normal",
  933. "subMetas": {}
  934. },
  935. "alert_bg_block_43.png": {
  936. "ver": "1.0.4",
  937. "uuid": "21527617-d834-4112-8764-8ed54bdfc787",
  938. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  939. "trimType": "auto",
  940. "trimThreshold": 1,
  941. "rotated": false,
  942. "offsetX": 0,
  943. "offsetY": 0,
  944. "trimX": 608,
  945. "trimY": 964,
  946. "width": 55,
  947. "height": 55,
  948. "rawWidth": 55,
  949. "rawHeight": 55,
  950. "borderTop": 22,
  951. "borderBottom": 22,
  952. "borderLeft": 22,
  953. "borderRight": 22,
  954. "spriteType": "normal",
  955. "subMetas": {}
  956. },
  957. "alert_bg_block_47.png": {
  958. "ver": "1.0.4",
  959. "uuid": "ed07d753-efd7-451a-82f8-68955f789130",
  960. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  961. "trimType": "auto",
  962. "trimThreshold": 1,
  963. "rotated": false,
  964. "offsetX": 0,
  965. "offsetY": 0,
  966. "trimX": 1582,
  967. "trimY": 915,
  968. "width": 48,
  969. "height": 46,
  970. "rawWidth": 48,
  971. "rawHeight": 46,
  972. "borderTop": 15,
  973. "borderBottom": 15,
  974. "borderLeft": 15,
  975. "borderRight": 15,
  976. "spriteType": "normal",
  977. "subMetas": {}
  978. },
  979. "alert_bg_block_48.png": {
  980. "ver": "1.0.4",
  981. "uuid": "dd40a245-8179-467a-acde-fd5c5c6c176c",
  982. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  983. "trimType": "auto",
  984. "trimThreshold": 1,
  985. "rotated": false,
  986. "offsetX": 0,
  987. "offsetY": 0,
  988. "trimX": 1006,
  989. "trimY": 989,
  990. "width": 48,
  991. "height": 25,
  992. "rawWidth": 48,
  993. "rawHeight": 25,
  994. "borderTop": 7,
  995. "borderBottom": 13,
  996. "borderLeft": 22,
  997. "borderRight": 22,
  998. "spriteType": "normal",
  999. "subMetas": {}
  1000. },
  1001. "alert_bg_block_49.png": {
  1002. "ver": "1.0.4",
  1003. "uuid": "69212947-b00d-4cc9-96ad-3977c870ca09",
  1004. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1005. "trimType": "auto",
  1006. "trimThreshold": 1,
  1007. "rotated": false,
  1008. "offsetX": 0,
  1009. "offsetY": 0,
  1010. "trimX": 806,
  1011. "trimY": 622,
  1012. "width": 62,
  1013. "height": 42,
  1014. "rawWidth": 62,
  1015. "rawHeight": 42,
  1016. "borderTop": 17,
  1017. "borderBottom": 17,
  1018. "borderLeft": 24,
  1019. "borderRight": 24,
  1020. "spriteType": "normal",
  1021. "subMetas": {}
  1022. },
  1023. "alert_bg_block_50.png": {
  1024. "ver": "1.0.4",
  1025. "uuid": "1a851b57-f5b1-4332-a26a-3daac04392e7",
  1026. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1027. "trimType": "auto",
  1028. "trimThreshold": 1,
  1029. "rotated": false,
  1030. "offsetX": 0,
  1031. "offsetY": 0,
  1032. "trimX": 2,
  1033. "trimY": 2,
  1034. "width": 952,
  1035. "height": 322,
  1036. "rawWidth": 952,
  1037. "rawHeight": 322,
  1038. "borderTop": 0,
  1039. "borderBottom": 0,
  1040. "borderLeft": 0,
  1041. "borderRight": 0,
  1042. "spriteType": "normal",
  1043. "subMetas": {}
  1044. },
  1045. "alert_bg_block_51.png": {
  1046. "ver": "1.0.4",
  1047. "uuid": "10cdb29b-feb5-4901-a4a8-f651f15cf6bf",
  1048. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1049. "trimType": "auto",
  1050. "trimThreshold": 1,
  1051. "rotated": false,
  1052. "offsetX": 0,
  1053. "offsetY": 0,
  1054. "trimX": 2,
  1055. "trimY": 530,
  1056. "width": 912,
  1057. "height": 90,
  1058. "rawWidth": 912,
  1059. "rawHeight": 90,
  1060. "borderTop": 0,
  1061. "borderBottom": 0,
  1062. "borderLeft": 0,
  1063. "borderRight": 0,
  1064. "spriteType": "normal",
  1065. "subMetas": {}
  1066. },
  1067. "alert_bg_block_52.png": {
  1068. "ver": "1.0.4",
  1069. "uuid": "0f447adc-1e03-4ab9-bdcb-9bdc8bced733",
  1070. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1071. "trimType": "auto",
  1072. "trimThreshold": 1,
  1073. "rotated": false,
  1074. "offsetX": 0,
  1075. "offsetY": 0,
  1076. "trimX": 1508,
  1077. "trimY": 126,
  1078. "width": 82,
  1079. "height": 54,
  1080. "rawWidth": 82,
  1081. "rawHeight": 54,
  1082. "borderTop": 14,
  1083. "borderBottom": 14,
  1084. "borderLeft": 25,
  1085. "borderRight": 25,
  1086. "spriteType": "normal",
  1087. "subMetas": {}
  1088. },
  1089. "alert_bg_block_53.png": {
  1090. "ver": "1.0.4",
  1091. "uuid": "949d402c-b019-46c5-b3a3-7245e7ed5ddb",
  1092. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1093. "trimType": "auto",
  1094. "trimThreshold": 1,
  1095. "rotated": false,
  1096. "offsetX": 0,
  1097. "offsetY": 0,
  1098. "trimX": 1462,
  1099. "trimY": 789,
  1100. "width": 50,
  1101. "height": 50,
  1102. "rawWidth": 50,
  1103. "rawHeight": 50,
  1104. "borderTop": 0,
  1105. "borderBottom": 0,
  1106. "borderLeft": 0,
  1107. "borderRight": 0,
  1108. "spriteType": "normal",
  1109. "subMetas": {}
  1110. },
  1111. "alert_bg_block_54.png": {
  1112. "ver": "1.0.4",
  1113. "uuid": "4d963724-820c-4a7d-a252-9ee7240283ba",
  1114. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1115. "trimType": "auto",
  1116. "trimThreshold": 1,
  1117. "rotated": false,
  1118. "offsetX": 0,
  1119. "offsetY": 0,
  1120. "trimX": 1462,
  1121. "trimY": 737,
  1122. "width": 50,
  1123. "height": 50,
  1124. "rawWidth": 50,
  1125. "rawHeight": 50,
  1126. "borderTop": 0,
  1127. "borderBottom": 0,
  1128. "borderLeft": 0,
  1129. "borderRight": 0,
  1130. "spriteType": "normal",
  1131. "subMetas": {}
  1132. },
  1133. "alert_bg_buff_01.png": {
  1134. "ver": "1.0.4",
  1135. "uuid": "145d3a7d-e448-4c35-8b1d-e68e00787b9f",
  1136. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1137. "trimType": "auto",
  1138. "trimThreshold": 1,
  1139. "rotated": false,
  1140. "offsetX": 0,
  1141. "offsetY": 0,
  1142. "trimX": 854,
  1143. "trimY": 669,
  1144. "width": 154,
  1145. "height": 212,
  1146. "rawWidth": 154,
  1147. "rawHeight": 212,
  1148. "borderTop": 0,
  1149. "borderBottom": 0,
  1150. "borderLeft": 0,
  1151. "borderRight": 0,
  1152. "spriteType": "normal",
  1153. "subMetas": {}
  1154. },
  1155. "alert_bg_buff_02.png": {
  1156. "ver": "1.0.4",
  1157. "uuid": "845dd51d-9b07-4f8d-b539-82ce3194de56",
  1158. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1159. "trimType": "auto",
  1160. "trimThreshold": 1,
  1161. "rotated": false,
  1162. "offsetX": 0,
  1163. "offsetY": 0,
  1164. "trimX": 698,
  1165. "trimY": 698,
  1166. "width": 154,
  1167. "height": 212,
  1168. "rawWidth": 154,
  1169. "rawHeight": 212,
  1170. "borderTop": 0,
  1171. "borderBottom": 0,
  1172. "borderLeft": 0,
  1173. "borderRight": 0,
  1174. "spriteType": "normal",
  1175. "subMetas": {}
  1176. },
  1177. "alert_bg_buff_03.png": {
  1178. "ver": "1.0.4",
  1179. "uuid": "29b8540c-85ff-4caf-8d8f-39c340e3340e",
  1180. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1181. "trimType": "auto",
  1182. "trimThreshold": 1,
  1183. "rotated": false,
  1184. "offsetX": 0,
  1185. "offsetY": 0,
  1186. "trimX": 1234,
  1187. "trimY": 341,
  1188. "width": 154,
  1189. "height": 212,
  1190. "rawWidth": 154,
  1191. "rawHeight": 212,
  1192. "borderTop": 0,
  1193. "borderBottom": 0,
  1194. "borderLeft": 0,
  1195. "borderRight": 0,
  1196. "spriteType": "normal",
  1197. "subMetas": {}
  1198. },
  1199. "alert_bg_gradual_01.png": {
  1200. "ver": "1.0.4",
  1201. "uuid": "a9283a7c-f3e7-45cf-ad56-2c3ea581cc22",
  1202. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1203. "trimType": "auto",
  1204. "trimThreshold": 1,
  1205. "rotated": false,
  1206. "offsetX": 0,
  1207. "offsetY": 0,
  1208. "trimX": 1456,
  1209. "trimY": 895,
  1210. "width": 2,
  1211. "height": 86,
  1212. "rawWidth": 2,
  1213. "rawHeight": 86,
  1214. "borderTop": 43,
  1215. "borderBottom": 1,
  1216. "borderLeft": 1,
  1217. "borderRight": 1,
  1218. "spriteType": "normal",
  1219. "subMetas": {}
  1220. },
  1221. "alert_bg_gradual_02.png": {
  1222. "ver": "1.0.4",
  1223. "uuid": "22e7808c-0b3a-4d68-97d1-f76a913b31f3",
  1224. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1225. "trimType": "auto",
  1226. "trimThreshold": 1,
  1227. "rotated": false,
  1228. "offsetX": 0,
  1229. "offsetY": 0,
  1230. "trimX": 1454,
  1231. "trimY": 193,
  1232. "width": 58,
  1233. "height": 472,
  1234. "rawWidth": 58,
  1235. "rawHeight": 472,
  1236. "borderTop": 236,
  1237. "borderBottom": 234,
  1238. "borderLeft": 29,
  1239. "borderRight": 29,
  1240. "spriteType": "normal",
  1241. "subMetas": {}
  1242. },
  1243. "alert_bg_gradual_03.png": {
  1244. "ver": "1.0.4",
  1245. "uuid": "eaa4b0a7-5c06-416c-b566-8c4f06ae2d72",
  1246. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1247. "trimType": "auto",
  1248. "trimThreshold": 1,
  1249. "rotated": false,
  1250. "offsetX": 0,
  1251. "offsetY": 0,
  1252. "trimX": 1322,
  1253. "trimY": 773,
  1254. "width": 16,
  1255. "height": 50,
  1256. "rawWidth": 16,
  1257. "rawHeight": 50,
  1258. "borderTop": 18,
  1259. "borderBottom": 32,
  1260. "borderLeft": 8,
  1261. "borderRight": 8,
  1262. "spriteType": "normal",
  1263. "subMetas": {}
  1264. },
  1265. "alert_bg_gradual_04.png": {
  1266. "ver": "1.0.4",
  1267. "uuid": "2d029d7a-0ec2-48ed-ba96-f9413e54a555",
  1268. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1269. "trimType": "auto",
  1270. "trimThreshold": 1,
  1271. "rotated": false,
  1272. "offsetX": 0,
  1273. "offsetY": 0,
  1274. "trimX": 1494,
  1275. "trimY": 953,
  1276. "width": 20,
  1277. "height": 62,
  1278. "rawWidth": 20,
  1279. "rawHeight": 62,
  1280. "borderTop": 18,
  1281. "borderBottom": 44,
  1282. "borderLeft": 10,
  1283. "borderRight": 10,
  1284. "spriteType": "normal",
  1285. "subMetas": {}
  1286. },
  1287. "alert_bg_gradual_05.png": {
  1288. "ver": "1.0.4",
  1289. "uuid": "0ae049a7-717b-45da-b635-097b7d3b01bf",
  1290. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1291. "trimType": "auto",
  1292. "trimThreshold": 1,
  1293. "rotated": false,
  1294. "offsetX": 0,
  1295. "offsetY": 0,
  1296. "trimX": 1646,
  1297. "trimY": 850,
  1298. "width": 20,
  1299. "height": 50,
  1300. "rawWidth": 20,
  1301. "rawHeight": 50,
  1302. "borderTop": 17,
  1303. "borderBottom": 33,
  1304. "borderLeft": 10,
  1305. "borderRight": 10,
  1306. "spriteType": "normal",
  1307. "subMetas": {}
  1308. },
  1309. "alert_bg_gradual_06.png": {
  1310. "ver": "1.0.4",
  1311. "uuid": "0e21aa46-8d60-40e4-a97d-2b0fc4d0dbfe",
  1312. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1313. "trimType": "auto",
  1314. "trimThreshold": 1,
  1315. "rotated": false,
  1316. "offsetX": 0,
  1317. "offsetY": 0,
  1318. "trimX": 2,
  1319. "trimY": 326,
  1320. "width": 958,
  1321. "height": 202,
  1322. "rawWidth": 958,
  1323. "rawHeight": 202,
  1324. "borderTop": 141,
  1325. "borderBottom": 62,
  1326. "borderLeft": 479,
  1327. "borderRight": 480,
  1328. "spriteType": "normal",
  1329. "subMetas": {}
  1330. },
  1331. "alert_bg_gradual_08.png": {
  1332. "ver": "1.0.4",
  1333. "uuid": "415feab9-0f18-4287-b5a7-b02d47487729",
  1334. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1335. "trimType": "auto",
  1336. "trimThreshold": 1,
  1337. "rotated": false,
  1338. "offsetX": 0,
  1339. "offsetY": 0,
  1340. "trimX": 962,
  1341. "trimY": 341,
  1342. "width": 270,
  1343. "height": 118,
  1344. "rawWidth": 270,
  1345. "rawHeight": 118,
  1346. "borderTop": 68,
  1347. "borderBottom": 42,
  1348. "borderLeft": 135,
  1349. "borderRight": 135,
  1350. "spriteType": "normal",
  1351. "subMetas": {}
  1352. },
  1353. "alert_bg_gradual_09.png": {
  1354. "ver": "1.0.4",
  1355. "uuid": "7d82ee1c-7f70-4b85-82b7-af2616dd9711",
  1356. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1357. "trimType": "auto",
  1358. "trimThreshold": 1,
  1359. "rotated": false,
  1360. "offsetX": 0,
  1361. "offsetY": 0,
  1362. "trimX": 676,
  1363. "trimY": 934,
  1364. "width": 20,
  1365. "height": 40,
  1366. "rawWidth": 20,
  1367. "rawHeight": 40,
  1368. "borderTop": 20,
  1369. "borderBottom": 20,
  1370. "borderLeft": 10,
  1371. "borderRight": 10,
  1372. "spriteType": "normal",
  1373. "subMetas": {}
  1374. },
  1375. "alert_bg_gradual_10.png": {
  1376. "ver": "1.0.4",
  1377. "uuid": "d1b8609a-5f9c-4ea7-a813-678e940c6b0e",
  1378. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1379. "trimType": "auto",
  1380. "trimThreshold": 1,
  1381. "rotated": false,
  1382. "offsetX": 0,
  1383. "offsetY": 0,
  1384. "trimX": 1414,
  1385. "trimY": 895,
  1386. "width": 40,
  1387. "height": 88,
  1388. "rawWidth": 40,
  1389. "rawHeight": 88,
  1390. "borderTop": 43,
  1391. "borderBottom": 43,
  1392. "borderLeft": 20,
  1393. "borderRight": 20,
  1394. "spriteType": "normal",
  1395. "subMetas": {}
  1396. },
  1397. "alert_bg_gradual_11.png": {
  1398. "ver": "1.0.4",
  1399. "uuid": "561dc3cf-dbd1-48c5-a157-326ffa530941",
  1400. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1401. "trimType": "auto",
  1402. "trimThreshold": 1,
  1403. "rotated": false,
  1404. "offsetX": 0,
  1405. "offsetY": 0,
  1406. "trimX": 978,
  1407. "trimY": 883,
  1408. "width": 20,
  1409. "height": 84,
  1410. "rawWidth": 20,
  1411. "rawHeight": 84,
  1412. "borderTop": 32,
  1413. "borderBottom": 52,
  1414. "borderLeft": 10,
  1415. "borderRight": 10,
  1416. "spriteType": "normal",
  1417. "subMetas": {}
  1418. },
  1419. "alert_bg_gradual_12.png": {
  1420. "ver": "1.0.4",
  1421. "uuid": "1c48f91b-2cbf-48ba-9226-91537c965372",
  1422. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1423. "trimType": "auto",
  1424. "trimThreshold": 1,
  1425. "rotated": false,
  1426. "offsetX": 0,
  1427. "offsetY": 0,
  1428. "trimX": 1390,
  1429. "trimY": 223,
  1430. "width": 62,
  1431. "height": 362,
  1432. "rawWidth": 62,
  1433. "rawHeight": 362,
  1434. "borderTop": 179,
  1435. "borderBottom": 179,
  1436. "borderLeft": 29,
  1437. "borderRight": 27,
  1438. "spriteType": "normal",
  1439. "subMetas": {}
  1440. },
  1441. "alert_bg_gradual_13.png": {
  1442. "ver": "1.0.4",
  1443. "uuid": "0fa6f0b5-b710-4362-a3b7-fdd1e1e850e0",
  1444. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1445. "trimType": "auto",
  1446. "trimThreshold": 1,
  1447. "rotated": false,
  1448. "offsetX": 0,
  1449. "offsetY": 0,
  1450. "trimX": 1592,
  1451. "trimY": 538,
  1452. "width": 79,
  1453. "height": 180,
  1454. "rawWidth": 79,
  1455. "rawHeight": 180,
  1456. "borderTop": 78,
  1457. "borderBottom": 102,
  1458. "borderLeft": 39,
  1459. "borderRight": 40,
  1460. "spriteType": "normal",
  1461. "subMetas": {}
  1462. },
  1463. "alert_bg_gradual_14.png": {
  1464. "ver": "1.0.4",
  1465. "uuid": "7863ff34-ae8c-4ccc-bc93-1d6e3f0e573c",
  1466. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1467. "trimType": "auto",
  1468. "trimThreshold": 1,
  1469. "rotated": false,
  1470. "offsetX": 0,
  1471. "offsetY": 0,
  1472. "trimX": 1224,
  1473. "trimY": 829,
  1474. "width": 114,
  1475. "height": 170,
  1476. "rawWidth": 114,
  1477. "rawHeight": 170,
  1478. "borderTop": 85,
  1479. "borderBottom": 85,
  1480. "borderLeft": 57,
  1481. "borderRight": 57,
  1482. "spriteType": "normal",
  1483. "subMetas": {}
  1484. },
  1485. "alert_bg_gradual_15.png": {
  1486. "ver": "1.0.4",
  1487. "uuid": "5086e7f8-3cd8-465c-88e9-005e47810cc9",
  1488. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1489. "trimType": "auto",
  1490. "trimThreshold": 1,
  1491. "rotated": false,
  1492. "offsetX": 0,
  1493. "offsetY": 0,
  1494. "trimX": 2,
  1495. "trimY": 622,
  1496. "width": 706,
  1497. "height": 68,
  1498. "rawWidth": 706,
  1499. "rawHeight": 68,
  1500. "borderTop": 34,
  1501. "borderBottom": 34,
  1502. "borderLeft": 352,
  1503. "borderRight": 352,
  1504. "spriteType": "normal",
  1505. "subMetas": {}
  1506. },
  1507. "alert_bg_gradual_16.png": {
  1508. "ver": "1.0.4",
  1509. "uuid": "6ea3b2a4-23f9-41df-9c48-3d4b00adf346",
  1510. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1511. "trimType": "auto",
  1512. "trimThreshold": 1,
  1513. "rotated": false,
  1514. "offsetX": 0,
  1515. "offsetY": 0,
  1516. "trimX": 1670,
  1517. "trimY": 2,
  1518. "width": 1,
  1519. "height": 28,
  1520. "rawWidth": 1,
  1521. "rawHeight": 28,
  1522. "borderTop": 0,
  1523. "borderBottom": 0,
  1524. "borderLeft": 0,
  1525. "borderRight": 0,
  1526. "spriteType": "normal",
  1527. "subMetas": {}
  1528. },
  1529. "alert_bg_gradual_17.png": {
  1530. "ver": "1.0.4",
  1531. "uuid": "26a59340-69cf-49d1-a6f6-6e568501fbe2",
  1532. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1533. "trimType": "auto",
  1534. "trimThreshold": 1,
  1535. "rotated": false,
  1536. "offsetX": 0,
  1537. "offsetY": 0,
  1538. "trimX": 1178,
  1539. "trimY": 667,
  1540. "width": 104,
  1541. "height": 160,
  1542. "rawWidth": 104,
  1543. "rawHeight": 160,
  1544. "borderTop": 55,
  1545. "borderBottom": 99,
  1546. "borderLeft": 52,
  1547. "borderRight": 52,
  1548. "spriteType": "normal",
  1549. "subMetas": {}
  1550. },
  1551. "alert_bg_gradual_18.png": {
  1552. "ver": "1.0.4",
  1553. "uuid": "26386fbe-c0d2-4df2-b490-2258781ca849",
  1554. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1555. "trimType": "auto",
  1556. "trimThreshold": 1,
  1557. "rotated": false,
  1558. "offsetX": 0,
  1559. "offsetY": 0,
  1560. "trimX": 676,
  1561. "trimY": 704,
  1562. "width": 20,
  1563. "height": 228,
  1564. "rawWidth": 20,
  1565. "rawHeight": 228,
  1566. "borderTop": 0,
  1567. "borderBottom": 0,
  1568. "borderLeft": 10,
  1569. "borderRight": 10,
  1570. "spriteType": "normal",
  1571. "subMetas": {}
  1572. },
  1573. "alert_bg_gradual_19.png": {
  1574. "ver": "1.0.4",
  1575. "uuid": "ee188ec7-9e64-400d-9aaf-7c262bb22762",
  1576. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1577. "trimType": "auto",
  1578. "trimThreshold": 1,
  1579. "rotated": false,
  1580. "offsetX": 0,
  1581. "offsetY": 0,
  1582. "trimX": 1628,
  1583. "trimY": 2,
  1584. "width": 40,
  1585. "height": 116,
  1586. "rawWidth": 40,
  1587. "rawHeight": 116,
  1588. "borderTop": 56,
  1589. "borderBottom": 56,
  1590. "borderLeft": 13,
  1591. "borderRight": 13,
  1592. "spriteType": "normal",
  1593. "subMetas": {}
  1594. },
  1595. "alert_bg_gradual_20.png": {
  1596. "ver": "1.0.4",
  1597. "uuid": "15a55c4c-16e6-4483-b5a1-2c09d7550cc1",
  1598. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1599. "trimType": "auto",
  1600. "trimThreshold": 1,
  1601. "rotated": false,
  1602. "offsetX": 0,
  1603. "offsetY": 0,
  1604. "trimX": 1302,
  1605. "trimY": 555,
  1606. "width": 84,
  1607. "height": 94,
  1608. "rawWidth": 84,
  1609. "rawHeight": 94,
  1610. "borderTop": 45,
  1611. "borderBottom": 45,
  1612. "borderLeft": 39,
  1613. "borderRight": 39,
  1614. "spriteType": "normal",
  1615. "subMetas": {}
  1616. },
  1617. "alert_bg_gradual_21.png": {
  1618. "ver": "1.0.4",
  1619. "uuid": "46ffd1bd-c7ae-4fca-8f86-1f4425c2177d",
  1620. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1621. "trimType": "auto",
  1622. "trimThreshold": 1,
  1623. "rotated": false,
  1624. "offsetX": 0,
  1625. "offsetY": 0,
  1626. "trimX": 1462,
  1627. "trimY": 877,
  1628. "width": 50,
  1629. "height": 34,
  1630. "rawWidth": 50,
  1631. "rawHeight": 34,
  1632. "borderTop": 1,
  1633. "borderBottom": 1,
  1634. "borderLeft": 25,
  1635. "borderRight": 25,
  1636. "spriteType": "normal",
  1637. "subMetas": {}
  1638. },
  1639. "alert_bg_gradual_22.png": {
  1640. "ver": "1.0.4",
  1641. "uuid": "23594e2a-8975-4e0a-8bb0-3b900cdb1309",
  1642. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1643. "trimType": "auto",
  1644. "trimThreshold": 1,
  1645. "rotated": false,
  1646. "offsetX": 0,
  1647. "offsetY": 0,
  1648. "trimX": 1462,
  1649. "trimY": 841,
  1650. "width": 50,
  1651. "height": 34,
  1652. "rawWidth": 50,
  1653. "rawHeight": 34,
  1654. "borderTop": 0,
  1655. "borderBottom": 0,
  1656. "borderLeft": 25,
  1657. "borderRight": 25,
  1658. "spriteType": "normal",
  1659. "subMetas": {}
  1660. },
  1661. "alert_bg_gradual_23.png": {
  1662. "ver": "1.0.4",
  1663. "uuid": "f68479c0-21f4-4bdc-b123-13f09cae888a",
  1664. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1665. "trimType": "auto",
  1666. "trimThreshold": 1,
  1667. "rotated": false,
  1668. "offsetX": 0,
  1669. "offsetY": 0,
  1670. "trimX": 962,
  1671. "trimY": 223,
  1672. "width": 402,
  1673. "height": 116,
  1674. "rawWidth": 402,
  1675. "rawHeight": 116,
  1676. "borderTop": 56,
  1677. "borderBottom": 56,
  1678. "borderLeft": 201,
  1679. "borderRight": 201,
  1680. "spriteType": "normal",
  1681. "subMetas": {}
  1682. },
  1683. "alert_bg_gradual_24.png": {
  1684. "ver": "1.0.4",
  1685. "uuid": "72f6710d-9195-43f7-9752-b003995490be",
  1686. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1687. "trimType": "auto",
  1688. "trimThreshold": 1,
  1689. "rotated": false,
  1690. "offsetX": 0,
  1691. "offsetY": 0,
  1692. "trimX": 770,
  1693. "trimY": 692,
  1694. "width": 26,
  1695. "height": 4,
  1696. "rawWidth": 26,
  1697. "rawHeight": 4,
  1698. "borderTop": 0,
  1699. "borderBottom": 0,
  1700. "borderLeft": 0,
  1701. "borderRight": 0,
  1702. "spriteType": "normal",
  1703. "subMetas": {}
  1704. },
  1705. "alert_bg_gradual_25.png": {
  1706. "ver": "1.0.4",
  1707. "uuid": "01a3e811-5455-4902-bca5-06e739eb13fa",
  1708. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1709. "trimType": "auto",
  1710. "trimThreshold": 1,
  1711. "rotated": false,
  1712. "offsetX": 0,
  1713. "offsetY": 0,
  1714. "trimX": 1340,
  1715. "trimY": 773,
  1716. "width": 120,
  1717. "height": 120,
  1718. "rawWidth": 120,
  1719. "rawHeight": 120,
  1720. "borderTop": 25,
  1721. "borderBottom": 25,
  1722. "borderLeft": 25,
  1723. "borderRight": 25,
  1724. "spriteType": "normal",
  1725. "subMetas": {}
  1726. },
  1727. "alert_bg_gradual_26.png": {
  1728. "ver": "1.0.4",
  1729. "uuid": "0f42d0fa-8e2d-47bf-b6bd-84908002f19b",
  1730. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1731. "trimType": "auto",
  1732. "trimThreshold": 1,
  1733. "rotated": false,
  1734. "offsetX": 0,
  1735. "offsetY": 0,
  1736. "trimX": 446,
  1737. "trimY": 704,
  1738. "width": 228,
  1739. "height": 174,
  1740. "rawWidth": 228,
  1741. "rawHeight": 174,
  1742. "borderTop": 87,
  1743. "borderBottom": 87,
  1744. "borderLeft": 113,
  1745. "borderRight": 114,
  1746. "spriteType": "normal",
  1747. "subMetas": {}
  1748. },
  1749. "alert_bg_gradual_27.png": {
  1750. "ver": "1.0.4",
  1751. "uuid": "40b551c2-e5b3-4b34-bbe5-5a6e61ab80df",
  1752. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1753. "trimType": "auto",
  1754. "trimThreshold": 1,
  1755. "rotated": false,
  1756. "offsetX": 0,
  1757. "offsetY": 0,
  1758. "trimX": 1010,
  1759. "trimY": 837,
  1760. "width": 212,
  1761. "height": 150,
  1762. "rawWidth": 212,
  1763. "rawHeight": 150,
  1764. "borderTop": 62,
  1765. "borderBottom": 56,
  1766. "borderLeft": 83,
  1767. "borderRight": 83,
  1768. "spriteType": "normal",
  1769. "subMetas": {}
  1770. },
  1771. "alert_bg_gradual_28.png": {
  1772. "ver": "1.0.4",
  1773. "uuid": "4b9651dc-fcce-456c-b51d-1b24b61a742b",
  1774. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1775. "trimType": "auto",
  1776. "trimThreshold": 1,
  1777. "rotated": false,
  1778. "offsetX": 0,
  1779. "offsetY": 0,
  1780. "trimX": 446,
  1781. "trimY": 880,
  1782. "width": 228,
  1783. "height": 82,
  1784. "rawWidth": 228,
  1785. "rawHeight": 82,
  1786. "borderTop": 41,
  1787. "borderBottom": 41,
  1788. "borderLeft": 114,
  1789. "borderRight": 114,
  1790. "spriteType": "normal",
  1791. "subMetas": {}
  1792. },
  1793. "alert_bg_gradual_29.png": {
  1794. "ver": "1.0.4",
  1795. "uuid": "54f9a118-9383-4b65-8c03-b9c15f8fc4e0",
  1796. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1797. "trimType": "auto",
  1798. "trimThreshold": 1,
  1799. "rotated": false,
  1800. "offsetX": 0,
  1801. "offsetY": 0,
  1802. "trimX": 916,
  1803. "trimY": 557,
  1804. "width": 258,
  1805. "height": 110,
  1806. "rawWidth": 258,
  1807. "rawHeight": 110,
  1808. "borderTop": 55,
  1809. "borderBottom": 55,
  1810. "borderLeft": 129,
  1811. "borderRight": 129,
  1812. "spriteType": "normal",
  1813. "subMetas": {}
  1814. },
  1815. "alert_bg_gradual_30.png": {
  1816. "ver": "1.0.4",
  1817. "uuid": "dbfb2c42-aeee-420f-a4d6-350bfaffe3c9",
  1818. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1819. "trimType": "auto",
  1820. "trimThreshold": 1,
  1821. "rotated": false,
  1822. "offsetX": 0,
  1823. "offsetY": 0,
  1824. "trimX": 698,
  1825. "trimY": 912,
  1826. "width": 156,
  1827. "height": 27,
  1828. "rawWidth": 156,
  1829. "rawHeight": 27,
  1830. "borderTop": 14,
  1831. "borderBottom": 13,
  1832. "borderLeft": 78,
  1833. "borderRight": 78,
  1834. "spriteType": "normal",
  1835. "subMetas": {}
  1836. },
  1837. "alert_bg_gradual_31.png": {
  1838. "ver": "1.0.4",
  1839. "uuid": "402fb630-0da7-4372-afbd-6246013e09e0",
  1840. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1841. "trimType": "auto",
  1842. "trimThreshold": 1,
  1843. "rotated": false,
  1844. "offsetX": 0,
  1845. "offsetY": 0,
  1846. "trimX": 1514,
  1847. "trimY": 627,
  1848. "width": 76,
  1849. "height": 84,
  1850. "rawWidth": 76,
  1851. "rawHeight": 84,
  1852. "borderTop": 42,
  1853. "borderBottom": 42,
  1854. "borderLeft": 38,
  1855. "borderRight": 38,
  1856. "spriteType": "normal",
  1857. "subMetas": {}
  1858. },
  1859. "alert_bg_gradual_32.png": {
  1860. "ver": "1.0.4",
  1861. "uuid": "a26d1111-cca4-4bab-bff5-010f748bcc18",
  1862. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1863. "trimType": "auto",
  1864. "trimThreshold": 1,
  1865. "rotated": false,
  1866. "offsetX": 0,
  1867. "offsetY": 0,
  1868. "trimX": 1366,
  1869. "trimY": 223,
  1870. "width": 22,
  1871. "height": 70,
  1872. "rawWidth": 22,
  1873. "rawHeight": 70,
  1874. "borderTop": 35,
  1875. "borderBottom": 35,
  1876. "borderLeft": 11,
  1877. "borderRight": 11,
  1878. "spriteType": "normal",
  1879. "subMetas": {}
  1880. },
  1881. "alert_bg_gradual_33.png": {
  1882. "ver": "1.0.4",
  1883. "uuid": "ade03a92-94f1-41f7-b6a9-36c364eeabf0",
  1884. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1885. "trimType": "auto",
  1886. "trimThreshold": 1,
  1887. "rotated": false,
  1888. "offsetX": 0,
  1889. "offsetY": 0,
  1890. "trimX": 1284,
  1891. "trimY": 667,
  1892. "width": 36,
  1893. "height": 138,
  1894. "rawWidth": 36,
  1895. "rawHeight": 138,
  1896. "borderTop": 69,
  1897. "borderBottom": 69,
  1898. "borderLeft": 18,
  1899. "borderRight": 18,
  1900. "spriteType": "normal",
  1901. "subMetas": {}
  1902. },
  1903. "alert_bg_gradual_34.png": {
  1904. "ver": "1.0.4",
  1905. "uuid": "d189fcf4-6293-4548-8f85-ccc3bbd35d44",
  1906. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1907. "trimType": "auto",
  1908. "trimThreshold": 1,
  1909. "rotated": false,
  1910. "offsetX": 0,
  1911. "offsetY": 0,
  1912. "trimX": 1592,
  1913. "trimY": 126,
  1914. "width": 60,
  1915. "height": 410,
  1916. "rawWidth": 60,
  1917. "rawHeight": 410,
  1918. "borderTop": 206,
  1919. "borderBottom": 204,
  1920. "borderLeft": 30,
  1921. "borderRight": 31,
  1922. "spriteType": "normal",
  1923. "subMetas": {}
  1924. },
  1925. "alert_bg_gradual_35.png": {
  1926. "ver": "1.0.4",
  1927. "uuid": "0f876db0-cd24-4ac2-8975-513a21959aa1",
  1928. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1929. "trimType": "auto",
  1930. "trimThreshold": 1,
  1931. "rotated": false,
  1932. "offsetX": 0,
  1933. "offsetY": 0,
  1934. "trimX": 2,
  1935. "trimY": 692,
  1936. "width": 766,
  1937. "height": 4,
  1938. "rawWidth": 766,
  1939. "rawHeight": 4,
  1940. "borderTop": 2,
  1941. "borderBottom": 2,
  1942. "borderLeft": 300,
  1943. "borderRight": 300,
  1944. "spriteType": "normal",
  1945. "subMetas": {}
  1946. },
  1947. "alert_bg_gradual_36.png": {
  1948. "ver": "1.0.4",
  1949. "uuid": "fe76eae7-8f9c-4e05-b4b2-74854831718b",
  1950. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1951. "trimType": "auto",
  1952. "trimThreshold": 1,
  1953. "rotated": false,
  1954. "offsetX": 0,
  1955. "offsetY": 0,
  1956. "trimX": 1646,
  1957. "trimY": 790,
  1958. "width": 24,
  1959. "height": 58,
  1960. "rawWidth": 24,
  1961. "rawHeight": 58,
  1962. "borderTop": 27,
  1963. "borderBottom": 31,
  1964. "borderLeft": 12,
  1965. "borderRight": 12,
  1966. "spriteType": "normal",
  1967. "subMetas": {}
  1968. },
  1969. "alert_bg_gradual_37.jpg": {
  1970. "ver": "1.0.4",
  1971. "uuid": "0c6ba4d9-af84-45e3-9502-4c8458f2a235",
  1972. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1973. "trimType": "auto",
  1974. "trimThreshold": 1,
  1975. "rotated": false,
  1976. "offsetX": 0,
  1977. "offsetY": 0,
  1978. "trimX": 2,
  1979. "trimY": 698,
  1980. "width": 678,
  1981. "height": 4,
  1982. "rawWidth": 678,
  1983. "rawHeight": 4,
  1984. "borderTop": 0,
  1985. "borderBottom": 0,
  1986. "borderLeft": 0,
  1987. "borderRight": 0,
  1988. "spriteType": "normal",
  1989. "subMetas": {}
  1990. },
  1991. "alert_bg_gradual_38.png": {
  1992. "ver": "1.0.4",
  1993. "uuid": "2d3e1bc5-04fa-4acc-ac08-a19cf2ce1be0",
  1994. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  1995. "trimType": "auto",
  1996. "trimThreshold": 1,
  1997. "rotated": false,
  1998. "offsetX": 0,
  1999. "offsetY": 0,
  2000. "trimX": 956,
  2001. "trimY": 189,
  2002. "width": 548,
  2003. "height": 2,
  2004. "rawWidth": 548,
  2005. "rawHeight": 2,
  2006. "borderTop": 0,
  2007. "borderBottom": 0,
  2008. "borderLeft": 0,
  2009. "borderRight": 0,
  2010. "spriteType": "normal",
  2011. "subMetas": {}
  2012. },
  2013. "alert_bg_gradual_39.png": {
  2014. "ver": "1.0.4",
  2015. "uuid": "ed29fb2c-8c98-40d2-b1df-80610bb1aee3",
  2016. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2017. "trimType": "auto",
  2018. "trimThreshold": 1,
  2019. "rotated": false,
  2020. "offsetX": 0,
  2021. "offsetY": 0,
  2022. "trimX": 2,
  2023. "trimY": 704,
  2024. "width": 442,
  2025. "height": 220,
  2026. "rawWidth": 442,
  2027. "rawHeight": 220,
  2028. "borderTop": 110,
  2029. "borderBottom": 110,
  2030. "borderLeft": 221,
  2031. "borderRight": 221,
  2032. "spriteType": "normal",
  2033. "subMetas": {}
  2034. },
  2035. "alert_bg_gradual_40.png": {
  2036. "ver": "1.0.4",
  2037. "uuid": "2b1403a8-bff1-455c-9f3c-a45ba694333b",
  2038. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2039. "trimType": "auto",
  2040. "trimThreshold": 1,
  2041. "rotated": false,
  2042. "offsetX": 0,
  2043. "offsetY": 0,
  2044. "trimX": 710,
  2045. "trimY": 622,
  2046. "width": 94,
  2047. "height": 68,
  2048. "rawWidth": 94,
  2049. "rawHeight": 68,
  2050. "borderTop": 34,
  2051. "borderBottom": 34,
  2052. "borderLeft": 47,
  2053. "borderRight": 47,
  2054. "spriteType": "normal",
  2055. "subMetas": {}
  2056. },
  2057. "alert_bg_gradual_41.png": {
  2058. "ver": "1.0.4",
  2059. "uuid": "b2ff110c-3c2b-4bf0-8cad-67583d34e4cf",
  2060. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2061. "trimType": "auto",
  2062. "trimThreshold": 1,
  2063. "rotated": false,
  2064. "offsetX": 0,
  2065. "offsetY": 0,
  2066. "trimX": 962,
  2067. "trimY": 461,
  2068. "width": 270,
  2069. "height": 94,
  2070. "rawWidth": 270,
  2071. "rawHeight": 94,
  2072. "borderTop": 35,
  2073. "borderBottom": 59,
  2074. "borderLeft": 135,
  2075. "borderRight": 135,
  2076. "spriteType": "normal",
  2077. "subMetas": {}
  2078. },
  2079. "alert_bg_gradual_42.png": {
  2080. "ver": "1.0.4",
  2081. "uuid": "a2c6025a-4858-4fcd-8056-92a0f3c08deb",
  2082. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2083. "trimType": "auto",
  2084. "trimThreshold": 1,
  2085. "rotated": false,
  2086. "offsetX": 0,
  2087. "offsetY": 0,
  2088. "trimX": 1226,
  2089. "trimY": 587,
  2090. "width": 74,
  2091. "height": 78,
  2092. "rawWidth": 74,
  2093. "rawHeight": 78,
  2094. "borderTop": 37,
  2095. "borderBottom": 41,
  2096. "borderLeft": 37,
  2097. "borderRight": 37,
  2098. "spriteType": "normal",
  2099. "subMetas": {}
  2100. },
  2101. "alert_bg_gradual_43.png": {
  2102. "ver": "1.0.4",
  2103. "uuid": "fed3ea98-d196-40e9-a054-98a1d79d684a",
  2104. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2105. "trimType": "auto",
  2106. "trimThreshold": 1,
  2107. "rotated": false,
  2108. "offsetX": 0,
  2109. "offsetY": 0,
  2110. "trimX": 1654,
  2111. "trimY": 470,
  2112. "width": 12,
  2113. "height": 66,
  2114. "rawWidth": 12,
  2115. "rawHeight": 66,
  2116. "borderTop": 15,
  2117. "borderBottom": 51,
  2118. "borderLeft": 6,
  2119. "borderRight": 6,
  2120. "spriteType": "normal",
  2121. "subMetas": {}
  2122. },
  2123. "alert_bg_gradual_44.png": {
  2124. "ver": "1.0.4",
  2125. "uuid": "834ba2d6-8da5-4f4f-856c-12d1827bc1a7",
  2126. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2127. "trimType": "auto",
  2128. "trimThreshold": 1,
  2129. "rotated": false,
  2130. "offsetX": 0,
  2131. "offsetY": 0,
  2132. "trimX": 956,
  2133. "trimY": 223,
  2134. "width": 4,
  2135. "height": 78,
  2136. "rawWidth": 4,
  2137. "rawHeight": 78,
  2138. "borderTop": 39,
  2139. "borderBottom": 39,
  2140. "borderLeft": 2,
  2141. "borderRight": 2,
  2142. "spriteType": "normal",
  2143. "subMetas": {}
  2144. },
  2145. "alert_bg_gradual_45.png": {
  2146. "ver": "1.0.4",
  2147. "uuid": "b144fcfc-c644-4a26-b6aa-8b4e00b02e84",
  2148. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2149. "trimType": "auto",
  2150. "trimThreshold": 1,
  2151. "rotated": false,
  2152. "offsetX": 0,
  2153. "offsetY": 0,
  2154. "trimX": 1340,
  2155. "trimY": 895,
  2156. "width": 72,
  2157. "height": 98,
  2158. "rawWidth": 72,
  2159. "rawHeight": 98,
  2160. "borderTop": 49,
  2161. "borderBottom": 49,
  2162. "borderLeft": 36,
  2163. "borderRight": 36,
  2164. "spriteType": "normal",
  2165. "subMetas": {}
  2166. },
  2167. "alert_bg_gradual_46.png": {
  2168. "ver": "1.0.4",
  2169. "uuid": "35e2bf6c-61d0-4393-85d0-7d1020f206a5",
  2170. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2171. "trimType": "auto",
  2172. "trimThreshold": 1,
  2173. "rotated": false,
  2174. "offsetX": 0,
  2175. "offsetY": 0,
  2176. "trimX": 2,
  2177. "trimY": 1018,
  2178. "width": 3,
  2179. "height": 3,
  2180. "rawWidth": 3,
  2181. "rawHeight": 3,
  2182. "borderTop": 0,
  2183. "borderBottom": 0,
  2184. "borderLeft": 0,
  2185. "borderRight": 0,
  2186. "spriteType": "normal",
  2187. "subMetas": {}
  2188. },
  2189. "alert_bg_gradual_47.png": {
  2190. "ver": "1.0.4",
  2191. "uuid": "90847da9-bb66-4221-b13c-8637c7eee455",
  2192. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2193. "trimType": "auto",
  2194. "trimThreshold": 1,
  2195. "rotated": false,
  2196. "offsetX": 0,
  2197. "offsetY": 0,
  2198. "trimX": 916,
  2199. "trimY": 530,
  2200. "width": 32,
  2201. "height": 20,
  2202. "rawWidth": 32,
  2203. "rawHeight": 20,
  2204. "borderTop": 1,
  2205. "borderBottom": 19,
  2206. "borderLeft": 16,
  2207. "borderRight": 16,
  2208. "spriteType": "normal",
  2209. "subMetas": {}
  2210. },
  2211. "alert_bg_gradual_48.png": {
  2212. "ver": "1.0.4",
  2213. "uuid": "de82a33a-fbb3-4abe-8ea3-2d261c0eb7b5",
  2214. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2215. "trimType": "auto",
  2216. "trimThreshold": 1,
  2217. "rotated": false,
  2218. "offsetX": 0,
  2219. "offsetY": 0,
  2220. "trimX": 1284,
  2221. "trimY": 807,
  2222. "width": 32,
  2223. "height": 20,
  2224. "rawWidth": 32,
  2225. "rawHeight": 20,
  2226. "borderTop": 1,
  2227. "borderBottom": 19,
  2228. "borderLeft": 16,
  2229. "borderRight": 16,
  2230. "spriteType": "normal",
  2231. "subMetas": {}
  2232. },
  2233. "alert_bg_gradual_49.png": {
  2234. "ver": "1.0.4",
  2235. "uuid": "55fbbb34-29f6-49fc-b602-d30b3b1d63b9",
  2236. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2237. "trimType": "auto",
  2238. "trimThreshold": 1,
  2239. "rotated": false,
  2240. "offsetX": 0,
  2241. "offsetY": 0,
  2242. "trimX": 1460,
  2243. "trimY": 953,
  2244. "width": 32,
  2245. "height": 68,
  2246. "rawWidth": 32,
  2247. "rawHeight": 68,
  2248. "borderTop": 8,
  2249. "borderBottom": 60,
  2250. "borderLeft": 16,
  2251. "borderRight": 16,
  2252. "spriteType": "normal",
  2253. "subMetas": {}
  2254. },
  2255. "alert_bg_gradual_50.png": {
  2256. "ver": "1.0.4",
  2257. "uuid": "500f4720-d67f-4b1c-90c2-a170c3f89cfd",
  2258. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2259. "trimType": "auto",
  2260. "trimThreshold": 1,
  2261. "rotated": false,
  2262. "offsetX": 0,
  2263. "offsetY": 0,
  2264. "trimX": 1654,
  2265. "trimY": 384,
  2266. "width": 16,
  2267. "height": 84,
  2268. "rawWidth": 16,
  2269. "rawHeight": 84,
  2270. "borderTop": 32,
  2271. "borderBottom": 52,
  2272. "borderLeft": 8,
  2273. "borderRight": 8,
  2274. "spriteType": "normal",
  2275. "subMetas": {}
  2276. },
  2277. "alert_bg_gradual_51.png": {
  2278. "ver": "1.0.4",
  2279. "uuid": "78ffad16-2fcd-42bb-a103-f99ac6851973",
  2280. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2281. "trimType": "auto",
  2282. "trimThreshold": 1,
  2283. "rotated": false,
  2284. "offsetX": 0,
  2285. "offsetY": 0,
  2286. "trimX": 1654,
  2287. "trimY": 252,
  2288. "width": 16,
  2289. "height": 130,
  2290. "rawWidth": 16,
  2291. "rawHeight": 130,
  2292. "borderTop": 45,
  2293. "borderBottom": 85,
  2294. "borderLeft": 8,
  2295. "borderRight": 8,
  2296. "spriteType": "normal",
  2297. "subMetas": {}
  2298. },
  2299. "alert_bg_gradual_52.png": {
  2300. "ver": "1.0.4",
  2301. "uuid": "47be2ff0-8420-44c3-8bd9-b5c71b62e480",
  2302. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2303. "trimType": "auto",
  2304. "trimThreshold": 1,
  2305. "rotated": false,
  2306. "offsetX": 0,
  2307. "offsetY": 0,
  2308. "trimX": 1654,
  2309. "trimY": 120,
  2310. "width": 16,
  2311. "height": 130,
  2312. "rawWidth": 16,
  2313. "rawHeight": 130,
  2314. "borderTop": 49,
  2315. "borderBottom": 81,
  2316. "borderLeft": 8,
  2317. "borderRight": 8,
  2318. "spriteType": "normal",
  2319. "subMetas": {}
  2320. },
  2321. "alert_bg_gradual_53.png": {
  2322. "ver": "1.0.4",
  2323. "uuid": "fd258444-5755-4bb8-9bad-cc8f919418af",
  2324. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2325. "trimType": "auto",
  2326. "trimThreshold": 1,
  2327. "rotated": false,
  2328. "offsetX": 0,
  2329. "offsetY": 0,
  2330. "trimX": 1322,
  2331. "trimY": 651,
  2332. "width": 120,
  2333. "height": 120,
  2334. "rawWidth": 120,
  2335. "rawHeight": 120,
  2336. "borderTop": 0,
  2337. "borderBottom": 0,
  2338. "borderLeft": 0,
  2339. "borderRight": 0,
  2340. "spriteType": "normal",
  2341. "subMetas": {}
  2342. },
  2343. "alert_bg_gradual_54.png": {
  2344. "ver": "1.0.4",
  2345. "uuid": "d7147a77-4117-4a93-b6b3-87fc73fcdccb",
  2346. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2347. "trimType": "auto",
  2348. "trimThreshold": 1,
  2349. "rotated": false,
  2350. "offsetX": 0,
  2351. "offsetY": 0,
  2352. "trimX": 1010,
  2353. "trimY": 669,
  2354. "width": 166,
  2355. "height": 166,
  2356. "rawWidth": 166,
  2357. "rawHeight": 166,
  2358. "borderTop": 0,
  2359. "borderBottom": 0,
  2360. "borderLeft": 0,
  2361. "borderRight": 0,
  2362. "spriteType": "normal",
  2363. "subMetas": {}
  2364. },
  2365. "alert_bg_gradual_55.png": {
  2366. "ver": "1.0.4",
  2367. "uuid": "a2742929-2dcf-432b-8388-f59b83e56698",
  2368. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2369. "trimType": "auto",
  2370. "trimThreshold": 1,
  2371. "rotated": false,
  2372. "offsetX": 0,
  2373. "offsetY": 0,
  2374. "trimX": 1514,
  2375. "trimY": 189,
  2376. "width": 76,
  2377. "height": 436,
  2378. "rawWidth": 76,
  2379. "rawHeight": 436,
  2380. "borderTop": 103,
  2381. "borderBottom": 92,
  2382. "borderLeft": 40,
  2383. "borderRight": 38,
  2384. "spriteType": "normal",
  2385. "subMetas": {}
  2386. },
  2387. "alert_bg_gradual_56.png": {
  2388. "ver": "1.0.4",
  2389. "uuid": "f8e89c70-b052-4184-b76f-3cf567de70f9",
  2390. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2391. "trimType": "auto",
  2392. "trimThreshold": 1,
  2393. "rotated": false,
  2394. "offsetX": 0,
  2395. "offsetY": 0,
  2396. "trimX": 856,
  2397. "trimY": 883,
  2398. "width": 120,
  2399. "height": 120,
  2400. "rawWidth": 120,
  2401. "rawHeight": 120,
  2402. "borderTop": 0,
  2403. "borderBottom": 0,
  2404. "borderLeft": 0,
  2405. "borderRight": 0,
  2406. "spriteType": "normal",
  2407. "subMetas": {}
  2408. },
  2409. "alert_bg_gradual_57.png": {
  2410. "ver": "1.0.4",
  2411. "uuid": "97e234d8-2f3c-423a-841d-4ee2c9bdc153",
  2412. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2413. "trimType": "auto",
  2414. "trimThreshold": 1,
  2415. "rotated": false,
  2416. "offsetX": 0,
  2417. "offsetY": 0,
  2418. "trimX": 1000,
  2419. "trimY": 883,
  2420. "width": 6,
  2421. "height": 70,
  2422. "rawWidth": 6,
  2423. "rawHeight": 70,
  2424. "borderTop": 0,
  2425. "borderBottom": 0,
  2426. "borderLeft": 0,
  2427. "borderRight": 0,
  2428. "spriteType": "normal",
  2429. "subMetas": {}
  2430. },
  2431. "alert_bg_gradual_58.png": {
  2432. "ver": "1.0.4",
  2433. "uuid": "4c7e63ce-d640-4a16-8717-cce066046e98",
  2434. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2435. "trimType": "auto",
  2436. "trimThreshold": 1,
  2437. "rotated": false,
  2438. "offsetX": 0,
  2439. "offsetY": 0,
  2440. "trimX": 2,
  2441. "trimY": 926,
  2442. "width": 434,
  2443. "height": 90,
  2444. "rawWidth": 434,
  2445. "rawHeight": 90,
  2446. "borderTop": 0,
  2447. "borderBottom": 0,
  2448. "borderLeft": 0,
  2449. "borderRight": 0,
  2450. "spriteType": "normal",
  2451. "subMetas": {}
  2452. },
  2453. "alert_bg_gradual_59.png": {
  2454. "ver": "1.0.4",
  2455. "uuid": "7ab88bdd-9bbc-4a90-bcff-43dbba7eecae",
  2456. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2457. "trimType": "auto",
  2458. "trimThreshold": 1,
  2459. "rotated": false,
  2460. "offsetX": 0,
  2461. "offsetY": 0,
  2462. "trimX": 956,
  2463. "trimY": 2,
  2464. "width": 670,
  2465. "height": 122,
  2466. "rawWidth": 670,
  2467. "rawHeight": 122,
  2468. "borderTop": 0,
  2469. "borderBottom": 0,
  2470. "borderLeft": 0,
  2471. "borderRight": 0,
  2472. "spriteType": "normal",
  2473. "subMetas": {}
  2474. },
  2475. "alert_title_big.png": {
  2476. "ver": "1.0.4",
  2477. "uuid": "3082f089-6fca-4867-8ce2-3a27672d1b59",
  2478. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2479. "trimType": "auto",
  2480. "trimThreshold": 1,
  2481. "rotated": false,
  2482. "offsetX": 0,
  2483. "offsetY": 0,
  2484. "trimX": 956,
  2485. "trimY": 126,
  2486. "width": 550,
  2487. "height": 56,
  2488. "rawWidth": 550,
  2489. "rawHeight": 56,
  2490. "borderTop": 28,
  2491. "borderBottom": 11,
  2492. "borderLeft": 202,
  2493. "borderRight": 202,
  2494. "spriteType": "normal",
  2495. "subMetas": {}
  2496. },
  2497. "alert_title_cell_bg.png": {
  2498. "ver": "1.0.4",
  2499. "uuid": "da0ea654-a39d-49c0-8eb8-8e13310b0906",
  2500. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2501. "trimType": "auto",
  2502. "trimThreshold": 1,
  2503. "rotated": false,
  2504. "offsetX": 0,
  2505. "offsetY": 0,
  2506. "trimX": 438,
  2507. "trimY": 964,
  2508. "width": 168,
  2509. "height": 48,
  2510. "rawWidth": 168,
  2511. "rawHeight": 48,
  2512. "borderTop": 0,
  2513. "borderBottom": 0,
  2514. "borderLeft": 0,
  2515. "borderRight": 0,
  2516. "spriteType": "normal",
  2517. "subMetas": {}
  2518. },
  2519. "alert_title_small.png": {
  2520. "ver": "1.0.4",
  2521. "uuid": "f2a7311b-926b-462d-a393-87c6409a0aae",
  2522. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2523. "trimType": "auto",
  2524. "trimThreshold": 1,
  2525. "rotated": false,
  2526. "offsetX": 0,
  2527. "offsetY": 0,
  2528. "trimX": 956,
  2529. "trimY": 193,
  2530. "width": 496,
  2531. "height": 28,
  2532. "rawWidth": 496,
  2533. "rawHeight": 28,
  2534. "borderTop": 0,
  2535. "borderBottom": 0,
  2536. "borderLeft": 100,
  2537. "borderRight": 100,
  2538. "spriteType": "normal",
  2539. "subMetas": {}
  2540. },
  2541. "alert_title_zs.png": {
  2542. "ver": "1.0.4",
  2543. "uuid": "9933df57-efa3-4706-b09b-36ce690f7e8e",
  2544. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2545. "trimType": "auto",
  2546. "trimThreshold": 1,
  2547. "rotated": false,
  2548. "offsetX": 0,
  2549. "offsetY": 0,
  2550. "trimX": 1578,
  2551. "trimY": 1003,
  2552. "width": 54,
  2553. "height": 18,
  2554. "rawWidth": 54,
  2555. "rawHeight": 18,
  2556. "borderTop": 0,
  2557. "borderBottom": 0,
  2558. "borderLeft": 0,
  2559. "borderRight": 0,
  2560. "spriteType": "normal",
  2561. "subMetas": {}
  2562. },
  2563. "alert_tixian_line.png": {
  2564. "ver": "1.0.4",
  2565. "uuid": "d0169ce6-96c8-4ed8-bde1-673714fca53c",
  2566. "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
  2567. "trimType": "auto",
  2568. "trimThreshold": 1,
  2569. "rotated": false,
  2570. "offsetX": 0,
  2571. "offsetY": 0,
  2572. "trimX": 956,
  2573. "trimY": 184,
  2574. "width": 560,
  2575. "height": 3,
  2576. "rawWidth": 560,
  2577. "rawHeight": 3,
  2578. "borderTop": 0,
  2579. "borderBottom": 0,
  2580. "borderLeft": 0,
  2581. "borderRight": 0,
  2582. "spriteType": "normal",
  2583. "subMetas": {}
  2584. }
  2585. }
  2586. }