Commit 66a511b7 authored by liujiangnan's avatar liujiangnan

feat: 初始化

parent a3f5ba9f
No preview for this file type
......@@ -2,8 +2,6 @@
cocos creator技术框架下的H5互动模板框架脚手架,基于cocos creator实现快速开发基于绘玩云的H5互动课件。
[视频教程传送门](https://www.bilibili.com/video/BV1Dq4y1t7n5/)
# 使用简介
## 前期准备
......@@ -51,30 +49,29 @@ npm start
```
* 打开浏览器:http://staging-teach.ireadabc.com/template_ci/debug
* [点击查看调试视频教程](https://www.bilibili.com/video/BV1Dq4y1t7n5?p=8)
### 真机调试
* 下载模板调试专用app
* 点击右上角齿轮,选择技术选型、调试模式选择“普通”
安卓下载:
http://download-iplayabc.oss-cn-beijing.aliyuncs.com/iDebugABC.apk
![avatar](http://staging-teach.cdn.ireadabc.com/084f2f95-8213-4c5a-8c46-b194819d7677.png)
### 互动模板
* 找到项目根路径下 index.html 文件
* 在引入JS的位置将air.js改为air_online_open.js
* 启动本地服务
iOS下载:
```
npm start
```
由于调试APP没有上架App Store 所以需要先获取手机的UDID 发送给我们的技术支持,加入后才可以扫码下载安装
获取UDID:https://www.pgyer.com/tools/udid
下载iOS: https://www.pgyer.com/gS0X
* 打开浏览器:http://staging-teach.ireadabc.com/template_ci/debug
* 点击右上角齿轮,选择技术选型、调试模式选择“互动”
* 左侧老师、右侧学生
### 真机调试
有时可能需要反复调试一些功能性的问题,与原生APP相关或者手上临时没有设备,我们提供了一个网页版的调试方式
* 下载模板调试专用app
http://staging-openapi.iteachabc.com/api/courseware/v1/middle/debug
http://download-iplayabc.oss-cn-beijing.aliyuncs.com/iDebugABC.apk
![avatar](http://staging-teach.cdn.ireadabc.com/084f2f95-8213-4c5a-8c46-b194819d7677.png)
* 启动本地服务
......@@ -84,12 +81,4 @@ npm start
* 手机和电脑连接同一个Wifi
* 打开调试app,根据提示输入IP地址,点击开始就可以在手机上预览模板了
* 使用 console.log("==调试信息=="); 可以打印日志进行必要的调试
* 点击左上角 “logcat” 可以查看运行日志,(logcat是可以按住拖动的, 所以不用考虑UI遮挡问题)
### 注意事项及常见问题
* 项目里所有文件及文件夹的命名方式要注意不能包含空格、汉字、减号
* 开发者新建的脚本文件(.js/.ts)的文件名必须包含项目名称,例如在 test_01 项目中添加一个脚本文件(如想命名为 hello.ts );则需要命名为 hello_test_01.ts
* 项目里尽量不要使用setTimeout、setInterval等定时器,如果使用了记得在onDestroy中释放掉(onDestroy 是指CocosCreator的生命周期钩子)
* 理论上禁止使用全局变量,因为模板到线上会进行组装,常见问题是一个模板使用多次造成全局变量被读脏
* 使用 this.log("==调试信息=="); 可以打印日志进行必要的调试
\ No newline at end of file
import { asyncDelay, onHomeworkFinish } from "../script/util";
import { MyCocosSceneComponent } from "../script/MyCocosSceneComponent";
const { ccclass, property } = cc._decorator;
@ccclass
export default class SceneComponent extends MyCocosSceneComponent {
addPreloadImage() {
// TODO 根据自己的配置预加载图片资源
this._imageResList.push({ url: this.data.pic_url });
this._imageResList.push({ url: this.data.pic_url_2 });
}
addPreloadAudio() {
// TODO 根据自己的配置预加载音频资源
this._audioResList.push({ url: this.data.audio_url });
}
addPreloadAnima() {
}
async onLoadEnd() {
// TODO 加载完成后的逻辑写在这里, 下面的代码仅供参考
this.initData();
this.initView();
this.initListener();
}
_cantouch = null;
initData() {
// 所有全局变量 默认都是null
this._cantouch = true;
}
initView() {
this.initBg();
this.initPic();
this.initBtn();
this.initIcon();
}
initBg() {
const bgNode = cc.find('Canvas/bg');
bgNode.scale = this._mapScaleMax;
}
pic1 = null;
pic2 = null;
initPic() {
const canvas = cc.find('Canvas');
const maxW = canvas.width * 0.7;
this.getSprNodeByUrl(this.data.pic_url, (sprNode) => {
const picNode1 = sprNode;
picNode1.scale = maxW / picNode1.width;
picNode1.baseX = picNode1.x;
canvas.addChild(picNode1);
this.pic1 = picNode1;
const labelNode = new cc.Node();
labelNode.color = cc.Color.YELLOW;
const label = labelNode.addComponent(cc.Label);
label.string = this.data.text;
label.fontSize = 60;
label.lineHeight = 60;
label.font = cc.find('Canvas/res/font/BRLNSDB').getComponent('cc.Label').font;
picNode1.addChild(labelNode);
});
this.getSprNodeByUrl(this.data.pic_url_2, (sprNode) => {
const picNode2 = sprNode;
picNode2.scale = maxW / picNode2.width;
canvas.addChild(picNode2);
picNode2.x = canvas.width;
picNode2.baseX = picNode2.x;
this.pic2 = picNode2;
const labelNode = new cc.Node();
const label = labelNode.addComponent(cc.RichText);
const size = 60
label.font = cc.find('Canvas/res/font/BRLNSDB').getComponent(cc.Label).font;
label.string = `<outline color=#751e00 width=4><size=${size}><color=#ffffff>${this.data.text}</color></size></outline>`
label.lineHeight = size;
picNode2.addChild(labelNode);
});
}
initIcon() {
const iconNode = this.getSprNode('icon');
iconNode.zIndex = 5;
iconNode.anchorX = 1;
iconNode.anchorY = 1;
iconNode.parent = cc.find('Canvas');
iconNode.x = iconNode.parent.width / 2 - 10;
iconNode.y = iconNode.parent.height / 2 - 10;
iconNode.on(cc.Node.EventType.TOUCH_START, () => {
this.playAudioByUrl(this.data.audio_url);
})
}
curPage = null;
initBtn() {
this.curPage = 0;
const bottomPart = cc.find('Canvas/bottomPart');
bottomPart.zIndex = 5; // 提高层级
bottomPart.x = bottomPart.parent.width / 2;
bottomPart.y = -bottomPart.parent.height / 2;
const leftBtnNode = bottomPart.getChildByName('btn_left');
//节点中添加了button组件 则可以添加click事件监听
leftBtnNode.on('click', () => {
if (!this._cantouch) {
return;
}
if (this.curPage == 0) {
return;
}
this.curPage = 0
this.leftMove();
this.playLocalAudio('btn');
})
const rightBtnNode = bottomPart.getChildByName('btn_right');
//节点中添加了button组件 则可以添加click事件监听
rightBtnNode.on('click', () => {
if (!this._cantouch) {
return;
}
if (this.curPage == 1) {
return;
}
this.curPage = 1
this.rightMove();
// 游戏结束时需要调用这个方法通知系统作业完成
onHomeworkFinish();
this.playLocalAudio('btn');
})
}
leftMove() {
this._cantouch = false;
const len = this.pic1.parent.width;
cc.tween(this.pic1)
.to(1, { x: this.pic1.baseX }, { easing: 'cubicInOut' })
.start();
cc.tween(this.pic2)
.to(1, { x: this.pic2.baseX }, { easing: 'cubicInOut' })
.call(() => {
this._cantouch = true;
})
.start();
}
rightMove() {
this._cantouch = false;
const len = this.pic1.parent.width;
cc.tween(this.pic1)
.to(1, { x: this.pic1.baseX - len }, { easing: 'cubicInOut' })
.start();
cc.tween(this.pic2)
.to(1, { x: this.pic2.baseX - len }, { easing: 'cubicInOut' })
.call(() => {
this._cantouch = true;
})
.start();
}
// update (dt) {},
initListener() {
}
playLocalAudio(audioName) {
const audio = cc.find(`Canvas/res/audio/${audioName}`).getComponent(cc.AudioSource);
return new Promise((resolve, reject) => {
const id = cc.audioEngine.playEffect(audio.clip, false);
cc.audioEngine.setFinishCallback(id, () => {
resolve(id);
});
})
}
}
......@@ -4,9 +4,18 @@
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"compressionType": {
"android": "default",
"ios": "default"
},
"optimizeHotUpdate": {
"android": false,
"ios": false
},
"inlineSpriteFrames": {
"android": false,
"ios": false
},
"isRemoteBundle": {
"ios": false,
"android": false
......
{
"ver": "1.1.2",
"uuid": "e0ae4184-41ff-46b0-9091-3eb0ce6568d1",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"__type__": "cc.AnimationClip",
"_name": "king_a",
"_objFlags": 0,
"_native": "",
"_duration": 2.0166666666666666,
"sample": 60,
"speed": 1,
"wrapMode": 1,
"curveData": {
"comps": {
"cc.Sprite": {
"spriteFrame": [
{
"frame": 0,
"value": {
"__uuid__": "da688780-84f1-4064-8c8a-6a2087cd91b1"
}
},
{
"frame": 0.08333333333333333,
"value": {
"__uuid__": "78834464-e762-4762-a3fe-bb165016f318"
}
},
{
"frame": 0.16666666666666666,
"value": {
"__uuid__": "666bebaa-795f-44c9-ae2f-78eba714903b"
}
},
{
"frame": 0.25,
"value": {
"__uuid__": "bcc4954e-5142-472a-8435-aa1f7b9630f6"
}
},
{
"frame": 0.3333333333333333,
"value": {
"__uuid__": "fe459065-0a1b-4070-921d-85c83c03543a"
}
},
{
"frame": 0.4166666666666667,
"value": {
"__uuid__": "85b09bec-b45c-48c3-9202-cd9a32073cb4"
}
},
{
"frame": 0.5,
"value": {
"__uuid__": "d9d28298-5fbc-4e4b-aabe-2100afd2c92a"
}
},
{
"frame": 0.5833333333333334,
"value": {
"__uuid__": "9d5e3959-9226-40c0-ba8b-83f18aefb818"
}
},
{
"frame": 0.6666666666666666,
"value": {
"__uuid__": "0fd0239d-87bc-49c2-b234-0ae3e0965f56"
}
},
{
"frame": 0.75,
"value": {
"__uuid__": "d894570e-3fd2-4108-a48b-26bd209c151f"
}
},
{
"frame": 0.8333333333333334,
"value": {
"__uuid__": "86bad027-811a-4ec6-81f9-7bf23bc08d8d"
}
},
{
"frame": 0.9166666666666666,
"value": {
"__uuid__": "c0a6e5c7-628a-4cf5-806b-7576f48d087d"
}
},
{
"frame": 1,
"value": {
"__uuid__": "ad142da1-0e48-4ec6-aff5-dece859572ee"
}
},
{
"frame": 1.0833333333333333,
"value": {
"__uuid__": "b4f2328a-4b53-4a76-8284-d1e6e653c1fa"
}
},
{
"frame": 1.1666666666666667,
"value": {
"__uuid__": "2e8155ce-284b-4251-8e47-d910e3cb31ae"
}
},
{
"frame": 1.25,
"value": {
"__uuid__": "61313d5a-4fa5-4017-a745-dba70bdd8ac1"
}
},
{
"frame": 1.3333333333333333,
"value": {
"__uuid__": "649993fb-5e2b-4981-94b7-ae0f868b6879"
}
},
{
"frame": 1.4166666666666667,
"value": {
"__uuid__": "41a4acda-8069-4b94-8346-559ae0bc0b90"
}
},
{
"frame": 1.5,
"value": {
"__uuid__": "82db7e95-99c9-45c6-aa6e-9e80e9f04372"
}
},
{
"frame": 1.5833333333333333,
"value": {
"__uuid__": "d0f9477c-c66f-4c9b-959c-bd526ee480bc"
}
},
{
"frame": 1.6666666666666667,
"value": {
"__uuid__": "38423321-8c8c-4b88-88aa-69ad3f28465b"
}
},
{
"frame": 1.75,
"value": {
"__uuid__": "481e09b7-fb36-4bbd-b8f7-942d4761f546"
}
},
{
"frame": 1.8333333333333333,
"value": {
"__uuid__": "0c1f2b44-1313-44a2-9e80-9aa05c76d4c6"
}
},
{
"frame": 1.9166666666666667,
"value": {
"__uuid__": "fa09de97-d148-445d-bde1-bfd817eea732"
}
},
{
"frame": 2,
"value": {
"__uuid__": "442d015f-224e-4167-b6fe-bfbf47cd5985"
}
}
]
}
}
},
"events": []
}
\ No newline at end of file
{
"ver": "2.1.0",
"uuid": "448bec6b-7948-476e-aecc-2386768f5c6f",
"subMetas": {}
}
\ No newline at end of file
{
"__type__": "cc.AnimationClip",
"_name": "king_b",
"_objFlags": 0,
"_native": "",
"_duration": 2.0166666666666666,
"sample": 60,
"speed": 1,
"wrapMode": 1,
"curveData": {
"comps": {
"cc.Sprite": {
"spriteFrame": [
{
"frame": 0,
"value": {
"__uuid__": "c8b7ccec-3ec1-4988-82be-0fca173b5c18"
}
},
{
"frame": 0.08333333333333333,
"value": {
"__uuid__": "c13bd4f9-cc02-4fea-a609-b79c1cffb157"
}
},
{
"frame": 0.16666666666666666,
"value": {
"__uuid__": "5feb8c61-c981-4d65-ac72-1e01af0374ab"
}
},
{
"frame": 0.25,
"value": {
"__uuid__": "9c302fb8-16db-4b60-80f3-90f44dcce6cb"
}
},
{
"frame": 0.3333333333333333,
"value": {
"__uuid__": "832149c5-b909-48c2-b6a6-136c80a3565a"
}
},
{
"frame": 0.4166666666666667,
"value": {
"__uuid__": "a8e2dac8-3088-40a1-8886-d731519d0e9f"
}
},
{
"frame": 0.5,
"value": {
"__uuid__": "c3397264-2db8-475f-847f-9234af5f8256"
}
},
{
"frame": 0.5833333333333334,
"value": {
"__uuid__": "061ea870-833d-41b5-9463-e6d069eb3009"
}
},
{
"frame": 0.6666666666666666,
"value": {
"__uuid__": "67dc0837-0dc6-495f-980a-fce55dc5995c"
}
},
{
"frame": 0.75,
"value": {
"__uuid__": "8a57563c-7f50-44da-8c61-8b9cb0a26eda"
}
},
{
"frame": 0.8333333333333334,
"value": {
"__uuid__": "0f3cb6d3-0277-4761-b0b4-f2a47b796bd9"
}
},
{
"frame": 0.9166666666666666,
"value": {
"__uuid__": "0ee14a02-0903-4ba2-a227-c37b0e04683d"
}
},
{
"frame": 1,
"value": {
"__uuid__": "2f946f6f-f4b2-41fd-8fa9-d5d6b5b85090"
}
},
{
"frame": 1.0833333333333333,
"value": {
"__uuid__": "7b17759e-05f3-4bc8-857f-026f4873d191"
}
},
{
"frame": 1.1666666666666667,
"value": {
"__uuid__": "01359b3d-889c-4822-bdcb-31f389f2e36c"
}
},
{
"frame": 1.25,
"value": {
"__uuid__": "e7d5c675-e1ee-438b-ae35-e659a44e48c1"
}
},
{
"frame": 1.3333333333333333,
"value": {
"__uuid__": "c7cd2881-6928-4702-bb33-99fa43311da9"
}
},
{
"frame": 1.4166666666666667,
"value": {
"__uuid__": "3b1312b5-f71b-4719-988e-12a352c75d9f"
}
},
{
"frame": 1.5,
"value": {
"__uuid__": "38281e7a-ce3d-4c13-a102-2079647dc38b"
}
},
{
"frame": 1.5833333333333333,
"value": {
"__uuid__": "5bc2bbda-64f3-44fd-a488-3ce9b4ee3b37"
}
},
{
"frame": 1.6666666666666667,
"value": {
"__uuid__": "0462a322-e93d-4152-a162-936cdb804fbd"
}
},
{
"frame": 1.75,
"value": {
"__uuid__": "8f336589-c196-4aaa-bd14-0e7a597e7713"
}
},
{
"frame": 1.8333333333333333,
"value": {
"__uuid__": "13a66b95-41dd-43b9-ab02-8b50c71073b5"
}
},
{
"frame": 1.9166666666666667,
"value": {
"__uuid__": "7a6b9f8f-c7f1-4950-9b22-a380acbd71d8"
}
},
{
"frame": 2,
"value": {
"__uuid__": "9f7a041d-b373-42ba-a7a7-d12f47842480"
}
}
]
}
}
},
"events": []
}
\ No newline at end of file
{
"ver": "2.1.0",
"uuid": "4c7b7863-734f-4067-84b9-ddfce42c32da",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "ac7e840c-596c-4d10-80e2-8c44f3cce9b7",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "772ae80e-7f26-420a-8f87-8e239eb6cf7f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 750,
"height": 287,
"platformSettings": {},
"subMetas": {
"Loading0": {
"ver": "1.0.4",
"uuid": "48a10e47-8846-4d2b-a99f-4eda1a9c3890",
"rawTextureUuid": "772ae80e-7f26-420a-8f87-8e239eb6cf7f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -88.5,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 573,
"height": 287,
"rawWidth": 750,
"rawHeight": 287,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "d2f30764-56ef-400b-8fda-994fbb7a5200",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 750,
"height": 287,
"platformSettings": {},
"subMetas": {
"Loading1": {
"ver": "1.0.4",
"uuid": "91c09dd0-af30-45c9-bda0-adbbe34bb17e",
"rawTextureUuid": "d2f30764-56ef-400b-8fda-994fbb7a5200",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -48,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 654,
"height": 287,
"rawWidth": 750,
"rawHeight": 287,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "2e34fbc2-9455-487b-b402-f7312572a6c9",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 750,
"height": 287,
"platformSettings": {},
"subMetas": {
"Loading2": {
"ver": "1.0.4",
"uuid": "f539f795-a256-48b2-ab10-c3817691ce4a",
"rawTextureUuid": "2e34fbc2-9455-487b-b402-f7312572a6c9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -24,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 702,
"height": 287,
"rawWidth": 750,
"rawHeight": 287,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "d582359e-924e-4ee9-9964-1fc4bb417e71",
"uuid": "9bba1876-b6ee-4d81-8f4e-edab45785c4f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 61,
"height": 67,
"width": 750,
"height": 287,
"platformSettings": {},
"subMetas": {
"btn_right": {
"Loading3": {
"ver": "1.0.4",
"uuid": "e5a2dbaa-a677-4a32-90d7-a1b057d7fb59",
"rawTextureUuid": "d582359e-924e-4ee9-9964-1fc4bb417e71",
"uuid": "095bd214-9a7a-4111-ae7f-3e5e8637e716",
"rawTextureUuid": "9bba1876-b6ee-4d81-8f4e-edab45785c4f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 0.5,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 60,
"height": 66,
"rawWidth": 61,
"rawHeight": 67,
"width": 750,
"height": 287,
"rawWidth": 750,
"rawHeight": 287,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
{
"__type__": "cc.AnimationClip",
"_name": "loading",
"_objFlags": 0,
"_native": "",
"_duration": 2.0166666666666666,
"sample": 60,
"speed": 0.5,
"wrapMode": 2,
"curveData": {
"comps": {
"cc.Sprite": {
"spriteFrame": [
{
"frame": 0,
"value": {
"__uuid__": "48a10e47-8846-4d2b-a99f-4eda1a9c3890"
}
},
{
"frame": 0.5,
"value": {
"__uuid__": "91c09dd0-af30-45c9-bda0-adbbe34bb17e"
}
},
{
"frame": 1,
"value": {
"__uuid__": "f539f795-a256-48b2-ab10-c3817691ce4a"
}
},
{
"frame": 1.5,
"value": {
"__uuid__": "095bd214-9a7a-4111-ae7f-3e5e8637e716"
}
},
{
"frame": 2,
"value": {
"__uuid__": "48a10e47-8846-4d2b-a99f-4eda1a9c3890"
}
}
]
}
}
},
"events": []
}
\ No newline at end of file
{
"ver": "2.1.0",
"uuid": "c01fcefa-a80e-43a2-8b03-cce500eba63d",
"subMetas": {}
}
\ No newline at end of file
{
"__type__": "cc.AnimationClip",
"_name": "people_a",
"_objFlags": 0,
"_native": "",
"_duration": 0.35,
"sample": 60,
"speed": 1,
"wrapMode": 2,
"curveData": {
"comps": {
"cc.Sprite": {
"spriteFrame": [
{
"frame": 0,
"value": {
"__uuid__": "430e7d32-02e3-48b6-8fd1-f54076431f80"
}
},
{
"frame": 0.16666666666666666,
"value": {
"__uuid__": "cbe09ab8-c8f0-465e-a296-75a30ea88b0b"
}
},
{
"frame": 0.3333333333333333,
"value": {
"__uuid__": "430e7d32-02e3-48b6-8fd1-f54076431f80"
}
}
]
}
}
},
"events": []
}
\ No newline at end of file
{
"ver": "2.1.0",
"uuid": "c84887b6-9233-4800-bbde-f8ffcd33c943",
"subMetas": {}
}
\ No newline at end of file
{
"__type__": "cc.AnimationClip",
"_name": "people_b",
"_objFlags": 0,
"_native": "",
"_duration": 0.35,
"sample": 60,
"speed": 1,
"wrapMode": 2,
"curveData": {
"comps": {
"cc.Sprite": {
"spriteFrame": [
{
"frame": 0,
"value": {
"__uuid__": "1a190907-da0b-401e-a614-9eec33f81144"
}
},
{
"frame": 0.16666666666666666,
"value": {
"__uuid__": "9bf2c7e5-e8b9-4988-a559-2883f3022f0e"
}
},
{
"frame": 0.3333333333333333,
"value": {
"__uuid__": "1a190907-da0b-401e-a614-9eec33f81144"
}
}
]
}
}
},
"events": []
}
\ No newline at end of file
{
"ver": "2.1.0",
"uuid": "ce2dcf3d-f034-4b5f-b92e-14ae21ca9f48",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "cfbb360f-f76c-44aa-86e9-229785f5c361",
"downloadMode": 0,
"duration": 1.906938,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "8df51d2f-bf3a-4c4c-8dc4-db7a14003138",
"downloadMode": 0,
"duration": 0.261188,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "b858772c-ad74-47fa-87fe-a247f0de790c",
"downloadMode": 0,
"duration": 4.623625,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "ad3f8d69-10b9-47f2-8168-6afd2a6247cf",
"downloadMode": 0,
"duration": 1.776327,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "f0680ae0-c079-45ef-abd7-9e63d90b982b",
"uuid": "f3c36dcd-b5f0-48c2-8648-780a35004548",
"downloadMode": 0,
"duration": 0.130612,
"subMetas": {}
......
{
"ver": "2.0.1",
"uuid": "38602cff-204a-41e9-8869-ff1192394d3e",
"downloadMode": 0,
"duration": 9.952625,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "9deae01d-5c70-445e-946b-c5d5ff72c073",
"downloadMode": 0,
"duration": 0.653063,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "2684b6fe-4b8a-43aa-b046-544367fda390",
"downloadMode": 0,
"duration": 2.586063,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "e9fce7c5-7ebb-40a1-937c-ee6aa343456d",
"downloadMode": 0,
"duration": 1.306063,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "9d52dcb7-7ab1-4cf4-8444-462956c3c573",
"downloadMode": 0,
"duration": 4.284063,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "2d17962f-1d36-4d30-9a8a-d6228c83224b",
"downloadMode": 0,
"duration": 0.261188,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "4604f745-c140-464d-96ca-71ab77e0fcb6",
"downloadMode": 0,
"duration": 0.7575,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "4c3e305b-127c-457c-81bc-b82811d30664",
"downloadMode": 0,
"duration": 0.391813,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "9c43d062-43bb-466d-af91-017ac5b050d9",
"downloadMode": 0,
"duration": 0.391813,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "948decc8-b846-45e8-b73d-70b55c95e83b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 212,
"height": 201,
"platformSettings": {},
"subMetas": {
"1": {
"ver": "1.0.4",
"uuid": "430e7d32-02e3-48b6-8fd1-f54076431f80",
"rawTextureUuid": "948decc8-b846-45e8-b73d-70b55c95e83b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -10.5,
"offsetY": 2,
"trimX": 5,
"trimY": 5,
"width": 181,
"height": 187,
"rawWidth": 212,
"rawHeight": 201,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "09efca57-67d0-40d1-9354-69615b939c15",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 212,
"height": 198,
"platformSettings": {},
"subMetas": {
"2": {
"ver": "1.0.4",
"uuid": "cbe09ab8-c8f0-465e-a296-75a30ea88b0b",
"rawTextureUuid": "09efca57-67d0-40d1-9354-69615b939c15",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -10.5,
"offsetY": 0.5,
"trimX": 5,
"trimY": 5,
"width": 181,
"height": 187,
"rawWidth": 212,
"rawHeight": 198,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "bfdd8dfc-5943-41d1-87c8-87a6d7dc0353",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 212,
"height": 201,
"platformSettings": {},
"subMetas": {
"3": {
"ver": "1.0.4",
"uuid": "1a190907-da0b-401e-a614-9eec33f81144",
"rawTextureUuid": "bfdd8dfc-5943-41d1-87c8-87a6d7dc0353",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 10.5,
"offsetY": 2,
"trimX": 26,
"trimY": 5,
"width": 181,
"height": 187,
"rawWidth": 212,
"rawHeight": 201,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "dd3ee6c5-9970-4f31-9382-2853235e7b28",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 212,
"height": 198,
"platformSettings": {},
"subMetas": {
"4": {
"ver": "1.0.4",
"uuid": "9bf2c7e5-e8b9-4988-a559-2883f3022f0e",
"rawTextureUuid": "dd3ee6c5-9970-4f31-9382-2853235e7b28",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 10.5,
"offsetY": 0.5,
"trimX": 26,
"trimY": 5,
"width": 181,
"height": 187,
"rawWidth": 212,
"rawHeight": 198,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.0",
"uuid": "c551970e-b095-45f3-9f1d-25cde8b8deb1",
"uuid": "54680177-78cc-4398-9170-f71d75269445",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "5f83c328-a6c5-43a6-bdad-f1a41c0e82ce",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f96ee6de-e43c-4daf-aa9f-3e2ad4146ef5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 234,
"platformSettings": {},
"subMetas": {
"1": {
"ver": "1.0.4",
"uuid": "da688780-84f1-4064-8c8a-6a2087cd91b1",
"rawTextureUuid": "f96ee6de-e43c-4daf-aa9f-3e2ad4146ef5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 234,
"rawWidth": 189,
"rawHeight": 234,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "16075824-9623-4971-bed1-fdd1ae1ed449",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 234,
"platformSettings": {},
"subMetas": {
"10": {
"ver": "1.0.4",
"uuid": "d894570e-3fd2-4108-a48b-26bd209c151f",
"rawTextureUuid": "16075824-9623-4971-bed1-fdd1ae1ed449",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 234,
"rawWidth": 189,
"rawHeight": 234,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "164bf308-1412-4621-8cf6-cfa338c2de56",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 232,
"platformSettings": {},
"subMetas": {
"11": {
"ver": "1.0.4",
"uuid": "86bad027-811a-4ec6-81f9-7bf23bc08d8d",
"rawTextureUuid": "164bf308-1412-4621-8cf6-cfa338c2de56",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 232,
"rawWidth": 189,
"rawHeight": 232,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "32b2f188-d5dd-4e8b-9f10-3dcec41aff6d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 234,
"platformSettings": {},
"subMetas": {
"12": {
"ver": "1.0.4",
"uuid": "c0a6e5c7-628a-4cf5-806b-7576f48d087d",
"rawTextureUuid": "32b2f188-d5dd-4e8b-9f10-3dcec41aff6d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 234,
"rawWidth": 189,
"rawHeight": 234,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "d8de921e-1152-4aaa-abfb-d645a04a6ef5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 233,
"platformSettings": {},
"subMetas": {
"13": {
"ver": "1.0.4",
"uuid": "ad142da1-0e48-4ec6-aff5-dece859572ee",
"rawTextureUuid": "d8de921e-1152-4aaa-abfb-d645a04a6ef5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 233,
"rawWidth": 189,
"rawHeight": 233,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "d2a41655-bebc-462c-8635-bf60e9d25a9b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 234,
"platformSettings": {},
"subMetas": {
"14": {
"ver": "1.0.4",
"uuid": "b4f2328a-4b53-4a76-8284-d1e6e653c1fa",
"rawTextureUuid": "d2a41655-bebc-462c-8635-bf60e9d25a9b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 234,
"rawWidth": 189,
"rawHeight": 234,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "aad2e7ab-abe0-426e-828b-f407010a7ab0",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 234,
"platformSettings": {},
"subMetas": {
"15": {
"ver": "1.0.4",
"uuid": "2e8155ce-284b-4251-8e47-d910e3cb31ae",
"rawTextureUuid": "aad2e7ab-abe0-426e-828b-f407010a7ab0",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 234,
"rawWidth": 189,
"rawHeight": 234,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "04102989-f5bd-49c5-8777-0aebed170b52",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 234,
"platformSettings": {},
"subMetas": {
"16": {
"ver": "1.0.4",
"uuid": "61313d5a-4fa5-4017-a745-dba70bdd8ac1",
"rawTextureUuid": "04102989-f5bd-49c5-8777-0aebed170b52",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 234,
"rawWidth": 189,
"rawHeight": 234,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "d56277a8-51e1-4465-9290-d3694c8dbcfc",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 234,
"platformSettings": {},
"subMetas": {
"17": {
"ver": "1.0.4",
"uuid": "649993fb-5e2b-4981-94b7-ae0f868b6879",
"rawTextureUuid": "d56277a8-51e1-4465-9290-d3694c8dbcfc",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 234,
"rawWidth": 189,
"rawHeight": 234,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "34f27476-63e9-44cd-94e9-b57e7bd99822",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 235,
"platformSettings": {},
"subMetas": {
"18": {
"ver": "1.0.4",
"uuid": "41a4acda-8069-4b94-8346-559ae0bc0b90",
"rawTextureUuid": "34f27476-63e9-44cd-94e9-b57e7bd99822",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 235,
"rawWidth": 189,
"rawHeight": 235,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "eeaa468d-cd34-44dc-98d8-cc6c777b0375",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 232,
"platformSettings": {},
"subMetas": {
"19": {
"ver": "1.0.4",
"uuid": "82db7e95-99c9-45c6-aa6e-9e80e9f04372",
"rawTextureUuid": "eeaa468d-cd34-44dc-98d8-cc6c777b0375",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 232,
"rawWidth": 189,
"rawHeight": 232,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "995e817c-6fa4-4266-af0d-0c442bdc9794",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 234,
"platformSettings": {},
"subMetas": {
"2": {
"ver": "1.0.4",
"uuid": "78834464-e762-4762-a3fe-bb165016f318",
"rawTextureUuid": "995e817c-6fa4-4266-af0d-0c442bdc9794",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 234,
"rawWidth": 189,
"rawHeight": 234,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "b88a9495-aba0-47c9-b05d-e1f92157d436",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 189,
"height": 234,
"platformSettings": {},
"subMetas": {
"20": {
"ver": "1.0.4",
"uuid": "d0f9477c-c66f-4c9b-959c-bd526ee480bc",
"rawTextureUuid": "b88a9495-aba0-47c9-b05d-e1f92157d436",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 189,
"height": 234,
"rawWidth": 189,
"rawHeight": 234,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
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