Commit 76acbb70 authored by WangFan's avatar WangFan

完成部分单词解析

parent 07b64184
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -6,7 +6,6 @@ const { ccclass, property } = cc._decorator; ...@@ -6,7 +6,6 @@ const { ccclass, property } = cc._decorator;
@ccclass @ccclass
export default class SceneComponent extends MyCocosSceneComponent { export default class SceneComponent extends MyCocosSceneComponent {
addPreloadImage() { addPreloadImage() {
// TODO 根据自己的配置预加载图片资源 // TODO 根据自己的配置预加载图片资源
this._imageResList.push({ url: this.data.pic_url }); this._imageResList.push({ url: this.data.pic_url });
...@@ -27,12 +26,29 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -27,12 +26,29 @@ export default class SceneComponent extends MyCocosSceneComponent {
this.initData(); this.initData();
this.initView(); this.initView();
this.initListener(); this.initListener();
this.initEvent()
this.initGame(); this.initGame();
} }
// 一轮单词数量
private static Word_List_Len: number = 8;
private word_area: cc.Node;
private answer_area: cc.Node;
private answer_word:cc.Node;
private upper_shadow: cc.Node;
private lower_shadow: cc.Node;
private lower_word: cc.Node;
private upper_word: cc.Node;
private layer_back: cc.Node;
private back_board: cc.Node;
_cantouch = null; _cantouch = null;
private list: Array<{ type, text, right, imgage, duration, content, audio }>; private list: Array<{ type, text, right, imgage, duration, content, audio }>;
private recordFlag: boolean;//录音模式 private recordFlag: boolean;//录音模式
// 单词列表
private word_list: Array<object>;
// 当前第几个
private cur_index: number = 0;
initData() { initData() {
// 所有全局变量 默认都是null // 所有全局变量 默认都是null
this._cantouch = true; this._cantouch = true;
...@@ -40,166 +56,194 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -40,166 +56,194 @@ export default class SceneComponent extends MyCocosSceneComponent {
this.recordFlag = data.recordFlag; this.recordFlag = data.recordFlag;
this.list = data.questions[0].options; this.list = data.questions[0].options;
this.layers = []; this.layers = [];
this.word_list = [
{
word: 'Aight',
answer: ['rig', 'ha', "t"],
isRight: false,
},
{
word: 'Bight',
answer: ['rig', 'hb', "a"],
isRight: false,
}, {
word: 'Cight',
answer: ['rig', 'hb', "c"],
isRight: false,
}, {
word: 'Dight',
answer: ['rig', 'hd', "d"],
isRight: false,
}, {
word: 'Eight',
answer: ['rig', 'he', "f"],
isRight: false,
}, {
word: 'Hight',
answer: ['rig', 'ht', "h"],
isRight: false,
}, {
word: 'Iight',
answer: ['rig', 'hh', "s"],
isRight: false,
},
{
word: 'KighT',
answer: ['rig', 'h', "t"],
isRight: false,
},
]
} }
private layer_record: cc.Node; private layer_record: cc.Node;
private layer_game: cc.Node;
private layer_word: cc.Node; private layer_word: cc.Node;
private layer_word_little: cc.Node;
private layers: Array<cc.Node>; private layers: Array<cc.Node>;
initView() { initView() {
this.layer_record = pg.view.find(this, 'layer_record') this.layer_record = pg.view.find(this, 'layer_record')
this.layer_game = pg.view.find(this, 'layer_game')
this.layer_word = pg.view.find(this, 'layer_word') this.layer_word = pg.view.find(this, 'layer_word')
this.layer_word_little = pg.view.find(this, 'layer_word_little')
this.word_area = pg.view.find(this.layer_word, "word_area");
this.answer_area = pg.view.find(this.layer_word, "answer_area");
this.answer_word = pg.view.find(this.layer_word, "answer_area/answer_word");
this.layer_back = pg.view.find(this, "layer_back");
this.back_board = pg.view.find(this.layer_back, "board");
this.upper_shadow = pg.view.find(this.layer_word, "upper_shadow");
this.lower_shadow = pg.view.find(this.layer_word, "lower_shadow");
this.upper_word = pg.view.find(this.layer_word, "upper_word");
this.lower_word = pg.view.find(this.layer_word, "lower_word");
this.showWord()
} }
initListener() { initListener() {
pg.event.on('layer_record_score', (score) => {
this.onRecorScore(score);
})
} }
private get CurrentData() { initEvent() {
return this.list[this.count] pg.view.touchOn(this.back_board, this.checkIsRight, this)
}
private get NextData() {
return this.list[this.count + 1]
}
private get OutData() {
return this.list[this.count + 2]
}
private get CurrentLayer() {
return this.layers[0]
}
private get LittleLayer() {
return this.layers[1]
}
private get OutLayer() {
return this.layers[2]
} }
private count: number; // 校验是否正确
initGame() { checkIsRight() {
this.count = 0; console.log(this.cur_index + 1 < SceneComponent.Word_List_Len);
let currentLayer = this.createLayer();
this.updateLayer(currentLayer, this.CurrentData)
this.layers.push(currentLayer)
let nextLayer = this.createLittleLayer();
this.updateLayer(nextLayer, this.NextData)
this.layers.push(nextLayer)
this.startPlay(); if ((this.cur_index + 1) < SceneComponent.Word_List_Len) {
} this.cur_index++
startPlay() { this.showWord()
if (this.recordFlag) {
this.layer_record.active = true;
} else {
if (this.CurrentData.type.indexOf('audio') > -1) {
pg.event.emit('img_voice_play_voice_start')
pg.audio.playAudioByUrl(this.CurrentData.audio, () => {
pg.event.emit('img_voice_play_voice_end')
this.nextLayer();
})
}
}
}
onRecorScore(score) {
this.layer_record.active = false;
if (score < 10) {
pg.event.on('layer_right_show_tryagain_end', () => {
// alert('test')
})
pg.event.emit('layer_right_show_tryagain')
} else if (score < 60) {
pg.event.on('layer_right_show_good_end', () => {
this.nextLayer();
})
pg.event.emit('layer_right_show_good')
} else {
pg.event.on('layer_right_show_excellent_end', () => {
this.nextLayer();
})
pg.event.emit('layer_right_show_excellent')
} }
} }
nextLayer() {
if (!this.NextData) { //单词的展示
this.gameOver(); showWord() {
pg.view.removChildren(this.word_area)
pg.view.removChildren(this.answer_word)
let curWord = this.word_list[this.cur_index];
// 大写的正则
const reg = /^[A-Z]+$/;
let strArr = curWord['word'].split('');
if (!strArr) {
console.log("error->curWord")
return; return;
} }
strArr.forEach(str => {
const lower = str.toLowerCase()
let prefabNode: cc.Node;
if (reg.test(str)) {
// 为大写
prefabNode = pg.view.find(this.upper_shadow, `${lower}2_di`)
} else {
prefabNode = pg.view.find(this.lower_shadow, `${lower}_di`)
}
let child = pg.view.clone(prefabNode)
child.active = true
//为小写
pg.view.addChild(this.word_area, child)
});
if (this.OutData) { let ansArr = curWord['answer'];
let outLayer = this.createLittleLayer(); if (!ansArr.length) {
this.updateLayer(outLayer, this.OutData) console.log("error->curWord")
outLayer.x = -1500; return;
this.layers.push(outLayer)
} }
ansArr.forEach(ans => {
let prefabNode: cc.Node;
// 利用单一节点存储多字母
let item = pg.view.find(this.layer_word, 'item');
pg.view.removChildren(item)
// 依据字符长度做不同的处理
const strLen = ans.length;
if (strLen > 1) {
// 长度大于一需要做拆分
let ansStrArr = ans.split('');
ansStrArr.forEach((str) => {
const lower = str.toLowerCase()
if (reg.test(str)) {
// 为大写
prefabNode = pg.view.find(this.upper_word, `${lower}2`)
} else {
prefabNode = pg.view.find(this.lower_word, `${lower}`)
}
let child = pg.view.clone(prefabNode)
child.active = true
//为小写
pg.view.addChild(item, child)
})
let cItem = pg.view.clone(item)
cItem.x=0;
cItem.y=0;
cItem.active=true;
pg.view.addChild(this.answer_word,cItem)
}else{
const lower = ans.toLowerCase()
if (reg.test(ans)) {
// 为大写
prefabNode = pg.view.find(this.upper_word, `${lower}2`)
} else {
prefabNode = pg.view.find(this.lower_word, `${lower}`)
}
let child = pg.view.clone(prefabNode)
child.x=0;
child.y=0;
child.active = true
pg.view.addChild(this.answer_word,child)
}
});
this.answer_word.children.forEach((word)=>{
this.touchOnMove(word)
})
cc.tween(this.CurrentLayer).to(3, { x: 2000 }).start();
if (this.LittleLayer) {
cc.tween(this.LittleLayer).to(3, { x: 0, y: 0, scale: 1 }).start();
}
if (this.OutLayer) {
cc.tween(this.OutLayer).to(3, { x: this.layer_word_little.x, y: this.layer_word_little.y }).start();
}
this.scheduleOnce(() => {
this.count++;
this.layers.shift();
this.startPlay();
}, 3)
} }
gameOver() {
touchOnMove(item){
item.on(cc.Node.EventType.TOUCH_MOVE, function (event) {
this.opacity = 255;
let delta = event.touch.getDelta();
this.x += delta.x;
this.y += delta.y;
}, item);
} }
createLayer() { private count: number;
let layer = pg.view.clone(this.layer_word); initGame() {
layer.active = true;
this.layer_game.addChild(layer)
return layer;
} }
createLittleLayer() { startPlay() {
let layer = pg.view.clone(this.layer_word);
layer.active = true;
layer.x = this.layer_word_little.x;
layer.y = this.layer_word_little.y;
layer.scale = this.layer_word_little.scale;
this.layer_game.addChild(layer)
return layer;
} }
gameOver() {
}
updateLayer(layer, data) { updateLayer(layer, data) {
let bg = pg.view.find(layer, 'bg');
let c1 = pg.view.find(bg, 'c1');
let c2 = pg.view.find(bg, 'c2');
let c3 = pg.view.find(bg, 'c3');
let c4 = pg.view.find(bg, 'c4');
let img = pg.view.find(layer, 'img');
let label = pg.view.find(layer, 'label');
let voice = pg.view.find(layer, 'voice');
// 根据数据来渲染
img.active = true;
pg.view.setNetImg(img, data.image, { w: 600, h: 370 })
label.active = data.type == 'img_txt' || data.type == 'img_txt_audio'
pg.view.setString(label, data.text);
voice.active = data.type == 'img_audio' || data.type == 'img_txt_audio'
pg.view.touchOn(voice, this.onTouchVoice, this);
if (this.recordFlag) {
c1.active = false;
c2.active = false;
c3.active = false;
c4.active = false;
}
} }
onTouchVoice(e) { onTouchVoice(e) {
let layer = e.target.parent;
if (layer === this.CurrentLayer) {
pg.event.emit('img_voice_play_voice_start')
pg.audio.playAudioByUrl(this.CurrentData.audio, () => {
pg.event.emit('img_voice_play_voice_end')
})
}
} }
playLocalAudio(audioName) { playLocalAudio(audioName) {
......
{
"ver": "1.1.2",
"uuid": "baf43703-f811-42fc-bd3c-9c985d1b65b0",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "77ebe906-3fa5-4022-bf08-781b4b568329",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "d2960a18-025c-4f6c-a115-6d4c8bb44ddf",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 166,
"height": 368,
"platformSettings": {},
"subMetas": {
"a_di": {
"ver": "1.0.4",
"uuid": "40e287ad-6ed2-4456-8b6f-008610fbe86f",
"rawTextureUuid": "d2960a18-025c-4f6c-a115-6d4c8bb44ddf",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 0,
"trimX": 4,
"trimY": 94,
"width": 157,
"height": 180,
"rawWidth": 166,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "7b8f5afa-f930-4d2b-b61c-56170aea9cd6",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 167,
"height": 368,
"platformSettings": {},
"subMetas": {
"b_di": {
"ver": "1.0.4",
"uuid": "e08e4316-693e-4cdb-9a30-69ccd92c61e3",
"rawTextureUuid": "7b8f5afa-f930-4d2b-b61c-56170aea9cd6",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 25,
"trimX": 5,
"trimY": 38,
"width": 156,
"height": 242,
"rawWidth": 167,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "413efa1d-689b-4782-92ca-a53d0b58311c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 153,
"height": 368,
"platformSettings": {},
"subMetas": {
"c_di": {
"ver": "1.0.4",
"uuid": "7f345633-22c9-4dac-b1fc-13f86fd0bd44",
"rawTextureUuid": "413efa1d-689b-4782-92ca-a53d0b58311c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -6,
"trimX": 3,
"trimY": 99,
"width": 147,
"height": 182,
"rawWidth": 153,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "b2ab5c75-5d9b-40c0-bc79-faf32efacd82",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 167,
"height": 368,
"platformSettings": {},
"subMetas": {
"d_di": {
"ver": "1.0.4",
"uuid": "cb3943e3-764a-40a7-8cfc-5e3546cce1aa",
"rawTextureUuid": "b2ab5c75-5d9b-40c0-bc79-faf32efacd82",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": 26,
"trimX": 4,
"trimY": 37,
"width": 157,
"height": 242,
"rawWidth": 167,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "db807add-362c-44a8-a829-d22d57dc458e",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 152,
"height": 368,
"platformSettings": {},
"subMetas": {
"e_di": {
"ver": "1.0.4",
"uuid": "beac91fa-4765-47cc-a80a-d84f89a3e35f",
"rawTextureUuid": "db807add-362c-44a8-a829-d22d57dc458e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -1,
"trimX": 3,
"trimY": 94,
"width": 146,
"height": 182,
"rawWidth": 152,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "2398d121-2d7a-473d-b703-ddc7d42913c0",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 127,
"height": 368,
"platformSettings": {},
"subMetas": {
"f_di": {
"ver": "1.0.4",
"uuid": "38c5de39-f68e-4a94-9c60-e019f099684f",
"rawTextureUuid": "2398d121-2d7a-473d-b703-ddc7d42913c0",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 35.5,
"trimX": 1,
"trimY": 28,
"width": 124,
"height": 241,
"rawWidth": 127,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "be5e8003-7915-4101-9e35-5cbb2a902797",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 168,
"height": 368,
"platformSettings": {},
"subMetas": {
"g_di": {
"ver": "1.0.4",
"uuid": "0aec55c8-be8e-4366-9f26-86576feccacc",
"rawTextureUuid": "be5e8003-7915-4101-9e35-5cbb2a902797",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1.5,
"offsetY": -38,
"trimX": 4,
"trimY": 107,
"width": 157,
"height": 230,
"rawWidth": 168,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9eaf9343-c200-4dc1-9440-ea37508d0d2a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 156,
"height": 368,
"platformSettings": {},
"subMetas": {
"h_di": {
"ver": "1.0.4",
"uuid": "52b9c036-7ad2-4f5b-a808-42e3fe14408c",
"rawTextureUuid": "9eaf9343-c200-4dc1-9440-ea37508d0d2a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": 33.5,
"trimX": 4,
"trimY": 29,
"width": 146,
"height": 243,
"rawWidth": 156,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "14f3bac8-4646-437f-a256-4d247cc9a199",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 52,
"height": 368,
"platformSettings": {},
"subMetas": {
"i_di": {
"ver": "1.0.4",
"uuid": "01355df5-5b33-4929-86f2-ffd641de316c",
"rawTextureUuid": "14f3bac8-4646-437f-a256-4d247cc9a199",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 29.5,
"trimX": 2,
"trimY": 38,
"width": 48,
"height": 233,
"rawWidth": 52,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "8e5e5d1d-865e-4fb0-b08f-c48512c78696",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 98,
"height": 368,
"platformSettings": {},
"subMetas": {
"j_di": {
"ver": "1.0.4",
"uuid": "52e1d8d8-f732-44ef-ac66-dd03e9576cea",
"rawTextureUuid": "8e5e5d1d-865e-4fb0-b08f-c48512c78696",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -3.5,
"trimX": 3,
"trimY": 45,
"width": 92,
"height": 285,
"rawWidth": 98,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "317b06af-7e52-4bd4-9381-8e117e9698e5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 147,
"height": 368,
"platformSettings": {},
"subMetas": {
"k_di": {
"ver": "1.0.4",
"uuid": "c8484847-6f29-443c-9a6c-c1af3213a75f",
"rawTextureUuid": "317b06af-7e52-4bd4-9381-8e117e9698e5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 35.5,
"trimX": 4,
"trimY": 28,
"width": 140,
"height": 241,
"rawWidth": 147,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "bf1ec9f4-7041-4512-9347-0b05a9380f22",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 53,
"height": 368,
"platformSettings": {},
"subMetas": {
"l_di": {
"ver": "1.0.4",
"uuid": "bedad56d-beb2-4826-a266-f35129ab5e83",
"rawTextureUuid": "bf1ec9f4-7041-4512-9347-0b05a9380f22",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 33.5,
"trimX": 4,
"trimY": 30,
"width": 44,
"height": 241,
"rawWidth": 53,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "7e457160-5c33-4815-a1ef-da7338da97db",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 255,
"height": 368,
"platformSettings": {},
"subMetas": {
"m_di": {
"ver": "1.0.4",
"uuid": "5064aca0-7ea2-499f-b222-8aac1a78f41a",
"rawTextureUuid": "7e457160-5c33-4815-a1ef-da7338da97db",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": -5,
"trimX": 3,
"trimY": 100,
"width": 247,
"height": 178,
"rawWidth": 255,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "38e06cc1-5f95-45ce-a3f9-99c49eecee65",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 154,
"height": 368,
"platformSettings": {},
"subMetas": {
"n_di": {
"ver": "1.0.4",
"uuid": "4845c198-9313-4813-9ee3-b5d9ff7b462f",
"rawTextureUuid": "38e06cc1-5f95-45ce-a3f9-99c49eecee65",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -6,
"trimX": 4,
"trimY": 101,
"width": 146,
"height": 178,
"rawWidth": 154,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "5e29c818-8abf-4373-99ec-90569950a95d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 172,
"height": 368,
"platformSettings": {},
"subMetas": {
"o_di": {
"ver": "1.0.4",
"uuid": "dcdec1ab-bd51-42bd-979e-214e1789dcc6",
"rawTextureUuid": "5e29c818-8abf-4373-99ec-90569950a95d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -5,
"trimX": 4,
"trimY": 98,
"width": 164,
"height": 182,
"rawWidth": 172,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "7c4b3798-a946-4f71-ad28-cc0989d19ee2",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 164,
"height": 368,
"platformSettings": {},
"subMetas": {
"p_di": {
"ver": "1.0.4",
"uuid": "ddbbf2c5-3365-4550-81a1-f5051a66991e",
"rawTextureUuid": "7c4b3798-a946-4f71-ad28-cc0989d19ee2",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": -34,
"trimX": 3,
"trimY": 106,
"width": 156,
"height": 224,
"rawWidth": 164,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "54bc6391-1512-44a7-8559-466757e4033a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 167,
"height": 368,
"platformSettings": {},
"subMetas": {
"q_di": {
"ver": "1.0.4",
"uuid": "90b3575a-6eb6-4143-b923-004a19f5ffcb",
"rawTextureUuid": "54bc6391-1512-44a7-8559-466757e4033a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": -33,
"trimX": 4,
"trimY": 105,
"width": 157,
"height": 224,
"rawWidth": 167,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "07c1d7df-cbc4-42c3-af9e-221d3fa46426",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 108,
"height": 368,
"platformSettings": {},
"subMetas": {
"r_di": {
"ver": "1.0.4",
"uuid": "446192b9-bb91-42bf-bac1-249182c00aa0",
"rawTextureUuid": "07c1d7df-cbc4-42c3-af9e-221d3fa46426",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -4,
"trimX": 3,
"trimY": 99,
"width": 102,
"height": 178,
"rawWidth": 108,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1c792150-6329-4f23-be53-11502663c56a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 137,
"height": 368,
"platformSettings": {},
"subMetas": {
"s_di": {
"ver": "1.0.4",
"uuid": "e8cb3659-11ef-4532-92f6-071cbbc79594",
"rawTextureUuid": "1c792150-6329-4f23-be53-11502663c56a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -4.5,
"trimX": 2,
"trimY": 99,
"width": 132,
"height": 179,
"rawWidth": 137,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1f5d0559-d907-4270-92f7-6c8a89e259c9",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 131,
"height": 368,
"platformSettings": {},
"subMetas": {
"t_di": {
"ver": "1.0.4",
"uuid": "b3102b6b-fa1b-4c22-9768-3ef6a38c585e",
"rawTextureUuid": "1f5d0559-d907-4270-92f7-6c8a89e259c9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": 15.5,
"trimX": 2,
"trimY": 64,
"width": 125,
"height": 209,
"rawWidth": 131,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "fad15325-c38f-4d65-9088-af29181b5ba1",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 156,
"height": 368,
"platformSettings": {},
"subMetas": {
"u_di": {
"ver": "1.0.4",
"uuid": "bd11fad4-3633-47e3-9384-aae1f3a2fda7",
"rawTextureUuid": "fad15325-c38f-4d65-9088-af29181b5ba1",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": -7.5,
"trimX": 4,
"trimY": 103,
"width": 146,
"height": 177,
"rawWidth": 156,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "eb4a8772-1014-465f-86aa-248641409745",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 152,
"height": 368,
"platformSettings": {},
"subMetas": {
"v_di": {
"ver": "1.0.4",
"uuid": "72875068-6e2f-4fd4-9a2f-7b08a7cab6aa",
"rawTextureUuid": "eb4a8772-1014-465f-86aa-248641409745",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -3.5,
"trimX": 2,
"trimY": 100,
"width": 147,
"height": 175,
"rawWidth": 152,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "4e759281-4703-4576-81a8-604f871b636a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 235,
"height": 368,
"platformSettings": {},
"subMetas": {
"w_di": {
"ver": "1.0.4",
"uuid": "02206b9b-c841-4dd1-abdc-69a0b1a8dad5",
"rawTextureUuid": "4e759281-4703-4576-81a8-604f871b636a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -7.5,
"trimX": 2,
"trimY": 104,
"width": 230,
"height": 175,
"rawWidth": 235,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "b9bb8d52-5bfc-4999-adcb-87a760d7cb6f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 150,
"height": 368,
"platformSettings": {},
"subMetas": {
"x_di": {
"ver": "1.0.4",
"uuid": "4c1686e4-15ab-44dc-ac71-efcf95be293c",
"rawTextureUuid": "b9bb8d52-5bfc-4999-adcb-87a760d7cb6f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -6,
"trimX": 0,
"trimY": 102,
"width": 149,
"height": 176,
"rawWidth": 150,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "b5521dc9-a798-422a-82df-6d2d54c26e10",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 158,
"height": 368,
"platformSettings": {},
"subMetas": {
"y_di": {
"ver": "1.0.4",
"uuid": "12d93b2d-62f2-423c-9075-7cd8631a6718",
"rawTextureUuid": "b5521dc9-a798-422a-82df-6d2d54c26e10",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": -34.5,
"trimX": 4,
"trimY": 105,
"width": 148,
"height": 227,
"rawWidth": 158,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "499ba482-1273-40a3-99e3-0c3f360e9cd3",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 141,
"height": 368,
"platformSettings": {},
"subMetas": {
"z_di": {
"ver": "1.0.4",
"uuid": "321c80d3-3efb-45d8-ba11-5b952177716f",
"rawTextureUuid": "499ba482-1273-40a3-99e3-0c3f360e9cd3",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": -5.5,
"trimX": 1,
"trimY": 105,
"width": 137,
"height": 169,
"rawWidth": 141,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "7962e65a-83b1-4922-9b3e-16f7fc53320c",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "a22b80c3-81aa-40c3-8a45-828785bd6bd7",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 207,
"height": 368,
"platformSettings": {},
"subMetas": {
"a": {
"ver": "1.0.4",
"uuid": "dcf7c4b3-38fe-4412-b2f9-9c2e4d1d34d8",
"rawTextureUuid": "a22b80c3-81aa-40c3-8a45-828785bd6bd7",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1.5,
"offsetY": -2,
"trimX": 8,
"trimY": 75,
"width": 188,
"height": 222,
"rawWidth": 207,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "e2f53d58-b96d-4619-a59b-01ae75d14abc",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 214,
"height": 368,
"platformSettings": {},
"subMetas": {
"b": {
"ver": "1.0.4",
"uuid": "ebffdb95-4634-4650-a4b3-37098a0f546d",
"rawTextureUuid": "e2f53d58-b96d-4619-a59b-01ae75d14abc",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 31.5,
"trimX": 13,
"trimY": 3,
"width": 188,
"height": 299,
"rawWidth": 214,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9bbef973-d530-436e-b310-277d289b7bbf",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 197,
"height": 368,
"platformSettings": {},
"subMetas": {
"c": {
"ver": "1.0.4",
"uuid": "4c3a3323-e9eb-486b-8b49-6edf43cb022e",
"rawTextureUuid": "9bbef973-d530-436e-b310-277d289b7bbf",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -2.5,
"offsetY": -8,
"trimX": 8,
"trimY": 80,
"width": 176,
"height": 224,
"rawWidth": 197,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "6255e398-7150-4bba-bd80-dc47e5b68b0e",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 207,
"height": 368,
"platformSettings": {},
"subMetas": {
"d": {
"ver": "1.0.4",
"uuid": "96143a2a-b528-4f28-a9e6-9e9e6271debd",
"rawTextureUuid": "6255e398-7150-4bba-bd80-dc47e5b68b0e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 31.5,
"trimX": 9,
"trimY": 3,
"width": 188,
"height": 299,
"rawWidth": 207,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9586a085-b479-4b3f-bd22-7b67c0aa7f3d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 196,
"height": 368,
"platformSettings": {},
"subMetas": {
"e": {
"ver": "1.0.4",
"uuid": "09fc54eb-8da3-4b1a-b04e-0a64f55c197e",
"rawTextureUuid": "9586a085-b479-4b3f-bd22-7b67c0aa7f3d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1.5,
"offsetY": -3,
"trimX": 9,
"trimY": 75,
"width": 175,
"height": 224,
"rawWidth": 196,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "77c90e8f-4eb0-4489-b948-066d7f5da4ca",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 156,
"height": 368,
"platformSettings": {},
"subMetas": {
"f": {
"ver": "1.0.4",
"uuid": "b9e904d4-eefe-44fd-a398-a524e18adf23",
"rawTextureUuid": "77c90e8f-4eb0-4489-b948-066d7f5da4ca",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1,
"offsetY": 33,
"trimX": 5,
"trimY": 2,
"width": 148,
"height": 298,
"rawWidth": 156,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "c3b52dbe-3538-40c3-bc13-be3600f82ad4",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 207,
"height": 368,
"platformSettings": {},
"subMetas": {
"g": {
"ver": "1.0.4",
"uuid": "b4a8e8e2-2469-49c8-8eed-58e289807f4f",
"rawTextureUuid": "c3b52dbe-3538-40c3-bc13-be3600f82ad4",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -38,
"trimX": 9,
"trimY": 80,
"width": 188,
"height": 284,
"rawWidth": 207,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "a802f0c8-fe30-4653-9abb-3d80d65279ce",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 195,
"height": 368,
"platformSettings": {},
"subMetas": {
"h": {
"ver": "1.0.4",
"uuid": "1079d526-0f23-4480-8a9e-c9ae0b7df958",
"rawTextureUuid": "a802f0c8-fe30-4653-9abb-3d80d65279ce",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 35,
"trimX": 10,
"trimY": 1,
"width": 175,
"height": 296,
"rawWidth": 195,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f108a15c-51ba-4eb4-94d4-b63a0fe982ff",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 74,
"height": 368,
"platformSettings": {},
"subMetas": {
"i": {
"ver": "1.0.4",
"uuid": "3197ebaa-5604-495c-84e0-5149707cfc1a",
"rawTextureUuid": "f108a15c-51ba-4eb4-94d4-b63a0fe982ff",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 28.5,
"trimX": 10,
"trimY": 11,
"width": 54,
"height": 289,
"rawWidth": 74,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9b7f38b6-b179-4168-b6be-f347fc937c38",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 117,
"height": 368,
"platformSettings": {},
"subMetas": {
"j": {
"ver": "1.0.4",
"uuid": "e42bf6ce-dbbd-4ea4-a93c-43f7fbbb5652",
"rawTextureUuid": "9b7f38b6-b179-4168-b6be-f347fc937c38",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1.5,
"offsetY": -3.5,
"trimX": 3,
"trimY": 11,
"width": 108,
"height": 353,
"rawWidth": 117,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1297f0ad-943a-4930-b202-f375181746b9",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 186,
"height": 368,
"platformSettings": {},
"subMetas": {
"k": {
"ver": "1.0.4",
"uuid": "592b7d9f-b4c6-4ca7-aace-ff78c782cd60",
"rawTextureUuid": "1297f0ad-943a-4930-b202-f375181746b9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": 33,
"trimX": 8,
"trimY": 2,
"width": 168,
"height": 298,
"rawWidth": 186,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "76e65b69-45fb-4bda-8c98-bb2df368b0fa",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 71,
"height": 368,
"platformSettings": {},
"subMetas": {
"l": {
"ver": "1.0.4",
"uuid": "1f28fdc4-ef4d-40a5-aa6e-f1927892dad9",
"rawTextureUuid": "76e65b69-45fb-4bda-8c98-bb2df368b0fa",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1.5,
"offsetY": 33,
"trimX": 9,
"trimY": 2,
"width": 50,
"height": 298,
"rawWidth": 71,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "91bdfcf6-8b57-49e8-a3c0-144748dc549b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 320,
"height": 368,
"platformSettings": {},
"subMetas": {
"m": {
"ver": "1.0.4",
"uuid": "63108cc3-0844-42c9-a590-cbc668d8de20",
"rawTextureUuid": "91bdfcf6-8b57-49e8-a3c0-144748dc549b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -5.5,
"trimX": 9,
"trimY": 79,
"width": 301,
"height": 221,
"rawWidth": 320,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9add55b5-ad4a-487a-b3c2-5ee5180651b6",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 191,
"height": 368,
"platformSettings": {},
"subMetas": {
"n": {
"ver": "1.0.4",
"uuid": "96df8933-2f83-45fa-83b4-d947634bd122",
"rawTextureUuid": "9add55b5-ad4a-487a-b3c2-5ee5180651b6",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -6.5,
"trimX": 8,
"trimY": 80,
"width": 176,
"height": 221,
"rawWidth": 191,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "cfdc8d64-8238-4bd2-bb71-643a463ea7db",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 213,
"height": 368,
"platformSettings": {},
"subMetas": {
"o": {
"ver": "1.0.4",
"uuid": "ccb4b1fa-d039-4cd2-aa48-9f8e0fdae4d2",
"rawTextureUuid": "cfdc8d64-8238-4bd2-bb71-643a463ea7db",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -7.5,
"trimX": 8,
"trimY": 79,
"width": 197,
"height": 225,
"rawWidth": 213,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "efb0e487-6748-40c8-b490-007fbdf07771",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 199,
"height": 368,
"platformSettings": {},
"subMetas": {
"p": {
"ver": "1.0.4",
"uuid": "5fb1bc97-2b20-4fab-86be-fcfe0b016287",
"rawTextureUuid": "efb0e487-6748-40c8-b490-007fbdf07771",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -34,
"trimX": 5,
"trimY": 79,
"width": 188,
"height": 278,
"rawWidth": 199,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "d8bdc7d9-98f8-4b3f-b8e0-a54e5336aef0",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 205,
"height": 368,
"platformSettings": {},
"subMetas": {
"q": {
"ver": "1.0.4",
"uuid": "c7c8fe61-3c35-451f-ba8f-176d7f2361ad",
"rawTextureUuid": "d8bdc7d9-98f8-4b3f-b8e0-a54e5336aef0",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -34,
"trimX": 8,
"trimY": 79,
"width": 189,
"height": 278,
"rawWidth": 205,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "0c0287c3-07c0-4695-b9b9-afeedc2de8cf",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 132,
"height": 368,
"platformSettings": {},
"subMetas": {
"r": {
"ver": "1.0.4",
"uuid": "034b8b1d-f65d-4cc9-808a-b2dbaa55903e",
"rawTextureUuid": "0c0287c3-07c0-4695-b9b9-afeedc2de8cf",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -5.5,
"trimX": 5,
"trimY": 79,
"width": 122,
"height": 221,
"rawWidth": 132,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1502b746-b41f-405d-8c28-a4f69b5e0647",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 170,
"height": 368,
"platformSettings": {},
"subMetas": {
"s": {
"ver": "1.0.4",
"uuid": "76e48a91-efa4-4c71-b118-215b102198d8",
"rawTextureUuid": "1502b746-b41f-405d-8c28-a4f69b5e0647",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -7.5,
"trimX": 6,
"trimY": 81,
"width": 158,
"height": 221,
"rawWidth": 170,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "fb60f72b-8a69-47b5-ad70-6b058a5f585c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 159,
"height": 368,
"platformSettings": {},
"subMetas": {
"t": {
"ver": "1.0.4",
"uuid": "62a2a2de-046d-42a1-99da-f3b5ae76a351",
"rawTextureUuid": "fb60f72b-8a69-47b5-ad70-6b058a5f585c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 13.5,
"trimX": 5,
"trimY": 41,
"width": 150,
"height": 259,
"rawWidth": 159,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "80cadecb-e3f3-449c-9033-5d82a968ca84",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 191,
"height": 368,
"platformSettings": {},
"subMetas": {
"u": {
"ver": "1.0.4",
"uuid": "e5b5f7ec-33b6-4f18-8ebe-255c82bfabb4",
"rawTextureUuid": "80cadecb-e3f3-449c-9033-5d82a968ca84",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -9.5,
"trimX": 8,
"trimY": 84,
"width": 175,
"height": 219,
"rawWidth": 191,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "3462af47-9930-4657-9fa4-09b0dfe36d65",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 184,
"height": 368,
"platformSettings": {},
"subMetas": {
"v": {
"ver": "1.0.4",
"uuid": "331f327f-77d1-492d-bca6-1380fa5fefbf",
"rawTextureUuid": "3462af47-9930-4657-9fa4-09b0dfe36d65",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -8.5,
"trimX": 4,
"trimY": 84,
"width": 177,
"height": 217,
"rawWidth": 184,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "600e185c-390e-4ed5-8a3f-aceda513ddc3",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 289,
"height": 368,
"platformSettings": {},
"subMetas": {
"w": {
"ver": "1.0.4",
"uuid": "1582cb9f-5f67-41c8-b995-1965ba651515",
"rawTextureUuid": "600e185c-390e-4ed5-8a3f-aceda513ddc3",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -8.5,
"trimX": 5,
"trimY": 84,
"width": 279,
"height": 217,
"rawWidth": 289,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1dbe074c-7f47-4cd1-83b1-a2921275ca1b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 206,
"height": 368,
"platformSettings": {},
"subMetas": {
"x": {
"ver": "1.0.4",
"uuid": "0aa2cf6d-a1f0-4589-b8d5-724e6e33db39",
"rawTextureUuid": "1dbe074c-7f47-4cd1-83b1-a2921275ca1b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -8.5,
"trimX": 14,
"trimY": 84,
"width": 178,
"height": 217,
"rawWidth": 206,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9b7f5f15-acf9-437b-9371-c55bc3ce03bf",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 188,
"height": 368,
"platformSettings": {},
"subMetas": {
"y": {
"ver": "1.0.4",
"uuid": "38ecbfd3-9c97-4a99-9500-1ad4a5befced",
"rawTextureUuid": "9b7f5f15-acf9-437b-9371-c55bc3ce03bf",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": -39.5,
"trimX": 4,
"trimY": 83,
"width": 178,
"height": 281,
"rawWidth": 188,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "05495412-a62e-41e3-8253-6708517f357b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 173,
"height": 368,
"platformSettings": {},
"subMetas": {
"z": {
"ver": "1.0.4",
"uuid": "73899164-7699-4cc1-b7cd-bac9338d4107",
"rawTextureUuid": "05495412-a62e-41e3-8253-6708517f357b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -7.5,
"trimX": 4,
"trimY": 87,
"width": 164,
"height": 209,
"rawWidth": 173,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "6427b04c-37fa-43da-b422-2b50785e88eb",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1920,
"height": 1080,
"platformSettings": {},
"subMetas": {
"pic_bg": {
"ver": "1.0.4",
"uuid": "9498bb11-8b30-4bdb-b7e5-d389bdc6859d",
"rawTextureUuid": "6427b04c-37fa-43da-b422-2b50785e88eb",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1920,
"height": 1080,
"rawWidth": 1920,
"rawHeight": 1080,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "831371a4-411f-4dfb-a152-85a5a9dddfcd",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 531,
"height": 310,
"platformSettings": {},
"subMetas": {
"pic_board": {
"ver": "1.0.4",
"uuid": "625aff74-b502-4e33-bd29-25a118480a73",
"rawTextureUuid": "831371a4-411f-4dfb-a152-85a5a9dddfcd",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 531,
"height": 310,
"rawWidth": 531,
"rawHeight": 310,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "07effa3a-4055-42f6-812c-c4ca166185b6",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "6d9679c8-e54a-4cb1-85e1-92fcd43be85c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 184,
"height": 368,
"platformSettings": {},
"subMetas": {
"a2_di": {
"ver": "1.0.4",
"uuid": "f12cb3c1-0e24-4224-aaf1-9e35cece7760",
"rawTextureUuid": "6d9679c8-e54a-4cb1-85e1-92fcd43be85c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": 25.5,
"trimX": 2,
"trimY": 45,
"width": 178,
"height": 227,
"rawWidth": 184,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "00bf0000-a915-427a-9fd1-963060fd8931",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 160,
"height": 368,
"platformSettings": {},
"subMetas": {
"b2_di": {
"ver": "1.0.4",
"uuid": "5e0313e2-5106-4576-a1f5-b7ebcff746c5",
"rawTextureUuid": "00bf0000-a915-427a-9fd1-963060fd8931",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 26.5,
"trimX": 4,
"trimY": 47,
"width": 153,
"height": 221,
"rawWidth": 160,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "b324c62e-1c78-40eb-bfec-ac28d0983e8d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 192,
"height": 368,
"platformSettings": {},
"subMetas": {
"c2_di": {
"ver": "1.0.4",
"uuid": "59c1b010-7363-431e-b727-641e2a46eb26",
"rawTextureUuid": "b324c62e-1c78-40eb-bfec-ac28d0983e8d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": 25,
"trimX": 3,
"trimY": 42,
"width": 184,
"height": 234,
"rawWidth": 192,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9299477c-a0fa-4047-8336-9c658699f666",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 179,
"height": 368,
"platformSettings": {},
"subMetas": {
"d2_di": {
"ver": "1.0.4",
"uuid": "fad8ffa3-e9bf-45aa-a6f6-82c61e63e0f9",
"rawTextureUuid": "9299477c-a0fa-4047-8336-9c658699f666",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 27.5,
"trimX": 4,
"trimY": 46,
"width": 172,
"height": 221,
"rawWidth": 179,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1deb9ed1-9b7d-46fb-8252-85475cd4c0ce",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 149,
"height": 368,
"platformSettings": {},
"subMetas": {
"e2_di": {
"ver": "1.0.4",
"uuid": "9093908f-5e19-4890-9ca6-8b22f3ac754d",
"rawTextureUuid": "1deb9ed1-9b7d-46fb-8252-85475cd4c0ce",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 28.5,
"trimX": 4,
"trimY": 45,
"width": 142,
"height": 221,
"rawWidth": 149,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "203c96eb-ee02-4adc-ba67-75f0172a0eec",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 145,
"height": 368,
"platformSettings": {},
"subMetas": {
"f2_di": {
"ver": "1.0.4",
"uuid": "2dd85628-a306-4f14-a506-b36dcefd3848",
"rawTextureUuid": "203c96eb-ee02-4adc-ba67-75f0172a0eec",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 26,
"trimX": 3,
"trimY": 46,
"width": 139,
"height": 224,
"rawWidth": 145,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "4c4fc833-261f-419f-a0ec-16859da28a68",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 212,
"height": 368,
"platformSettings": {},
"subMetas": {
"g2_di": {
"ver": "1.0.4",
"uuid": "0d716dac-76fe-4bae-a0c7-e180a2a07c36",
"rawTextureUuid": "4c4fc833-261f-419f-a0ec-16859da28a68",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 26,
"trimX": 5,
"trimY": 41,
"width": 202,
"height": 234,
"rawWidth": 212,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9145efd5-698b-4a94-a85f-8f938571c3f6",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 368,
"platformSettings": {},
"subMetas": {
"h2_di": {
"ver": "1.0.4",
"uuid": "4df95d82-ccb7-4e09-891a-f85fa98f312f",
"rawTextureUuid": "9145efd5-698b-4a94-a85f-8f938571c3f6",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 27.5,
"trimX": 4,
"trimY": 43,
"width": 180,
"height": 227,
"rawWidth": 189,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "803284a9-c5e5-43df-81f3-cab0a5063886",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 50,
"height": 368,
"platformSettings": {},
"subMetas": {
"i2_di": {
"ver": "1.0.4",
"uuid": "51c72d68-3f1e-47d1-be19-2645cd5cee15",
"rawTextureUuid": "803284a9-c5e5-43df-81f3-cab0a5063886",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 25.5,
"trimX": 2,
"trimY": 45,
"width": 46,
"height": 227,
"rawWidth": 50,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "c5669ef8-0ad3-466d-bb64-d00a62cf782f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 109,
"height": 368,
"platformSettings": {},
"subMetas": {
"j2_di": {
"ver": "1.0.4",
"uuid": "2b792952-8131-447a-93d5-b2058d785a73",
"rawTextureUuid": "c5669ef8-0ad3-466d-bb64-d00a62cf782f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": 25.5,
"trimX": 1,
"trimY": 43,
"width": 105,
"height": 231,
"rawWidth": 109,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "d7289e3e-089a-4d5f-a669-c54dfd67d656",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 166,
"height": 368,
"platformSettings": {},
"subMetas": {
"k2_di": {
"ver": "1.0.4",
"uuid": "adff8738-da94-4f55-90da-abdff137d1d5",
"rawTextureUuid": "d7289e3e-089a-4d5f-a669-c54dfd67d656",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 28.5,
"trimX": 3,
"trimY": 42,
"width": 159,
"height": 227,
"rawWidth": 166,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "ff87ae62-9927-405e-86fb-bf5c3e35a3ab",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 130,
"height": 368,
"platformSettings": {},
"subMetas": {
"l2_di": {
"ver": "1.0.4",
"uuid": "83f560ea-7842-41f3-b6a2-37b1df2a2cc7",
"rawTextureUuid": "ff87ae62-9927-405e-86fb-bf5c3e35a3ab",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 31,
"trimX": 4,
"trimY": 41,
"width": 122,
"height": 224,
"rawWidth": 130,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "ad4336f8-a45d-43d2-a080-8003e7c72c1a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 242,
"height": 368,
"platformSettings": {},
"subMetas": {
"m2_di": {
"ver": "1.0.4",
"uuid": "c790834d-9025-49cb-b733-df518cce0988",
"rawTextureUuid": "ad4336f8-a45d-43d2-a080-8003e7c72c1a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 25.5,
"trimX": 3,
"trimY": 45,
"width": 235,
"height": 227,
"rawWidth": 242,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "001fad7d-48aa-45c7-9ea5-4bd2c62e2524",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 186,
"height": 368,
"platformSettings": {},
"subMetas": {
"n2_di": {
"ver": "1.0.4",
"uuid": "f0238e08-77f4-4176-b290-8130cd827d6b",
"rawTextureUuid": "001fad7d-48aa-45c7-9ea5-4bd2c62e2524",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 27.5,
"trimX": 4,
"trimY": 43,
"width": 177,
"height": 227,
"rawWidth": 186,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "a1e868c6-1d3a-4ff3-bca5-deaac2adab6f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 212,
"height": 368,
"platformSettings": {},
"subMetas": {
"o2_di": {
"ver": "1.0.4",
"uuid": "fc2e764f-f913-44ed-b2ae-054fb43482f2",
"rawTextureUuid": "a1e868c6-1d3a-4ff3-bca5-deaac2adab6f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 26,
"trimX": 6,
"trimY": 41,
"width": 201,
"height": 234,
"rawWidth": 212,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "55338c81-2236-4887-b2c1-138726eb3e87",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 159,
"height": 368,
"platformSettings": {},
"subMetas": {
"p2_di": {
"ver": "1.0.4",
"uuid": "9399ded7-abcc-4177-8c42-235e73ec4178",
"rawTextureUuid": "55338c81-2236-4887-b2c1-138726eb3e87",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 24,
"trimX": 3,
"trimY": 48,
"width": 153,
"height": 224,
"rawWidth": 159,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "2cedc3aa-4f98-4556-a678-74a9e7b90225",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 215,
"height": 368,
"platformSettings": {},
"subMetas": {
"q2_di": {
"ver": "1.0.4",
"uuid": "829bee37-6041-4794-bda6-78b6e75048a7",
"rawTextureUuid": "2cedc3aa-4f98-4556-a678-74a9e7b90225",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 30,
"trimX": 2,
"trimY": 37,
"width": 211,
"height": 234,
"rawWidth": 215,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "fcafdf0a-ecac-4aeb-961b-668d6754b0c0",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 170,
"height": 368,
"platformSettings": {},
"subMetas": {
"r2_di": {
"ver": "1.0.4",
"uuid": "08c610c6-64d2-48e4-b347-4435d0661632",
"rawTextureUuid": "fcafdf0a-ecac-4aeb-961b-668d6754b0c0",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 23,
"trimX": 4,
"trimY": 49,
"width": 162,
"height": 224,
"rawWidth": 170,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f3330667-614e-4f09-86d6-0ff0e6ed3358",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 155,
"height": 368,
"platformSettings": {},
"subMetas": {
"s2_di": {
"ver": "1.0.4",
"uuid": "ccc4ec95-b244-42e1-b301-82291e9628a3",
"rawTextureUuid": "f3330667-614e-4f09-86d6-0ff0e6ed3358",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 24.5,
"trimX": 2,
"trimY": 44,
"width": 150,
"height": 231,
"rawWidth": 155,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "09c828b0-bf7d-41e9-9e31-03d23a10c284",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 164,
"height": 368,
"platformSettings": {},
"subMetas": {
"t2_di": {
"ver": "1.0.4",
"uuid": "83d26848-e856-4c87-adbd-4f3b33057127",
"rawTextureUuid": "09c828b0-bf7d-41e9-9e31-03d23a10c284",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 24,
"trimX": 3,
"trimY": 48,
"width": 157,
"height": 224,
"rawWidth": 164,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "77d07c61-04d4-45ea-a450-19a356c749fc",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 184,
"height": 368,
"platformSettings": {},
"subMetas": {
"u2_di": {
"ver": "1.0.4",
"uuid": "6e6b1329-f2c7-4e43-b1da-9399d05b6508",
"rawTextureUuid": "77d07c61-04d4-45ea-a450-19a356c749fc",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1,
"offsetY": 20.5,
"trimX": 5,
"trimY": 49,
"width": 176,
"height": 229,
"rawWidth": 184,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "8efb693b-fe0b-43a5-ba08-b414652a8a81",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 180,
"height": 368,
"platformSettings": {},
"subMetas": {
"v2_di": {
"ver": "1.0.4",
"uuid": "61d58df3-b716-4da8-93ec-92efde4d7a69",
"rawTextureUuid": "8efb693b-fe0b-43a5-ba08-b414652a8a81",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": 34.5,
"trimX": 3,
"trimY": 36,
"width": 172,
"height": 227,
"rawWidth": 180,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "20cdefc0-e591-4502-b69d-dc5782fa85b9",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 247,
"height": 368,
"platformSettings": {},
"subMetas": {
"w2_di": {
"ver": "1.0.4",
"uuid": "ecb08144-30a8-47b4-97f6-eac01c66eaa4",
"rawTextureUuid": "20cdefc0-e591-4502-b69d-dc5782fa85b9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": 24.5,
"trimX": 2,
"trimY": 46,
"width": 241,
"height": 227,
"rawWidth": 247,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f9baa469-c7a9-404e-aeac-b5a61fd2c4f3",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 368,
"platformSettings": {},
"subMetas": {
"x2_di": {
"ver": "1.0.4",
"uuid": "5ceb705c-a34e-4adb-a36e-c8644bcdf6fd",
"rawTextureUuid": "f9baa469-c7a9-404e-aeac-b5a61fd2c4f3",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": 28.5,
"trimX": 1,
"trimY": 42,
"width": 185,
"height": 227,
"rawWidth": 189,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f71a7f1e-511e-41a4-97a7-523e887ff9c7",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 165,
"height": 368,
"platformSettings": {},
"subMetas": {
"y2_di": {
"ver": "1.0.4",
"uuid": "261ad3eb-9aac-4301-a01b-8ef20ac446ad",
"rawTextureUuid": "f71a7f1e-511e-41a4-97a7-523e887ff9c7",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 29.5,
"trimX": 3,
"trimY": 41,
"width": 160,
"height": 227,
"rawWidth": 165,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9adb46b4-142b-4b17-8245-2d3e284a85c0",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 176,
"height": 368,
"platformSettings": {},
"subMetas": {
"z2_di": {
"ver": "1.0.4",
"uuid": "a4f849ea-c09a-4712-80e8-01b1d538738b",
"rawTextureUuid": "9adb46b4-142b-4b17-8245-2d3e284a85c0",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 28.5,
"trimX": 2,
"trimY": 45,
"width": 171,
"height": 221,
"rawWidth": 176,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "e5c7f7c7-024d-4961-9aa5-4e62518cb37d",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "c4d0508b-8406-4ead-affc-6ef998eeccf9",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 224,
"height": 368,
"platformSettings": {},
"subMetas": {
"a2": {
"ver": "1.0.4",
"uuid": "22805375-a799-4507-9f59-6d2de6697a4e",
"rawTextureUuid": "c4d0508b-8406-4ead-affc-6ef998eeccf9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": 24,
"trimX": 4,
"trimY": 20,
"width": 214,
"height": 280,
"rawWidth": 224,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f4716e46-7379-480f-8dfa-57d692cd0092",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 197,
"height": 368,
"platformSettings": {},
"subMetas": {
"b2": {
"ver": "1.0.4",
"uuid": "8de397bf-546b-4a95-8d99-7d9350fd95da",
"rawTextureUuid": "f4716e46-7379-480f-8dfa-57d692cd0092",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 24.5,
"trimX": 7,
"trimY": 23,
"width": 184,
"height": 273,
"rawWidth": 197,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "034ec944-60fc-437a-abb8-a342038021b7",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 230,
"height": 368,
"platformSettings": {},
"subMetas": {
"c2": {
"ver": "1.0.4",
"uuid": "79945081-5255-4de0-b7d6-9c50a24413c4",
"rawTextureUuid": "034ec944-60fc-437a-abb8-a342038021b7",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 24,
"trimX": 4,
"trimY": 16,
"width": 221,
"height": 288,
"rawWidth": 230,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "16d78e4a-95f5-4609-99bd-d5e49d5cd04b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 219,
"height": 368,
"platformSettings": {},
"subMetas": {
"d2": {
"ver": "1.0.4",
"uuid": "7aa3b27c-6130-4642-b8fb-0f2ca160aa97",
"rawTextureUuid": "16d78e4a-95f5-4609-99bd-d5e49d5cd04b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 25.5,
"trimX": 6,
"trimY": 22,
"width": 207,
"height": 273,
"rawWidth": 219,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "247d7219-716d-45dd-94b7-f22a18a617c5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 180,
"height": 368,
"platformSettings": {},
"subMetas": {
"e2": {
"ver": "1.0.4",
"uuid": "0787b79d-ec59-41b9-8545-28ed61626fe0",
"rawTextureUuid": "247d7219-716d-45dd-94b7-f22a18a617c5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 3,
"offsetY": 25.5,
"trimX": 8,
"trimY": 22,
"width": 170,
"height": 273,
"rawWidth": 180,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "5d61b131-af0c-469d-be9d-1a11bf86e8a2",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 178,
"height": 368,
"platformSettings": {},
"subMetas": {
"f2": {
"ver": "1.0.4",
"uuid": "8eab00d4-605e-485a-96fa-2d3c4360300d",
"rawTextureUuid": "5d61b131-af0c-469d-be9d-1a11bf86e8a2",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 22.5,
"trimX": 6,
"trimY": 23,
"width": 166,
"height": 277,
"rawWidth": 178,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "94593864-5cf2-4ac7-b783-71b14bfb2b0f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 255,
"height": 368,
"platformSettings": {},
"subMetas": {
"g2": {
"ver": "1.0.4",
"uuid": "31915a72-3d31-4e21-af7b-d95d2f3bb6b4",
"rawTextureUuid": "94593864-5cf2-4ac7-b783-71b14bfb2b0f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 24,
"trimX": 5,
"trimY": 16,
"width": 245,
"height": 288,
"rawWidth": 255,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "08f01de6-9148-4a99-9383-c79bb8dc329b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 227,
"height": 368,
"platformSettings": {},
"subMetas": {
"h2": {
"ver": "1.0.4",
"uuid": "a7987f92-5ea7-4e28-a9f1-7d47a27094b0",
"rawTextureUuid": "08f01de6-9148-4a99-9383-c79bb8dc329b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 23.5,
"trimX": 5,
"trimY": 20,
"width": 217,
"height": 281,
"rawWidth": 227,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "b245f2b4-ac54-4e19-a8bc-7699f941829b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 63,
"height": 368,
"platformSettings": {},
"subMetas": {
"i2": {
"ver": "1.0.4",
"uuid": "ff2e4ccc-6765-48d3-a0ba-dca7fee216a6",
"rawTextureUuid": "b245f2b4-ac54-4e19-a8bc-7699f941829b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 24.5,
"trimX": 6,
"trimY": 19,
"width": 52,
"height": 281,
"rawWidth": 63,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f716d9b4-4f4b-4f82-9313-00d7a21d518b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 134,
"height": 368,
"platformSettings": {},
"subMetas": {
"j2": {
"ver": "1.0.4",
"uuid": "f4c9d87d-bfae-4307-9d19-4d8972a4b1a8",
"rawTextureUuid": "f716d9b4-4f4b-4f82-9313-00d7a21d518b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 22.5,
"trimX": 4,
"trimY": 19,
"width": 125,
"height": 285,
"rawWidth": 134,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9e1fcf5f-2d90-4781-b9db-d7f7ef4fb6d9",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 200,
"height": 368,
"platformSettings": {},
"subMetas": {
"k2": {
"ver": "1.0.4",
"uuid": "460a7bf6-99be-4878-ba3e-a62e7c98dbfd",
"rawTextureUuid": "9e1fcf5f-2d90-4781-b9db-d7f7ef4fb6d9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1,
"offsetY": 25.5,
"trimX": 5,
"trimY": 18,
"width": 192,
"height": 281,
"rawWidth": 200,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "d1ed5ee3-08ab-4231-9dac-563a427cb9f8",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 156,
"height": 368,
"platformSettings": {},
"subMetas": {
"l2": {
"ver": "1.0.4",
"uuid": "30e5c325-ae87-4a1f-ad2b-8f52383d221b",
"rawTextureUuid": "d1ed5ee3-08ab-4231-9dac-563a427cb9f8",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1,
"offsetY": 26.5,
"trimX": 6,
"trimY": 19,
"width": 146,
"height": 277,
"rawWidth": 156,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "7f84258b-7087-49e3-8300-1093d5a4f040",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 295,
"height": 368,
"platformSettings": {},
"subMetas": {
"m2": {
"ver": "1.0.4",
"uuid": "c12cacc8-7803-4637-b911-0833847ba903",
"rawTextureUuid": "7f84258b-7087-49e3-8300-1093d5a4f040",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 23.5,
"trimX": 5,
"trimY": 20,
"width": 285,
"height": 281,
"rawWidth": 295,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "b1ae3b83-da8d-4197-9947-dd8b5774f518",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 225,
"height": 368,
"platformSettings": {},
"subMetas": {
"n2": {
"ver": "1.0.4",
"uuid": "2cc51df1-c88b-4761-a5a2-ae045b6a590a",
"rawTextureUuid": "b1ae3b83-da8d-4197-9947-dd8b5774f518",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 23.5,
"trimX": 6,
"trimY": 20,
"width": 214,
"height": 281,
"rawWidth": 225,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "6762c151-0062-4814-991b-dd9fcb1b4028",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 248,
"height": 368,
"platformSettings": {},
"subMetas": {
"o2": {
"ver": "1.0.4",
"uuid": "81f9cc81-a71f-4999-9135-349dc2c632f9",
"rawTextureUuid": "6762c151-0062-4814-991b-dd9fcb1b4028",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 25.5,
"trimX": 2,
"trimY": 14,
"width": 244,
"height": 289,
"rawWidth": 248,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1a816c5a-b5cb-4b27-99a8-33f4c46735ce",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 196,
"height": 368,
"platformSettings": {},
"subMetas": {
"p2": {
"ver": "1.0.4",
"uuid": "2f3e48bf-9b91-444d-b622-989a805f4409",
"rawTextureUuid": "1a816c5a-b5cb-4b27-99a8-33f4c46735ce",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 23.5,
"trimX": 6,
"trimY": 22,
"width": 184,
"height": 277,
"rawWidth": 196,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "ee615817-f631-4c1c-9cb8-ccfbf40f13c6",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 265,
"height": 368,
"platformSettings": {},
"subMetas": {
"q2": {
"ver": "1.0.4",
"uuid": "159e8068-8771-4e3d-9c94-6ffed2f6462e",
"rawTextureUuid": "ee615817-f631-4c1c-9cb8-ccfbf40f13c6",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 28.5,
"trimX": 4,
"trimY": 11,
"width": 256,
"height": 289,
"rawWidth": 265,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "3baf7826-428e-420e-bdc9-db544ae0edce",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 205,
"height": 368,
"platformSettings": {},
"subMetas": {
"r2": {
"ver": "1.0.4",
"uuid": "92de6317-574e-44f9-9f2d-6794e8846254",
"rawTextureUuid": "3baf7826-428e-420e-bdc9-db544ae0edce",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 22.5,
"trimX": 5,
"trimY": 23,
"width": 196,
"height": 277,
"rawWidth": 205,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "ea7ea21d-4dd6-474a-8f7a-bab84121febc",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 188,
"height": 368,
"platformSettings": {},
"subMetas": {
"s2": {
"ver": "1.0.4",
"uuid": "f3827a38-f77a-4033-a1b3-487cb807c77d",
"rawTextureUuid": "ea7ea21d-4dd6-474a-8f7a-bab84121febc",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 23.5,
"trimX": 3,
"trimY": 18,
"width": 181,
"height": 285,
"rawWidth": 188,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "212b3490-2d1f-4cb3-99aa-8431f3e7a949",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 195,
"height": 368,
"platformSettings": {},
"subMetas": {
"t2": {
"ver": "1.0.4",
"uuid": "894f7f49-da76-4247-822f-ee485354c34e",
"rawTextureUuid": "212b3490-2d1f-4cb3-99aa-8431f3e7a949",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 22.5,
"trimX": 3,
"trimY": 23,
"width": 189,
"height": 277,
"rawWidth": 195,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "df861588-0b2a-471d-b7ca-e619b2121c63",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 222,
"height": 368,
"platformSettings": {},
"subMetas": {
"u2": {
"ver": "1.0.4",
"uuid": "782a4d03-a398-40aa-b730-223f65222bf4",
"rawTextureUuid": "df861588-0b2a-471d-b7ca-e619b2121c63",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 21.5,
"trimX": 5,
"trimY": 21,
"width": 212,
"height": 283,
"rawWidth": 222,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "3e4ec2fd-922c-4354-bbf3-8d53107e2e6a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 215,
"height": 368,
"platformSettings": {},
"subMetas": {
"v2": {
"ver": "1.0.4",
"uuid": "50b17fa1-524a-4f83-9819-2e0bf54b2ad4",
"rawTextureUuid": "3e4ec2fd-922c-4354-bbf3-8d53107e2e6a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 25.5,
"trimX": 4,
"trimY": 18,
"width": 207,
"height": 281,
"rawWidth": 215,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "33eeea73-b490-4233-a613-097fb91b3ea5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 300,
"height": 368,
"platformSettings": {},
"subMetas": {
"w2": {
"ver": "1.0.4",
"uuid": "a2b67940-7e8b-4588-9c9d-6396cf3adf9d",
"rawTextureUuid": "33eeea73-b490-4233-a613-097fb91b3ea5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 24.5,
"trimX": 3,
"trimY": 19,
"width": 293,
"height": 281,
"rawWidth": 300,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "df8c0c4e-e4a5-4b2a-a3ad-8fb5d7b98a07",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 232,
"height": 368,
"platformSettings": {},
"subMetas": {
"x2": {
"ver": "1.0.4",
"uuid": "fe319723-eb17-45c3-8af2-918450f27d1c",
"rawTextureUuid": "df8c0c4e-e4a5-4b2a-a3ad-8fb5d7b98a07",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 25.5,
"trimX": 4,
"trimY": 18,
"width": 223,
"height": 281,
"rawWidth": 232,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f5133654-0aec-4304-9efb-020c43d6d49b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 199,
"height": 368,
"platformSettings": {},
"subMetas": {
"y2": {
"ver": "1.0.4",
"uuid": "8fd7610f-9b80-43d5-84da-332def561549",
"rawTextureUuid": "f5133654-0aec-4304-9efb-020c43d6d49b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 23.5,
"trimX": 3,
"trimY": 20,
"width": 193,
"height": 281,
"rawWidth": 199,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "7b7ab7bb-ea91-449c-9d76-728338b75433",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 212,
"height": 368,
"platformSettings": {},
"subMetas": {
"z2": {
"ver": "1.0.4",
"uuid": "6d47df46-1241-4274-9fd7-3aa328ebbd0e",
"rawTextureUuid": "7b7ab7bb-ea91-449c-9d76-728338b75433",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 24.5,
"trimX": 3,
"trimY": 23,
"width": 206,
"height": 273,
"rawWidth": 212,
"rawHeight": 368,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "a3586734-9f95-49f1-95ae-9ec79388a398",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 2349,
"height": 1311,
"platformSettings": {},
"subMetas": {
"view": {
"ver": "1.0.4",
"uuid": "b8762abb-cb60-4e02-a880-34cd7a248856",
"rawTextureUuid": "a3586734-9f95-49f1-95ae-9ec79388a398",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 2349,
"height": 1311,
"rawWidth": 2349,
"rawHeight": 1311,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment